Replace %ld with %jd and cast to intmax_t
[platform/upstream/glibc.git] / ChangeLog
1 2014-12-30  H.J. Lu  <hongjiu.lu@intel.com>
2
3         [BZ #17732]
4         * io/test-utime.c (main): Replace %ld with %jd and cast to
5         intmax_t.
6         * libio/tst-ftell-active-handler.c (do_append_test): Likewise.
7         * nptl/tst-mutex5.c: Include <stdint.h>.
8         (do_test): Replace %ld with %jd and cast to intmax_t.
9         * posix/tst-regex.c (run_test): Likewise.
10         (run_test_backwards): Likewise.
11         * rt/tst-clock.c: Include <stdint.h>.
12         (clock_test): Replace %ld with %jd and cast to intmax_t.
13         * rt/tst-cpuclock1.c: Include <stdint.h>.
14         (do_test): Replace %lu with %ju and cast to uintmax_t.
15         * rt/tst-cpuclock2.c: Include <stdint.h>.
16         (do_test): Replace %lu with %ju and cast to uintmax_t.
17         * rt/tst-mqueue1.c: Include <stdint.h>.
18         (check_attrs): Replace %ld with %jd and cast to intmax_t.
19         * rt/tst-mqueue3.c (fct): Replace %ld with %jd and cast to
20         intmax_t.
21         * rt/tst-mqueue4.c (do_test): Likewise.
22         * rt/tst-timer4.c: Include <stdint.h>.
23         (check_ts): Replace %ld with %jd and cast to intmax_t.
24         (do_test): Likewise.
25         * stdio-common/tst-fmemopen2.c (do_test): Replace %ld with %jd
26         and cast to intmax_t.
27         * sysdeps/pthread/tst-timer.c (main): Likewise.
28         * time/clocktest.c (main): Likewise.
29         * time/tst-posixtz.c (do_test): Likewise.
30         * timezone/tst-timezone.c (main): Likewise.
31
32 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
33             H.J. Lu  <hongjiu.lu@intel.com>
34
35         * sysdeps/i386/i686/multiarch/bcopy-sse2-unaligned.S: New file.
36         * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
37         * sysdeps/i386/i686/multiarch/memmove-sse2-unaligned.S: Likewise.
38         * sysdeps/i386/i686/multiarch/mempcpy-sse2-unaligned.S: Likewise.
39         * sysdeps/i386/i686/multiarch/bcopy.S: Select the sse2_unaligned
40         version if bit_Fast_Unaligned_Load is set.
41         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
42         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
43         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
44         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
45         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
46         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
47         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
48         bcopy-sse2-unaligned, memcpy-sse2-unaligned,
49         memmove-sse2-unaligned and mempcpy-sse2-unaligned.
50         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c (MAX_IFUNC): Set
51         to 4.
52         (__libc_ifunc_impl_list): Test __bcopy_sse2_unaligned,
53         __memmove_chk_sse2_unaligned, __memmove_sse2_unaligned,
54         __memcpy_chk_sse2_unaligned, __memcpy_sse2_unaligned,
55         __mempcpy_chk_sse2_unaligned, and __mempcpy_sse2_unaligned.
56
57 2014-12-29  Chris Metcalf  <cmetcalf@ezchip.com>
58
59         * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
60         instead of #if to avoid a Wundef warning.
61         * stdlib/tst-limits.c (do_test): Likewise.
62
63         * sysdeps/tile/math_private.h (fetestexcept): Add macro to
64         parallel other exception macros.
65         (fegetenv): Convert from macro to extern inline so that it applies
66         retroactively to inline functions already seen by the compiler.
67         (fesetenv, feupdateenv, fegetround, fesetround): Likewise.
68
69         * posix/Makefile (before-compile): Use $(objpfx) for
70         posix-conf-vars-def.h.
71
72 2014-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
73
74         * posix/getconf.c (main): Use size_t for type of I.
75         * scripts-gen-posix-conf-vars.awk (END): Use size_t for type of
76         NSPEC.
77
78         * posix/posix-conf-vars.list (SPEC:XBS5): Add sysconf prefix.
79         * posix/confstr.c: Define NEED_SPEC_ARRAY to 0.
80         * posix/posix-envs.def: Likewise.
81         * sysdeps/posix/sysconf.c: Likewise.
82         * posix/getconf.c: Define NEED_SPEC_ARRAY to 1.
83         (specs): Remove array.
84         * scripts/gen-posix-conf-vars.awk: Support generation of specs
85         array.
86
87         * posix/posix-conf-vars.list: Add _POSIX sysconf namespace.
88         * sysdeps/posix/sysconf.c: Include posix-conf-vars.h.
89         (__sysconf): Use CONF_IS_* macros.
90
91         * posix/Makefile (before-compile): Add posix-conf-vars-def.h.
92         ($(objpfx)posix-conf-vars-def.h): New target.
93         * posix/posix-conf-vars.list: New file.
94         * posix/posix-conf-vars.h: New file.
95         * posix/confstr.c: Include posix-conf-vars.h.
96         (confstr): Use CONF_IS_* macros.
97         * posix/posix-envs.def: Include posix-conf-vars.h.  Use
98         CONF_IS_* macros.
99         * scripts/gen-posix-conf-vars.awk: New file.
100
101 2014-12-26  Chris Metcalf  <cmetcalf@ezchip.com>
102
103         * sysdeps/tile/math_private.h (fegetenv, fesetenv, feupdateenv,
104         fegetround): Add no-op macros to avoid linknamespace issues.
105
106         * sysdeps/unix/sysv/linux/clock_settime.c (SYSDEP_SETTIME): Remove
107         definitions of INTERNAL_VSYSCALL and INLINE_VSYSCALL.
108
109         * sysdeps/unix/sysv/linux/tile/sysdep.h
110         (HAVE_CLOCK_GETTIME_VSYSCALL): Move definition out of
111         assembly-specific section to avoid a redefinition warning.
112
113         * sysdeps/tile/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast to
114         long before casting to pointer to avoid a cast warning.
115
116 2014-12-23  Chris Metcalf  <cmetcalf@ezchip.com>
117
118         * sysdeps/tile/tilegx/Implies: New file.
119
120 2014-12-23  Richard Earnshaw  <rearnsha@arm.com>
121
122         * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.
123
124 2014-12-23  Florian Weimer  <fweimer@redhat.com>
125
126         * iconvdata/run-iconv-test.sh: Actually test iconv modules.
127
128 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
129
130         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
131         not define.
132         * sysdeps/unix/sysv/linux/utimes.c: Do not include
133         <kernel-features.h>.
134         (__utimes) [__NR_utimes]: Make code unconditional.
135         (__utimes) [!__ASSUME_UTIMES]: Remove conditional code.
136         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
137         (__ASSUME_UTIMES): Do not undefine.
138         * sysdeps/unix/sysv/linux/tile/kernel-features.h
139         (__ASSUME_UTIMES): Likewise.
140         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
141         (__ASSUME_UTIMES): Define for [__LINUX_KERNEL_VERSION >= 0x030e00]
142         instead of undefining for [__LINUX_KERNEL_VERSION < 0x030e00].
143         * sysdeps/unix/sysv/linux/hppa/utimes.c: New file.
144
145 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
146
147         * sysdeps/mips/memcpy.S: Fix preprocessor indentation.
148
149 2014-12-22  Chris Metcalf  <cmetcalf@ezchip.com>
150
151         [BZ #17747]
152         * math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
153         alias to weak alias for j0l, y0l.
154         * math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
155         * math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
156
157         [BZ #17746]
158         * sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
159         conversion.
160
161 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
162
163         * sysdeps/unix/mips/sysdep.h (__mips_isa_rev): Set
164         to zero if not already defined.
165
166 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
167
168         [BZ #17724]
169         * sysdeps/ieee754/k_standard.c: Don't include <float.h>.
170         (__kernel_standard_f): Remove.  Moved to k_standardf.c.
171         (__kernel_standard_l): Remove.  Moved to k_standardl.c with
172         (char *) casts added.
173         * sysdeps/ieee754/k_standardf.c: New file.
174         * sysdeps/ieee754/k_standardl.c: Likewise.
175         * math/Makefile (libm-support): Remove k_standard.
176         (libm-calls): Add k_standard.
177
178 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
179
180         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
181         Optimize to avoid an unnecessary FPCR read.
182
183 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
184
185         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv):
186         Optimize to reduce FPCR/FPSR accesses.
187
188 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
189
190         * sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
191         Call libc_fetestexcept_aarch64.
192
193 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
194
195         * sysdeps/aarch64/fpu/fesetround.c (fesetround):
196         Call libc_fesetround_aarch64.
197
198 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
199
200         [BZ #17733]
201         * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
202         (__bind): Do not define as weak alias.
203         * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
204         define.
205         (__getsockname): Do not define as weak alias.
206
207 2014-12-22  Will Newton  <will.newton@linaro.org>
208
209         * manual/install.texi: Document that we require bison 2.7
210         or above.
211         * INSTALL: Regenerate.
212         * configure.ac: Use AC_CHECK_PROG_VER instead of
213         AC_PATH_PROG when checking for bison and check for
214         version 2.7 or above.
215         * configure: Regenerate.
216
217 2014-12-21  Chris Metcalf  <cmetcalf@ezchip.com>
218
219         [BZ #17745]
220         * sysdeps/tile/ffs.c (__ffs): Moved ffsll definition...
221         * sysdeps/tile/ffsll.c (ffsll): To here.
222
223         * sysdeps/unix/sysv/linux/tile/localplt.data: Removed.
224
225 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
226
227         * elf/dl-tls.c (__tls_get_addr): Provide the hidden definition
228         if not defined.
229         * sysdeps/i386/dl-tls.h (___tls_get_addr): Provide the hidden
230         definition.
231         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
232         hidden ___tls_get_addr.
233         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
234         hidden __tls_get_addr.
235         * sysdeps/generic/localplt.data (__tls_get_addr): Removed.
236         * sysdeps/unix/sysv/linux/i386/localplt.data (___tls_get_addr):
237         Likewise.
238
239 2014-12-21  Andreas Schwab  <schwab@linux-m68k.org>
240
241         * sysdeps/m68k/dl-machine.h (RTLD_START): Remove @PLTPC from
242         _dl_init call.
243
244 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
245
246         * sysdeps/i386/dl-machine.h (_dl_start_user): Remove @PLT
247         from "call _dl_init@PLT".
248         * sysdeps/x86_64/dl-machine.h (_dl_start_user): Likewise.
249
250 2014-12-21  Anders Kaseorg  <andersk@mit.edu>
251
252         * manual/search.texi: (Array Sort Function): Clarify stable sorting
253         guarantees.
254
255 2014-12-20  Chris Metcalf  <cmetcalf@ezchip.com>
256
257         * sysdeps/unix/sysv/linux/tile/localplt.data: New file.
258
259 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
260
261         [BZ #17744]
262         * sysdeps/tile/tilegx/strstr.c (STRSTR): Call __strnlen, not
263         strnlen.
264
265 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
266
267         * sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
268         of multu on MIPSr6.
269         * sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
270         * sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
271         * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
272         * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
273         * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
274
275 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
276
277         * sysdeps/mips/sys/asm.h (PTR_ADDU): Use addu on mips32r6/mips64r6.
278         (PTR_ADDIU): Use addiu for mips32r6/mips64r6.
279         (PTR_SUBU): Use subu for mips32r6/mips64r6.
280         (PTR_SUBIU): Use subu for mips32r6/mips64r6 (subiu does not exist).
281         * sysdeps/mips/machine-gmon.h (PTR_ADDU_STRING) Use addu for
282         mips32r6/mips64r6.
283         (PTR_SUBU_STRING) Use subu for mips32r6/mips64r6.
284
285 2014-12-19  Ondřej Bílka  <neleai@seznam.cz>
286
287         * string/strncat.c (STRNCAT): Simplify implementation.
288
289 2014-12-19  David S. Miller  <davem@davemloft.net>
290
291         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to
292         access the quad as both a long double and as a series of 4 words.
293
294         * get-dynamic-info.h (elf_get_dynamic_info): Ignore -Warray-bounds for a
295         link_map->l_info array access.
296
297 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
298
299         * iconvdata/tst-loading.c (TIMEOUT): Increase timeout 10 sec.
300
301         * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
302         * math/atest-exp2.c (TIMEOUT): Likewise.
303         * math/atest-sincos.c (TIMEOUT): Likewise.
304
305 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
306
307         * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
308         -Wno-error with -fno-builtin-lround.
309
310 2014-12-19  Torvald Riegel  <triegel@redhat.com>
311
312         * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: New file.
313         Contains futex constants and functions moved over from ...
314         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.  Include
315         <lowlevellock-futex.h>.
316         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
317         (lll_timedwait_tid): Add comments and parentheses around macro
318         arguments.
319
320 2014-12-19  Torvald Riegel  <triegel@redhat.com>
321
322         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Include
323         <lowlevellock-futex.h>.  Remove FUTEX_* constants defined there.
324         (__lll_private_flag): Remove.
325         (lll_futex_wait): Likewise.
326         (lll_futex_timed_wait): Likewise.
327         (lll_futex_wake): Likewise.
328         (lll_futex_requeue): Likewise.
329         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
330         (__lll_timedwait_tid): Spell out argument names.
331         (lll_timedwait_tid): Add comments and parentheses around macro
332         arguments.
333         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Make FUTEX_* constants,
334         LLL_SHARED and LLL_PRIVATE usable from assembly code.
335
336 2014-12-19  Torvald Riegel  <triegel@redhat.com>
337
338         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Remove file.
339         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
340         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
341         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Likewise.
342         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
343         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
344         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
345         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
346         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
347         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
348         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
349         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
350         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
351         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
352         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Likewise.
353         * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
354         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
355         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
356         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
357
358 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
359
360         * sysdeps/x86_64/x32/Makefile: New file.
361
362 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
363
364         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace
365         1L with (mp_limb_t) 1.
366
367 2014-12-17  Roland McGrath  <roland@hack.frob.com>
368
369         * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ...
370         * nptl/libc_pthread_init.c: ... here.
371         * sysdeps/nptl/fork.c (__fork_handlers): Variable moved ...
372         * nptl/register-atfork.c: ... here.
373
374         * sysdeps/nptl/gai_misc.h (__gai_start_notify_thread):
375         Use pthread_sigmask rather than INTERNAL_SYSCALL.
376         Use assert_perror to check its return value.
377         (__gai_create_helper_thread): Likewise.
378
379         * inet/if_index.c (__if_freenameindex): Add libc_hidden_def.
380
381         * malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
382
383 2014-12-17  Joseph Myers  <joseph@codesourcery.com>
384
385         [BZ #17725]
386         * sysdeps/generic/profil-counter.h (profil_counter): Rename to
387         __profil_counter.
388         * sysdeps/unix/sysv/linux/hppa/profil-counter.h (profil_counter):
389         Likewise.
390         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
391         Likewise.
392         * sysdeps/unix/sysv/linux/ia64/profil-counter.h (profil_counter):
393         Likewise.
394         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h
395         (profil_counter): Likewise.
396         * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h
397         (profil_counter): Likewise.
398         * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
399         Likewise.
400         * sysdeps/unix/sysv/linux/tile/profil-counter.h (profil_counter):
401         Likewise.
402         * sysdeps/unix/sysv/linux/x86_64/profil-counter.h
403         (profil_counter): Likewise.
404         * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
405         Likewise.
406         [!__profil_counter] (profil_counter): Define as weak alias of
407         __profil_counter.
408         * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h
409         (profil_counter): Rename to __profil_counter.
410         [!__profil_counter] (profil_counter): Define as weak alias of
411         __profil_counter.
412         * sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h
413         (profil_counter): Rename to __profil_counter.
414         [!__profil_counter] (profil_counter): Define as weak alias of
415         __profil_counter.
416         * sysdeps/posix/profil.c: Update comment referring to
417         profil_counter.
418         (__profil): Use __profil_counter instead of profil_counter.
419         * sysdeps/posix/sprofil.c (profil_counter): Rename to
420         __profil_counter.  Use __profil_counter_ushort and
421         __profil_counter_uint in definitions.
422         (__sprofil): Use __profil_counter_uint and __profil_counter_ushort
423         instead of profil_counter_uint and profil_counter_ushort.
424
425         [BZ #17722]
426         * inet/inet_mkadr.c (inet_makeaddr): Rename to __inet_makeaddr and
427         define as weak alias of __inet_makeaddr.
428         * resolv/inet_addr.c (inet_addr): Rename to __inet_addr and define
429         as weak alias of __inet_addr.
430         * resolv/inet_pton.c (inet_pton): Rename to __inet_pton and define
431         as weak alias of __inet_pton.  Use libc_hidden_weak.
432         * include/arpa/inet.h (__inet_pton): Declare.  Use
433         libc_hidden_proto.
434         (inet_makeaddr): Don't use libc_hidden_proto.
435         (__inet_makeaddr): Declare.  Use libc_hidden_proto.
436         * resolv/res_init.c (__res_vinit): Use __inet_pton instead of
437         inet_pton.  Use __inet_makeaddr instead of inet_makeaddr.
438         * conform/Makefile (test-xfail-POSIX/pthread.h/linknamespace):
439         Remove variable.
440         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
441         (test-xfail-POSIX/time.h/linknamespace): Likewise.
442
443 2014-12-17  Steve Ellcey  <sellcey@imgtec.com>
444
445         * inet/getnetgrent_r.c: Move while loop to be inside if statement.
446
447 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
448
449         * stdio-common/bug-vfprintf-nargs.c (do_test):
450         Cast value to intptr_t to avoid format warning
451         for usage with PRIdPTR printing macro.
452
453 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
454
455         * libio/tst-widetext.c (do_test):
456         Use format type %td instead of %Zd for ptrdiff_t
457         in order to avoid format warning.
458
459 2014-12-17  Andreas Schwab  <schwab@suse.de>
460
461         * nscd/mem.c (gc): Add size_t cast to match printf format.
462
463 2014-12-16  Roland McGrath  <roland@hack.frob.com>
464
465         * sysdeps/gnu/unwind-resume.c: #include <sysdep.h>.
466         (init): Apply PTR_MANGLE to pointers before storing them.
467         (_Unwind_Resume, __gcc_personality_v0): Apply PTR_DEMANGLE to pointers
468         before using them.
469
470 2014-12-16  Joseph Myers  <joseph@codesourcery.com>
471
472         [BZ #17719]
473         * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and
474         define as weak alias of __memrchr.
475         (__memrchr): Do not define as strong alias of memrchr.
476         * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace):
477         Remove variable.
478         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
479         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
480         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
481
482         [BZ #17717]
483         * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and
484         define as weak alias of __if_nametoindex.  Use libc_hidden_weak.
485         (if_indextoname): Rename to __if_indextoname and define as weak
486         alias of __if_indextoname.  Use libc_hidden_weak.
487         (if_freenameindex): Rename to __if_freenameindex and define as
488         weak alias of __if_freenameindex.
489         (if_nameindex): Rename to __if_nameindex and define as weak alias
490         of __if_nameindex.
491         * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to
492         __if_nametoindex and define as weak alias of __if_nametoindex.
493         Use libc_hidden_weak.
494         (if_freenameindex): Rename to __if_freenameindex and define as
495         weak alias of __if_freenameindex.
496         (if_nameindex): Rename to __if_nameindex and define as weak alias
497         of __if_nameindex.
498         (if_indextoname): Rename to __if_indextoname and define as weak
499         alias of __if_indextoname.  Use libc_hidden_weak.
500         * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to
501         __if_nametoindex and define as weak alias of __if_nametoindex.
502         Use libc_hidden_weak.
503         (if_freenameindex): Rename to __if_freenameindex and define as
504         weak alias of __if_freenameindex.  Use libc_hidden_weak.
505         (if_nameindex_netlink): Use __if_freenameindex instead of
506         if_freenameindex.
507         (if_nameindex): Rename to __if_nameindex and define as weak alias
508         of __if_nameindex.  Use libc_hidden_weak.
509         (if_indextoname): Rename to __if_indextoname and define as weak
510         alias of __if_indextoname.  Use libc_hidden_weak.
511         * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use
512         libc_hidden_proto.
513         [!_ISOMAC] (__if_freenameindex): Likewise.
514         * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of
515         if_nametoindex.
516         * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove
517         variable.
518         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
519         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
520         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
521         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
522         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
523         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
524         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
525
526         * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace):
527         Remove variable.
528         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
529         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
530
531 2014-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
532
533         * resolv/res_send.c (__libc_res_nsend): Disable warning 'array
534         subscript above bounds'
535
536         * resolv/res_send.c (__libc_res_nsend): Fix check for nsmap
537         bounds.
538
539 2014-12-16  Arjun Shankar  <arjun.is@lostca.se>
540
541         * libio/tst-fopenloc.c: Use test-skeleton.c.
542
543         * stdlib/tst-bsearch.c: Use test-skeleton.c.
544         (entry): Rename to ITEM.
545         (do_test, comp): Adjust.
546
547         * stdio-common/tst-fseek.c: Use test-skeleton.c.
548
549 2014-12-16  Torvald Riegel  <triegel@redhat.com>
550
551         * string/tester.c: Include <libc-internal.h>.
552         (test_memset): Ignore -Wmemset-transposed-args.
553
554 2014-12-16  Torvald Riegel  <triegel@redhat.com>
555
556         * misc/tst-mntent2.c (do_test): Fix warning.
557
558 2014-12-16  Torvald Riegel  <triegel@redhat.com>
559
560         * elf/tst-unique4lib.cc(a): Mark as used.
561
562 2014-12-16  Florian Weimer  <fweimer@redhat.com>
563
564         [BZ #17630]
565         * resolv/nss_dns/dns-network.c (getanswer_r): Iterate over alias
566         names.
567
568 2014-12-16  Allan McRae  <allan@archlinux.org>
569
570         * stdio-common/Makefile (tests): Re-add bug26.
571
572 2014-12-15  Ondřej Bílka  <neleai@seznam.cz>
573
574         [BZ #17657]
575         * locale/programs/ld-ctype.c (find_translit2, read_widestring): Return
576         static array.
577
578 2014-12-15  Bernard Ogden  <bernie.ogden@linaro.org>
579
580         * nptl/lowlevellock.c (__lll_lock_wait_private): Add comments.
581         (__lll_lock_wait): Likewise.
582         (__lll_timedlock_wait): Likewise.
583         (__lll_timedwait_tid): Likewise.
584         * nptl/lowlevelrobustlock.c (__lll_robust_lock_wait): Likewise.
585         (__lll_robust_timedlock_wait): Likewise.
586         * sysdeps/nptl/lowlevellock.h (lll_trylock): Likewise.
587         (lll_cond_trylock): Likewise.
588         (__lll_lock): Likewise.
589         (__lll_robust_lock): Likewise.
590         (__lll_cond_lock): Likewise.
591         (lll_robust_cond_lock): Likewise.
592         (__lll_timedlock): Likewise.
593         (__lll_robust_timedlock): Likewise.
594         (__lll_unlock): Likewise.
595         (__lll_robust_unlock): Likewise.
596         (lll_wait_tid): Likewise.
597         (lll_timedwait_tid): Likewise.
598
599 2014-12-15  Torvald Riegel  <triegel@redhat.com>
600
601         * nptl/tst-sem4.c (do_test): Start with a fresh semaphore state.
602
603 2014-12-15  Torvald Riegel  <triegel@redhat.com>
604
605         * nptl/tst-mutex5.c (do_test): Do not skip tests if elision is enabled.
606
607 2014-12-15  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
608
609         * stdio-common/test-vfprintf.c: Include <libc-internal.h>.
610         * stdio-common/tst-sprintf.c: Likewise.
611
612 2014-12-15  Torvald Riegel  <triegel@redhat.com>
613
614         * sysdeps/unix/sysv/linux/s390/pthread_once.c: Remove file.
615
616 2014-12-15  Jeff Law  <law@redhat.com>
617
618         [BZ #16617]
619         * stdio-common/vfprintf.c (vfprintf): Allocate large specs array
620         on the heap.  (CVE-2012-3406)
621         * stdio-common/bug23-2.c, stdio-common/bug23-3.c: New file.
622         * stdio-common/bug23-4.c: New file.  Test case by Joseph Myers.
623         * stdio-common/Makefile (tests): Add bug23-2, bug23-3, bug23-4.
624
625 2014-12-15  Will Newton  <will.newton@linaro.org>
626
627         * manual/install.texi: Bump required version of texinfo
628         to 4.7 from 4.5.
629         * INSTALL: Regenerated.
630         * configure.ac: Check for makeinfo version 4.7 and above.
631         * configure: Regenerated.
632
633 2014-12-12  Roland McGrath  <roland@hack.frob.com>
634
635         * sysdeps/posix/shm-directory.h (SHM_GET_NAME): Take new argument
636         PREFIX, string constant to insert between directory and name.
637         * sysdeps/posix/shm_open.c: Update caller.
638         * sysdeps/posix/shm_unlink.c: Likewise.
639         * nptl/semaphoreP.h (struct mountpoint_info): Type removed.
640         (__where_is_shmfs, mountpoint, __namedsem_once): Declarations removed.
641         (SEM_SHM_PREFIX): New macro.
642         * sysdeps/posix/Makefile (librt-routines): Add shm-directory only if
643         [$(have-thread-library) = no].
644         * nptl/Makefile (libpthread-routines): Add shm-directory.
645         * nptl/Versions (GLIBC_PRIVATE): Add __shm_directory.
646         * sysdeps/nptl/shm-directory.h: New file.
647         * sysdeps/posix/shm-directory.c
648         [IS_IN (libpthread)] (__shm_directory): Add hidden_def.
649         * sysdeps/unix/sysv/linux/shm-directory.c: Likewise.
650         * nptl/sem_open.c (check_add_mapping): Use munmap function rather than
651         INTERNAL_SYSCALL.
652         (__where_is_shmfs): Function removed.
653         (mountpoint, defaultmount, defaultdir, __namedsem_once):
654         Variables removed.
655         (sem_open): Use __libc_close function rather than INTERNAL_SYSCALL.
656         Use SHM_GET_NAME.
657         * nptl/sem_unlink.c: Prototypify.  Use SHM_GET_NAME.
658
659         * sysdeps/nptl/bits/libc-lockP.h [IS_IN (libpthread)]
660         (PTFAVAIL, __libc_ptf_call, __libc_ptf_call_always): Define as
661         unconditional for use inside libpthread.
662         [IS_IN (libpthread)]: Include <nptl/pthreadP.h>.
663
664 2014-12-12  Roland McGrath  <roland@hack.frob.com>
665
666         * nptl/pthread_getaffinity.c: New file.
667         * nptl/pthread_setaffinity.c: New file.
668         * nptl/pthread_getname.c: New file.
669         * nptl/pthread_setname.c: New file.
670
671         * nptl/pthread_create.c (START_THREAD_DEFN)
672         [! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
673
674 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
675             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
676
677         * resolv/res_send.c (send_vc): Disable warning resplen may
678         be used uninitialized.
679
680 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
681
682         * nptl/tst-mutex6.c
683         (ATTR_NULL): New define checks ATTR against NULL.
684         (do_test): Use !ATTR_NULL instead of ATTR != NULL.
685         * nptl/tst-mutexpp6.c (ATTR_NULL): New define.
686
687 2014-12-11  James Lemke  <jwlemke@codesourcery.com>
688
689         [BZ #17581]
690         * malloc/hooks.c
691         (mem2mem_check): Revert my previous change.
692         (malloc_check_get_size): Revert my previous change.
693         (mem2chunk_check): Revert my previous change.
694
695 2014-12-11  Roland McGrath  <roland@hack.frob.com>
696
697         * sysdeps/posix/shm-directory.c: New file.
698         * sysdeps/posix/shm-directory.h: New file.
699         * sysdeps/posix/Makefile [($(subdir) = rt] (librt-routines): Add it.
700         * sysdeps/posix/shm_open.c: Use SHM_GET_NAME.
701         Use O_NOFOLLOW and O_CLOEXEC if available.  Transmute EISDIR to EINVAL.
702         * sysdeps/posix/shm_unlink.c: Use SHM_GET_NAME.
703         Transmute EPERM to EACCES.
704         * sysdeps/unix/sysv/linux/shm-directory.c: New file, most code taken
705         from ...
706         * sysdeps/unix/sysv/linux/shm_open.c: ... here.  File removed.
707         * sysdeps/unix/sysv/linux/shm_unlink.c: File removed.
708
709 2014-12-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
710
711         * sysdeps/sh/jmpbuf_unwind.h (_jmpbuf_sp): Declare SP as void
712         pointer and cast to uintptr_t.
713         * sysdeps/sh/nptl/tls.h (TLS_INIT_TP): Use NULL instead of 0.
714         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_timed_wait):
715         Add cast to avoid warning.
716         * sysdeps/unix/sysv/linux/sh/register-dump.h: Use 0 instead of NULL.
717
718 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
719
720         * nptl/semaphore.h: Move to ...
721         * sysdeps/pthread/semaphore.h: ... here.
722         * Makefile (installed-headers): Change nptl/semaphore.h to
723         sysdeps/pthread/semaphore.h.
724
725 2014-12-11  Roland McGrath  <roland@hack.frob.com>
726
727         * misc/tst-error1.c (do_test): Ignore -Wformat-security for
728         generated error format strings.
729
730         * stdio-common/tstdiomisc.c (t2): Ignore -Wformat and
731         -Wformat-extra-args warnings for scanf formats.
732         * stdio-common/scanf4.c (main): Ignore -Wformat-zero-length around
733         test of zero-length format (duh).
734         * stdio-common/scanf7.c (main): Ignore -Wformat warnings for
735         corner-case scanf format test.
736         * stdio-common/test-vfprintf.c (do_test): Ignore -Wformat-security for
737         generated fprintf format string.
738         * stdio-common/tst-sprintf.c (do_test): Ignore -Wformat warnings for
739         corner-case sprintf format tests.
740         * stdio-common/tst-printf.c: Ignore -Wformat throughout.
741         * stdio-common/tst-printfsz.c (main): Ignore -Wformat and
742         -Wformat-extra-args warnings throughout.
743         * stdio-common/Makefile (CFLAGS-tstdiomisc.c): Variable removed.
744         (CFLAGS-scanf4.c): Likewise.
745         (CFLAGS-scanf7.c): Likewise.
746         (CFLAGS-tst-sprintf.c): Likewise.
747         (CFLAGS-tst-printf.c): Likewise.
748         (CFLAGS-tst-printfsz.c): Likewise.
749
750 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
751
752         * include/cpio.h: New file.
753         * include/fmtmsg.h: Likewise.
754
755         * tst-mbswcs1.c (show): Use %zu format instead of %Zd.  Cast
756         corresponding format argument to size_t.
757         * tst-mbswcs2.c (show): Likewise.  Use %td format for ptrdiff_t
758         arguments.
759         * tst-mbswcs3.c (show): Use %zu format instead of %Zd.  Cast
760         corresponding format argument to size_t.
761         * tst-mbswcs4.c (show): Likewise.  Use %td format for ptrdiff_t
762         arguments.
763         * tst-mbswcs5.c (show): Use %zu format instead of %Zd.  Cast
764         corresponding format argument to size_t.
765         * tst-trans.c (do_test): Use %lc format for wint_t arguments.
766         * Makefile (CFLAGS-tst-mbswcs1.c): Remove variable.
767         (CFLAGS-tst-mbswcs2.c): Likewise.
768         (CFLAGS-tst-mbswcs3.c): Likewise.
769         (CFLAGS-tst-mbswcs4.c): Likewise.
770         (CFLAGS-tst-mbswcs5.c): Likewise.
771         (CFLAGS-tst-trans.c): Likewise
772
773 2014-12-11  Roland McGrath  <roland@hack.frob.com>
774
775         * posix/regexbug1.c (main): Use "%s" format with regerror results,
776         rather than assuming they won't contain any '%'s.
777
778 2014-12-11  Chris Metcalf  <cmetcalf@ezchip.com>
779
780         * sysdeps/tile/tilegx/memset.c (__memcpy): Add
781         inhibit_loop_to_libcall to avoid recursive calls.
782         * sysdeps/tile/tilegx/memcpy.c (__memcpy): Likewise.
783         * sysdeps/tile/tilepro/memcpy.c (__memcpy): Likewise.
784
785 2014-12-11  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
786
787         * include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
788         prototype.
789
790 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
791
792         * sysdeps/mips/dl-trampoline.c: Modify switch expression to have
793         integer value instead of boolean.
794
795 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
796
797         * malloc/malloc.c: Fix powerof2 check.
798
799 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
800
801         * locale/programs/locfile.h (maybe_swap_uint32):
802         Remove inline and add unused attribute.
803
804 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
805
806         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
807         Truncating assembler expression to a .long expression.
808
809 2014-12-11  Andreas Schwab  <schwab@suse.de>
810
811         * elf/rtld.c (struct map_args): Constify str member.
812         (do_preload): Constify fname argument.
813
814 2014-12-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
815
816         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Remove overflow warnings for
817         constants definition.
818
819 2014-12-11  Andreas Schwab  <schwab@suse.de>
820
821         [BZ #16657]
822         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Use
823         FORCE_ELISION instead of DO_ELISION.
824         * sysdeps/unix/sysv/linux/x86/force-elision.h (DO_ELISION):
825         Remove.
826         * sysdeps/unix/sysv/linux/s390/force-elision.h (DO_ELISION):
827         Likewise.
828
829         * iconvdata/gconv-modules: Remove duplicate entry.
830
831 2014-12-11  Will Newton  <will.newton@linaro.org>
832
833         Merge gettext 0.19.3 into intl/.
834
835         This involves a number of cosmetic changes to comments
836         and ANSI function definitions and prototypes throughout
837         all the files. The gettext copyright header is used but
838         with the date ranges taken from the glibc copy.
839
840         * NEWS: Add gettext merge to 2.21.
841         * intl/bindtextdom.c: Switch to gettext copyright.
842         Use ANSI definitions and prototypes.
843         Use gl_* locking primitives rather than __libc_* ones.
844         Use __builtin_expect rather than __glibc_likely/unlikely.
845         * intl/dcgettext.c: Switch to gettext copyright.
846         Use ANSI definitions and prototypes.
847         * intl/dcigettext.c: Switch to gettext copyright.
848         Use ANSI definitions and prototypes.
849         (INTDIV0_RAISES_SIGFPE): New define.
850         Use gl_* locking primitives rather than __libc_* ones.
851         Include eval-plural.h instead of plural-eval.c.
852         Use __builtin_expect rather than __glibc_likely/unlikely.
853         * intl/dcngettext.c: Switch to gettext copyright.
854         Use ANSI definitions and prototypes.
855         * intl/dgettext.c: Likewise.
856         * intl/dngettext.c: Likewise.
857         * intl/plural-eval.c: Renamed to...
858         * intl/eval-plural.h: ...this.
859         * intl/explodename.c: Switch to gettext copyright.
860         Use ANSI definitions and prototypes.
861         (_nl_explode_name): Use strchr instead of __rawmemchr.
862         * intl/finddomain.c: Switch to gettext copyright.
863         Use ANSI definitions and prototypes.
864         Use gl_* locking primitives rather than __libc_* ones.
865         (_nl_find_domain): Use malloc rather than alloca for
866         allocation of temporary locale name.
867         * intl/gettext.c: Switch to gettext copyright.
868         Use ANSI definitions and prototypes.
869         * intl/gettextP.h: Switch to gettext copyright.
870         Use ANSI definitions and prototypes.
871         Use gl_* locking primitives rather than __libc_* ones.
872         * intl/gmo.h: Switch to gettext copyright.
873         (struct sysdep_string): Move struct segment_pair outside of
874         struct definition.
875         * intl/hash-string.c: Use ANSI definitions and prototypes.
876         * intl/hash-string.h: Switch to gettext copyright.
877         Use ANSI definitions and prototypes.
878         * intl/l10nflist.c: Switch to gettext copyright.
879         Use ANSI definitions and prototypes.
880         (_nl_normalize_codeset): Avoid integer overflow.
881         * intl/loadinfo.h: Switch to gettext copyright.
882         Use ANSI definitions and prototypes.
883         (LIBINTL_DLL_EXPORTED): New define.
884         (PATH_SEPARATOR): New define.
885         * intl/loadmsgcat.c: Switch to gettext copyright.
886         * intl/localealias.c: Switch to gettext copyright.
887         Use ANSI definitions and prototypes.
888         (_nl_expand_alias): Use PATH_SEPARATOR.
889         * intl/ngettext.c: Switch to gettext copyright.
890         Use ANSI definitions and prototypes.
891         * intl/plural-exp.c: Likewise.
892         * intl/plural-exp.h: Switch to gettext copyright.
893         Use ANSI definitions and prototypes.
894         (struct expression): Move definition of enum operator outside
895         of struct definition.
896         * intl/plural.c: Regenerate.
897         * intl/plural.y: Switch to gettext copyright.
898         Use ANSI definitions and prototypes.
899         Port to bison 3.0.
900         * intl/textdomain.c: Switch to gettext copyright.
901         Use ANSI definitions and prototypes.
902         Use gl_* locking primitives rather than __libc_* ones.
903
904 2014-12-10  Steve Ellcey  <sellcey@imgtec.com>
905
906         * debug/warning-nop.c: Add used atrribute.
907
908 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
909
910         * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: New file.
911
912         * sysdeps/unix/sysv/linux/mips/mips64/Makefile
913         [$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
914         [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
915
916 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
917             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
918
919         [BZ #17634]
920         * wcsmbs/wcschr.c [!WCSCHR] (wcschr): Define as __wcschr.
921         Undefine after defining function.  Define as weak alias of
922         __wcschr.  Use libc_hidden_weak.
923         * include/wchar.h (__wcschr): Declare.  Use libc_hidden_proto.
924         * sysdeps/i386/i686/multiarch/wcschr-c.c [IS_IN (libc) && SHARED]
925         (libc_hidden_def): Also define __GI___wcschr alias.
926         * sysdeps/i386/i686/multiarch/wcschr.S (wcschr): Rename to
927         __wcschr and define as weak alias of __wcschr.
928         * sysdeps/powerpc/power6/wcschr.c [!WCSCHR] (WCSCHR): Define as
929         __wcschr.
930         [!WCSCHR] (DEFAULT_WCSCHR): Define.
931         [DEFAULT_WCSCHR] (__wcschr): Use libc_hidden_def.
932         [DEFAULT_WCSCHR] (wcschr): Define as weak alias of __wcschr.  Use
933         libc_hidden_weak.  Do not use libc_hidden_def.
934         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c
935         [IS_IN (libc) && SHARED] (libc_hidden_def): Also define
936         __GI___wcschr alias.
937         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c
938         [IS_IN (libc)] (wcschr): Define as macro expanding to
939         __redirect_wcschr.
940         [IS_IN (libc)] (__wcschr_ppc): Use __redirect_wcschr in typeof.
941         [IS_IN (libc)] (__wcschr_power6): Likewise.
942         [IS_IN (libc)] (__wcschr_power7): Likewise.
943         [IS_IN (libc)] (__libc_wcschr): New.  Define with libc_ifunc
944         instead of wcschr.
945         [IS_IN (libc)] (wcschr): Undefine and define as weak alias of
946         __libc_wcschr.
947         [!IS_IN (libc)] (libc_hidden_def): Do not undefine and redefine.
948         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c (wcschr): Rename to
949         __wcschr and define as weak alias of __wcschr.  Use
950         libc_hidden_builtin_def.
951         * sysdeps/x86_64/wcschr.S (wcschr): Rename to __wcschr and define
952         as weak alias of __wcschr.  Use libc_hidden_weak.
953         * time/alt_digit.c (_nl_get_walt_digit): Use __wcschr instead of
954         wcschr.
955         * time/era.c (_nl_init_era_entries): Likewise.
956         * conform/Makefile (test-xfail-ISO/time.h/linknamespace): Remove
957         variable.
958         (test-xfail-XPG3/time.h/linknamespace): Likewise.
959         (test-xfail-XPG4/time.h/linknamespace): Likewise.
960
961 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
962
963         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
964         format for long int variable.
965
966 2014-12-10  Anders Kaseorg  <andersk@MIT.EDU>
967
968         [BZ #10672]
969         * manual/search.texi: (Array Sort Function): Remove claim how to make
970         qsort stable.
971
972 2014-12-10  Andreas Schwab  <schwab@suse.de>
973
974         [BZ #12847]
975         * sysdeps/nptl/fork.c (fresetlockfiles): Skip files with
976         user-controlled locks.
977
978 2014-12-10  Richard Earnshaw  <rearnsha@arm.com>
979
980         * sysdeps/aarch64/strchrnul.S (vrepmask): Use a call-clobbered
981         register.
982
983 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
984
985         * configure.ac (--disable-werror): New configure option.
986         (enable_werror): New AC_SUBST.
987         * configure: Regenerated.
988         * config.make.in (enable-werror): New variable.
989         * Makeconfig [$(enable-werror) = yes] (+gccwarn): Add -Werror
990         -Wno-error=undef.
991         (+gccwarn-c): Do not use -Werror=implicit-function-declaration.
992         * manual/install.texi (Configuring and compiling): Document
993         --disable-werror.
994         * INSTALL: Regenerated.
995         * debug/Makefile (CFLAGS-tst-chk1.c): Add -Wno-error.
996         (CFLAGS-tst-chk2.c): Likewise.
997         (CFLAGS-tst-chk3.c): Likewise.
998         (CFLAGS-tst-chk4.cc): Likewise.
999         (CFLAGS-tst-chk5.cc): Likewise.
1000         (CFLAGS-tst-chk6.cc): Likewise.
1001         (CFLAGS-tst-lfschk1.c): Likewise.
1002         (CFLAGS-tst-lfschk2.c): Likewise.
1003         (CFLAGS-tst-lfschk3.c): Likewise.
1004         (CFLAGS-tst-lfschk4.cc): Likewise.
1005         (CFLAGS-tst-lfschk5.cc): Likewise.
1006         (CFLAGS-tst-lfschk6.cc): Likewise.
1007
1008         * stdio-common/tst-printfsz.c: Include <libc-internal.h>.
1009         (main): Disable -Wdeprecated-declarations around calls to
1010         register_printf_function.
1011
1012         * stdio-common/tst-unlockedio.c: Include <libc-internal.h>.
1013         (do_test): Disable -Wdiv-by-zero around some calls to
1014         fwrite_unlocked and fread_unlocked.
1015
1016         * include/libc-internal.h (DIAG_PUSH_NEEDS_COMMENT): New macro.
1017         (DIAG_POP_NEEDS_COMMENT): Likewise.
1018         (_DIAG_STR1): Likewise.
1019         (_DIAG_STR): Likewise.
1020         (DIAG_IGNORE_NEEDS_COMMENT): Likewise.
1021         * stdio-common/bug21.c: Include <libc-internal.h>.
1022         (do_test): Disable -Wformat around call to sscanf.
1023         * stdio-common/scanf14.c: Include <libc-internal.h>.
1024         (main): Disable -Wformat around some calls to scanf functions.
1025
1026 2014-12-09  Torvald Riegel  <triegel@redhat.com>
1027
1028         * sysdeps/unix/sysv/linux/sh/pthread_once.S: Remove file.
1029
1030 2014-12-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1031
1032         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix wide-character
1033         stack variable alignment.
1034
1035 2014-12-06  Joseph Myers  <joseph@codesourcery.com>
1036
1037         [BZ #17682]
1038         * resource/Versions (libc): Add __getrlimit at GLIBC_PRIVATE.
1039         * resource/getrlimit.c (__getrlimit): Use libc_hidden_def.
1040         * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
1041         * include/sys/resource.h (__getrlimit): Use libc_hidden_proto.
1042         * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Use
1043         __getrlimit instead of getrlimit.
1044         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Use
1045         __gettimeofday instead of gettimeofday.
1046         * nptl/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
1047         Likewise.
1048         * nptl/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
1049         Likewise.
1050         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
1051         * conform/Makefile (test-xfail-POSIX2008/aio.h/linknamespace):
1052         Remove variable.
1053         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
1054         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
1055
1056 2014-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1057
1058         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix buffer overrun
1059         for wide-character tests.
1060
1061 2014-12-04  Roland McGrath  <roland@hack.frob.com>
1062
1063         * io/openat64.c: #include <libc-internal.h>
1064         (__openat64): Prototypify.  Use ignore_value on MODE.
1065         * io/openat.c: Likewise.
1066         * misc/reboot.c: #include <libc-internal.h>
1067         (reboot): Prototypify.  Use ignore_value on HOWTO.
1068         * misc/ptrace.c: #include <libc-internal.h>
1069         (ptrace): Prototypify.  Use ignore_value for va_arg'd parameters.
1070
1071 2014-12-04  Joseph Myers  <joseph@codesourcery.com>
1072
1073         * conform/list-header-symbols.pl (%extra_syms): Add h_errno for
1074         XPG4, UNIX98 and XOPEN2K.
1075         * conform/Makefile (test-xfail-XOPEN2K/grp.h/linknamespace):
1076         Remove variable.
1077         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
1078
1079 2014-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
1080
1081         * libio/fileops.c: Use ISO C style for function definitions.
1082         * libio/iofopen.c: Likewise.
1083         * libio/wfileops.c: Likewise.
1084
1085         [BZ #17653]
1086         * libio/fileops.c (_IO_new_file_underflow): Unset cached
1087         offset on EOF.
1088         * libio/wfileops.c (_IO_wfile_underflow): Likewise.
1089         * libio/tst-ftell-active-handler.c (fgets_func_t): New type.
1090         (fgets_func): Function pointer to fgets and fgetws.
1091         (do_ftell_test): Add test to verify ftell value after read
1092         EOF.
1093         (do_test): Set fgets_func.
1094
1095         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Add
1096         O_TRUNC flag for w and w+ modes.
1097         (do_rewind_test): Likewise.
1098         (do_ftell_test): Likewise.
1099         (do_write_test): Likewise.
1100
1101         [BZ #17647]
1102         * libio/fileops.c (do_ftell): Seek only when there are
1103         unflushed writes.
1104         * libio/wfileops.c (do_ftell_wide): Likewise.
1105         * libio/tst-ftell-active-handler.c (do_ftruncate_test): New
1106         test case.
1107         (do_one_test): Call it.
1108
1109 2014-12-03  Joseph Myers  <joseph@codesourcery.com>
1110
1111         * conform/list-header-symbols.pl (%extra_syms): Add getdate_err
1112         for XPG4, UNIX98, XOPEN2K and XOPEN2K8.
1113         * conform/Makefile (test-xfail-XOPEN2K/pthread.h/linknamespace):
1114         Remove variable.
1115         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
1116         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
1117         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
1118
1119 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
1120
1121         * conform/Makefile (test-xfail-XOPEN2K/aio.h/linknamespace):
1122         Remove variable.
1123         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
1124
1125         [BZ #17668]
1126         * inet/ifaddrs.c (getifaddrs): Rename to __getifaddrs and define
1127         as weak alias of __getifaddrs.  Use libc_hidden_weak.
1128         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1129         __freeifaddrs.  Use libc_hidden_weak.
1130         * sysdeps/gnu/ifaddrs.c (getifaddrs): Rename to __getifaddrs and
1131         define as weak alias of __getifaddrs.  Use libc_hidden_weak.
1132         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1133         __freeifaddrs.  Use libc_hidden_weak.
1134         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Rename to
1135         __getifaddrs and define as weak alias of __getifaddrs.  Use
1136         libc_hidden_weak.
1137         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1138         __freeifaddrs.  Use libc_hidden_weak.
1139         * conform/Makefile (test-xfail-XOPEN2K/net/if.h/linknamespace):
1140         Remove variable.
1141         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
1142         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
1143
1144 2014-12-02  Petar Jovanovic  <petar.jovanovic@rt-rk.com>
1145
1146         [BZ #17601]
1147         * sysdeps/mips/start.S (__start): Use indirect jump to call
1148         __libc_start_main.
1149
1150 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
1151
1152         * nptl/tst-stack4.c (dso_process): Use int not uintptr_t for t.
1153
1154         * nptl/tst-mutex1.c: Include <stdbool.h>.
1155         [!ATTR] (ATTR_NULL): New macro.
1156         (do_test): Test !ATTR_NULL instead of ATTR != NULL.
1157         * nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
1158         * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
1159
1160         * posix/tst-getopt_long1.c (do_test): Cast elements of argv array
1161         to char *.
1162
1163         [BZ #17665]
1164         * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
1165         Change conditional to [__USE_MISC].
1166
1167         [BZ #17664]
1168         * misc/mntent_r.c (__getmntent_r): Use __fgets_unlocked instead of
1169         fgets_unlocked.
1170         * resolv/res_hconf.c [IS_IN (libc)] (fgets_unlocked): Define to
1171         __fgets_unlocked.
1172         * resolv/res_init.c (__res_vinit): Use __fgets_unlocked instead of
1173         fgets_unlocked.
1174         * conform/Makefile (test-xfail-XPG4/sys/statvfs.h/linknamespace):
1175         Remove variable.
1176         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
1177         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
1178         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
1179         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
1180         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
1181         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
1182         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
1183         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
1184         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
1185
1186         * elf/tst-unique4lib.cc (b): Mark with __attribute__ ((used)).
1187
1188 2014-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1189
1190         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1191         Remove strpbrk objects.
1192         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1193         (__libc_ifunc_impl_list): Remove strpbrk implementation.
1194         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: Remove file.
1195         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Remove file.
1196         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: Remove file.
1197         * sysdeps/powerpc/powerpc64/strpbrk.S: New file.
1198
1199         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1200         Remove strcspn objects.
1201         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1202         (__libc_ifunc_impl_list): Remove strcspn implementation.
1203         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: Remove file.
1204         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Remove file.
1205         * sysdeps/powerpc/powerpc64/power7/strcspn.S: Remove file.
1206         * sysdeps/powerpc/powerpc64/strcspn.S: New file.
1207
1208         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1209         Remove strspn objetcs.
1210         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1211         (__libc_ifunc_impl_list): Remove strspn implementation.
1212         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: Remove file.
1213         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
1214         * sysdeps/powerpc/powerpc64/power7/strspn.S: Remove file.
1215         * sysdeps/powerpc/powerpc64/strspn.S: New file.
1216
1217 2014-12-01  James Lemke  <jwlemke@codesourcery.com>
1218
1219         [BZ #17581]
1220         * malloc/hooks.c
1221         (mem2mem_check): Add a terminator to the chain of checking blocks.
1222         (malloc_check_get_size): Use it here.
1223         (mem2chunk_check): Ditto.
1224
1225 2014-12-01  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
1226
1227         * sysdeps/powerpc/powerpc64/strtok.S: New file.
1228         * sysdeps/powerpc/powerpc64/strtok_r.S: New file.
1229
1230 2014-11-29  Carlos O'Donell  <carlos@redhat.com>
1231
1232         * bits/ioctl-types.h: Indent preprocessor directives correctly.
1233
1234         * nptl/nptl-init.c: Include libc-internal.h.
1235         (__pthread_initialize_minimal_internal): Use ROUND_UP.
1236
1237         * elf/ldconfig.c (search_dir): Expand comment.
1238
1239 2014-11-29  Joseph Myers  <joseph@codesourcery.com>
1240
1241         * conform/Makefile (linknamespace-symlist-stdlibs-base): New
1242         variable.
1243         (linknamespace-symlist-stdlibs-tests): Likewise.
1244         (tests-special): Append $(linknamespace-symlist-stdlibs-tests)
1245         instead of $(objpfx)symlist-stdlibs.
1246         (linknamespace-libs-isoc): New variable.
1247         (linknamespace-libs): Use $(linknamespace-libs-isoc).
1248         (linknamespace-libs-ISO): New variable.
1249         (linknamespace-libs-ISO99): Likewise.
1250         (linknamespace-libs-ISO11): Likewise.
1251         (linknamespace-libs-XPG3): Likewise.
1252         (linknamespace-libs-XPG4): Likewise.
1253         (linknamespace-libs-POSIX): Likewise.
1254         (linknamespace-libs-UNIX98): Likewise.
1255         (linknamespace-libs-XOPEN2K): Likewise.
1256         (linknamespace-libs-POSIX2008): Likewise.
1257         (linknamespace-libs-XOPEN2K8): Likewise.
1258         ($(objpfx)symlist-stdlibs): Replace by
1259         $(linknamespace-symlist-stdlibs-tests).  Use
1260         $(linknamespace-libs-$*) as set of libraries.
1261         ($(linknamespace-header-tests)): Update dependencies.  Use
1262         $(objpfx)symlist-stdlibs-$$std for --libsyms argument.
1263         (test-xfail-XPG4/sys/mman.h/linknamespace): Remove.
1264         * conform/linknamespace.pl: Remove comment about considering
1265         definitions of symbols from irrelevant libraries.
1266
1267 2014-11-28  H.J. Lu  <hongjiu.lu@intel.com>
1268
1269         [BZ #13862]
1270         * elf/dl-tls.c: Include <atomic.h>.
1271         (oom): Remove #ifdef SHARED/#endif.
1272         (_dl_static_dtv, _dl_initial_dtv): Moved before ...
1273         (_dl_resize_dtv): This.  Extracted from _dl_update_slotinfo.
1274         (_dl_allocate_tls_init): Resize DTV if the current DTV isn't
1275         big enough.
1276         (_dl_update_slotinfo): Call _dl_resize_dtv to resize DTV.
1277         * nptl/Makefile (tests): Add tst-stack4.
1278         (modules-names): Add tst-stack4mod.
1279         ($(objpfx)tst-stack4): New.
1280         (tst-stack4mod.sos): Likewise.
1281         ($(objpfx)tst-stack4.out): Likewise.
1282         ($(tst-stack4mod.sos)): Likewise.
1283         (clean): Likewise.
1284         * nptl/tst-stack4.c: New file.
1285         * nptl/tst-stack4mod.c: Likewise.
1286
1287 2014-11-27  J. Brown  <jb999@gmx.de>
1288
1289         * sysdeps/x86/bits/string.h: Add recent CPUs.
1290
1291 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
1292
1293         * misc/tst-pselect.c (do_test): Use sigprocmask instead of
1294         sigblock.
1295
1296         * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
1297         feof.
1298
1299         * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
1300         variable.
1301
1302 2014-11-27  Stefan Liebler  <stli@linux.vnet.ibm.com>
1303
1304         * nscd/connections.c: Include libc-internal.h because of macro
1305         usage ignore_value.
1306
1307 2014-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1308
1309         * string/bits/string3.h (__warn_memset_zero_len): Don't
1310         declare for gcc newer than 5.0.
1311         (memset): Don't test for zero-length __LEN for gcc newer than
1312         5.0.
1313
1314 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
1315
1316         * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
1317         size_t for %zu format.
1318
1319         * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
1320         difference, not %ju.
1321
1322 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
1323
1324         * include/libc-internal.h (ignore_value): New macro.
1325         * nscd/connections.c (restart): Wrap calls to setuid and setgid
1326         with ignore_value.
1327
1328         * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
1329         definition.
1330
1331         * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
1332         pthread_cleanup_push to void *.
1333
1334         * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
1335         Undefine.
1336
1337         [BZ #16619]
1338         [BZ #16740]
1339         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
1340         instead of 1L << 52.
1341
1342         * libio/bug-rewind.c (do_test): Check fwscanf return values.
1343         * libio/bug-rewind2.c (do_test): Likewise.
1344
1345         * debug/test-stpcpy_chk-ifunc.c: Remove file.
1346         * debug/test-strcpy_chk-ifunc.c: Likewise.
1347         * wcsmbs/test-wcschr-ifunc.c: Likewise.
1348         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
1349         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
1350         * wcsmbs/test-wcslen-ifunc.c: Likewise.
1351         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
1352         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
1353         * Rules [$(multi-arch) = no] (tests): Do not filter out
1354         $(tests-ifunc).
1355         [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
1356         * debug/Makefile (tests-ifunc): Remove variable.
1357         (tests): Do not add $(tests-ifunc).
1358         * wcsmbs/Makefile (tests-ifunc): Remove variable.
1359         (tests): Do not add $(tests-ifunc).
1360         * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
1361         [TEST_IFUNC]: Remove conditionals.
1362         * string/test-string.h (TEST_IFUNC): Remove macro.
1363         [TEST_IFUNC]: Remove conditionals.
1364
1365         * string/test-strchr.c [!WIDE] (L): New macro.
1366         [WIDE] (L): Likewise.
1367         (check1): Use CHAR instead of char.  Use L on string and character
1368         constants.
1369
1370 2014-11-26  Adhemerval Zanella  <azanella@linux.ibm.com>
1371
1372         * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
1373         tests.
1374         * sysdeps/powerpc/bits/atomic.h
1375         (__arch_atomic_exchange_and_add_32_acq): Add definition.
1376         (__arch_atomic_exchange_and_add_32_rel): Likewise.
1377         (atomic_exchange_and_add_acq): Likewise.
1378         (atomic_exchange_and_add_rel): Likewise.
1379         * sysdeps/powerpc/powerpc32/bits/atomic.h
1380         (__arch_atomic_exchange_and_add_64_acq): Add definition.
1381         (__arch_atomic_exchange_and_add_64_rel): Likewise.
1382         * sysdeps/powerpc/powerpc64/bits/atomic.h
1383         (__arch_atomic_exchange_and_add_64_acq): Add definition.
1384         (__arch_atomic_exchange_and_add_64_rel): Likewise.
1385
1386 2014-11-26  Torvald Riegel  <triegel@redhat.com>
1387
1388         * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
1389         Change synchronization of __sched_fifo_min_prio and
1390         __sched_fifo_max_prio.
1391         * nptl/pthread_mutexattr_getprioceiling.c
1392         (pthread_mutexattr_getprioceiling): Likewise.
1393         * nptl/pthread_mutexattr_setprioceiling.c
1394         (pthread_mutexattr_setprioceiling): Likewise.
1395         * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
1396         * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
1397         Likewise.
1398
1399 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
1400
1401         * setjmp/jmpbug.c (test): Make foo volatile and cast it to
1402         void.
1403
1404 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
1405
1406         * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
1407         third argument const.
1408
1409 2014-11-25  Paul Eggert  <eggert@cs.ucla.edu>
1410
1411         fnmatch: work around GCC compiler warning bug with uninit var
1412         * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
1413         This works around a bug with x86-64 GCC 4.9.2 and earlier
1414         where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
1415         "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
1416         used uninitialized in this function [-Wmaybe-uninitialized]".
1417
1418 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
1419
1420         * posix/bug-regex31.c (main): Return RES not 0.
1421
1422 2014-11-25  Anton Blanchard <anton@samba.org>
1423
1424         * sysdeps/powerpc/bits/atomic.h
1425         (__arch_compare_and_exchange_bool_64_rel): Load from mem.
1426
1427 2014-11-24  Sterling Augustine  <saugustine@google.com>
1428
1429         * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
1430
1431 2014-11-24  Ryan Cumming  <etaoins@gmail.com>
1432
1433         [BZ #17608]
1434         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
1435
1436 2014-11-24  Joseph Myers  <joseph@codesourcery.com>
1437
1438         [BZ #17633]
1439         * stdio-common/perror.c (perror): Call __fileno instead of fileno.
1440         * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
1441         variable.
1442         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
1443         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
1444
1445 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
1446
1447         * string/strncpy.c (strncpy): Improve performance by using memset.
1448
1449 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
1450
1451         * string/strcpy.c (strcpy):
1452         Improve performance by using strlen and memcpy.
1453
1454 2014-11-24  Leonhard Holz  <leonhard.holz@web.de>
1455
1456         * string/strcoll_l.c (get_next_seq): __always_inline.
1457         * string/strcoll_l.c (do_compare): __always_inline.
1458
1459 2014-11-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1460
1461         * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
1462         defined.
1463         * include/mqueue.h: Likewise.
1464         * include/stdlib.h: Likewise.
1465
1466         * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
1467         (get_null_defines): Adjust.
1468         * sunrpc/Makefile: Adjust comment.
1469         * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
1470         * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
1471         (CFLAGS-interp.c): Likewise.
1472         (CFLAGS-ldconfig.c): Likewise.
1473         (CPPFLAGS-.os): Likewise.
1474         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
1475         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
1476         * extra-modules.mk (extra-modules.mk): Likewise.
1477         * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
1478         * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
1479         * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
1480         * nscd/Makefile (CPPFLAGS-nscd): Likewise.
1481         * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
1482         * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
1483         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
1484         * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
1485         * iconvdata/Makefile (CPPFLAGS): Likewise.
1486         (cpp-srcs-left): Add libof for all iconvdata routines.
1487         * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
1488         * include/assert.h: Likewise.
1489         * include/ctype.h: Likewise.
1490         * include/errno.h: Likewise.
1491         * include/libc-symbols.h: Likewise.
1492         * include/math.h: Likewise.
1493         * include/netdb.h: Likewise.
1494         * include/resolv.h: Likewise.
1495         * include/stdio.h: Likewise.
1496         * include/stdlib.h: Likewise.
1497         * include/string.h: Likewise.
1498         * include/sys/stat.h: Likewise.
1499         * include/wctype.h: Likewise.
1500         * intl/l10nflist.c: Likewise.
1501         * libidn/idn-stub.c: Likewise.
1502         * libio/libioP.h: Likewise.
1503         * nptl/libc_multiple_threads.c: Likewise.
1504         * nptl/pthreadP.h: Likewise.
1505         * posix/regex_internal.h: Likewise.
1506         * resolv/res_hconf.c: Likewise.
1507         * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
1508         * sysdeps/arm/memmove.S: Likewise.
1509         * sysdeps/arm/sysdep.h: Likewise.
1510         * sysdeps/generic/_itoa.h: Likewise.
1511         * sysdeps/generic/symbol-hacks.h: Likewise.
1512         * sysdeps/gnu/errlist.awk: Likewise.
1513         * sysdeps/gnu/errlist.c: Likewise.
1514         * sysdeps/i386/i586/memcpy.S: Likewise.
1515         * sysdeps/i386/i586/memset.S: Likewise.
1516         * sysdeps/i386/i686/memcpy.S: Likewise.
1517         * sysdeps/i386/i686/memmove.S: Likewise.
1518         * sysdeps/i386/i686/mempcpy.S: Likewise.
1519         * sysdeps/i386/i686/memset.S: Likewise.
1520         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
1521         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
1522         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
1523         * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
1524         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
1525         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
1526         * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
1527         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
1528         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
1529         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
1530         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
1531         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
1532         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
1533         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
1534         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
1535         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
1536         * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
1537         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
1538         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
1539         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
1540         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
1541         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
1542         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
1543         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
1544         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
1545         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
1546         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
1547         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
1548         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
1549         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
1550         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
1551         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
1552         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
1553         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
1554         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
1555         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
1556         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
1557         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
1558         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
1559         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
1560         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
1561         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
1562         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
1563         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
1564         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
1565         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
1566         * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
1567         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
1568         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
1569         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
1570         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
1571         * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
1572         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
1573         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
1574         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
1575         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
1576         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
1577         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
1578         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
1579         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
1580         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
1581         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
1582         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
1583         * sysdeps/nptl/bits/libc-lock.h: Likewise.
1584         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
1585         * sysdeps/nptl/bits/stdio-lock.h: Likewise.
1586         * sysdeps/posix/closedir.c: Likewise.
1587         * sysdeps/posix/opendir.c: Likewise.
1588         * sysdeps/posix/readdir.c: Likewise.
1589         * sysdeps/posix/rewinddir.c: Likewise.
1590         * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
1591         * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
1592         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
1593         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
1594         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
1595         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
1596         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
1597         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
1598         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
1599         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
1600         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
1601         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
1602         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
1603         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
1604         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
1605         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
1606         * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
1607         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
1608         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
1609         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
1610         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
1611         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
1612         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
1613         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
1614         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
1615         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
1616         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
1617         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
1618         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
1619         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
1620         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
1621         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
1622         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
1623         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
1624         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
1625         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
1626         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
1627         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
1628         * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
1629         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
1630         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
1631         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
1632         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
1633         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
1634         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
1635         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
1636         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
1637         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
1638         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
1639         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
1640         * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
1641         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
1642         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
1643         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
1644         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
1645         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
1646         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
1647         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
1648         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
1649         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
1650         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
1651         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
1652         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
1653         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
1654         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
1655         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
1656         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
1657         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
1658         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
1659         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
1660         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
1661         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
1662         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
1663         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
1664         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
1665         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
1666         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
1667         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
1668         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
1669         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
1670         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
1671         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
1672         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
1673         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
1674         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
1675         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
1676         * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
1677         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
1678         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
1679         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
1680         * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
1681         * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
1682         * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
1683         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
1684         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
1685         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
1686         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
1687         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
1688         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
1689         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
1690         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
1691         * sysdeps/unix/alpha/sysdep.S: Likewise.
1692         * sysdeps/unix/alpha/sysdep.h: Likewise.
1693         * sysdeps/unix/make-syscalls.sh: Likewise.
1694         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1695         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1696         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1697         * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
1698         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1699         * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
1700         * sysdeps/unix/sysv/linux/getpid.c: Likewise.
1701         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
1702         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1703         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
1704         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
1705         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1706         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1707         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
1708         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1709         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
1710         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1711         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
1712         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
1713         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1714         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
1715         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
1716         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1717         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1718         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1719         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1720         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
1721         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
1722         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
1723         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
1724         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
1725         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1726         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
1727         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
1728         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
1729         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1730         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1731         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1732         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
1733         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
1734         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
1735         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1736         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
1737         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
1738         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
1739         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1740         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
1741         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
1742         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1743         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
1744         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
1745         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1746         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1747         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1748         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
1749         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
1750         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1751         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1752         * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
1753         * sysdeps/x86_64/memcpy.S: Likewise.
1754         * sysdeps/x86_64/memmove.c: Likewise.
1755         * sysdeps/x86_64/memset.S: Likewise.
1756         * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
1757         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
1758         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
1759         * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
1760         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
1761         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
1762         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
1763         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
1764         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
1765         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
1766         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
1767         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
1768         * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
1769         * sysdeps/x86_64/multiarch/memset.S: Likewise.
1770         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
1771         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
1772         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
1773         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
1774         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
1775         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
1776         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
1777         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
1778         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
1779         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
1780         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
1781         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
1782         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
1783         * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
1784         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
1785         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
1786         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
1787         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
1788         * sysdeps/x86_64/strcmp.S: Likewise.
1789
1790         * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
1791
1792         * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
1793         * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
1794         * elf/rtld-Rules: Likewise.
1795         * elf/setup-vdso.h: Likewise.
1796         * include/assert.h: Likewise.
1797         * include/bits/stdlib-float.h: Likewise.
1798         * include/errno.h: Likewise.
1799         * include/sys/stat.h: Likewise.
1800         * include/unistd.h: Likewise.
1801         * sysdeps/aarch64/setjmp.S: Likewise.
1802         * sysdeps/alpha/setjmp.S: Likewise.
1803         * sysdeps/arm/__longjmp.S: Likewise.
1804         * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
1805         * sysdeps/arm/setjmp.S: Likewise.
1806         * sysdeps/arm/sysdep.h: Likewise.
1807         * sysdeps/generic/_itoa.h: Likewise.
1808         * sysdeps/generic/dl-sysdep.h: Likewise.
1809         * sysdeps/generic/ldsodefs.h: Likewise.
1810         * sysdeps/i386/dl-tls.h: Likewise.
1811         * sysdeps/i386/setjmp.S: Likewise.
1812         * sysdeps/m68k/setjmp.c: Likewise.
1813         * sysdeps/mach/hurd/dl-execstack.c: Likewise.
1814         * sysdeps/mach/hurd/opendir.c: Likewise.
1815         * sysdeps/posix/getcwd.c: Likewise.
1816         * sysdeps/posix/opendir.c: Likewise.
1817         * sysdeps/posix/profil.c: Likewise.
1818         * sysdeps/powerpc/dl-procinfo.h: Likewise.
1819         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
1820         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
1821         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
1822         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
1823         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
1824         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
1825         * sysdeps/s390/dl-tls.h: Likewise.
1826         * sysdeps/s390/s390-32/setjmp.S: Likewise.
1827         * sysdeps/s390/s390-64/setjmp.S: Likewise.
1828         * sysdeps/sh/sh3/setjmp.S: Likewise.
1829         * sysdeps/sh/sh4/setjmp.S: Likewise.
1830         * sysdeps/unix/alpha/sysdep.h: Likewise.
1831         * sysdeps/unix/arm/sysdep.S: Likewise.
1832         * sysdeps/unix/i386/sysdep.S: Likewise.
1833         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1834         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
1835         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
1836         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
1837         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1838         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
1839         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
1840         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1841         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
1842         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
1843         * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
1844         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
1845         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
1846         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
1847         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
1848         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
1849         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
1850         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1851         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
1852         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
1853         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
1854         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
1855         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
1856         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
1857         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1858         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
1859         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1860         * sysdeps/unix/x86_64/sysdep.S: Likewise.
1861         * sysdeps/x86_64/setjmp.S: Likewise.
1862
1863         * include/math.h: Use IS_IN instead of IS_IN_libm.
1864         * sysdeps/alpha/fpu/s_copysign.c: Likewise.
1865         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
1866         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
1867         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
1868         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
1869         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
1870         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
1871         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
1872         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
1873         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
1874         * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
1875         * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
1876         * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
1877         * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
1878         * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
1879         * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
1880         * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
1881         * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
1882         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
1883         * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
1884         * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
1885         * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
1886         * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
1887         * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
1888         * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
1889         * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
1890         * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
1891         * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
1892         * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
1893         * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
1894         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
1895         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
1896         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
1897         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
1898         Likewise.
1899         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
1900         Likewise.
1901         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
1902         Likewise.
1903         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
1904         Likewise.
1905         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
1906         Likewise.
1907         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
1908         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
1909         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
1910         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
1911         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
1912         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
1913         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
1914         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
1915         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
1916         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
1917         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
1918         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
1919         * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
1920         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
1921         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
1922         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
1923         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
1924         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
1925         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
1926         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
1927         * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
1928         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
1929         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
1930         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
1931         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
1932         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
1933         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
1934
1935         * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
1936         * nptl/pthreadP.h: Likewise.
1937         * nptl_db/structs.def: Likewise.
1938         * sysdeps/arm/sysdep.h: Likewise.
1939         * sysdeps/nptl/bits/libc-lock.h: Likewise.
1940         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
1941         * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
1942         * sysdeps/unix/alpha/sysdep.h: Likewise.
1943         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1944         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1945         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1946         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1947         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1948         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1949         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1950         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1951         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1952         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1953         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1954         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1955         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1956         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1957         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
1958         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
1959         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1960         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1961         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1962         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1963         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1964         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1965         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1966         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1967         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
1968         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1969
1970         * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
1971         * nptl/pthreadP.h: Likewise.
1972         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1973         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1974         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1975         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1976         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1977         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1978         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1979         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1980         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1981         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1982         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1983         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1984         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
1985         Likewise.
1986         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
1987         Likewise.
1988         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1989         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1990         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1991         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1992         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1993         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1994         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1995         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1996
1997         * dlfcn/dladdr.c: Use IS_IN.
1998         * dlfcn/dladdr1.c: Likewise.
1999         * dlfcn/dlclose.c: Likewise.
2000         * dlfcn/dlerror.c: Likewise.
2001         * dlfcn/dlinfo.c: Likewise.
2002         * dlfcn/dlmopen.c: Likewise.
2003         * dlfcn/dlopen.c: Likewise.
2004         * dlfcn/dlsym.c: Likewise.
2005         * dlfcn/dlvsym.c: Likewise.
2006
2007         * include/ifaddrs.h: Use IS_IN.
2008         * inet/check_pf.c: Likewise.
2009         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
2010         * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
2011
2012         * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
2013         IS_IN_ldconfig.
2014         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
2015         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
2016
2017         * include/shlib-compat.h [!NOT_IN_libc]: Remove.
2018         * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
2019         IS_IN (libc).
2020
2021         * elf/Makefile (libof-sotruss-lib): Set as extramodules.
2022
2023         * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
2024         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
2025         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
2026         * include/libc-symbols.h (IS_IN_LIB): New macro.
2027         * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
2028         * include/netdb.h: Likewise.
2029         * include/stap-probe.h: Remove all uses of IN_LIB.
2030
2031         * Makeconfig (module-cppflags-real): Define MODULE_NAME
2032         instead of IN_MODULE.
2033         * include/libc-symbols.h (IN_MODULE): Define using
2034         MODULE_NAME.
2035         (PASTE_NAME, PASTE_NAME1): New macros.
2036         * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
2037         of IN_LIB.
2038         (STAP_PROBE_ASM): Likewise.
2039
2040 2014-11-23  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2041
2042         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
2043         __mach_init in dlopened libc.
2044
2045 2014-11-22  Mike Frysinger  <vapier@gentoo.org>
2046
2047         * sysdeps/arm/preconfigure.ac: Delete EABI check.
2048         * sysdeps/arm/preconfigure: Regenerate.
2049
2050 2014-11-21  Roland McGrath  <roland@hack.frob.com>
2051
2052         * nptl/pthread_create.c (__pthread_create_2_1): Set
2053         ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
2054         when copying values from IATTR into PD.
2055
2056 2014-11-21  Will Newton  <will.newton@linaro.org>
2057             Andrew Pinski  <andrew.pinski@caviumnetworks.com>
2058
2059         * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
2060         Refactor inline-asm.  Also add comment.
2061
2062         * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
2063         ElfW macro instead of hardcoded Elf64 types.
2064         (la_aarch64_gnu_pltenter): Likewise.
2065         * sysdeps/aarch64/dl-machine.h
2066         (elf_machine_runtime_setup): Use ElfW(Addr).
2067
2068         * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
2069         R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
2070         R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
2071         R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
2072         R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
2073         (R_AARCH64_TLS_DTPMOD64): Rename to ..
2074         (R_AARCH64_TLS_DTPMOD): This.
2075         (R_AARCH64_TLS_DTPREL64): Rename to ...
2076         (R_AARCH64_TLS_DTPREL): This.
2077         (R_AARCH64_TLS_TPREL64): Rename to ...
2078         (R_AARCH64_TLS_TPREL): This.
2079         * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
2080         R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
2081         R_AARCH64_TLS_TPREL64.
2082         (elf_machine_rela): Likewise.
2083
2084 2014-11-21  Torvald Riegel  <triegel@redhat.com>
2085
2086         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
2087         by setting it to 0.  64b atomics are not supported currently.
2088
2089 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2090
2091         [BZ #16469]
2092         * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
2093         search domain names.
2094
2095 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2096
2097         [BZ #16469]
2098         * NEWS: Update.
2099         * resolv/res_query.c (__libc_res_nquerydomain): Retain
2100         trailing dot.
2101         * posix/tst-getaddrinfo5.c: New.
2102         * posix/Makefile (tests): Add it.
2103
2104 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2105
2106         [BZ #14498]
2107         * NEWS: Fixed.
2108         * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
2109         after parsing line but before break_if_match.
2110         * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
2111         if there is a protocol mismatch.
2112
2113 2014-11-21  Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
2114
2115         * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
2116         because the potential race is on the user-supplied stream.
2117
2118 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2119
2120         * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
2121         string literal if not passed a buffer.
2122         * manual/job.texi (ctermid): Update reasoning, note deviation
2123         from posix, suggest mtasurace when not passed a buffer, for
2124         future non-preliminary safety notes.
2125
2126 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2127
2128         * manual/users.texi (cuserid): Fix MT-Safety note for the case
2129         of not passing it a buffer.
2130         Reported by Peng Haitao.
2131
2132 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2133
2134         * manual/Makefile ($(objpfx)stamp-summary): Require
2135         check-safety.sh to pass.
2136         * manual/check-safety.sh: Wish for verification that every
2137         @deftypefn and @deftypefun is followed by a @safety remark.
2138
2139 2014-11-20  Roland McGrath  <roland@hack.frob.com>
2140
2141         * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
2142
2143         * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
2144         PTHREAD_CANCEL_ASYNCHRONOUS.
2145         * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
2146         send SIGCANCEL.
2147
2148         * nptl/default-sched.h: New file.
2149         * sysdeps/unix/sysv/linux/default-sched.h: New file.
2150         * nptl/pthread_create.c: Include it.
2151         (__pthread_create_2_1): Use collect_default_sched instead of making
2152         Linux syscalls here directly.
2153
2154 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2155
2156         * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
2157         __pthread_once): Use C11 atomics.
2158
2159 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2160
2161         * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
2162
2163 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2164
2165         * include/atomic.h (__atomic_link_error, __atomic_check_size,
2166         atomic_thread_fence_acquire, atomic_thread_fence_release,
2167         atomic_thread_fence_seq_cst, atomic_load_relaxed,
2168         atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
2169         atomic_compare_exchange_weak_relaxed,
2170         atomic_compare_exchange_weak_acquire,
2171         atomic_compare_exchange_weak_release,
2172         atomic_exchange_acquire, atomic_exchange_release,
2173         atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
2174         atomic_fetch_add_release, atomic_fetch_add_acq_rel,
2175         atomic_fetch_and_acquire,
2176         atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
2177
2178 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2179
2180         * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
2181         USE_ATOMIC_COMPILER_BUILTINS): Define.
2182         * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
2183         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2184         * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
2185         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2186         * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
2187         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2188         * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
2189         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2190         * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
2191         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2192         * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
2193         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2194         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
2195         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2196         * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
2197         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2198         * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
2199         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2200         * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
2201         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2202         * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
2203         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2204         * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
2205         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2206         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
2207         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2208         * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
2209         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2210         * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
2211         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2212         * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
2213         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2214         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
2215         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2216         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
2217         (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2218         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
2219         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2220         * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
2221         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2222
2223 2014-11-19  Roland McGrath  <roland@hack.frob.com>
2224
2225         * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
2226         the sched_priority value here.  It was already checked when the user
2227         called pthread_attr_setschedparam.
2228
2229         * nptl/tst-bad-schedattr.c: New file.
2230         * nptl/Makefile (tests): Add it.
2231
2232 2014-11-19  Carlos O'Donell  <carlos@redhat.com>
2233             Florian Weimer  <fweimer@redhat.com>
2234             Joseph Myers  <joseph@codesourcery.com>
2235             Adam Conrad  <adconrad@0c3.net>
2236             Andreas Schwab  <schwab@suse.de>
2237             Brooks  <bmoses@google.com>
2238
2239         [BZ #17625]
2240         * wordexp-test.c (__dso_handle): Add prototype.
2241         (__register_atfork): Likewise.
2242         (__app_register_atfork): New function.
2243         (registered_forks): New global.
2244         (register_fork): New function.
2245         (test_case): Add 3 new tests for WRDE_CMDSUB.
2246         (main): Call __app_register_atfork.
2247         (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
2248         fork count is non-zero fail the test.
2249         * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
2250         is set.
2251         (parse_dollars): Remove check for WRDE_NOCMD.
2252         (parse_dquote): Likewise.
2253
2254 2014-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
2255
2256         * Makeconfig (built-modules): List non-library modules to be
2257         built.
2258         (module-cppflags): Include libc-modules.h for
2259         everything except shlib-versions.v.i.
2260         (CPPFLAGS): Use it.
2261         (before-compile): Add libc-modules.h.
2262         ($(common-objpfx)libc-modules.h,
2263         $(common-objpfx)libc-modules.stmp): New targets.
2264         (common-generated): Add libc-modules.h and libc-modules.stmp.
2265         ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
2266         * include/libc-symbols.h: Don't include libc-modules.h.
2267         * include/libc-modules.h: Remove file.
2268         * scripts/gen-libc-modules.awk: New script to generate
2269         libc-modules.h.
2270         * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
2271         Depend on libc-modules.stmp.
2272
2273         * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
2274
2275         * Makeconfig (in-module): Get value of libof set for the
2276         translation unit.
2277         (CPPFLAGS): Use $(in-module).
2278         * Makerules: Don't suffix routine names for nonlib.
2279         * include/libc-modules.h: New file.
2280         * include/libc-symbols.h: Include libc-modules.h
2281         (IS_IN): New macro to replace IS_IN_* macros.
2282         * elf/Makefile: Set libof-* for each routine.
2283         * elf/rtld-Rules: Likewise.
2284         * extra-modules.mk: Likewise.
2285         * iconv/Makefile: Likewise.
2286         * iconvdata/Makefile: Likewise.
2287         * locale/Makefile: Likewise.
2288         * malloc/Makefile: Likewise.
2289         * nss/Makefile: Likewise.
2290         * sysdeps/gnu/Makefile: Likewise.
2291         * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
2292         * sysdeps/unix/sysv/linux/Makefile: Likewise.
2293         * sysdeps/s390/s390-64/Makefile: Likewise.
2294         * nscd/Makefile: Set libof-* for each routine.  Set CFLAGS and
2295         CPPFLAGS for nscd instead of nonlib.
2296
2297 2014-11-18  Roland McGrath  <roland@hack.frob.com>
2298
2299         * nptl/createthread.c: New file.
2300
2301         * nptl/createthread.c: Moved ...
2302         * sysdeps/unix/sysv/linux/createthread.c: ... here.
2303
2304         * nptl/createthread.c: Add proper top-line comment.
2305         (do_clone): Folded into ...
2306         (create_thread): ... here.  Take new arguments STOPPED_START and
2307         THREAD_RAN.  Always set PD->stopped_start to something here.  Don't
2308         increment __nptl_threads, do event-reporting logic, do
2309         CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
2310         here.  Set *THREAD_RAN after ARCH_CLONE call succeeds.  Don't do any
2311         resource cleanup if sched_setaffinity or sched_setscheduler fails,
2312         just send SIGCANCEL.
2313         * nptl/pthread_create.c: Forward-declare create_thread before
2314         including createthread.c.
2315         (start_thread): Use new macro START_THREAD_DEFN to replace defining
2316         declaration, and new macro START_THREAD_SELF to replace argument.
2317         Remove return statement.
2318         (report_thread_creation): New function.
2319         (__pthread_create_2_1): Use it.  Do TD_CREATE reporting,
2320         synchronization logic, and __nptl_nthreads increment here, around
2321         calling create_thread.  Do CHECK_THREAD_SYSINFO and initialize
2322         PD->parent_cancelhandling here, before create_thread.  When
2323         create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
2324         __deallocate_stack, and ENOMEM translation here.
2325
2326 2014-11-18  Joseph Myers  <joseph@codesourcery.com>
2327
2328         [BZ #17616]
2329         * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
2330         (mptwo): Rename to __mptwo.
2331         (__inv): Use __mptwo instead of mptwo.
2332         * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
2333         (mptwo): Rename to __mptwo.
2334         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
2335         of mpone and __mptwo instead of mptwo.
2336         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
2337         instead of mpone.
2338         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
2339         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
2340         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
2341         of mpone and __mptwo instead of mptwo.
2342         (__mpranred): Use __mpone instead of mpone.
2343         * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
2344         variable.
2345         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
2346         (test-xfail-ISO99/math.h/linknamespace): Likewise.
2347         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
2348         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
2349         (test-xfail-ISO11/math.h/linknamespace): Likewise.
2350         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
2351         (test-xfail-XPG3/math.h/linknamespace): Likewise.
2352         (test-xfail-XPG4/math.h/linknamespace): Likewise.
2353         (test-xfail-POSIX/math.h/linknamespace): Likewise.
2354         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
2355         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
2356         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
2357         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
2358         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
2359         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
2360         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
2361         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
2362         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
2363         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
2364
2365 2014-11-18  Tom de Vries  <tom@codesoucery.com>
2366
2367         * manual/signal.texi (Primitives Interrupted by Signals): In section,
2368         replace BSD Handler xref with BSD Signal Handling.
2369
2370 2014-11-17  Richard Henderson  <rth@redhat.com>
2371
2372         * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
2373         (_FP_PACK_RAW_2): Remove.
2374         (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
2375         (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
2376         (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
2377         (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
2378         * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
2379         * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
2380         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
2381         * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
2382         * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
2383         * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
2384         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
2385         * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
2386         * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
2387         * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
2388         * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
2389         * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
2390
2391 2014-11-14  Roland McGrath  <roland@hack.frob.com>
2392
2393         * signal/signal.h [__USE_MISC]
2394         (struct sigvec): Remove type.
2395         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
2396         (sigvec): Remove declaration.
2397         * sysdeps/posix/sigvec.c: Moved ...
2398         * signal/sigvec.c: ... here, replacing old file.
2399         (struct sigvec): New type, copied from old signal.h definition.
2400         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
2401         (__sigvec): Convert definition to prototype.
2402         (sigvec): Replace weak_alias with compat_symbol.
2403         * signal/Versions (libc: GLIBC_2.21): New version set.
2404         * include/signal.h: Remove __sigvec declaration.
2405         * sysdeps/unix/bsd/sigvec.c: Remove file.
2406         * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
2407         * manual/signal.texi (BSD Handler): Remove subsection.
2408         Move siginterrupt up to ...
2409         (BSD Signal Handling): ... here.  Mark it as XPG rather than BSD.
2410         (Blocking in BSD): Fold subsection into its parent.
2411         * NEWS: Mention sigvec removal.
2412
2413 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
2414
2415         * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
2416         (DLA_FMS): Make definition conditional only on [__FMA4__].
2417         [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
2418         definition.
2419
2420         * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
2421         Make definition conditional only on [PROF].
2422         [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
2423         definition.
2424         [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
2425         [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
2426
2427         * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
2428         !__GNUC__].
2429         * include/signal.h (__sigpause): Move declaration above call to
2430         libc_hidden_proto.
2431         * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
2432         variable.
2433         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
2434         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
2435
2436 2014-11-14  David S. Miller  <davem@davemloft.net>
2437
2438         * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
2439         Define before including <string/memcpy.c> and <string/mempcpy.c>.
2440
2441 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
2442
2443         * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
2444         * configure: Regenerated.
2445         * manual/install.texi (Tools for Compilation): Document a
2446         requirement of GCC 4.6 or later and that GCC 4.9 is the newest
2447         compiler verified to work.
2448         * INSTALL: Regenerated.
2449
2450         * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
2451         redeclare with asm name.
2452         [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
2453         * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
2454         including <string.h>.
2455         * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2456         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
2457         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2458         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
2459         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2460         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
2461         [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2462
2463 2014-11-13  Joseph Myers  <joseph@codesourcery.com>
2464
2465         * stdlib/strtol.c (__strtol): Use prototype definition.
2466
2467         [BZ #17594]
2468         * stdlib/strtol.c (SYM__): New macro.
2469         (SYM__1): Likewise.
2470         (__strtol): Likewise.
2471         (strtol): Rename to __strtol and define as weak alias of
2472         __strtol.  Use libc_hidden_weak.
2473
2474 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2475
2476         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
2477         Use numbered labels in inline assembly.
2478
2479 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2480
2481         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
2482         Add setjmp LIBC_PROBE.
2483         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
2484         Likewise.
2485         * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
2486         Add longjmp, longjmp_target LIBC_PROBE.
2487         * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
2488         Likewise.
2489
2490 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2491
2492         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
2493         Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
2494         to get rid of unused variable warning.
2495
2496 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2497
2498         * sysdeps/s390/s390-32/backtrace.c (__backtrace):
2499         Check for unwind_backtrace ==  NULL only in SHARED case.
2500         (__backchain_backtrace): Compile only in SHARED case.
2501         * sysdeps/s390/s390-64/backtrace.c (__backtrace):
2502         Likewise.
2503         (__backchain_backtrace): Declare as static.
2504
2505 2014-11-12  Roland McGrath  <roland@hack.frob.com>
2506
2507         * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
2508         (__libc_multiple_threads_ptr): Variable moved ...
2509         * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
2510
2511 2014-11-12  Joseph Myers  <joseph@codesourcery.com>
2512
2513         * conform/GlibcConform.pm: New file.
2514         * conform/conformtest.pl: Use GlibcConform module.
2515         * conform/linknamespace.pl: New file.
2516         * conform/list-header-symbols.pl: Likewise.
2517         * conform/Makefile (linknamespace-symlists-base): New variable.
2518         (linknamespace-symlists-tests): Likewise.
2519         (linknamespace-header-base): Likewise.
2520         (linknamespace-header-tests): Likewise.
2521         (tests-special): Add new tests.
2522         ($(linknamespace-symlists-tests)): New rule.
2523         (linknamespace-libs): New variable.
2524         ($(objpfx)symlist-stdlibs): New rule.
2525         ($(linknamespace-header-tests)): Likewise.
2526         (test-xfail-XPG3/varargs.h/linknamespace): New variable.
2527         (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
2528         (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
2529         (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
2530         (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
2531         (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
2532         (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
2533         (test-xfail-ISO/math.h/linknamespace): Likewise.
2534         (test-xfail-ISO/signal.h/linknamespace): Likewise.
2535         (test-xfail-ISO/stdio.h/linknamespace): Likewise.
2536         (test-xfail-ISO/time.h/linknamespace): Likewise.
2537         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
2538         (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
2539         (test-xfail-ISO99/math.h/linknamespace): Likewise.
2540         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
2541         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
2542         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
2543         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
2544         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
2545         (test-xfail-ISO11/math.h/linknamespace): Likewise.
2546         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
2547         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
2548         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
2549         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
2550         (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
2551         (test-xfail-XPG3/glob.h/linknamespace): Likewise.
2552         (test-xfail-XPG3/math.h/linknamespace): Likewise.
2553         (test-xfail-XPG3/regex.h/linknamespace): Likewise.
2554         (test-xfail-XPG3/search.h/linknamespace): Likewise.
2555         (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
2556         (test-xfail-XPG3/time.h/linknamespace): Likewise.
2557         (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
2558         (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
2559         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
2560         (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
2561         (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
2562         (test-xfail-XPG4/glob.h/linknamespace): Likewise.
2563         (test-xfail-XPG4/grp.h/linknamespace): Likewise.
2564         (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
2565         (test-xfail-XPG4/math.h/linknamespace): Likewise.
2566         (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
2567         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
2568         (test-xfail-XPG4/regex.h/linknamespace): Likewise.
2569         (test-xfail-XPG4/search.h/linknamespace): Likewise.
2570         (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
2571         (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
2572         (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
2573         (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
2574         (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
2575         (test-xfail-XPG4/time.h/linknamespace): Likewise.
2576         (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
2577         (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
2578         (test-xfail-POSIX/aio.h/linknamespace): Likewise.
2579         (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
2580         (test-xfail-POSIX/glob.h/linknamespace): Likewise.
2581         (test-xfail-POSIX/math.h/linknamespace): Likewise.
2582         (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
2583         (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
2584         (test-xfail-POSIX/regex.h/linknamespace): Likewise.
2585         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
2586         (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
2587         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
2588         (test-xfail-POSIX/time.h/linknamespace): Likewise.
2589         (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
2590         (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
2591         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
2592         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
2593         (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
2594         (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
2595         (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
2596         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
2597         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
2598         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
2599         (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
2600         (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
2601         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
2602         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
2603         (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
2604         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
2605         (test-xfail-UNIX98/search.h/linknamespace): Likewise.
2606         (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
2607         (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
2608         (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
2609         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
2610         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
2611         (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
2612         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
2613         (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
2614         (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
2615         (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
2616         (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
2617         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
2618         (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
2619         (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
2620         (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
2621         (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
2622         (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
2623         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
2624         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
2625         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
2626         (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
2627         (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
2628         (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
2629         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
2630         (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
2631         (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
2632         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
2633         (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
2634         (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
2635         (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
2636         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
2637         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
2638         (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
2639         (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
2640         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
2641         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
2642         (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
2643         (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
2644         (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
2645         (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
2646         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
2647         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
2648         (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
2649         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
2650         (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
2651         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
2652         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
2653         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
2654         (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
2655         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
2656         (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
2657         (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
2658         (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
2659         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
2660         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
2661         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
2662         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
2663         (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
2664         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
2665         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
2666         (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
2667         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
2668         (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
2669         (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
2670         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
2671         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
2672         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
2673         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
2674         (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
2675         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
2676         (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
2677         (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
2678         (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
2679         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
2680         (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
2681         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
2682         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
2683         (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
2684         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
2685         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
2686         (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
2687
2688         [BZ #17589]
2689         * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
2690         of fgets_unlocked.
2691
2692         [BZ #17585]
2693         * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
2694         (memmem): Rename to __memmem and define as weak alias of
2695         __memmem.  Use libc_hidden_weak.
2696         (__memmem): Use libc_hidden_def.
2697         * include/string.h (__memmem): Declare.  Use libc_hidden_proto.
2698         * locale/findlocale.c (valid_locale_name): Use __memmem instead of
2699         memmem.
2700
2701         [BZ #17582]
2702         * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
2703         (__fgets_unlocked): Add alias of _IO_fgets.  Use libc_hidden_def.
2704         * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
2705         and define as weak alias of __fgets_unlocked.  Use
2706         libc_hidden_weak.
2707         (__fgets_unlocked): Use libc_hidden_def.
2708         * include/stdio.h (__fgets_unlocked): Declare.  Use
2709         libc_hidden_proto.
2710         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
2711         __fgets_unlocked instead of fgets_unlocked.
2712         * sysdeps/unix/sysv/linux/alpha/getsysstats.c
2713         (GET_NPROCS_CONF_PARSER): Likewise.
2714         * sysdeps/unix/sysv/linux/sparc/getsysstats.c
2715         (GET_NPROCS_CONF_PARSER): Likewise.
2716
2717         [BZ #17574]
2718         * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
2719         weak alias of __wmemset.  Use libc_hidden_weak.
2720         (__wmemset): Use libc_hidden_def.
2721         * include/wchar.h (__wmemset): Declare.  Use libc_hidden_proto.
2722         * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
2723         of wmemset.
2724
2725         [BZ #17573]
2726         * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
2727         with asm name __mempcpy.
2728         [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
2729
2730         [BZ #17572]
2731         * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
2732         and define as weak alias of __rawmemchr.
2733         (__rawmemchr): Do not define as strong alias of rawmemchr.
2734
2735         [BZ #17571]
2736         * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
2737         alias of __qsort_r.
2738         (qsort): Call __qsort_r instead of qsort_r.
2739         * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
2740         (__qsort_r): Declare.  Call libc_hidden_proto.
2741         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
2742         instead of qsort_r.
2743         * nscd/gai.c (__qsort_r): Define to qsort_r.
2744         * posix/tst-rfc3484.c (__qsort_r): Likewise.
2745         * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
2746         * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
2747
2748         [BZ #17570]
2749         * malloc/malloc.c (malloc_info): Rename to __malloc_info and
2750         define as weak alias of __malloc_info.
2751
2752         [BZ #17584]
2753         * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
2754         as weak alias of __rewinddir.  Don't use libc_hidden_def.
2755         (__rewinddir): Use libc_hidden_def.
2756         * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
2757         as weak alias of __rewinddir.  Don't use libc_hidden_def.
2758         (__rewinddir): Use libc_hidden_def.
2759         * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
2760         weak alias of __rewinddir.  Don't use libc_hidden_def.
2761         (__rewinddir): Use libc_hidden_def.
2762         * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
2763         (__rewinddir): Use libc_hidden_proto.
2764         * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
2765         rewinddir.
2766         (__getcwd): Use __rewinddir instead of rewinddir.
2767
2768         [BZ #17583]
2769         * libio/fileno.c (fileno): Rename to __fileno and define as weak
2770         alias of __fileno.  Use libc_hidden_weak.
2771         (__fileno): Use libc_hidden_def.
2772         [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
2773         * libio/ftello.c (ftello): Rename to __ftello and define as weak
2774         alias of __ftello.
2775         [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
2776         __ftello.
2777         * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
2778         (__fread_unlocked): Define as strong alias of _IO_fread.  Use
2779         libc_hidden_def.
2780         (fread_unlocked): Don't use libc_hidden_ver.
2781         * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
2782         and define as weak alias of __fread_unlocked.  Don't use
2783         libc_hidden_def.
2784         (__fread_unlocked): Use libc_hidden_def.
2785         * include/stdio.h (__fileno): Declare.  Use libc_hidden_proto.
2786         (ftello): Don't use libc_hidden_proto.
2787         (__ftello): Declare.  Use libc_hidden_proto.
2788         (fread_unlocked): Don't use libc_hidden_proto.
2789         (__fread_unlocked): Declare.  Use libc_hidden_proto.
2790         * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
2791         and __ftello instead of fileno, fread_unlocked and ftello.
2792
2793 2012-11-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
2794
2795         * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
2796         GOT12.
2797         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
2798         Likewise.
2799         (_dl_start_user): Likewise.
2800         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
2801
2802 2014-11-12  Carlos O'Donell  <carlos@redhat.com>
2803             Siddhesh Poyarekar  <siddhesh@redhat.com>
2804
2805         * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
2806         Move argv and envp down instead of moving argc up.
2807         * sysdeps/s390/s390-32/dl-sysdep.h: New file.
2808
2809 2014-11-12  Leonhard Holz  <leonhard.holz@web.de>
2810
2811         [BZ #17506]
2812         * test-skeleton.c (main): Return successful if one of
2813         EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
2814         * string/tst-strcoll-overflow.c: Define expected status.
2815
2816 2014-11-12  Tatiana Udalova  <t.udalova@samsung.com>
2817
2818         [BZ #17475]
2819         * locale/iso-639.def: Define Bhili and Tulu language codes.
2820
2821 2014-11-11  Alan Hayward  <alan.hayward@arm.com>
2822
2823         * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
2824
2825 2014-11-10  Renlin Li  <Renlin.Li@arm.com>
2826
2827         [BZ #17555]
2828         * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
2829
2830 2014-11-10  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
2831
2832         * configure.ac: Updated check of minimal required version to
2833         2.22.
2834         * manual/install.texi (Tools for Compilation): Updated version
2835         number.
2836         * configure: Regenerated.
2837         * INSTALL: Likewise.
2838
2839 2014-11-07  Andreas Schwab  <schwab@linux-m68k.org>
2840
2841         * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
2842         __tls_get_addr.
2843
2844 2014-11-07  Joseph Myers  <joseph@codesourcery.com>
2845
2846         * include/sys/wait.h (__libc_waitpid): Remove declaration.
2847         * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
2848         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2849         libc_hidden_weak.
2850         (waitpid): Define as alias of __waitpid.
2851         * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
2852         __waitpid.
2853         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2854         libc_hidden_weak.
2855         (waitpid): Define as alias of __waitpid.
2856         * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
2857         __libc_waitpid alias.
2858         * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
2859         * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
2860         Likewise.
2861         * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
2862         * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
2863         * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
2864         alias.
2865         * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
2866         __waitpid.
2867         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2868         libc_hidden_weak.
2869         (waitpid): Define as alias of __waitpid.
2870
2871 2014-11-06  Carlos O'Donell  <carlos@redhat.com>
2872
2873         * manual/llio.texi: Add comment that write safety has been
2874         fixed in Linux.
2875
2876         * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
2877         (localplt-build-dso): Add elf/ld.so.
2878         * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
2879         i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
2880         and free for ld.so.
2881         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
2882         __libc_memalign, malloc, calloc, realloc, and free for ld.so.
2883         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
2884         Likewise.
2885         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
2886         Likewise.
2887         * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
2888         * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
2889         version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
2890         * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
2891         * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
2892         * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
2893         * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
2894         * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
2895         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
2896         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
2897         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
2898
2899 2014-11-05  Joseph Myers  <joseph@codesourcery.com>
2900
2901         [BZ #14132]
2902         * include/libc-symbols.h (INTUSE): Remove macro.
2903         (INTDEF): Likewise.
2904         (INTVARDEF): Likewise.
2905         (_INTVARDEF): Likewise.
2906         (INTDEF2): Likewise.
2907         (INTVARDEF2): Likewise.
2908         * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
2909         rtld_hidden_def instead of INTVARDEF.
2910         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
2911         (_dl_starting_up_internal): Remove declaration.
2912         (_dl_starting_up): Use rtld_hidden_proto.
2913         * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
2914         declaration.
2915         [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
2916         (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
2917         _dl_starting_up.
2918         * elf/dl-writev.h (_dl_writev): Likewise.
2919         * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
2920         (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
2921         _dl_starting_up_internal.
2922
2923 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2924
2925         * stdio-common/tst-fmemopen.c (do_test): Refactor to use
2926         test-skeleton.c.
2927
2928 2014-11-05  Will Newton  <will.newton@linaro.org>
2929
2930         * benchtests/Makefile: (bench-malloc): Add malloc thread
2931         scalability benchmark.
2932         * benchtests/bench-malloc-threads.c: New file.
2933
2934 2014-11-05  Richard Earnshaw  <rearnsha@arm.com>
2935
2936         * sysdeps/aarch64/strchrnul.S: New file.
2937
2938 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2939
2940         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
2941         definition.
2942         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
2943         Likwise.
2944         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
2945         Likewise.
2946         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
2947         Likewise.
2948         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
2949         Likewise.
2950         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
2951         Likewise.
2952
2953 2014-11-05  Arjun Shankar  <arjun.is@lostca.se>
2954
2955         * catgets/test-gencat.c: Use test-skeleton.c.
2956         * catgets/tst-catgets.c: Likewise.
2957         * csu/tst-empty.c: Likewise.
2958         * elf/tst-audit2.c: Likewise.
2959         * elf/tst-global1.c: Likewise.
2960         * elf/tst-pathopt.c: Likewise.
2961         * elf/tst-piemod1.c: Likewise.
2962         * elf/tst-tls10.c: Likewise.
2963         * elf/tst-tls11.c: Likewise.
2964         * elf/tst-tls12.c: Likewise.
2965         * gnulib/tst-gcc.c: Likewise.
2966         * iconvdata/tst-e2big.c: Likewise.
2967         * iconvdata/tst-loading.c: Likewise.
2968         * iconv/tst-iconv1.c: Likewise.
2969         * iconv/tst-iconv2.c: Likewise.
2970         * inet/test-inet6_opt.c: Likewise.
2971         * inet/tst-gethnm.c: Likewise.
2972         * inet/tst-network.c: Likewise.
2973         * inet/tst-ntoa.c: Likewise.
2974         * intl/tst-codeset.c: Likewise.
2975         * intl/tst-gettext2.c: Likewise.
2976         * intl/tst-gettext3.c: Likewise.
2977         * intl/tst-ngettext.c: Likewise.
2978         * intl/tst-translit.c: Likewise.
2979         * io/test-stat.c: Likewise.
2980         * libio/test-fmemopen.c: Likewise.
2981         * libio/tst-freopen.c: Likewise.
2982         * libio/tst-sscanf.c: Likewise.
2983         * libio/tst-ungetwc1.c: Likewise.
2984         * libio/tst-ungetwc2.c: Likewise.
2985         * libio/tst-widetext.c: Likewise.
2986         * localedata/tst-ctype.c: Likewise.
2987         * localedata/tst-digits.c: Likewise.
2988         * localedata/tst-leaks.c: Likewise.
2989         * localedata/tst-mbswcs1.c: Likewise.
2990         * localedata/tst-mbswcs2.c: Likewise.
2991         * localedata/tst-mbswcs3.c: Likewise.
2992         * localedata/tst-mbswcs4.c: Likewise.
2993         * localedata/tst-mbswcs5.c: Likewise.
2994         * localedata/tst-setlocale.c: Likewise.
2995         * localedata/tst-trans.c: Likewise.
2996         * localedata/tst-wctype.c: Likewise.
2997         * localedata/tst-xlocale1.c: Likewise.
2998         * login/tst-grantpt.c: Likewise.
2999         * malloc/tst-calloc.c: Likewise.
3000         * malloc/tst-malloc.c: Likewise.
3001         * malloc/tst-mallocstate.c: Likewise.
3002         * malloc/tst-mcheck.c: Likewise.
3003         * malloc/tst-mtrace.c: Likewise.
3004         * malloc/tst-obstack.c: Likewise.
3005         * math/atest-exp2.c: Likewise.
3006         * math/atest-exp.c: Likewise.
3007         * math/atest-sincos.c: Likewise.
3008         * math/test-matherr.c: Likewise.
3009         * math/test-misc.c: Likewise.
3010         * math/test-powl.c: Likewise.
3011         * math/tst-definitions.c: Likewise.
3012         * misc/tst-dirname.c: Likewise.
3013         * misc/tst-efgcvt.c: Likewise.
3014         * misc/tst-fdset.c: Likewise.
3015         * misc/tst-hsearch.c: Likewise.
3016         * misc/tst-mntent2.c: Likewise.
3017         * nptl/tst-sem7.c: Likewise.
3018         * nptl/tst-sem8.c: Likewise.
3019         * nptl/tst-sem9.c: Likewise.
3020         * nss/test-netdb.c: Likewise.
3021         * posix/tst-fnmatch.c: Likewise.
3022         * posix/tst-getlogin.c: Likewise.
3023         * posix/tst-gnuglob.c: Likewise.
3024         * posix/tst-mmap.c: Likewise.
3025         * pwd/tst-getpw.c: Likewise.
3026         * resolv/tst-inet_ntop.c: Likewise.
3027         * rt/tst-timer.c: Likewise.
3028         * stdio-common/test-fseek.c: Likewise.
3029         * stdio-common/test-popen.c: Likewise.
3030         * stdio-common/test-vfprintf.c: Likewise.
3031         * stdio-common/tst-cookie.c: Likewise.
3032         * stdio-common/tst-fileno.c: Likewise.
3033         * stdio-common/tst-gets.c: Likewise.
3034         * stdio-common/tst-obprintf.c: Likewise.
3035         * stdio-common/tst-perror.c: Likewise.
3036         * stdio-common/tst-sprintf2.c: Likewise.
3037         * stdio-common/tst-sprintf3.c: Likewise.
3038         * stdio-common/tst-sprintf.c: Likewise.
3039         * stdio-common/tst-swprintf.c: Likewise.
3040         * stdio-common/tst-tmpnam.c: Likewise.
3041         * stdio-common/tst-unbputc.c: Likewise.
3042         * stdio-common/tst-wc-printf.c: Likewise.
3043         * stdlib/tst-environ.c: Likewise.
3044         * stdlib/tst-fmtmsg.c: Likewise.
3045         * stdlib/tst-limits.c: Likewise.
3046         * stdlib/tst-rand48-2.c: Likewise.
3047         * stdlib/tst-rand48.c: Likewise.
3048         * stdlib/tst-random2.c: Likewise.
3049         * stdlib/tst-random.c: Likewise.
3050         * stdlib/tst-strtol.c: Likewise.
3051         * stdlib/tst-strtoll.c: Likewise.
3052         * stdlib/tst-tls-atexit.c: Likewise.
3053         * stdlib/tst-xpg-basename.c: Likewise.
3054         * string/test-ffs.c: Likewise.
3055         * string/tst-bswap.c: Likewise.
3056         * string/tst-inlcall.c: Likewise.
3057         * string/tst-strtok.c: Likewise.
3058         * string/tst-strxfrm.c: Likewise.
3059         * sysdeps/x86_64/tst-audit10.c: Likewise.
3060         * sysdeps/x86_64/tst-audit3.c: Likewise.
3061         * sysdeps/x86_64/tst-audit4.c: Likewise.
3062         * sysdeps/x86_64/tst-audit5.c: Likewise.
3063         * time/tst-ftime_l.c: Likewise.
3064         * time/tst-getdate.c: Likewise.
3065         * time/tst-mktime3.c: Likewise.
3066         * time/tst-mktime.c: Likewise.
3067         * time/tst-posixtz.c: Likewise.
3068         * time/tst-strptime2.c: Likewise.
3069         * time/tst-strptime3.c: Likewise.
3070         * wcsmbs/tst-btowc.c: Likewise.
3071         * wcsmbs/tst-mbrtowc.c: Likewise.
3072         * wcsmbs/tst-mbsrtowcs.c: Likewise.
3073         * wcsmbs/tst-wchar-h.c: Likewise.
3074         * wcsmbs/tst-wcpncpy.c: Likewise.
3075         * wcsmbs/tst-wcrtomb.c: Likewise.
3076         * wcsmbs/tst-wcsnlen.c: Likewise.
3077         * wcsmbs/tst-wcstof.c: Likewise.
3078
3079 2014-11-04  Joseph Myers  <joseph@codesourcery.com>
3080
3081         [BZ #14132]
3082         * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
3083         INTDEF.
3084         * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
3085         declaration.
3086         (_dl_mcount): Use rtld_hidden_proto.
3087         * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
3088         _dl_mcount.
3089         * elf/rtld.c (_rtld_global_ro): Likewise.
3090
3091         [BZ #14132]
3092         * elf/dl-init.c (_dl_init): Don't use INTDEF.
3093         * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
3094         of _dl_init_internal.
3095         * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
3096         * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
3097         * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
3098         * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
3099         * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
3100         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
3101         * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
3102         * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
3103         * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
3104         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
3105         * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
3106         * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
3107         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
3108         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
3109         * sysdeps/tile/dl-start.S (_start): Likewise.
3110         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
3111         * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
3112
3113         [BZ #14132]
3114         * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
3115         [IS_IN_rtld] (_dl_argv_internal): Do not declare.
3116         (rtld_progname): Make macro definition unconditional.
3117         * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
3118         INTDEF.
3119         (dlmopen_doit): Do not use INTUSE with _dl_argv.
3120         (dl_main): Likewise.
3121         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
3122         * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
3123         instead of _dl_argv_internal.
3124         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
3125         __GI__dl_argv instead of INTUSE(_dl_argv).
3126         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
3127         __GI__dl_argv instead of _dl_argv_internal.
3128
3129         * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
3130         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
3131         macro.
3132         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
3133         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
3134         New macro.
3135         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
3136         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
3137         macro.
3138         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
3139         * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
3140
3141 2014-11-04  Andreas Schwab  <schwab@suse.de>
3142
3143         * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
3144
3145 2014-11-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3146
3147         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
3148         mtvsrd instruction in binary form.
3149
3150 2014-11-03  Andreas Schwab  <schwab@suse.de>
3151
3152         [BZ #17522]
3153         * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
3154         for less than MB_LEN_MAX use a local buffer of that size.
3155         * libio/tst-fputws.c: New file.
3156         * libio/Makefile (tests): Add tst-fputws.
3157
3158 2014-11-01  Jose E. Marchesi  <jose.marchesi@oracle.com>
3159
3160         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
3161         the size of the fpu_fr.fpu_dregs[] array.
3162
3163 2014-11-01  Joseph Myers  <joseph@codesourcery.com>
3164
3165         * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
3166         (__nanosleep): Do not define as alias.
3167         (nanosleep): Define as alias of __nanosleep.
3168         * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
3169         __libc_nanosleep name.
3170
3171 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
3172
3173         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
3174         install.texi in comment.
3175
3176 2014-10-31  Torvald Riegel  <triegel@redhat.com>
3177
3178         * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
3179         * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
3180         ... add here and use lwsync or sync ...
3181         * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
3182         ... and add here using lwsync.
3183
3184 2014-10-31  Matthew Fortune  <matthew.fortune@imgtec.com>
3185
3186         * elf/dl-machine-reject-phdr.h: New file.
3187         * elf/dl-load.c: #include that.
3188         (open_verify): Call elf_machine_reject_phdr_p and ignore the file
3189         if that returned true.
3190
3191 2014-10-31  Roland McGrath  <roland@hack.frob.com>
3192
3193         [BZ #17496]
3194         * Makerules: Move gnu/lib-names.h generation chunk up, to right after
3195         gen-as-const-headers chunk.  Add a big scare comment after the last
3196         safe place to touch before-compile.
3197
3198 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
3199
3200         * manual/install.texi (Tools for Compilation): Update autoconf
3201         version requirements.
3202         * INSTALL: Regenerated.
3203
3204         * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
3205         * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
3206         (__libc_pselect): Likewise.
3207
3208         [BZ #14138]
3209         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
3210         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
3211         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
3212         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
3213
3214 2014-10-31  Torvald Riegel  <triegel@redhat.com>
3215
3216         * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
3217         correct barrier instruction.
3218         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
3219         Likewise.
3220         * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
3221         Likewise.
3222
3223 2014-10-30  Roland McGrath  <roland@hack.frob.com>
3224
3225         * include/ctype.h: Include <ctype/ctype.h> first thing rather than
3226         after defining inlines.  Instead, just use parens to defeat macro
3227         expansion of __isctype in its declaration.
3228
3229 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
3230
3231         * include/sys/uio.h (__libc_readv): Remove declaration.
3232         (__libc_writev): Likewise.
3233         * misc/readv.c (__libc_readv): Rename to __readv.
3234         (__readv): Do not define as alias.
3235         (readv): Define as alias of __readv.
3236         * misc/writev.c (__libc_writev): Rename to __writev.
3237         (__writev): Do not define as alias.
3238         (writev): Define as alias of __writev.
3239         * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
3240         (__readv): Do not define as alias.
3241         (readv): Define unconditionally as alias of __readv.
3242         * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
3243         (__writev): Do not define as alias.
3244         (writev): Define unconditionally as alias of __writev.
3245         * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
3246         name.
3247         (writev): Do not define __libc_writev name.
3248
3249 2014-10-30  Roland McGrath  <roland@hack.frob.com>
3250
3251         * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
3252         (convert_charseq): New function, broken out of ...
3253         (use_from_charmap): ... here.  Call it.
3254         (use_to_charmap): Use convert_charseq and free instead of duplicating
3255         its code with a variable-length stack struct.
3256
3257 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
3258
3259         * include/fcntl.h (__libc_creat): Remove declaration.
3260         * io/creat.c (__libc_creat): Rename to creat.
3261         (creat): Do not define as alias.
3262         * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
3263         of creat instead of __libc_creat.
3264         * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
3265         to creat.
3266         (creat): Do not define as alias.
3267         [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
3268         __libc_creat.
3269         * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
3270         __libc_creat name.
3271         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
3272         Likewise.
3273
3274 2014-10-29  Carlos O'Donell  <carlos@redhat.com>
3275
3276         * manual/llio.texi: Add comments discussing why write() may be
3277         considered MT-unsafe on Linux.
3278
3279 2014-10-28  Carlos O'Donell  <carlos@redhat.com>
3280
3281         * dl-load.c (local_strdup): Remove.
3282         (expand_dynamic_string_token): Use __strdup.
3283         (decompose_rpath): Likewise.
3284         (_dl_map_object): Likewise.
3285
3286 2014-10-28  Joseph Myers  <joseph@codesourcery.com>
3287
3288         [BZ #14132]
3289         * sysdeps/generic/unwind-dw2-fde.c
3290         (__register_frame_info_bases_internal): Do not declare.
3291         (__register_frame_info_table_bases_internal): Likewise.
3292         (__deregister_frame_info_bases_internal): Likewise.
3293         (__register_frame_info_bases): Declare and use hidden_proto before
3294         definition.  Use hidden_def instead of INTDEF.
3295         (__register_frame_info_table_bases): Likewise.
3296         (__deregister_frame_info_bases): Likewise.
3297         (__register_frame_info): Do not use INTUSE.
3298         (__register_frame): Likewise.
3299         (__register_frame_info_table): Likewise.
3300         (__register_frame_table): Likewise.
3301         (__deregister_frame_info): Likewise.
3302         (__deregister_frame): Likewise.
3303
3304 2014-10-27  Gratian Crisan  <gratian.crisan@ni.com>
3305
3306         * sysdeps/unix/sysv/linux/arm/kernel-features.h
3307         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
3308         not undefine.
3309         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
3310         Likewise.
3311         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
3312         Likewise.
3313
3314 2014-10-27  Joseph Myers  <joseph@codesourcery.com>
3315
3316         [BZ #14138]
3317         * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
3318         * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
3319         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
3320         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
3321         * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
3322         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
3323         * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
3324         * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
3325         * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
3326         * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
3327         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
3328         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
3329         * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
3330         syscall.
3331         (setfsuid): Likewise.
3332         * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
3333         (setfsuid): Likewise.
3334         * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
3335         (setfsuid): Likewise.
3336         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
3337         Likewise.
3338         (setfsuid): Likewise.
3339         * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
3340         (setfsuid): Likewise.
3341         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
3342         Likewise.
3343         (setfsuid): Likewise.
3344
3345 2014-10-27  Andreas Schwab  <schwab@suse.de>
3346
3347         [BZ #17501]
3348         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
3349         check for Slow_SSE4_2 feature bit.
3350         * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
3351         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
3352         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
3353         Likewise.  Fix check for Fast_Unaligned_Load feature bit.
3354
3355 2014-10-24  Roland McGrath  <roland@hack.frob.com>
3356
3357         * configure.ac: Validate compiler version with a empirical test of
3358         __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
3359         $CC -v output.
3360         * configure: Regenerated.
3361
3362         * inet/htons.c (htons): Prototypify.
3363         * inet/htonl.c (htonl): Likewise.
3364
3365 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3366
3367         * string/strncat.c (strncat): Improve performance by using strlen.
3368
3369 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3370
3371         * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
3372
3373 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3374
3375         * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
3376         Call libc_fetestexcept_aarch64.
3377
3378 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3379
3380         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
3381         Call libc_feholdexcept_aarch64.
3382
3383 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3384
3385         * sysdeps/aarch64/fpu/fegetround.c (fegetround):
3386         Call get_rounding_mode.
3387
3388 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3389
3390         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
3391         Simplify logic.
3392
3393 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3394
3395         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
3396         Simplify logic.
3397
3398 2014-10-24  Joseph Myers  <joseph@codesourcery.com>
3399
3400         [BZ #14138]
3401         * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
3402         * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
3403         * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
3404         * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
3405         * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
3406         * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
3407         * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
3408         * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
3409         * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
3410         * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
3411         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
3412         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
3413         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
3414         * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
3415         * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
3416         * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
3417         * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
3418         * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
3419         * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
3420         * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
3421         * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
3422         * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
3423         * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
3424         * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
3425         * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
3426         * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
3427         * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
3428         * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
3429         * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
3430         * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
3431         * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
3432         * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
3433         * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
3434         * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
3435         * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
3436         * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
3437         * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
3438         * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
3439         * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
3440         * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
3441         * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
3442         syscall.
3443         (geteuid): Likewise.
3444         (getgid): Likewise.
3445         (getuid): Likewise.
3446         (getresgid): Likewise.
3447         (getresuid): Likewise.
3448         (getgroups): Likewise.
3449         * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
3450         (geteuid): Likewise.
3451         (getgid): Likewise.
3452         (getuid): Likewise.
3453         (getresgid): Likewise.
3454         (getresuid): Likewise.
3455         (getgroups): Likewise.
3456         * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
3457         (geteuid): Likewise.
3458         (getgid): Likewise.
3459         (getuid): Likewise.
3460         (getresgid): Likewise.
3461         (getresuid): Likewise.
3462         (getgroups): Likewise.
3463         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
3464         Likewise.
3465         (geteuid): Likewise.
3466         (getgid): Likewise.
3467         (getuid): Likewise.
3468         (getresgid): Likewise.
3469         (getresuid): Likewise.
3470         (getgroups): Likewise.
3471         * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
3472         (geteuid): Likewise.
3473         (getgid): Likewise.
3474         (getuid): Likewise.
3475         (getresgid): Likewise.
3476         (getresuid): Likewise.
3477         (getgroups): Likewise.
3478         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
3479         Likewise.
3480         (geteuid): Likewise.
3481         (getgid): Likewise.
3482         (getuid): Likewise.
3483         (getgroups): Likewise.
3484
3485         [BZ #14138]
3486         * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
3487         * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
3488         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
3489         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
3490         * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
3491         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
3492         * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
3493         * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
3494         * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
3495         * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
3496         * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
3497         * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
3498         * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
3499         __chown.
3500         * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
3501         (lchown): Likewise.
3502         (fchown): Likewise.
3503         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
3504         Likewise.
3505         (lchown): Likewise.
3506         (fchown): Likewise.
3507         * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
3508         (lchown): Likewise.
3509         (fchown): Likewise.
3510         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
3511         Likewise.
3512         (lchown): Likewise.
3513         (fchown): Likewise.
3514
3515 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3516
3517         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
3518         Simplify logic.
3519
3520 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3521
3522         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
3523         Cleanup logic.
3524
3525 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3526
3527         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
3528         Remove unused include.
3529
3530 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3531
3532         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
3533         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
3534         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
3535         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
3536
3537 2014-10-23  Carlos O'Donell  <carlos@systemhalted.org>
3538             Helge Deller <deller@gmx.de>
3539
3540         [BZ #17508]
3541         * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
3542         Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
3543         Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
3544
3545 2014-10-23  Joseph Myers  <joseph@codesourcery.com>
3546
3547         [BZ #14132]
3548         * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
3549         Remove macro definition.
3550         (__ashrdi3_v_glibc20): Likewise.
3551         (__lshrdi3_v_glibc20): Likewise.
3552         (__cmpdi2_v_glibc20): Likewise.
3553         (__ucmpdi2_v_glibc20): Likewise.
3554         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
3555         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
3556         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
3557         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
3558         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
3559         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
3560
3561 2014-10-22  Roland McGrath  <roland@hack.frob.com>
3562
3563         * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
3564         old GNU extension [0] syntax.
3565         * nscd/nscd_helper.c (open_socket): Use a flexible array member and
3566         alloca rather than an array member with variable length.
3567         * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
3568         * nscd/nscd.c (invalidate_db): New function, broken out of ...
3569         (parse_opt): ... here.  Likewise use alloca there.
3570         Validate the -i argument before checking for rootness.
3571         (send_shutdown): New function, broken out of ...
3572         (parse_opt): ... here.
3573
3574 2014-10-22  Roland McGrath  <roland@hack.frob.com>
3575
3576         * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
3577         macro to get at the _rt_local_ro field.
3578         [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
3579         ([PIC] case) or _dl_hwcap ([!PIC] case).
3580         * sysdeps/arm/setjmp.S: Likewise.
3581
3582         * config.h.in (ARM_PCREL_MOVW_OK): New macro.
3583         * sysdeps/arm/configure.ac: New check to define it.
3584         * sysdeps/arm/configure: Regenerated.
3585         * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
3586         (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
3587         (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
3588         depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
3589         (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
3590         Use move/movt pair instead of a load.
3591         (LDST_GLOBAL): Macro removed.
3592         (LDR_GLOBAL): New macro replaces it.
3593         (LDR_HIDDEN): New macro.
3594         (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
3595         Use LDR_HIDDEN instead for __pointer_chk_guard_local.
3596
3597         * setjmp/tst-setjmp-static.c: New file.
3598         * setjmp/Makefile (tests): Add it.
3599         (tests-static): New variable.
3600
3601 2014-10-22  Maciej W. Rozycki  <macro@codesourcery.com>
3602
3603         [BZ #17485]
3604         * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
3605
3606 2014-10-21  Joseph Myers  <joseph@codesourcery.com>
3607
3608         [BZ #14132]
3609         * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
3610
3611 2014-10-21  Roland McGrath  <roland@hack.frob.com>
3612
3613         * nptl/version.c (__nptl_main): Call __libc_write, not __write.
3614
3615 2014-10-20  Roland McGrath  <roland@hack.frob.com>
3616
3617         * io/fts.c (dirent_not_directory): New function.
3618         (fts_build): Call it.
3619
3620 2014-10-20  Roland McGrath  <roland@hack.frob.com>
3621
3622         * nptl/version.c (__nptl_main): Use normal __write rather than
3623         INTERNAL_SYSCALL.
3624         (banner): Update copyright years.
3625
3626         * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
3627         gettimeofday.
3628         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
3629         * nptl/pthread_cond_timedwait.c: Likewise.
3630         * nptl/pthread_mutex_timedlock.c: Likewise.
3631         * nptl/sem_timedwait.c: Likewise.
3632
3633         * sysdeps/nptl/bits/libc-lock.h
3634         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
3635         (__libc_lock_init_recursive): Return void, not 0.
3636         * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
3637         (__libc_rwlock_init): Likewise.
3638         * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
3639
3640 2014-10-20  Torvald Riegel  <triegel@redhat.com>
3641
3642         [BZ #15215]
3643         * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
3644         (__pthread_once_slow): ... here.
3645         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
3646         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
3647
3648 2014-10-20  Torvald Riegel  <triegel@redhat.com>
3649
3650         [BZ #15215]
3651         * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
3652         __PTHREAD_ONCE_FORK_GEN_INCR): New.
3653         * sysdeps/nptl/fork.c (__libc_fork): Use them.
3654         * nptl/pthread_once.c (__pthread_once): Likewise.
3655         Update comments.
3656
3657 2014-10-20  Joseph Myers  <joseph@codesourcery.com>
3658
3659         [BZ #14138]
3660         * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
3661         name.
3662         (writev): Use __libc_writev as strong name.
3663         * sysdeps/unix/sysv/linux/readv.c: Remove file.
3664         * sysdeps/unix/sysv/linux/writev.c: Likewise.
3665
3666 2014-10-17  Roland McGrath  <roland@hack.frob.com>
3667
3668         * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
3669
3670         * sysdeps/i386/nptl/tls.h
3671         (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
3672         [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
3673         New macros.
3674         * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
3675         (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
3676         * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
3677         Call SETUP_THREAD_SYSINFO instead of doing an assignment.
3678         * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
3679         Call CHECK_THREAD_SYSINFO instead of doing an assert.
3680
3681         * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
3682         Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
3683         on [__NR_futex].
3684         * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
3685         broken out of ...
3686         (__pthread_mutex_init): ... here.  Call it.
3687         * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
3688         Conditionalize PI cases on [__NR_futex].
3689         * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
3690         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
3691         * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
3692
3693         * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
3694         conditional on [SIGSETXID].
3695         (sigcancel_handler): Make definition conditional on [SIGCANCEL].
3696         (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
3697         is defined.  Likewise for SIGSETXID.
3698         * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
3699         Conditionalize definitions on [SIGSETXID].
3700         (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
3701         * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
3702         unblocking on [SIGCANCEL].
3703
3704         * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
3705         [__NR_set_robust_list].
3706
3707 2014-10-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
3708
3709         * string/strcoll_l.c (get_next_seq): Fix up formatting.
3710         (do_compare): Likewise.
3711
3712 2014-10-17  Leonhard Holz  <leonhard.holz@web.de>
3713
3714         [BZ #15884]
3715         * string/strcoll_l.c: Don't include stdio.h.
3716         (coll_seq): Remove members idxarr and rulearr.
3717         (get_next_seq_cached): Remove function.
3718         (get_next_seq): Likewise.
3719         (get_next_seq_nocache): Rename to get_next_seq.
3720         (do_compare): Remove function.
3721         (do_compare_nocache): Rename to do_compare.
3722         (STRCOLL): Remove weight and rules cache.
3723
3724 2014-10-16  Roland McGrath  <roland@hack.frob.com>
3725
3726         * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
3727         * sysdeps/arm/sfp-machine.h: ... to here.
3728         * sysdeps/arm/Implies: Remove arm/soft-fp.
3729
3730 2014-10-14  Joseph Myers  <joseph@codesourcery.com>
3731
3732         * conform/data/sys/utsname.h-data (*_t): Allow.
3733         * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
3734         [POSIX] (WEXITED): Do not expect constant.
3735         [POSIX] (WSTOPPED): Likewise.
3736         [POSIX] (WNOHANG): Likewise.
3737         [POSIX] (WNOWAIT): Likewise.
3738         [POSIX] (siginfo_t): Do not expect type or elements.
3739         [POSIX] (pid_t): Do not expect type.
3740         [POSIX] (signal.h): Do not allow header.
3741         [POSIX] (sys/resource.h): Likewise.
3742         [POSIX] (si_*): Do not allow pattern.
3743         [POSIX] (W*): Likewise.
3744         [POSIX] (P_*): Likewise.
3745         [POSIX] (BUS_*): Likewise.
3746         [POSIX] (CLD_*): Likewise.
3747         [POSIX] (FPE_*): Likewise.
3748         [POSIX] (ILL_*): Likewise.
3749         [POSIX] (POLL_*): Likewise.
3750         [POSIX] (SEGV_*): Likewise.
3751         [POSIX] (SI_*): Likewise.
3752         [POSIX] (TRAP_*): Likewise.
3753         * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
3754         variable.
3755
3756 2014-10-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
3757
3758         [BZ #12926]
3759         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
3760         infinite loop when __recvmsg returns 0.
3761
3762 2014-10-10  Joseph Myers  <joseph@codesourcery.com>
3763
3764         * CANCEL-FCT-WAIVE: Remove file.
3765         * CANCEL-FILE-WAIVE: Likewise.
3766
3767         [BZ #14132]
3768         * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
3769         instead of INTVARDEF.
3770         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
3771         * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
3772         rtld_hidden_data_def instead of INTVARDEF.
3773         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
3774         * elf/dl-deps.c (expand_dst): Likewise.
3775         * elf/dl-load.c (_dl_dst_count): Likewise.
3776         (_dl_dst_substitute): Likewise.
3777         (decompose_rpath): Likewise.
3778         (_dl_init_paths): Likewise.
3779         (open_path): Likewise.
3780         (_dl_map_object): Likewise.
3781         * elf/rtld.c (dl_main): Likewise.
3782         (process_dl_audit): Likewise.
3783         (process_envvars): Likewise.
3784         * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
3785         Remove declaration.
3786         (__libc_enable_secure): Use rtld_hidden_proto.
3787
3788 2014-10-09  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
3789
3790         * elf/dl-load.c
3791         (add_path): New function broken out of _dl_rtld_di_serinfo.
3792         (_dl_rtld_di_serinfo): Remove that nested function.  Update call sites.
3793
3794 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
3795
3796         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
3797         parentheses around macro arguments.
3798         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
3799         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
3800         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
3801         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
3802         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
3803         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
3804         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
3805         [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
3806         [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
3807         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
3808         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
3809         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
3810         [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
3811         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
3812         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
3813         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
3814         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
3815         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
3816         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
3817         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
3818         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
3819         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
3820         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
3821         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
3822         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
3823         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
3824         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
3825         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
3826         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
3827         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
3828         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
3829         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
3830         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
3831         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
3832         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
3833         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
3834         Likewise.
3835         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
3836         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
3837         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
3838         [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
3839         [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
3840         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
3841         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
3842         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
3843         [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
3844         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
3845         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
3846         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
3847         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
3848         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
3849         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
3850         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
3851         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
3852         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
3853         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
3854         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
3855         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
3856         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
3857         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
3858         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
3859         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
3860         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
3861         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
3862         * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
3863         (_FP_FRAC_SRS_1): Likewise.
3864         (_FP_FRAC_CLZ_1): Likewise.
3865         (_FP_MUL_MEAT_1_imm): Likewise.
3866         (_FP_MUL_MEAT_1_wide): Likewise.
3867         (_FP_MUL_MEAT_1_hard): Likewise.
3868         (_FP_SQRT_MEAT_1): Likewise.
3869         (_FP_FRAC_ASSEMBLE_1): Likewise.
3870         (_FP_FRAC_DISASSEMBLE_1): Likewise.
3871         * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
3872         (__FP_CLZ_2): Likewise.
3873         (_FP_MUL_MEAT_2_wide): Likewise.
3874         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
3875         (_FP_MUL_MEAT_2_gmp): Likewise.
3876         (_FP_MUL_MEAT_2_120_240_double): Likewise.
3877         (_FP_SQRT_MEAT_2): Likewise.
3878         (_FP_FRAC_ASSEMBLE_2): Likewise.
3879         (_FP_FRAC_DISASSEMBLE_2): Likewise.
3880         * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
3881         (_FP_FRAC_CLZ_4): Likewise.
3882         (_FP_MUL_MEAT_4_wide): Likewise.
3883         (_FP_MUL_MEAT_4_gmp): Likewise.
3884         (_FP_SQRT_MEAT_4): Likewise.
3885         (_FP_FRAC_ASSEMBLE_4): Likewise.
3886         (_FP_FRAC_DISASSEMBLE_4): Likewise.
3887         * soft-fp/op-common.h (_FP_CMP): Likewise.
3888         (_FP_CMP_EQ): Likewise.
3889         (_FP_CMP_UNORD): Likewise.
3890         (_FP_TO_INT): Likewise.
3891         (_FP_FROM_INT): Likewise.
3892         [!__FP_CLZ] (__FP_CLZ): Likewise.
3893         (_FP_DIV_HELP_imm): Likewise.
3894         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
3895         Likewise.
3896         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
3897         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
3898         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
3899         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
3900         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
3901         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
3902         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
3903         [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
3904         [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
3905         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
3906         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
3907         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
3908         [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
3909         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
3910         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
3911         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
3912         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
3913         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
3914         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
3915         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
3916         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
3917         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
3918         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
3919         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
3920         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
3921         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
3922         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
3923         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
3924         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
3925         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
3926         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
3927         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
3928         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
3929         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
3930         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
3931         * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
3932         (FP_UNPACK_RAW_SP): Likewise.
3933         (FP_PACK_RAW_S): Likewise.
3934         (FP_PACK_RAW_SP): Likewise.
3935         (FP_UNPACK_S): Likewise.
3936         (FP_UNPACK_SP): Likewise.
3937         (FP_UNPACK_SEMIRAW_S): Likewise.
3938         (FP_UNPACK_SEMIRAW_SP): Likewise.
3939         (FP_PACK_S): Likewise.
3940         (FP_PACK_SP): Likewise.
3941         (FP_PACK_SEMIRAW_S): Likewise.
3942         (FP_PACK_SEMIRAW_SP): Likewise.
3943         (_FP_SQRT_MEAT_S): Likewise.
3944         (FP_CMP_S): Likewise.
3945         (FP_CMP_EQ_S): Likewise.
3946         (FP_CMP_UNORD_S): Likewise.
3947         (FP_TO_INT_S): Likewise.
3948         (FP_FROM_INT_S): Likewise.
3949
3950         * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
3951
3952         * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
3953         (FP_EX_INVALID_IMZ): Likewise.
3954         (FP_EX_INVALID_IMZ_FMA): Likewise.
3955         (FP_EX_INVALID_ISI): Likewise.
3956         (FP_EX_INVALID_ZDZ): Likewise.
3957         (FP_EX_INVALID_IDI): Likewise.
3958         (FP_EX_INVALID_SQRT): Likewise.
3959         (FP_EX_INVALID_CVI): Likewise.
3960         (FP_EX_INVALID_VC): Likewise.
3961         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
3962         "invalid" exceptions.
3963         (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
3964         (_FP_ADD_INTERNAL): Likewise.
3965         (_FP_MUL): Likewise.
3966         (_FP_FMA): Likewise.
3967         (_FP_DIV): Likewise.
3968         (_FP_CMP_CHECK_NAN): Likewise.
3969         (_FP_SQRT): Likewise.
3970         (_FP_TO_INT): Likewise.
3971         (FP_EXTEND): Likewise.
3972
3973 2014-10-09  Allan McRae  <allan@archlinux.org>
3974
3975         * po/fr.po: Update French translation from translation project.
3976
3977 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
3978
3979         [BZ #14132]
3980         * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
3981         of INTDEF.
3982         * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
3983         (__cxa_atexit): Use libc_hidden_proto.
3984         [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
3985
3986         [BZ #14132]
3987         * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
3988         declaration.
3989         [!_ISOMAC] (__iswdigit_l_internal): Likewise.
3990         [!_ISOMAC] (__iswspace_l_internal): Likewise.
3991         [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
3992         [!_ISOMAC] (__iswctype_internal): Likewise.
3993         * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
3994         * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
3995         alias.
3996         (fcntl): Remove __fcntl_internal alias.
3997         * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
3998         __connect_internal alias.
3999         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
4000         Likewise.
4001
4002         * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
4003         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
4004         FP_DENORM_ZERO.
4005         (_FP_CHECK_FLUSH_ZERO): New macro.
4006         (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
4007         (_FP_CMP): Likewise.
4008         (_FP_CMP_EQ): Likewise.
4009         (_FP_TO_INT): Do not set inexact for subnormal arguments if
4010         FP_DENORM_ZERO.
4011         (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
4012         (FP_TRUNC): Likewise.
4013
4014         * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
4015         treated as invalid conversion, not as normal exponent.
4016
4017         * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
4018         (_FP_CMP): Add extra argument EX.  Call _FP_CMP_CHECK_NAN.
4019         (_FP_CMP_EQ): Likewise.
4020         (_FP_CMP_UNORD): Likewise.
4021         * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
4022         (FP_CMP_EQ_D): Likewise.
4023         (FP_CMP_UNORD_D): Likewise.
4024         * soft-fp/extended.h (FP_CMP_E): Likewise.
4025         (FP_CMP_EQ_E): Likewise.
4026         (FP_CMP_UNORD_E): Likewise.
4027         * soft-fp/quad.h (FP_CMP_Q): Likewise.
4028         (FP_CMP_EQ_Q): Likewise.
4029         (FP_CMP_UNORD_Q): Likewise.
4030         * soft-fp/single.h (FP_CMP_S): Likewise.
4031         (FP_CMP_EQ_S): Likewise.
4032         (FP_CMP_UNORD_S): Likewise.
4033         * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
4034         * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
4035         * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
4036         * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
4037         * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
4038         * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
4039         * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
4040         * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
4041         * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
4042         * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
4043         * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
4044         * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
4045         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
4046         to FP_CMP_Q.
4047         * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
4048         FP_CMP_Q.
4049         * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
4050         * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
4051         FP_CMP_EQ_Q.
4052         * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
4053         FP_CMP_Q.
4054         * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
4055         * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
4056         * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
4057         * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
4058         FP_CMP_EQ_Q.
4059         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
4060         FP_CMP_Q.
4061         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
4062         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
4063         FP_CMP_EQ_Q.
4064         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
4065         FP_CMP_Q.
4066         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
4067         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
4068         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
4069         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
4070         FP_CMP_EQ_Q.
4071
4072         * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
4073         a subnormal result, set the underflow exception if trapping on
4074         underflow is enabled.
4075         * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
4076         (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
4077         [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
4078         redefine to 0.
4079         * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
4080         * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
4081         * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
4082         * soft-fp/extendxftf2.c (__extendxftf2): Use
4083         FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
4084
4085         * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
4086         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
4087         (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4088         FP_HANDLE_EXCEPTIONS.
4089         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
4090         (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4091         FP_HANDLE_EXCEPTIONS.
4092         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
4093         (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4094         FP_HANDLE_EXCEPTIONS.
4095         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
4096         (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4097         FP_HANDLE_EXCEPTIONS.
4098
4099 2014-10-08  Joseph Myers  <joseph@codesourcery.com>
4100
4101         [BZ #14132]
4102         * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
4103         * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
4104         use INTUSE.
4105         [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
4106         * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
4107         Remove alias.
4108         (__adjtimex): Define using libc_hidden_ver.
4109         * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
4110         Remove declaration.
4111         (ntp_gettime): Call __adjtimex directly.
4112         * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
4113         Remove declaration.
4114         (ntp_gettimex): Call __adjtimex directly.
4115         * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
4116         __adjtimex_internal alias.
4117
4118 2014-10-08  Roland McGrath  <roland@hack.frob.com>
4119
4120         [BZ #17460]
4121         * nscd/nscd.c (more_help): Rewrite list of tables collection
4122         using xstrdup and asprintf.
4123
4124         * nscd/nscd_conf.c: Remove local xstrdup declaration.
4125
4126 2014-10-08  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4127             Roland McGrath  <roland@hack.frob.com>
4128
4129         * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
4130         (do_lookup_unique): ... local function 'enter' here; update callers.
4131
4132 2014-10-06  Joseph Myers  <joseph@codesourcery.com>
4133
4134         * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
4135         compat_symbol calls on [SHARED].
4136         * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
4137         * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
4138         Remove.
4139         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4140         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
4141         (oldsetrlimit): Remove.
4142         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4143         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
4144         (lchown): New syscall entry.
4145         (oldsetrlimit): Remove.
4146         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4147         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
4148         (oldsetrlimit): Remove.
4149         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4150
4151         [BZ #14138]
4152         * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
4153         * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
4154         * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
4155         * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
4156         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
4157         * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
4158         (fchown): Likewise.
4159         * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
4160         (fchown): Likewise.
4161         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
4162         Likewise.
4163
4164 2014-10-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4165
4166         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
4167         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
4168         (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
4169         __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
4170         * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
4171         Likewise.
4172         (__old_sem_post): Likewise.
4173
4174 2014-10-06  Chris Metcalf  <cmetcalf@tilera.com>
4175
4176         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
4177         INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
4178         HAVE_CLOCK_GETTIME_VSYSCALL macros.
4179         * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
4180         Use INLINE_VSYSCALL macro.
4181         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
4182         __vdso_clock_gettime.
4183         * sysdeps/unix/sysv/linux/tile/init-first.c
4184         (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
4185         * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
4186         __vdso_clock_gettime.
4187
4188         * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
4189         to set up frame more cleanly.
4190
4191         * sysdeps/tile/memcmp.c: New file.
4192
4193         * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
4194
4195         * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
4196         * sysdeps/tile/tilegx/strcasestr.c: New file.
4197         * sysdeps/tile/tilegx/strnlen.c: New file.
4198         * sysdeps/tile/tilegx/strstr.c: New file.
4199
4200         * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
4201
4202 2014-10-06  Arjun Shankar  <arjun.is@lostca.se>
4203
4204         * nptl/tst-setuid3.c: Write errors to stdout.
4205
4206 2014-10-01  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4207
4208         * elf/dl-deps.c
4209         (preload): New functions broken out of _dl_map_object_deps.
4210         (_dl_map_object_deps):  Remove a nested function. Update call sites.
4211
4212 2014-10-01  Joseph Myers  <joseph@codesourcery.com>
4213
4214         [BZ #14138]
4215         * sysdeps/unix/sysv/linux/execve.c: Remove file.
4216         * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
4217
4218 2014-10-01  Steve Ellcey  <sellcey@mips.com>
4219
4220         * sysdeps/mips/strcmp.S: New.
4221
4222 2014-09-30  Joseph Myers  <joseph@codesourcery.com>
4223
4224         [BZ #14138]
4225         * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
4226         (linkat): Likewise.
4227         (mkdirat): Likewise.
4228         (readlinkat): Likewise.
4229         (renameat): Likewise.
4230         (symlinkat): Likewise.
4231         (unlinkat): Likewise.
4232         * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
4233         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
4234         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
4235         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
4236         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
4237         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
4238         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
4239
4240 2014-09-30  Will Newton  <will.newton@linaro.org>
4241
4242         * math/math.h: Define long double math functions if
4243         _LIBC_TEST is defined.
4244         * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
4245
4246         * localedata/Makefile: Move assignment to tests-special
4247         into an ifdef testing run-built-tests.
4248         * timezone/Makefile: Likewise.
4249
4250 2014-09-29  Joseph Myers  <joseph@codesourcery.com>
4251
4252         * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
4253         with $(BASH) not $(SHELL).
4254
4255 2014-09-29  Carlos O'Donell  <carlos@redhat.com>
4256             Matthew LeGendre  <legendre1@llnl.gov>
4257
4258         [BZ #17411]
4259         * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
4260         l_reloc_result.
4261
4262 2014-09-29  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4263
4264         * stdio-common/printf_fp.c
4265         (hack_digit): New function, broken out of ...
4266         (__printf_fp): ... local function here.  Update call sites.
4267         hack_digit now takes an additional parameter that is a pointer
4268         to a struct of the referenced locals.  Those locals moved inside
4269         the struct and references updated.
4270
4271 2014-09-29  H.J. Lu  <hongjiu.lu@intel.com>
4272
4273         * aclocal.m4: Require autoconf 2.69.
4274         * configure: Regenerated.
4275         * sysdeps/aarch64/configure: Likewise.
4276         * sysdeps/alpha/configure: Likewise.
4277         * sysdeps/arm/armv7/configure: Likewise.
4278         * sysdeps/arm/configure: Likewise.
4279         * sysdeps/ia64/configure: Likewise.
4280         * sysdeps/mach/configure: Likewise.
4281         * sysdeps/mips/configure: Likewise.
4282         * sysdeps/s390/configure: Likewise.
4283         * sysdeps/unix/sysv/linux/mips/configure: Likewise.
4284         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
4285
4286         * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
4287         file.
4288         * sysdeps/ia64/configure.ac: Likewise.
4289
4290 2014-09-26  Joseph Myers  <joseph@codesourcery.com>
4291
4292         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
4293         specify symbol version for ld.so.  Do not include entry for
4294         libpthread.
4295         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4296         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
4297         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4298
4299         [BZ #14171]
4300         * Makeconfig [$(build-shared) = yes]
4301         ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
4302         makefiles.
4303         [$(build-shared) = yes && $(soversions.mk-done) = t]
4304         ($(common-objpfx)gnu/lib-names.h): Remove rule.
4305         [$(build-shared) = yes && $(soversions.mk-done) = t]
4306         ($(common-objpfx)gnu/lib-names.stmp): Likewise.  Split and moved
4307         to Makerules.
4308         [$(build-shared) = yes && $(soversions.mk-done) = t]
4309         (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
4310         here.
4311         [$(build-shared) = yes && $(soversions.mk-done) = t]
4312         (common-generated): Don't append gnu/lib-names.h and
4313         gnu/lib-names.stmp here.
4314         * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
4315         (lib-names-h-abi): New variable.
4316         [$(build-shared) = yes && $(soversions.mk-done) = t]
4317         (lib-names-stmp-abi): Likewise.
4318         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4319         abi-variants] (before-compile): Append
4320         $(common-objpfx)$(lib-names-h-abi).
4321         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4322         abi-variants] (common-generated): Append gnu/lib-names.h.
4323         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4324         abi-variants] (install-others-nosubdir): Depend on
4325         $(inst_includedir)/$(lib-names-h-abi).
4326         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4327         abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
4328         [$(build-shared) = yes && $(soversions.mk-done) = t]
4329         ($(common-objpfx)$(lib-names-h-abi)): New rule.
4330         [$(build-shared) = yes && $(soversions.mk-done) = t]
4331         ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
4332         [$(build-shared) = yes && $(soversions.mk-done) = t]
4333         (common-generated): Append $(lib-names-h-abi) and
4334         $(lib-names-stmp-abi).
4335         * scripts/lib-names.awk: Do not handle multi being set.
4336         * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
4337         Remove variable.
4338         (abi-lp64_be-ld-soname): Likewise.
4339         * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
4340         Likewise.
4341         (abi-hard-ld-soname): Likewise.
4342         * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
4343         * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
4344         Remove variable.
4345         (abi-o32_hard-ld-soname): Likewise.
4346         (abi-o32_soft_2008-ld-soname): Likewise.
4347         (abi-o32_hard_2008-ld-soname): Likewise.
4348         (abi-n32_soft-ld-soname): Likewise.
4349         (abi-n32_hard-ld-soname): Likewise.
4350         (abi-n32_soft_2008-ld-soname): Likewise.
4351         (abi-n32_hard_2008-ld-soname): Likewise.
4352         (abi-n64_soft-ld-soname): Likewise.
4353         (abi-n64_hard-ld-soname): Likewise.
4354         (abi-n64_soft_2008-ld-soname): Likewise.
4355         (abi-n64_hard_2008-ld-soname): Likewise.
4356         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
4357         Likewise.
4358         (abi-64-v2-ld-soname): Likewise.
4359         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
4360         ld.so entries.
4361         * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
4362         variable.
4363         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
4364         entry.
4365         * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
4366         variable.
4367         (abi-64-ld-soname): Likewise.
4368         (abi-x32-ld-soname): Likewise.
4369         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
4370         entry.
4371         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4372
4373 2014-09-23  Joseph Myers  <joseph@codesourcery.com>
4374
4375         [BZ #14138]
4376         * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
4377         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
4378         * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
4379         * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
4380         * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
4381         * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
4382         * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
4383         syscall entry for GLIBC_2.2 symbol version.
4384         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
4385         Likewise.
4386         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
4387         (setrlimit): Likewise.
4388         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
4389         Likewise.
4390
4391 2014-09-23  Will Newton  <will.newton@linaro.org>
4392
4393         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
4394         _LINUX_ARM_SYSDEP_H include guard too.
4395         * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
4396         define.
4397
4398 2014-09-20  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
4399
4400         * sysdeps/unix/sysv/linux/eventfd.c:
4401         Make first argument unsigned.
4402         * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
4403         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
4404
4405 2014-09-20  Ondřej Bílka  <neleai@seznam.cz>
4406
4407         * socket/recvmmsg.c (recvmmsg): Drop const argument.
4408         * socket/sys/socket.h: Likewise
4409         * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
4410
4411 2014-09-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
4412
4413         * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
4414
4415 2014-09-17  Arjun Shankar  <arjun.is@lostca.se>
4416
4417         * time/tst-ftime.c: New test.
4418         * time/Makefile (tests): Add tst-ftime.
4419
4420 2014-09-17  Joseph Myers  <joseph@codesourcery.com>
4421
4422         * soft-fp/extended.h: Fix comment formatting.
4423         * soft-fp/op-1.h: Likewise.
4424         * soft-fp/op-2.h: Likewise.
4425         * soft-fp/op-4.h: Likewise.
4426         * soft-fp/op-8.h: Likewise.
4427         * soft-fp/op-common.h: Likewise.
4428         * soft-fp/soft-fp.h: Likewise.
4429
4430         * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
4431
4432 2014-09-16  Joseph Myers  <joseph@codesourcery.com>
4433
4434         [BZ #6652]
4435         * Makeconfig (soversions-default-setname): Remove variable.
4436         ($(common-objpfx)soversions.i): Don't pass default_setname to
4437         soversions.awk.
4438         * Makerules ($(common-objpfx)abi-versions.h): Don't pass
4439         oldest_abi to abi-versions.awk.
4440         * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
4441         * config.make.in (oldest-abi): Remove variable.
4442         * configure.ac (--enable-oldest-abi): Remove configure option.
4443         * configure: Regenerated.
4444         * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
4445         text.
4446         * scripts/abi-versions.awk: Do not handle oldest_abi variable.
4447         * scripts/soversions.awk: Do not handle default_setname variable.
4448         * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
4449         variable.
4450         * sysdeps/mach/hurd/configure: Regenerated.
4451         * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
4452         variable.
4453         * sysdeps/unix/sysv/linux/configure: Regenerated.
4454
4455 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
4456
4457         * elf/Makefile (CFLAGS-interp.c): Remove.
4458         ($(elf-objpfx)runtime-linker.h): Generate header with linker
4459         path string.
4460         * elf/interp.c: Include generated runtime-linker.h
4461
4462         * Makerules (lib%.so): Don't include $(+interp) in
4463         prerequisites.
4464         * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
4465         * dlfcn/eval.c: Remove file.
4466
4467         * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
4468         macros.
4469
4470         [BZ #17266]
4471         * misc/sys/cdefs.h: Define __extern_always_inline for clang
4472         4.2 and newer.
4473
4474         [BZ #17370]
4475         * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
4476
4477 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
4478             Jakub Jelinek  <jakub@redhat.com>
4479
4480         [BZ #17266]
4481         * libio/stdio.h: Check definition of __fortify_function
4482         instead of __extern_always_inline to include bits/stdio2.h.
4483         * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
4484         check if __extern_always_inline is defined.
4485         [__USE_MISC || __USE_XOPEN]: Likewise.
4486         [__USE_ISOC99] Likewise.
4487         * misc/sys/cdefs.h (__fortify_function): Define only if
4488         __extern_always_inline is defined.
4489         [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
4490         __extern_always_inline and __extern_inline only for g++-4.3
4491         and newer or a compatible gcc.
4492
4493 2014-09-15  Andreas Schwab  <schwab@linux-m68k.org>
4494
4495         [BZ #17371]
4496         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
4497         last change to handle zero prefix length.
4498
4499 2014-09-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
4500
4501         * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
4502         _SC_REGEX_VERSION.
4503
4504         * posix/getconf.c (vars): Add _POSIX_IPV6 and
4505         _POSIX_RAW_SOCKETS.
4506
4507 2014-09-13  Allan McRae  <allan@archlinux.org>
4508
4509         * po/ru.po: Update Russian translation from translation project.
4510
4511 2014-09-12  Roland McGrath  <roland@hack.frob.com>
4512
4513         * locale/programs/locale.c (show_locale_vars): Inline local function
4514         into its sole call site.  Clean up some style nits.
4515         (print_item): New function, broken out of ...
4516         (show_info): ... local function here.  Clean up style nits.
4517
4518         * locale/programs/ld-ctype.c (set_one_default): New function, broken
4519         out of ...
4520         (set_class_defaults): ... local function set_default here.
4521         Define set_default as a macro locally to pass constant parameters.
4522         (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
4523         rather than a shared local.
4524
4525         * stdlib/rpmatch.c (try): New function, broken out of ...
4526         (rpmatch): ... local function here.  Also, prototypify definition.
4527
4528 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
4529
4530         * scripts/soversions.awk: Do not handle configuration names.
4531         * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
4532         vendor and os variables to soversions.awk.
4533         * configure.ac: Do not modify gnu-* host_os.
4534         * configure: Regenerated
4535         * shlib-versions: Remove first column with configuration names.
4536         * nptl/shlib-versions: Likewise.
4537         * nptl_db/shlib-versions: Likewise.
4538         * sysdeps/hppa/shlib-versions: Likewise.
4539         * sysdeps/m68k/shlib-versions: Likewise.
4540         * sysdeps/mach/hurd/shlib-versions: Likewise.
4541         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
4542         * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
4543         * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
4544         * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
4545         * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
4546         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
4547         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
4548         * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
4549         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
4550         Likewise.
4551         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4552         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
4553         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
4554         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
4555         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
4556         * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
4557         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
4558         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4559
4560         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
4561         (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
4562         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
4563         Regenerated.
4564         * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
4565         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
4566         Condition symbol version definitions on [HAVE_ELFV2_ABI].
4567
4568         * shlib-versions: Remove OS-specific entries.  Moved to files in
4569         sysdeps.
4570         * sysdeps/mach/hurd/shlib-versions: New file.
4571         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
4572
4573         * nptl/shlib-versions: Remove architecture-specific entries.
4574         Moved to files in sysdeps.
4575         * shlib-versions: Likewise.
4576         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
4577         file.
4578         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4579         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
4580         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
4581         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
4582
4583         * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
4584         (UDP_NO_CHECK6_RX): Likewise.
4585
4586 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
4587
4588         * sysdeps/posix/sysconf.c (__sysconf): Spell
4589         _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
4590
4591 2014-08-12  Florian Weimer  <fweimer@redhat.com>
4592
4593         * iconv/gconv_open.c (__gconv_open): Remove transliteration module
4594         loading.
4595         * iconv/Versions (__gconv_transliterate): Export for use from
4596         gconv modules.
4597         * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
4598         (struct __gconv_trans_data, __gconv_trans_fct,
4599         __gconv_trans_context_fct, __gconv_trans_query_fct,
4600         __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
4601         definitions.
4602         (struct __gconv_step_data): Remove __trans member.
4603         (__gconv_transliterate): Declaration moved from gconv_int.h.  No
4604         longer hidden.  Remove unused trans_data argument.
4605         * iconv/gconv_int.h (struct trans_struct): Remove definition.
4606         (__gconv_translit_find): Remove declaration.
4607         (__gconv_transliterate): Declaration moved to gconv.h.  Add hidden
4608         prototype.
4609         * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
4610         * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
4611         trans_data argument.  Add hidden definition.
4612         (__gconv_translit_find): Remove.
4613         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
4614         __gconv_transliterate directly if __GCONV_TRANSLIT is set.
4615         * iconv/skeleton.c: Remove transliteration initialization.
4616         * libio/fileops.c (_IO_new_file_fopen): Adjust struct
4617         __gconv_step_data initialization.
4618         * libio/iofwide.c (__libio_translit_): Remove.
4619         (_IO_fwide): Adjust struct __gconv_step_data initialization.
4620         * wcsmbs/btowc.c (__btowc): Likewise.
4621         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
4622         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
4623         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
4624         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
4625         * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
4626         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
4627         * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
4628         * wcsmbs/wctob.c (wctob): Likewise.
4629
4630 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
4631
4632         [BZ #16194]
4633         * sysdeps/x86/tst-xmmymm.sh: Rename file to...
4634         * sysdeps/x86/tst-ld-sse-use.sh: ... this.  Check for zmm
4635         register usage.
4636         * sysdeps/x86/Makefile: Adjust.
4637
4638 2014-09-11  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4639             Roland McGrath  <roland@hack.frob.com>
4640
4641         * locale/weight.h: Add include guard.
4642         (findidx): Make static rather than auto; take new parameters
4643         TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
4644         * locale/weightwc.h: Likewise.
4645         * posix/fnmatch_loop.c
4646         (FCT): Change type of EXTRA from int32_t to wint_t.
4647         Don't include either header inside the function.
4648         Call FINDIDX rather than findidx, and pass new arguments.
4649         #undef FINDIDX at the end of the file.
4650         * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
4651         FINDIDX before including fnmatch_loop.c for the non-wide version.
4652         [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
4653         #include <locale/weightwc.h>, and define FINDIDX to findidxwc
4654         for the wide version.
4655         * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
4656         (build_equiv_class) [_LIBC]: Don't #include it inside the function.
4657         Pass new arguments to findidx.
4658         * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
4659         [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
4660         Don't #include it inside the function.  Pass new arguments to findidx.
4661         * posix/regex_internal.h
4662         [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
4663         (re_string_elem_size_at): Don't #include it inside the function.
4664         Pass new arguments to findidx.
4665         * string/strcoll_l.c: #include WEIGHT_H at top level.
4666         (get_next_seq): Don't #include it inside the function.
4667         Pass new arguments to findidx.
4668         (get_next_seq_nocache): Likewise.
4669         * string/strxfrm_l.c: #include WEIGHT_H at top level.
4670         (STRXFRM): Don't #include it inside the function.
4671         Pass new arguments to findidx.
4672
4673 2014-09-11  Florian Weimer  <fweimer@redhat.com>
4674
4675         [BZ #17344]
4676         * malloc/malloc.c (unlink): Turn asserts into a call to
4677         malloc_printerr.
4678
4679 2014-09-11  Tim Lammens  <tim.lammens@gmail.com>
4680
4681         [BZ #17370]
4682         * libio/wfileops (do_ftell_wide): Free OUT.
4683
4684 2014-09-10  Chris Metcalf  <cmetcalf@tilera.com>
4685
4686         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
4687
4688 2014-09-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
4689
4690         [BZ #17363]
4691         * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
4692         group if the current group is empty.
4693
4694 2014-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4695
4696         * benchtests/bench-memset.c (test_main): Add more test from size
4697         from 32 to 512 bytes.
4698         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
4699         Add POWER8 memset object.
4700         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
4701         (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
4702         * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
4703         implementation.
4704         * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
4705         Likewise.
4706         * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
4707         multiarch POWER8 memset optimization.
4708         * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
4709         POWER8 memset optimization.
4710
4711         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
4712         Remove bzero multiarch objects.
4713         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
4714         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
4715         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
4716         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
4717         Remove define.
4718         [__bzero]: Redefine to specific name.
4719         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
4720         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
4721         * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
4722         define.
4723         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
4724         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
4725
4726 2014-09-10  Florian Weimer  <fweimer@redhat.com>
4727
4728         * Makeconfig (gccwarn-c): Turn implicit-function-declaration
4729         warnings into errors.
4730
4731         * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
4732         __cxa_thread_atexit_impl prototype.
4733
4734 2014-09-09  Steve Ellcey  <sellcey@mips.com>
4735
4736         * sysdeps/mips/preconfigure: Put code inside mips* case statement.
4737         Fix capitalization of error message.
4738
4739 2014-09-09  Steve Ellcey  <sellcey@mips.com>
4740
4741         * sysdeps/mips/preconfigure: Modify ABI tests.
4742
4743 2014-09-07  Carlos O'Donell  <carlos@systemhalted.org>
4744
4745         * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
4746
4747 2014-09-07  Roland McGrath  <roland@hack.frob.com>
4748             Carlos O'Donell  <carlos@systemhalted.org>
4749
4750         * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
4751         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
4752         * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
4753         * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
4754         * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
4755         * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
4756         * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
4757         * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
4758         * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
4759         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
4760         * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
4761         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
4762         * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
4763         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
4764         * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
4765         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
4766         * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
4767         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
4768         * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
4769         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
4770         * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
4771         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
4772         * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
4773         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
4774         * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
4775         * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
4776         * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
4777         * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
4778         Deconditionalize the code that was previously under [RESET_PID].
4779         * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
4780         * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
4781         * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
4782         * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
4783         include sysdep.h.
4784
4785 2014-09-08  Allan McRae  <allan@archlinux.org>
4786
4787         * version.h (RELEASE): Set to "development".
4788         (VERSION): Set to "2.20.90"
4789
4790 2014-09-07  Allan McRae  <allan@archlinux.org
4791
4792         * version.h (RELEASE): Set to "stable".
4793         (VERSION): Set to "2.20"
4794         * include/features.h (__GLIBC_MINOR__): Set to 20.
4795
4796         * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
4797         Liebler.
4798
4799         * po/ko.po: Update Korean translation from translation project.
4800
4801 2014-09-06  Chris Metcalf  <cmetcalf@tilera.com>
4802
4803         [BZ #17354]
4804         * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
4805         macro for handling signed relocations.
4806
4807 2014-09-03  Florian Weimer  <fweimer@redhat.com>
4808
4809         [BZ #17325]
4810         * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
4811         * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
4812         assert.
4813         * iconvdata/ibm933.c (BODY): Fix check for sentinel.
4814         * iconvdata/ibm935.c (BODY): Likewise.
4815         * iconvdata/ibm937.c (BODY): Likewise.
4816         * iconvdata/ibm939.c (BODY): Likewise.
4817         * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
4818         assert.
4819         * iconvdata/Makefile (iconv-test.out): Pass module list to test
4820         script.
4821         * iconvdata/run-iconv-test.sh: New test loop for checking for
4822         decoder crashers.
4823
4824 2014-09-02  Khem Raj  <raj.khem@gmail.com>
4825
4826         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
4827         libm_hidden_ver.
4828
4829 2014-09-01  Allan McRae  <allan@archlinux.org>
4830
4831         * po/eo.po: Update Esperanto translation from translation project.
4832
4833         * po/ca.po: Update Catalan translation from translation project.
4834
4835 2014-08-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4836
4837         * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
4838         __proc_dostop call.
4839
4840 2014-08-27  Mark Wielaard  <mjw@redhat.com>
4841
4842         [BZ #17319]
4843         * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
4844         to call set_thread_area instead of hand written asm.
4845         (__NR_set_thread_area): Removed define.
4846         (TLS_FLAG_WRITABLE): Likewise.
4847         (__ASSUME_SET_THREAD_AREA): Remove check.
4848         (TLS_EBX_ARG): Remove define.
4849         (TLS_LOAD_EBX): Likewise.
4850
4851 2014-08-27  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4852
4853         Simplify atomicity of socket creation in bind.
4854
4855         * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
4856         looking up the name after linking the file.
4857
4858 2014-08-27  Allan McRae  <allan@archlinux.org>
4859
4860         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
4861
4862 2014-08-26  Florian Weimer  <fweimer@redhat.com>
4863
4864         [BZ #17187]
4865         * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
4866         trans_compare, open_translit, __gconv_translit_find):
4867         Remove module loading code.
4868
4869 2014-08-26  Allan McRae  <allan@archlinux.org>
4870
4871         * po/vi.po: Update Vietnamese translation from translation project.
4872
4873         * po/uk.po: Update Ukrainian translation from translation project.
4874
4875         * po/fr.po: Update French translation from translation project.
4876
4877         * po/ru.po: Update Russian translation from translation project.
4878
4879         * po/pl.po: Update Polish translation from translation project.
4880
4881         * po/cs.po: Update Czech translation from translation project.
4882
4883         * po/de.po: Update German translation from translation project.
4884
4885         * po/bg.po: Update Bulgarian translation from translation project.
4886
4887         * po/sv.po: Update Sweedish translation from translation project.
4888
4889         * po/nl.po: Update Dutch translation from translation project.
4890
4891         * po/es.po: Update Spanish translation from translation project.
4892
4893 2014-08-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
4894
4895         * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
4896
4897         * catgets/Makefile (CPPFLAGS-gencat): Remove.
4898         * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
4899         (CPPFLAGS-iconvconfig): Likewise.
4900         * timezone/Makefile (CPPFLAGS-zic): Likewise.
4901
4902         * include/libc-symbols.h: Remove unnecessary check for
4903         NOT_IN_libc.
4904         * nptl/pthreadP.h: Likewise.
4905         * sysdeps/aarch64/setjmp.S: Likewise.
4906         * sysdeps/alpha/setjmp.S: Likewise.
4907         * sysdeps/arm/sysdep.h: Likewise.
4908         * sysdeps/i386/setjmp.S: Likewise.
4909         * sysdeps/m68k/setjmp.c: Likewise.
4910         * sysdeps/posix/getcwd.c: Likewise.
4911         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
4912         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
4913         * sysdeps/s390/s390-32/setjmp.S: Likewise.
4914         * sysdeps/s390/s390-64/setjmp.S: Likewise.
4915         * sysdeps/sh/sh3/setjmp.S: Likewise.
4916         * sysdeps/sh/sh4/setjmp.S: Likewise.
4917         * sysdeps/unix/alpha/sysdep.h: Likewise.
4918         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
4919         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
4920         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
4921         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
4922         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
4923         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
4924         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
4925         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
4926         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
4927         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
4928         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
4929         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
4930         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
4931         * sysdeps/x86_64/setjmp.S: Likewise.
4932
4933 2014-08-13  Joseph Myers  <joseph@codesourcery.com>
4934
4935         [BZ #17263]
4936         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
4937         <stdint.h>.
4938         (__get_clockfreq): Use uint64_t instead of hp_timing_t in
4939         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
4940
4941 2014-08-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
4942
4943         * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
4944
4945         [BZ #17262]
4946         * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
4947         and __x86_64__ when disabling x87 inline functions.
4948
4949 2014-08-12  H.J. Lu  <hongjiu.lu@intel.com>
4950
4951         [BZ #17259]
4952         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
4953         asm statement with __cpuid_count.
4954
4955 2014-08-12  Mike Frysinger  <vapier@gentoo.org>
4956
4957         * configure.ac: Change __ehdr_start code to dereference the struct.
4958         Run readelf on the output to look for relocations.
4959         * configure: Regenerated.
4960
4961 2014-08-12  Joseph Myers  <joseph@codesourcery.com>
4962
4963         [BZ #17261]
4964         * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
4965         value to 0.
4966         (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
4967
4968 2014-08-12  Roland McGrath  <roland@hack.frob.com>
4969
4970         * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
4971
4972 2014-08-12  Bernard Ogden  <bernie.ogden@linaro.org>
4973
4974         [BZ #16892]
4975         * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
4976         atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
4977
4978 2014-08-12  Sean Anderson  <seanga2@gmail.com>
4979
4980         * malloc/malloc.c: Fix typo in comment.
4981
4982 2014-08-09  Allan McRae  <allan@archlinux.org>
4983
4984         * Regenerate libc.po.
4985
4986 2014-08-08  Mike Frysinger  <vapier@gentoo.org>
4987
4988         * intl/tst-gettext2.sh: Check every lang file for creation.
4989
4990 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
4991
4992         * sysdeps/aarch64/fpu/math_private.h
4993         (libc_feholdsetround_noex_aarch64_ctx): New function.
4994
4995 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
4996
4997         * sysdeps/arm/armv6/strcpy.S (strcpy):
4998         Fix performance issue in misaligned cases.
4999
5000 2014-08-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5001
5002         * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
5003         Move definition from termios.h.
5004         (struct termio): Likewise.
5005         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
5006         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
5007         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
5008         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
5009         Likewise.
5010         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
5011         Move definition to ioctl-types.h
5012         (struct termio): Likewise.
5013         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
5014         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
5015         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
5016         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
5017         Likewise.
5018
5019 2014-08-05  Richard Henderson  <rth@redhat.com>
5020
5021         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
5022         exceptions.
5023         * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
5024         Add fraiseexcpt.
5025         * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
5026         Use __feraiseexcept.
5027         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
5028         Protect libm symbols with IS_IN_libm.
5029
5030         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
5031
5032 2014-08-04  Bernard Ogden  <bernie.ogden@linaro.org>
5033
5034         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
5035
5036 2014-08-04  Will Newton  <will.newton@linaro.org>
5037
5038         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
5039         file.
5040
5041 2014-08-04  Mike Frysinger  <vapier@gentoo.org>
5042
5043         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
5044         variants for each function.
5045
5046 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5047
5048         * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
5049         appended ...
5050         * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
5051         * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
5052         appended ...
5053         * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
5054         * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
5055         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
5056         * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
5057         * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
5058         * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
5059         * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
5060         * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
5061         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
5062         * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
5063         * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
5064         * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
5065         * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
5066         * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
5067         * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
5068         * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
5069         * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
5070         * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
5071         * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
5072         * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
5073         * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
5074         * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
5075         * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
5076         * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
5077         * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
5078         * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
5079         * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
5080         * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
5081         * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
5082         * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
5083         * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
5084         * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
5085         * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
5086         * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
5087         * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
5088         * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
5089         * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
5090         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
5091         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
5092         * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
5093         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
5094         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
5095         * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
5096         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
5097         * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
5098         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
5099         * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
5100         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
5101         * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
5102         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
5103         * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
5104         * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
5105         * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
5106         Update #include.
5107         * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
5108         * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
5109
5110 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5111
5112         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
5113         * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
5114         * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
5115         * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
5116         * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
5117         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
5118
5119 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5120
5121         * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
5122         * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
5123         * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
5124         * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
5125
5126 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5127
5128         * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
5129         * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
5130         (__libc_vfork): Define function under this name.
5131         (__vfork): Define as an alias.
5132         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
5133         * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
5134
5135 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5136
5137         * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
5138         that was previously under [RESET_PID].
5139         * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
5140
5141 2014-08-04  Andreas Schwab  <schwab@suse.de>
5142
5143         * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
5144
5145 2014-08-03  Mike Frysinger  <vapier@gentoo.org>
5146
5147         * stdlib/tst-setcontext.c (test_stack): Fix coding style.
5148         (main): Likewise.
5149
5150 2014-08-01  Roland McGrath  <roland@hack.frob.com>
5151
5152         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
5153
5154 2014-08-01  Richard Henderon  <rth@redhat.com>
5155
5156         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
5157         feclearexcept; use math_opt_barrier instead of open-coded asm; fix
5158         typo in exact zero test.
5159         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
5160         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
5161         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
5162
5163 2014-08-01  Roland McGrath  <roland@hack.frob.com>
5164
5165         * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
5166         (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
5167         * sysdeps/arm/sysdep.h: ... here.
5168         [!__ASSEMBLER__]: Include <stdint.h>.
5169
5170 2014-08-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
5171
5172         * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
5173         (HAVE_WCTYPE_H): Likewise.
5174         (HAVE_ISWCTYPE): Likewise.
5175         (ENABLE_NLS): Likewise.
5176         * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
5177         && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
5178
5179         * posix/regex_internal.c: Check if DEBUG is defined and is
5180         set.
5181
5182         * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
5183         (HAVE_MBSRTOWCS): Likewise.
5184         * posix/fnmatch.c: Include string.h unconditionally.
5185
5186 2014-08-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
5187
5188         * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
5189         reversal.
5190
5191 2014-07-31  Roland McGrath  <roland@hack.frob.com>
5192
5193         * sysdeps/generic/safe-fatal.h: New file.
5194         * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
5195         * nptl/forward.c: Include it.
5196         (__pthread_unwind): Use __safe_fatal as default action, rather
5197         than a bogus use of INTERNAL_SYSCALL that could never work.
5198
5199         * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
5200         * configure.ac (libc_cv_builtin_trap): New test.
5201         * configure: Regenerated.
5202         * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
5203         (ABORT_INSTRUCTION): Define using __builtin_trap.
5204
5205         * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
5206         * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
5207         * sysdeps/nptl/nptl-signals.h: New file.
5208         * nptl/pthreadP.h: Include <nptl-signals.h>.
5209
5210 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
5211
5212         * sysdeps/s390/s390-64/utf16-utf32-z9.c
5213         (ONE_DIRECTION): Define.
5214         * sysdeps/s390/s390-64/utf8-utf16-z9.c
5215         (ONE_DIRECTION): Define.
5216         * sysdeps/s390/s390-64/utf8-utf32-z9.c
5217         (ONE_DIRECTION): Define.
5218
5219 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
5220
5221         * sysdeps/s390/Makefile: Delete file.
5222         * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
5223         * sysdeps/s390/__longjmp.c: Delete file.
5224         * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
5225         Remove fields __flags and __reserved.
5226         * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
5227         and add versioning.
5228         * sysdeps/s390/rtld-__longjmp.c: Delete file.
5229         * sysdeps/s390/rtld-global-offsets.sym: Likewise.
5230         * sysdeps/s390/rtld-setjmp.S: Likewise.
5231         * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
5232         * sysdeps/s390/s390-32/__longjmp.c: ... here.
5233         * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
5234         * sysdeps/s390/s390-32/setjmp.S: ... here.
5235         Add versioning.
5236         (__sigsetjmp): Remove setting __flags field.
5237         * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
5238         * sysdeps/s390/s390-64/__longjmp.c: ... here.
5239         * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
5240         * sysdeps/s390/s390-64/setjmp.S: ... here.
5241         Add versioning.
5242         (__sigsetjmp): Remove setting __flags field.
5243         * sysdeps/s390/setjmp.S: Delete file.
5244         * sysdeps/s390/sigjmp.c: Likewise.
5245         * sysdeps/s390/v1-longjmp.c: Likewise.
5246         * sysdeps/s390/v1-setjmp.h: Likewise.
5247         * sysdeps/s390/v1-sigjmp.c: Likewise.
5248         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
5249         Remove v1-longjmp_chk.
5250         * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
5251         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
5252         Include debug/longjmp_chk.c and add versioning.
5253         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
5254         Include nptl/pt-longjmp.c and add versioning.
5255         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
5256         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
5257         Include __longjmp.c.
5258         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
5259         Move to ...
5260         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
5261         (__getcontext): Remove setting __flags field.
5262         Add versioning.
5263         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
5264         Don't restore upper high grps.
5265         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
5266         Likewise.
5267         (__swapcontext): Remove setting uc_flags field.
5268         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
5269         Delete file.
5270         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
5271         Include __longjmp.c.
5272         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
5273         Move to ...
5274         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
5275         (__getcontext): Remove setting __flags field.
5276         Add versioning.
5277         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
5278         (__swapcontext): Remove setting uc_flags field.
5279         * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
5280         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
5281         Remove fields uc_high_gprs and __reserved.
5282         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
5283         New file with reverted content.
5284         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
5285         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
5286         Regenerated.
5287         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
5288         Regenerated.
5289
5290 2014-07-31  Andreas Schwab  <schwab@suse.de>
5291
5292         * config.h.in (HAVE_IFUNC): Define to 0.
5293         * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
5294         definedness.
5295
5296 2014-07-30  Ling Ma  <ling.ml@alibaba-inc.com>
5297
5298         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
5299         memmove-avx-unaligned, memcpy-avx-unaligned and
5300         mempcpy-avx-unaligned.
5301         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
5302         Add tests for AVX memcpy functions.
5303         * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
5304         * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
5305         memcpy_chk.
5306         * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
5307         * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
5308         memmove_chk.
5309         * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
5310         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
5311         mempcpy_chk.
5312         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
5313         * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
5314         * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
5315
5316 2013-07-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5317
5318         [BZ #17213]
5319         * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
5320         powerpc64le.
5321
5322 2014-07-29  Jeff Layton  <jlayton@poochiereds.net>
5323
5324         [BZ #16839]
5325         * manual/llio.texi: Add section about open file description locks.
5326         * manual/examples/ofdlocks.c: Example of open file description
5327         lock usage.
5328         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
5329         F_OFD_SETLK, and F_OFD_SETLKW.
5330
5331 2014-07-23  Allan McRae  <allan@archlinux.org>
5332
5333         * po/es.po: Update Spanish translation from translation project.
5334
5335 2014-07-18  Andreas Schwab  <schwab@linux-m68k.org>
5336
5337         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
5338
5339 2014-07-17  Maciej W. Rozycki  <macro@codesourcery.com>
5340
5341         [BZ #17078]
5342         * sysdeps/arm/dl-machine.h (elf_machine_rela)
5343         [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
5344         (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
5345
5346 2014-07-17  Joseph Myers  <joseph@codesourcery.com>
5347
5348         [BZ #17088]
5349         * math/fesetenv.c (__fesetenv)
5350         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
5351         * math/feupdateenv.c (__feupdateenv)
5352         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
5353
5354         * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
5355         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
5356         (__ASSUME_SOCKETCALL): Do not define.
5357
5358         * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
5359         * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
5360         (__ASSUME_SOCKETCALL): Do not define.
5361         (__ASSUME_ST_INO_64_BIT): Define unconditionally.
5362         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
5363         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5364         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
5365         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5366         [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
5367         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5368         [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5369
5370         * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
5371         * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
5372         (__ASSUME_SOCKETCALL): Do not define.
5373         (__ASSUME_IPC64): Define unconditionally.
5374         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
5375         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5376         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
5377         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5378         [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
5379         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5380         [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
5381         Likewise.
5382
5383         * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
5384         * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
5385         (__ASSUME_SOCKETCALL): Do not define.
5386         (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
5387         (__ASSUME_FUTEX_LOCK_PI): Likewise.
5388         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5389         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
5390         (__ASSUME_REQUEUE_PI): Define unconditionally.
5391         [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
5392         (__ASSUME_RECVMMSG_SYSCALL): Do not define.
5393         [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5394         [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
5395         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5396         [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5397
5398         * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
5399         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
5400         (__ASSUME_SOCKETCALL): Do not define.
5401         [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
5402         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5403         [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5404         [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
5405         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5406         [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5407
5408         * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
5409         * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
5410         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5411         [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
5412         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5413         [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
5414         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5415         [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
5416         (__ASSUME_GETCPU_SYSCALL): Likewise.
5417
5418         * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
5419         * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR.  Remove
5420         cases for individual architectures.
5421         * sysdeps/gnu/configure: Regenerated.
5422         * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
5423         LIBC_SLIBDIR_RTLDDIR.
5424         * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
5425         * sysdeps/unix/sysv/linux/mips/configure.ac: Use
5426         LIBC_SLIBDIR_RTLDDIR.
5427         * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
5428         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
5429         LIBC_SLIBDIR_RTLDDIR.
5430         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
5431         Regenerated.
5432         * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
5433         * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
5434         file.
5435         * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
5436         * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
5437         file.
5438         * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
5439         * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
5440         * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
5441         * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
5442
5443         * sysdeps/aarch64/shlib-versions: Move to ...
5444         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
5445         * sysdeps/alpha/shlib-versions: Move to ...
5446         * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
5447         * sysdeps/arm/shlib-versions: Move to ...
5448         * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
5449         * sysdeps/hppa/shlib-versions: Move all contents except for
5450         libgcc_s entry to ...
5451         * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here.  Merge in
5452         entry from ...
5453         * sysdeps/hppa/nptl/shlib-versions: ... here.  Remove file.
5454         * sysdeps/ia64/shlib-versions: Move to ...
5455         * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here.  Merge in
5456         entry from ...
5457         * sysdeps/ia64/nptl/shlib-versions: ... here.  Remove file.
5458         * sysdeps/m68k/coldfire/shlib-versions: Move to ...
5459         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
5460         * sysdeps/microblaze/shlib-versions: Move to ...
5461         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
5462         * sysdeps/mips/shlib-versions: Move to ...
5463         * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here.  Merge in
5464         entry from ...
5465         * sysdeps/mips/nptl/shlib-versions: ... here.  Remove file.
5466         * sysdeps/tile/shlib-versions: Move to ...
5467         * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
5468         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
5469         from ...
5470         * sysdeps/x86_64/64/shlib-versions: ... here.  Remove file.
5471         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
5472         entry from ...
5473         * sysdeps/x86_64/x32/shlib-versions: ... here.  Remove file.
5474
5475 2014-07-17  Will Newton  <will.newton@linaro.org>
5476
5477         * sysdeps/arm/bits/atomic.h
5478         (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
5479         (__arch_compare_and_exchange_bool_16_int): Likewise.
5480         (__arch_compare_and_exchange_bool_64_int): Likewise.
5481
5482         * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
5483         into an #else block.
5484
5485 2014-07-16  Roland McGrath  <roland@hack.frob.com>
5486
5487         * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
5488         just Linux configurations.  Test empirically that the compiler sets
5489         __ARM_EABI__, rather than using the tuple to decide.
5490         * sysdeps/arm/preconfigure: Regenerated.
5491         * sysdeps/unix/sysv/linux/arm/configure: File removed.
5492         * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
5493         contents appended ...
5494         * sysdeps/arm/configure.ac: ... here.
5495         * sysdeps/arm/configure: Regenerated.
5496
5497 2014-07-15  Roland McGrath  <roland@hack.frob.com>
5498
5499         * nptl/pthread_kill.c: New file.
5500         * nptl/pthread_sigmask.c: New file.
5501         * nptl/pthread_sigqueue.c: New file.
5502
5503         * sysdeps/nptl/lowlevellock.h: New file.
5504         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
5505         * sysdeps/nptl/lowlevellock-futex.h: New file.
5506
5507         * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
5508         Remove dead declarations.
5509
5510 2014-07-14  H.J. Lu  <hongjiu.lu@intel.com>
5511
5512         * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
5513         * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
5514         config-cflags-avx2.
5515         * sysdeps/x86_64/configure.ac: Likewise.
5516         * sysdeps/i386/configure: Regenerated.
5517         * sysdeps/x86_64/configure: Likewise.
5518         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
5519         memset-avx2 only if config-cflags-avx2 is yes.
5520         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
5521         Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
5522         defined.
5523         * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
5524         only if HAVE_AVX2_SUPPORT is defined.
5525         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
5526
5527 2014-07-14  Alan Modra  <amodra@gmail.com>
5528
5529         [BZ #17153]
5530         * elf/elf.h (DT_PPC64_NUM): Correct value.
5531         * NEWS: Add to fixed bug list.
5532
5533 2014-07-13  Jim Meyering  <meyering@fb.com>
5534
5535         [BZ 17150]
5536         regex: don't deref NULL upon heap allocation failure
5537         * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
5538         failure in one more place.
5539         To trigger the segfault, configure grep -with-included-regex,
5540         build it, and run these commands:
5541         ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
5542
5543 2014-07-13  Andreas Schwab  <schwab@linux-m68k.org>
5544
5545         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
5546
5547 2014-07-11  Richard Henderson  <rth@redhat.com>
5548
5549         * sysdeps/aarch64/libm-test-ulps: Update.
5550
5551 2014-07-10  Florian Weimer  <fweimer@redhat.com>
5552
5553         [BZ #17135]
5554         * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
5555         * nptl/allocatestack.c (__nptl_setxid_error): New function.
5556         (__nptl_setxid): Initialize error member.  Call
5557         __nptl_setxid_error.
5558         * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
5559         * nptl/descr.h (struct xid_command): Add error member.
5560         * nptl/tst-setuid3.c: New file.
5561         * nptl/Makefile (tests): Add it.
5562
5563 2014-07-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5564
5565         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
5566         New define.
5567         (__lll_trylock): Use __lll_base_trylock.
5568         (__lll_cond_trylock): Likewise.
5569
5570 2014-07-10  Roland McGrath  <roland@hack.frob.com>
5571
5572         * nptl/pthread_create.c (start_thread): Use atomic_or and
5573         lll_futex_wake directly rather than lll_robust_dead.
5574         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
5575         (lll_robust_dead): Macro removed.
5576         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
5577         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
5578         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
5579         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
5580         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
5581         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
5582         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
5583         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
5584         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
5585         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
5586         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5587         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5588         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
5589         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
5590         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5591
5592         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
5593         Use atomic_compare_and_exchange_val_acq directly rather than
5594         lll_robust_trylock.
5595         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
5596         (__lll_robust_trylock, lll_robust_trylock): Removed.
5597         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
5598         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
5599         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
5600         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
5601         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
5602         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
5603         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
5604         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
5605         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
5606         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5607         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5608         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
5609         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
5610         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5611
5612 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5613
5614         * manual/locale.texi (Locale Names): New section documenting
5615         locale name syntax.  Adjust menu and node chaining accordingly.
5616         (Choosing Locale): Reference Locale Names, Locale Categories.
5617         Mention setting LC_ALL=C.  Reflect that name syntax is now
5618         documented.
5619         (Locale Categories): New section title.  Reference Locale Names.
5620         LC_ALL is an environment variable, but not a category.
5621         (Setting the Locale): Remove "locale -a" invocation and LOCPATH
5622         description, now in Locale Name.  Reference that section.  Locale
5623         name syntax is now documented.
5624
5625 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5626
5627         [BZ #17137]
5628         * locale/findlocale.c (name_present, valid_locale_name): New
5629         functions.
5630         (_nl_find_locale): Use the loc_name variable to store name
5631         candidates.  Call name_present and valid_locale_name to check and
5632         validate locale names.  Return an error if the locale is invalid.
5633
5634 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5635
5636         * locale/setlocale.c (setlocale): Use strdup for allocating
5637         composite name copy.
5638
5639 2014-07-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
5640
5641         Sync up with gnulib.
5642         * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
5643         [!_LIBC && ENABLE_NLS]: Include gettext.h.
5644         [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
5645         and _GL_ARG_NONNULL.
5646         [USE_UNLOCKED_IO]: Include unlocked-io.h.
5647         [!_LIBC]: Include code for Windows and Cygwin.
5648         [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
5649         Include prototype for int strerror_r.
5650         [!_LIBC] (is_open): New function.
5651         (flush_stdout): New function.
5652         (print_errno_message): Use it.
5653         (error): Likewise.
5654         (error_at_line): Likewise.
5655         (error_tail) Add function attribute macros.  Use
5656         __builtin_expect.
5657
5658         * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
5659
5660         * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
5661
5662         * io/ftw.c: Include sys/param.h unconditionally.
5663
5664         * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
5665
5666         [BZ #17125]
5667         * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
5668         libc_freeres_ptr.
5669         (freecache): New function to free CACHE on exit.
5670
5671         * sunrpc/xdr.c (xdr_string): Add comment about SIZE
5672         initialization.
5673
5674 2014-07-09  David S. Miller  <davem@davemloft.net>
5675
5676         * sysdeps/sparc/fpu/libm-test-ulps: Update.
5677
5678         * sysdeps/sparc/nptl/internaltypes.h: Delete.
5679         * sysdeps/sparc/nptl/sparc-nptl.h: New file.
5680         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
5681         * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
5682         * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
5683         * sysdeps/sparc/nptl/sem_init.c: Likewise.
5684         * sysdeps/sparc/nptl/sem_post.c: Likewise.
5685         * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
5686         * sysdeps/sparc/nptl/sem_wait.c: Likewise.
5687         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
5688         * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
5689         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
5690         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
5691
5692 2014-07-09  Andreas Schwab  <schwab@suse.de>
5693
5694         * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
5695         output.
5696         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
5697         (do_test): Likewise.
5698
5699         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
5700
5701 2014-07-09  Will Newton  <will.newton@linaro.org>
5702
5703         * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
5704         * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
5705         * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
5706         * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
5707         * sysdeps/hppa/start.S (_start): Likewise.
5708
5709 2014-07-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
5710
5711         * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
5712
5713         * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
5714         defined.
5715
5716 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
5717
5718         * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
5719         after checking that it is non-NULL.
5720
5721         * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
5722
5723 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5724
5725         * sysdeps/powerpc/memmove.c: Remove file.
5726         * sysdeps/powerpc/powerpc32/power4/memcopy.h
5727         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
5728         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
5729         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
5730         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
5731         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
5732         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
5733         string memmove instead of removed powerpc one.
5734
5735         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
5736         [weak_alias]: Fix compiler warning due trailing data.
5737         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
5738         [weak_alias]: Likewise.
5739         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
5740         warnigs due missing definition of __strcpy_power7 and __strlen_power7.
5741
5742         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
5743         (__libc_ifunc_impl_list): Add memmove functions.
5744
5745 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
5746
5747         * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
5748         Remove code.
5749         * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
5750         Likewise
5751         * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
5752         Likewise
5753         * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
5754         Likewise
5755         * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
5756         Likewise
5757         * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
5758         Likewise
5759         * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
5760         Likewise
5761         * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
5762         Likewise
5763         * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
5764         Likewise
5765         * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
5766         Likewise
5767         * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
5768         Likewise
5769         * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
5770         Likewise
5771         * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
5772         Likewise
5773         * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
5774         Likewise
5775         * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
5776         Likewise
5777         * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
5778         Likewise
5779         * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
5780         Likewise
5781
5782 2014-07-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5783
5784         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
5785         to avoid alignment traps in non-cacheable memory.
5786         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
5787
5788         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
5789         multiarch objects.
5790         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
5791         file: multiarch power7 memmove.
5792         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
5793         multiarch default memmove.
5794         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
5795         multiarch memove for powerpc32/power4.
5796
5797         * string/bcopy.c: Use full path to include memmove.c.
5798         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
5799         multiarch objects.
5800         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
5801         bcopy for powerpc64.
5802         * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
5803         bcopy for powerpc64.
5804         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
5805         and memmove implementations.
5806         * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
5807         optimized multiarch memmove for POWER7/powerpc64.
5808         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
5809         default multiarch memmove for powerpc64.
5810         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
5811         multiarch for powerpc64.
5812         * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
5813         for POWER7/powerpc64.
5814         * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
5815         memmove for POWER7/powerpc64.
5816
5817         * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
5818         glibc default one.
5819
5820         * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
5821         __ELF_NATIVE_CLASS equal to 64.
5822
5823 2014-07-07  Roland McGrath  <roland@hack.frob.com>
5824
5825         * sysdeps/nptl/lowlevellock.h: File removed.
5826
5827         * NEWS: NPTL is no longer an add-on!
5828         * nptl/internaltypes.h: Moved ...
5829         * sysdeps/nptl/internaltypes.h: ... here.
5830         * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
5831         * sysdeps/nptl/fork.c: Likewise.
5832         * sysdeps/nptl/gai_misc.h: Likewise.
5833         * sysdeps/nptl/librt-cancellation.c: Likewise.
5834         * sysdeps/nptl/jmp-unwind.c: Likewise.
5835         * sysdeps/nptl/setxid.h: Likewise.
5836         * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
5837         * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
5838         * sysdeps/unix/sysv/linux/arm/Implies: New file.
5839         * sysdeps/unix/sysv/linux/hppa/Implies: New file.
5840         * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
5841         * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
5842         * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
5843         * sysdeps/unix/sysv/linux/m68k/Implies: New file.
5844         * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
5845         * sysdeps/unix/sysv/linux/mips/Implies: New file.
5846         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
5847         * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
5848         * sysdeps/unix/sysv/linux/sh/Implies: New file.
5849         * sysdeps/unix/sysv/linux/sparc/Implies: New file.
5850         * sysdeps/unix/sysv/linux/tile/Implies: New file.
5851         * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
5852         * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
5853         * nptl/Makeconfig: Moved ...
5854         * sysdeps/nptl/Makeconfig: ... here.
5855         * nptl/configure: File removed.
5856         * nptl/ANNOUNCE: File removed.
5857         * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
5858         * sysdeps/unix/sysv/linux/configure: Regenerated.
5859
5860         * nptl/Makefile (routines): Add libc_pthread_init,
5861         libc_multiple_threads, register-atfork and unregister-atfork.
5862         (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
5863         (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
5864         lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
5865         pthread-pi-defines.sym, structsem.sym.
5866         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
5867         (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
5868         [$(subdir) = nptl] (tests): Add tst-setgetname.
5869         * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
5870         * sysdeps/unix/sysv/linux/sigaction.c: Just include
5871         <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
5872         [!LIBC_SIGACTION]: Remove aliases.
5873         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
5874         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
5875         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
5876         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
5877         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
5878         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
5879         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
5880         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
5881         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
5882         * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
5883         (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
5884         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
5885         __libc_allocate_rtsig_private.
5886         * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
5887         * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
5888         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
5889         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
5890         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
5891         * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
5892         * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
5893         * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
5894         * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
5895         * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
5896         * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
5897         * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
5898         * nptl/internaltypes.h: ... here.
5899         * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
5900         * sysdeps/nptl/jmp-unwind.c: ... here.
5901         * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
5902         * nptl/libc-lowlevellock.c: ... here.
5903         * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
5904         * nptl/libc_multiple_threads.c: ... here.
5905         * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
5906         * nptl/libc_pthread_init.c: ... here.
5907         * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
5908         * nptl/lowlevelbarrier.sym: ... here.
5909         * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
5910         * nptl/lowlevelcond.sym: ... here.
5911         * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
5912         * nptl/lowlevellock.c: ... here.
5913         * nptl/lowlevellock.h: Moved ...
5914         * sysdeps/nptl/lowlevellock.h: ... here.
5915         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
5916         * nptl/lowlevelrobustlock.c: ... here.
5917         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
5918         * nptl/lowlevelrobustlock.sym: ... here.
5919         * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
5920         * nptl/lowlevelrwlock.sym: ... here.
5921         * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
5922         * nptl/pt-fork.c: ... here.
5923         * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
5924         * nptl/pthread-pi-defines.sym: ... here.
5925         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
5926         * nptl/pthread_attr_getaffinity.c: ... here.
5927         * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
5928         * nptl/pthread_attr_setaffinity.c: ... here.
5929         * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
5930         * nptl/pthread_mutex_cond_lock.c: ... here.
5931         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
5932         Update #include.
5933         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
5934         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
5935         * nptl/pthread_once.c: ... here, replacing old file.
5936         * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
5937         * nptl/pthread_yield.c: ... here.
5938         * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
5939         * nptl/register-atfork.c: ... here.
5940         * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
5941         * nptl/sem_post.c: ... here.
5942         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
5943         * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
5944         * nptl/sem_timedwait.c: ... here.
5945         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
5946         * nptl/sem_trywait.c: ... here.
5947         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
5948         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
5949         * nptl/sem_wait.c: ... here.
5950         * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
5951         * nptl/structsem.sym: ... here.
5952         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
5953         * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
5954         * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
5955         * nptl/unregister-atfork.c: ... here.
5956         * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
5957         * nptl/unwindbuf.sym: ... here.
5958         * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
5959         * sysdeps/nptl/fork.c: ... here.
5960         * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
5961         * sysdeps/nptl/fork.h: ... here.
5962         * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
5963         * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
5964         * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
5965         * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
5966         * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
5967         * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
5968         * sysdeps/unix/sysv/linux/getpid.c: ... here.
5969         * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
5970         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
5971         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
5972         * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
5973         * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
5974         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
5975         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
5976         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
5977         * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
5978         * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
5979         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
5980         * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
5981         * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
5982         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
5983         * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
5984         * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
5985         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
5986         * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
5987         * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
5988         * sysdeps/unix/sysv/linux/raise.c: ... here.
5989         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
5990         * sysdeps/unix/sysv/linux/timer_create.c: ... here.
5991         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
5992         * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
5993         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
5994         * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
5995         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
5996         * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
5997         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
5998         * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
5999         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
6000         * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
6001         * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
6002         * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
6003         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
6004
6005 2014-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
6006
6007         * sysdeps/generic/memcopy.h: Add comment for
6008         MEMCPY_OK_FOR_FWD_MEMMOVE.
6009
6010 2014-07-04  Will Newton  <will.newton@linaro.org>
6011
6012         * string/memchr.c: Merge from gnulib.
6013         [_LIBC]: Remove conditionals.
6014         (__ptr_t): Remove define.
6015         (LONG_MAX_32_BITS): Likewise.
6016         (LONG_MAX): Likewise.
6017         (MEMCHR): Use ANSI prototype and optimize algorithm.
6018
6019         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
6020
6021 2014-07-03  Roland McGrath  <roland@hack.frob.com>
6022
6023         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
6024         (lll_futex_timed_wait_bitset): Fix syscall argument count.
6025
6026         * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
6027         Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
6028         in a bare environment with no <stdlib.h> installed.
6029         * sysdeps/nptl/configure: Regenerated.
6030
6031         * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
6032
6033         * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
6034         AC_EGREP_CPP for kernel header checks, so they only succeed if
6035         including <linux/version.h> actually works right.
6036         * sysdeps/unix/sysv/linux/configure: Regenerated.
6037
6038         * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
6039         value so it's not diagnosed as unused.
6040
6041         * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
6042         thing) with "ifeq ($(subdir),rt)".
6043
6044 2014-07-03  Richard Henderson  <rth@redhat.com>
6045
6046         * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
6047         * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
6048         include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
6049
6050         * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
6051         (math_force_eval): New.
6052
6053         * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
6054         * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
6055
6056         * sysdeps/alpha/fpu/s_round.c: Remove file.
6057         * sysdeps/alpha/fpu/s_roundf.c: Remove file.
6058
6059         * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
6060         (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
6061         * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
6062         (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
6063         (_dl_start, print_statistics): Likewise.
6064         * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
6065         HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
6066
6067         * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6068         * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6069         * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6070         * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6071         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6072         (HP_SMALL_TIMING_AVAIL): Define.
6073         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6074         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
6075         (HP_SMALL_TIMING_AVAIL): Define.
6076         * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6077         * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6078
6079         * sysdeps/aarch64/hp-timing.h: New file.
6080
6081         * sysdeps/generic/hp-timing.h: Remove dead comment.
6082         * sysdeps/generic/hp-timing-common.h: New file.
6083         * sysdeps/alpha/hp-timing.h: Include it.
6084         (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
6085         * sysdeps/i386/i686/hp-timing.h: Likewise.
6086         * sysdeps/ia64/hp-timing.h: Likewise.
6087         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
6088         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
6089         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
6090         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
6091         * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
6092         (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
6093         (hp_timing_t): New.
6094
6095         * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
6096         * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
6097         (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
6098         * elf/rtld.c (_dl_start_final): Likewise.
6099         * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
6100         * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6101         * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6102         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6103         * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6104         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6105         (HP_TIMING_DIFF_INIT): Remove.
6106         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6107         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
6108         (HP_TIMING_DIFF_INIT): Remove.
6109         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6110         * sysdeps/i386/i686/hp-timing.c: Remove file.
6111         * sysdeps/x86_64/hp-timing.c: Remove file.
6112         * sysdeps/ia64/hp-timing.c: Remove file.
6113         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
6114         * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
6115         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
6116         * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
6117
6118         * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
6119         * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
6120         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
6121         * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6122         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6123         (HP_TIMING_ACCUM): Remove.
6124         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6125         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
6126         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6127
6128         * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
6129         * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
6130         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
6131         * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
6132         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
6133         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
6134         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
6135         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
6136
6137         * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
6138
6139 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
6140
6141         * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
6142
6143 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6144
6145         Sync up with gettext.
6146         * intl/loadmsgcat.c: Define O_BINARY if not defined.
6147         [_MSC_VER]: Include malloc.h
6148         [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
6149         (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
6150         (_nl_load_domain): Open DOMAIN_FILE in binary mode.  Don't use
6151         TEMP_FAILURE_RETRY.  Cast return of alloca.
6152         [!_LIBC] Call gl_rwlock_init.
6153         [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
6154
6155 2014-07-02  Roland McGrath  <roland@hack.frob.com>
6156
6157         * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
6158         before checking its value.
6159
6160 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6161
6162         * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
6163
6164         * debug/memcpy_chk.c: Don't include pagecopy.h.
6165         * debug/mempcpy_chk.c: Likewise.
6166         * string/memcpy.c: Likewise.
6167         * string/memmove.c: Likewise.
6168         * sysdeps/powerpc/memmove.c: Likewise.
6169         * sysdeps/generic/memcopy.h: Include pagecopy.h.  Move
6170         definition of PAGE_COPY_FWD_MAYBE here...
6171         * sysdeps/generic/pagecopy.h: ... from here.
6172         * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
6173
6174 2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
6175             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6176
6177         * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
6178         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
6179         optimizations.
6180         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
6181         (__libc_ifunc_impl_list): Likewise.
6182         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
6183         multiarch strcat for PPC64.
6184         * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
6185         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
6186
6187 2014-07-02  Roland McGrath  <roland@hack.frob.com>
6188
6189         * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
6190
6191 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6192
6193         * intl/loadmsgcat.c: Remove declaration of
6194         get_sysdep_segment_value.
6195         (get_sysdep_segment_value): Use ISO C style.
6196         (_nl_load_domain): Use ISO C style.  Get rid of redundant
6197         semicolon.  Fix typo and formatting in comment.
6198         (_nl_unload_domain): Use ISO C style.
6199
6200         * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
6201
6202 2014-07-02  Will Newton  <will.newton@linaro.org>
6203
6204         * malloc/obstack.c: Merge from gnulib master.
6205         [HAVE_CONFIG_H]: Remove conditional code.
6206         [!_LIBC]: Include config.h.
6207         [!ELIDE_CODE]: Don't include inttypes.h, include
6208         stdint.h unconditionally.
6209         (print_and_abort): Mark as _Noreturn.
6210         (_obstack_allocated_p): Mark as __attribute_pure__.
6211         (obstack_free): Rename to __obstack_free.
6212         [!__attribute__]: Remove conditional code.
6213         * malloc/obstack.h: Merge from gnulib master.
6214         [__cplusplus]: Move conditional down.
6215         [!__attribute_pure__]: Define __attribute_pure__ here
6216         if it is not already defined.
6217         (_obstack_memory_used): Mark as __attribute_pure__.
6218         [!__obstack_free]: Define as obstack_free.
6219         [__GNUC__]: Remove check for ancient NeXT gcc.
6220
6221 2014-07-02  Will Newton  <will.newton@linaro.org>
6222             Paul Eggert  <eggert@cs.ucla.edu>
6223
6224         * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
6225
6226 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6227
6228         * resolv/gethnamaddr.c: Add comment warning that the file is
6229         not maintained.
6230
6231 2014-07-01  Carlos O'Donell  <carlos@redhat.com>
6232
6233         * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
6234         entries.
6235
6236         * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
6237         entry for aio_cancel and aio_cancel64.
6238         * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
6239         * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
6240         * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
6241         * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
6242         * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
6243         * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
6244         * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
6245         * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
6246         * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
6247         * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
6248         * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
6249         * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
6250         * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
6251
6252 2014-07-01  Roland McGrath  <roland@hack.frob.com>
6253
6254         * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
6255         * nptl/pthread_mutex_lock.c: Likewise.
6256         * nptl/pthread_mutex_timedlock.c: Likewise.
6257         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
6258
6259 2014-07-01  Richard henderson  <rth@redhat.com>
6260
6261         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
6262         (__isnan, __isnanl): Remove.
6263         * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
6264
6265         * sysdeps/alpha/fpu/libm-test-ulps: Update.
6266
6267 2014-07-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
6268
6269         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
6270
6271 2014-07-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
6272
6273         * resolv/nss_dns/dns-host.c (getanswer_r)
6274         [MULTI_PTRS_ARE_ALIASES]: Remove code.
6275
6276 2014-07-01  Joseph Myers  <joseph@codesourcery.com>
6277
6278         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
6279         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
6280         undefine.
6281         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
6282         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
6283
6284 2014-07-01  Roland McGrath <roland@hack.frob.com>
6285
6286         * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
6287         * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
6288
6289         * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
6290         * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
6291
6292         * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
6293         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
6294         ... here.
6295         * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
6296         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
6297
6298         * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
6299         * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
6300         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
6301         * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
6302
6303         * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
6304         * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
6305         * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
6306         * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
6307         * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
6308         Moved ...
6309         * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
6310         ... here.
6311         * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
6312         * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
6313         * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
6314         * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
6315         * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
6316         * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
6317         * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
6318         * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
6319         * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
6320         * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
6321         * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
6322         * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
6323         * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
6324         * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
6325         * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
6326         * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
6327         * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
6328         * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
6329         * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
6330         * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
6331         ... here.
6332         * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
6333         * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
6334         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
6335         * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
6336         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
6337         * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
6338         * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
6339         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
6340
6341 2014-07-01  David Holsgrove  <david.holsgrove@xilinx.com>
6342
6343         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
6344         * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
6345         * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
6346         Add sysdep.
6347
6348 2014-06-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6349
6350         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6351
6352 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
6353
6354         * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
6355         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
6356
6357         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
6358
6359         * sysdeps/arm/libm-test-ulps: Regenerated.
6360
6361 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
6362             Roland McGrath <roland@hack.frob.com>
6363
6364         * test-skeleton.c (signal_handler): Kill the whole process group
6365         before killing the child individually.
6366         (main): Report any failure on `setpgid'.
6367
6368 2014-06-30  Roland McGrath  <roland@hack.frob.com>
6369
6370         * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
6371         from _TLS_H to _ARM_NPTL_TLS_H.
6372         (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
6373         * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
6374
6375 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
6376
6377         [BZ #16539]
6378         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
6379         (__expm1l): Return argument unchanged when small but not
6380         subnormal.
6381
6382         * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
6383         include macro name.
6384         (_FP_UNPACK_RAW_1_P): Likewise.
6385         (_FP_PACK_RAW_1): Likewise.
6386         (_FP_PACK_RAW_1_P): Likewise.
6387         (_FP_MUL_MEAT_1_wide): Likewise.
6388         (_FP_MUL_MEAT_DW_1_hard): Likewise.
6389         (_FP_MUL_MEAT_1_hard): Likewise.
6390         (_FP_DIV_MEAT_1_imm): Likewise.
6391         (_FP_DIV_MEAT_1_udiv_norm): Likewise.
6392         (_FP_DIV_MEAT_1_udiv): Likewise.
6393         * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
6394         (_FP_UNPACK_RAW_2): Likewise.
6395         (_FP_UNPACK_RAW_2_P): Likewise.
6396         (_FP_PACK_RAW_2): Likewise.
6397         (_FP_PACK_RAW_2_P): Likewise.
6398         (_FP_MUL_MEAT_DW_2_wide): Likewise.
6399         (_FP_MUL_MEAT_2_wide): Likewise.
6400         (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
6401         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
6402         (_FP_MUL_MEAT_DW_2_gmp): Likewise.
6403         (_FP_MUL_MEAT_2_gmp): Likewise.
6404         (_FP_DIV_MEAT_2_udiv): Likewise.
6405         * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
6406         (_FP_FRAC_SRL_4): Likewise.
6407         (_FP_FRAC_SRST_4): Likewise.
6408         (_FP_FRAC_SRS_4): Likewise.
6409         (_FP_UNPACK_RAW_4): Likewise.
6410         (_FP_UNPACK_RAW_4_P): Likewise.
6411         (_FP_PACK_RAW_4): Likewise.
6412         (_FP_PACK_RAW_4_P): Likewise.
6413         (_FP_MUL_MEAT_DW_4_wide): Likewise.
6414         (_FP_MUL_MEAT_4_wide): Likewise.
6415         (_FP_MUL_MEAT_4_gmp): Likewise.
6416         (umul_ppppmnnn): Likewise.
6417         (_FP_DIV_MEAT_4_udiv): Likewise.
6418         (__FP_FRAC_ADD_4): Likewise.
6419         (__FP_FRAC_SUB_3): Likewise.
6420         (__FP_FRAC_SUB_4): Likewise.
6421         (__FP_FRAC_DEC_3): Likewise.
6422         (__FP_FRAC_DEC_4): Likewise.
6423         (__FP_FRAC_ADDI_4): Likewise.
6424         * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
6425         (_FP_FRAC_SRL_8): Likewise.
6426         (_FP_FRAC_SRS_8): Likewise.
6427
6428         * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
6429         include macro name.
6430         (FP_UNPACK_RAW_EP): Likewise.
6431         (FP_PACK_RAW_E): Likewise.
6432         (FP_PACK_RAW_EP): Likewise.
6433         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
6434         (_FP_ISSIGNAN): Likewise.
6435         (_FP_ADD_INTERNAL): Likewise.
6436         (_FP_FMA): Likewise.
6437         (_FP_CMP): Likewise.
6438         (_FP_SQRT): Likewise.
6439         (_FP_TO_INT): Likewise.
6440         (_FP_FROM_INT): Likewise.
6441         (FP_EXTEND): Likewise.
6442         (_FP_DIV_MEAT_N_loop): Likewise.
6443
6444 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
6445
6446         * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
6447         throughout.
6448
6449 2014-06-29  Joseph Myers  <joseph@codesourcery.com>
6450
6451         [BZ #17097]
6452         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
6453         result with correct sign in case of exponents that produce
6454         overflow except for X very close to 1.
6455
6456 2014-06-28  Paul Eggert  <eggert@cs.ucla.edu>
6457
6458         mktime: merge #if/#ifdef usage from glibc
6459         * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
6460         as that works with both Glibc's and Gnulib's style.
6461         See thread starting at Siddhesh Poyarekar's bug report at:
6462         http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
6463
6464 2014-06-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
6465
6466         * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
6467         * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
6468         * sysdeps/tile/tilegx/memmove.c: Remove file.
6469
6470 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
6471
6472         * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
6473         abi-name definition.
6474         * scripts/soversions.awk: Do not handle or generate ABI lines.
6475         * shlib-versions: Remove ABI entries.
6476         * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
6477         * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
6478
6479 2014-06-27  Roland McGrath  <roland@hack.frob.com>
6480
6481         * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
6482         * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
6483         * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
6484         * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
6485         * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
6486         * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
6487         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
6488         Moved ...
6489         * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
6490         ... here.
6491         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
6492         * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
6493         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
6494         * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
6495         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
6496         * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
6497         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
6498         * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
6499         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
6500         * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
6501         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
6502         * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
6503         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
6504         Moved ...
6505         * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
6506         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
6507         * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
6508         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
6509         * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
6510         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
6511         Moved ...
6512         * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
6513         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
6514         Moved ...
6515         * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
6516         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
6517         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
6518         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
6519         Moved ...
6520         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
6521         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
6522         * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
6523         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
6524         * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
6525         * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
6526         * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
6527         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
6528         Moved ...
6529         * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
6530         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
6531         * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
6532         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
6533         Moved ...
6534         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
6535         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
6536         Moved ...
6537         * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
6538         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
6539         * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
6540         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
6541         Moved ...
6542         * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
6543         ... here.
6544         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
6545         Identical file removed.
6546         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
6547         Moved ...
6548         * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
6549         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
6550         Identical file removed.
6551         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
6552         * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
6553         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
6554         Moved ...
6555         * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
6556         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
6557         Identical file removed.
6558         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
6559         * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
6560         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
6561         Identical file removed.
6562         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
6563         * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
6564         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
6565         Identical file removed.
6566         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
6567         * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
6568         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
6569         Identical file removed.
6570         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
6571         Moved ...
6572         * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
6573         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
6574         Identical file removed.
6575         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
6576         Moved ...
6577         * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
6578         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
6579         * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
6580         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
6581         Identical file removed.
6582         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
6583         Moved ...
6584         * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
6585         ... here.
6586         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
6587         Identical file removed.
6588         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
6589         Moved ...
6590         * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
6591         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
6592         Identical file removed.
6593         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
6594         Moved ...
6595         * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
6596         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
6597         * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
6598         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
6599         * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
6600         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
6601         Moved ...
6602         * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
6603         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
6604         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
6605
6606         * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
6607         SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
6608         * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
6609         * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
6610         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
6611
6612 2014-06-27  Arjun Shankar  <arjun.is@lostca.se>
6613
6614         [BZ #17092]
6615         * nscd/nscd.c (monitor_child): Return exit status of child
6616         instead of return value from wait syscall.
6617
6618 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
6619
6620         * configure.ac (libc_commonpagesize): Remove variable.
6621         (libc_relro_required): Likewise.
6622         (libc_cv_z_relro): Remove configure test.
6623         * configure: Regenerated.
6624         * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
6625         variable.
6626         (libc_relro_required): Likewise.
6627         * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
6628         (libc_relro_required): Likewise.
6629         * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
6630         (libc_relro_required): Likewise.
6631         * sysdeps/arm/preconfigure: Regenerated.
6632         * sysdeps/ia64/preconfigure: Remove file.
6633         * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
6634         variable.
6635         (libc_relro_required): Likewise.
6636
6637         [BZ #16561]
6638         [BZ #16562]
6639         * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
6640         (__ieee754_yn): Set FE_TONEAREST mode internally and then
6641         recompute overflowing results in original rounding mode.
6642         * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
6643         (__ieee754_ynf): Set FE_TONEAREST mode internally and then
6644         recompute overflowing results in original rounding mode.
6645         * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
6646         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6647         recompute overflowing results in original rounding mode.
6648         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
6649         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6650         recompute overflowing results in original rounding mode.
6651         * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
6652         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6653         recompute overflowing results in original rounding mode.
6654         * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
6655         (libc_feholdsetround_ctx): New macro.
6656         * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
6657         * sysdeps/i386/fpu/libm-test-ulps: Update.
6658         * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
6659
6660 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6661
6662         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
6663         [__PIC__] (PSEUDO): Use name of _nocancel entry point in
6664         corresponding .cpsetup call.
6665
6666 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6667
6668         * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
6669         * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
6670         * sysdeps/arm/Makefile [$(subdir) = csu]
6671         (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
6672         (static-only-routines): Add aeabi_read_tp here.
6673         (shared-only-routines): Add libc-aeabi_read_tp here.
6674         (CFLAGS-libc-start.c): Add -fexceptions here.
6675         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
6676         (sysdep_routines, static-only-routines, shared-only-routines):
6677         Don't add to these here.
6678         (CFLAGS-libc-start.c): Likewise.
6679
6680         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
6681         * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
6682         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
6683         * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
6684         * sysdeps/arm/Makefile [$(subdir) = rt]
6685         (librt-sysdep_routines, librt-shared-only-routines):
6686         Append rt-aeabi_unwind_cpp_pr1 here.
6687         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
6688         (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
6689         * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
6690         (libpthread-sysdep_routines, libpthread-shared-only-routines):
6691         Append nptl-aeabi_unwind_cpp_pr1 here.
6692         (tests): Filter out tst-cleanupx4 here.
6693         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
6694         (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
6695         Don't do those here.
6696
6697 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6698
6699         * scripts/list-sources.sh: Do not handle ports specially.
6700
6701 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6702
6703         * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
6704         * sysdeps/arm/feupdateenv.c: Likewise.
6705
6706         * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
6707
6708 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6709
6710         * manual/texinfo.tex: Update to version 2014-05-05.10 with
6711         trailing whitespace removed.
6712         * scripts/config.guess: Update to version 2014-03-23.
6713         * scripts/config.sub: Update to version 2014-05-01
6714         * scripts/install-sh: Update to version 2013-12-25.23.
6715         * scripts/move-if-change: Update from gnulib.
6716
6717 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
6718
6719         * debug/memmove_chk.c: Remove pagecopy.h include.
6720
6721 2014-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6722
6723         * time/mktime.c (leapyear): Remove inline keyword.  The code is now
6724         identical to gnulib mktime.
6725
6726 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6727
6728         * configure.ac: Do not test for machine being rs6000.  Do not test
6729         for powerpc*-*soft.
6730         * configure: Regenerated.
6731
6732         * configure.ac (libc_cv_asm_cfi_directives): Remove configure
6733         test.
6734         * configure: Regenerated.
6735         * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
6736         * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
6737         Remove configure test.
6738         * sysdeps/arm/configure: Regenerated.
6739         * sysdeps/nptl/configure.ac: Do not check
6740         libc_cv_asm_cfi_directives.
6741         * sysdeps/nptl/configure: Regenerated.
6742         * sysdeps/x86_64/nptl/configure.ac: Remove file.
6743         * sysdeps/x86_64/nptl/configure: Remove generated file.
6744         * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
6745         unconditional.
6746         [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
6747
6748 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
6749
6750         * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
6751         * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
6752         (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
6753         it is defined.
6754
6755         * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
6756         instead of whether it is defined.
6757         * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
6758         * sysdeps/hppa/dl-machine.h: Likewise.
6759         * sysdeps/ia64/dl-machine.h: Likewise.
6760         * sysdeps/m68k/dl-machine.h: Likewise.
6761         * sysdeps/microblaze/dl-machine.h: Likewise.
6762         * sysdeps/mips/dl-machine.: Likewise.
6763         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
6764         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
6765         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
6766         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
6767         * sysdeps/sh/dl-machine.h: Likewise.
6768         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
6769         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
6770         * sysdeps/tile/dl-machine.h: Likewise.
6771         * sysdeps/x86_64/dl-machine.h: Likewise.
6772
6773         * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
6774         code.
6775         (verify_persistent_db): Likewise.
6776
6777 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6778
6779         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
6780         * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
6781         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
6782         * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
6783         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
6784         Moved ...
6785         * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
6786         ... here.
6787         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
6788         * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
6789         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
6790         Identical file removed.
6791         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
6792         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
6793         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
6794         * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
6795         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
6796         * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
6797         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
6798         * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
6799         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
6800         * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
6801         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
6802         Moved ...
6803         * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
6804         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
6805         * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
6806         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
6807         * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
6808         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
6809         Moved ...
6810         * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
6811         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
6812         * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
6813         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
6814         * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
6815         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
6816         Identical file removed.
6817         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
6818         * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
6819         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
6820         * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
6821         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
6822         Moved ...
6823         * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
6824         ... here.
6825         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
6826         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
6827         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
6828         * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
6829         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
6830         * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
6831         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
6832         * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
6833         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
6834         * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
6835         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
6836         Moved ...
6837         * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
6838         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
6839         Moved ...
6840         * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
6841         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
6842         * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
6843         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
6844         Moved ...
6845         * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
6846         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
6847         * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
6848
6849         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
6850         folded into ...
6851         * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
6852         * sysdeps/unix/sysv/linux/s390/Versions
6853         (libpthread: GLIBC_2.19): New version set.
6854         * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
6855         * sysdeps/unix/sysv/linux/s390/s390-64/Versions
6856         (librt: GLIBC_2.3.3): New version set.
6857         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
6858         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
6859         * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
6860         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
6861         * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
6862         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
6863         * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
6864         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
6865         * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
6866         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
6867         * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
6868         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
6869         * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
6870         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
6871         * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
6872         * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
6873         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
6874         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
6875         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
6876         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
6877         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
6878         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
6879         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
6880         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
6881         * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
6882         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
6883         * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
6884         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
6885         * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
6886         * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
6887         * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
6888         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
6889         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
6890         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
6891         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
6892         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
6893         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
6894         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
6895         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
6896         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
6897         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
6898         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
6899         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
6900         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
6901         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
6902
6903         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
6904         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
6905         (__libc_vfork): Define the function under this name.
6906         [!NOT_IN_libc] (__vfork): Make this an alias.
6907         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
6908         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
6909         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
6910         (__libc_vfork): Define the function under this name.
6911         [!NOT_IN_libc] (__vfork): Make this an alias.
6912         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
6913         * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
6914         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
6915         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
6916         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
6917         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
6918
6919         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
6920         code that was previously under [RESET_PID].
6921         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
6922         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
6923         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
6924
6925         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
6926         * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
6927         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
6928         * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
6929         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
6930         * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
6931         * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
6932         * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
6933         * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
6934         * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
6935         * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
6936         Moved ...
6937         * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
6938         * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
6939         * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
6940         * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
6941         * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
6942         * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
6943         * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
6944         * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
6945         * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
6946         * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
6947         * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
6948         * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
6949         * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
6950         * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
6951         * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
6952         * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
6953         * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
6954         * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
6955         * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
6956         * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
6957         * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
6958         * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
6959         * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
6960         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
6961         * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
6962         * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
6963         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
6964         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
6965         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
6966
6967 2014-06-25  Roland McGrath  <roland@hack.frob.com>
6968
6969         * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
6970         that was previously under [RESET_PID].
6971         * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
6972
6973 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
6974
6975         * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
6976         not undefine and redefine.
6977         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
6978         [O_CLOEXEC]: Make code unconditional.
6979         (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
6980         * sysdeps/unix/sysv/linux/shm_open.c: Do not include
6981         <kernel-features.h>.
6982         [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
6983         conditional variable definition.
6984         (shm_open) [O_CLOEXEC]: Make code unconditional.
6985         (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
6986         code.
6987
6988         * configure.ac (USE_REGPARMS): Don't define here.
6989         * configure: Regenerated.
6990         * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
6991         * sysdeps/i386/configure: Regenerated.
6992
6993         * nptl/createthread.c: Don't include kernel-features.h.
6994         * nptl/pthread_cancel.c: Likewise.
6995         * nptl/pthread_condattr_setclock.c: Likewise.
6996         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
6997         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
6998         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
6999         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
7000         * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
7001         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
7002         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
7003         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
7004         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
7005         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
7006         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
7007         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
7008         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
7009         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
7010         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
7011         * nscd/gai.c: Likewise.
7012         * nss/nss_db/db-open.c: Likewise.
7013         * sysdeps/generic/ldsodefs.h: Likewise.
7014         * sysdeps/sh/nptl/tls.h: Likewise.
7015         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
7016         * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
7017         * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
7018         * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
7019         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
7020         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
7021         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
7022         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
7023         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
7024         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
7025         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
7026         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
7027         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
7028         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
7029         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
7030         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
7031         * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
7032         * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
7033         * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
7034         * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
7035         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
7036         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
7037         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
7038         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
7039         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
7040         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
7041         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
7042         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
7043         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
7044         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
7045         * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
7046         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
7047         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
7048         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
7049         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
7050         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
7051         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
7052         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
7053         * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
7054         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
7055         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
7056         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
7057         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
7058         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
7059         * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
7060         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
7061         * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
7062         * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
7063         * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
7064         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
7065         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
7066         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
7067         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
7068         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
7069         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
7070         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
7071         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
7072         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
7073         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
7074         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
7075         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
7076         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
7077         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
7078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
7079         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
7080         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
7081         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
7082         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
7083         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
7084         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
7085         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
7086         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
7087         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
7088         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
7089         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
7090         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
7091         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
7092         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
7093         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
7094         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
7095         * sysdeps/unix/sysv/linux/pread.c: Likewise.
7096         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
7097         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
7098         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
7099         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
7100         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
7101         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
7102         * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
7103         * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
7104         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
7105         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
7106         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
7107         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
7108         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
7109         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
7110         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
7111         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
7112         * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
7113         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
7114         * sysdeps/unix/sysv/linux/system.c: Likewise.
7115         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
7116         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
7117         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
7118         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
7119         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
7120         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
7121         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
7122
7123         * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
7124         * configure: Regenerated.
7125         * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
7126
7127         * configure.ac (base_machine): Do not set specially for particular
7128         machines here.
7129         * configure: Regenerated.
7130         * sysdeps/powerpc/preconfigure: Move machine and base_machine
7131         settings from configure.ac.
7132         * sysdeps/i386/preconfigure: New file.
7133         * sysdeps/s390/preconfigure: Likewise.
7134         * sysdeps/sh/preconfigure: Likewise.
7135         * sysdeps/sparc/preconfigure: Likewise.
7136
7137 2014-06-25  Roland McGrath  <roland@hack.frob.com>
7138
7139         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
7140         * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
7141         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
7142         * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
7143         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
7144         * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
7145         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
7146         * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
7147         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
7148         * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
7149         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
7150         * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
7151         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
7152         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
7153         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
7154         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
7155         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
7156         * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
7157         * sysdeps/sparc/sparc64/Makefile: ... appended here.
7158
7159         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
7160         * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
7161         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
7162         * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
7163         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
7164         * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
7165         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
7166         * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
7167         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
7168         * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
7169         * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
7170         * sysdeps/sparc/sparc32/sem_post.c: ... here.
7171         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
7172         * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
7173         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
7174         * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
7175         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
7176         * sysdeps/sparc/sparc32/sem_wait.c: ... here.
7177         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
7178         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
7179         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
7180         * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
7181         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
7182         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
7183         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
7184         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
7185         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
7186         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
7187         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
7188         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
7189         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
7190         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
7191         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
7192         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
7193         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
7194         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
7195         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
7196         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
7197
7198         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
7199         * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
7200         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
7201         * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
7202         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
7203         Moved ...
7204         * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
7205         ... here.
7206         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
7207         * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
7208         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
7209         * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
7210         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
7211         Moved ...
7212         * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
7213         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
7214         * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
7215         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
7216         * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
7217         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
7218         * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
7219         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
7220         Moved ...
7221         * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
7222         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
7223         Moved ...
7224         * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
7225         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
7226         * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
7227         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
7228         Moved ...
7229         * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
7230         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
7231         * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
7232         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
7233         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
7234         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
7235         * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
7236         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
7237         * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
7238         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
7239         Moved ...
7240         * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
7241         ... here.
7242         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
7243         * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
7244         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
7245         * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
7246         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
7247         Moved ...
7248         * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
7249         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
7250         * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
7251         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
7252         * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
7253         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
7254         * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
7255         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
7256         Moved ...
7257         * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
7258         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
7259         Moved ...
7260         * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
7261         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
7262         * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
7263         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
7264         Moved ...
7265         * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
7266         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
7267         * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
7268         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
7269         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
7270
7271 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
7272
7273         * timezone/checktab.awk: Update from tzcode 2014e.
7274         * timezone/private.h: Likewise.
7275         * timezone/tzfile.h: Likewise.
7276         * timezone/zdump.c: Likewise.
7277         * timezone/zic.c: Likewise.
7278
7279         * sysdeps/unix/sysv/linux/kernel-features.h
7280         (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
7281         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
7282         [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
7283         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
7284         Remove conditional code.
7285
7286 2014-06-25  Will Newton  <will.newton@linaro.org>
7287
7288         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
7289         (_dl_arm_cap_flags): Add HWCAP2 values.
7290         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
7291         (_DL_HWCAP_COUNT): Increase to 37.
7292         (_DL_HWCAP_LAST): New define.
7293         (_DL_HWCAP2_LAST): New define.
7294         (_dl_procinfo): Add support for printing
7295         AT_HWCAP2 entries.
7296         (_dl_string_hwcap): Use _dl_hwcap_string.
7297
7298 2014-06-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7299
7300         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
7301
7302 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
7303
7304         * README: Do not mention ports directory.
7305
7306         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
7307         Remove macro.
7308         * sysdeps/unix/sysv/linux/futimes.c: Do not include
7309         <kernel-features.h>.
7310         [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
7311         conditional variable definition.
7312         (__futimes): Update comment.
7313         (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
7314         (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
7315
7316         [BZ #16560]
7317         * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
7318         arguments close to 0.
7319         * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
7320         Likewise.
7321         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
7322         Likewise.
7323         * math/auto-libm-test-in: Add more tests of exp10.
7324         * math/auto-libm-test-out: Regenerated.
7325         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
7326
7327         * sysdeps/unix/sysv/linux/kernel-features.h
7328         (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
7329         * sysdeps/unix/sysv/linux/readv.c: Do not include
7330         <kernel-features.h>.
7331         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
7332         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
7333         (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
7334         unconditional.
7335         (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
7336         conditional code.
7337         * sysdeps/unix/sysv/linux/writev.c: Do not include
7338         <kernel-features.h>.
7339         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
7340         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
7341         (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
7342         unconditional.
7343         (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
7344         conditional code.
7345
7346 2014-06-25  Will Newton  <will.newton@linaro.org>
7347
7348         * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
7349         comment changes throughout the file.  Remove checks
7350         for HAVE_*_H definitions that are not required.
7351         (__gen_tempname): Call abort if an unknown kind value is
7352         passed.
7353
7354 2014-06-25  Andreas Schwab  <schwab@suse.de>
7355
7356         [BZ #17086]
7357         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
7358         scalbln, scalblnf, scalblnl in libc.
7359
7360 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
7361
7362         [BZ #17086]
7363         * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
7364         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
7365         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
7366
7367 2014-06-24  Roland McGrath  <roland@hack.frob.com>
7368
7369         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
7370         * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
7371         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
7372         * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
7373         Update #include.
7374         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
7375         * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
7376         Update #include.
7377         * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
7378         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
7379         * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
7380         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
7381         * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
7382         * sysdeps/x86/bits/pthreadtypes.h: ... here.
7383         * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
7384         * sysdeps/x86/bits/semaphore.h: ... here.
7385         * sysdeps/x86/nptl/elide.h: Moved ...
7386         * sysdeps/x86/elide.h: ... here.
7387         * sysdeps/x86_64/nptl/Implies: File removed.
7388         * sysdeps/i386/nptl/Implies: File removed.
7389
7390 2014-06-24  Joseph Myers  <joseph@codesourcery.com>
7391
7392         [BZ #16539]
7393         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
7394         return the argument for normal arguments with exponent below -64.
7395         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
7396         Likewise.
7397         * math/auto-libm-test-in: Add another test of expm1.
7398         * math/auto-libm-test-out: Regenerated.
7399
7400         [BZ #16287]
7401         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
7402         calling __erfcl for arguments at least 16.
7403         * math/auto-libm-test-in: Add more tests of erf.
7404         * math/auto-libm-test-out: Regenerated.
7405
7406         * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
7407         individual architectures.
7408         * sysdeps/unix/sysv/linux/configure: Regenerated.
7409         * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
7410         * sysdeps/unix/sysv/linux/i386/configure: New generated file.
7411         * sysdeps/unix/sysv/linux/powerpc/configure.ac
7412         (ldd_rewrite_script): Define variable.
7413         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
7414         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
7415         file.
7416         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
7417         generated file.
7418         * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
7419         * sysdeps/unix/sysv/linux/s390/configure: New generated file.
7420         * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
7421         * sysdeps/unix/sysv/linux/sh/configure: New generated file.
7422         * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
7423         * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
7424         * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
7425         * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
7426
7427 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
7428
7429         [BZ #17084]
7430         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
7431         Rename member __data.d to __data.__elision_data.
7432
7433 2014-06-24  Wilco  <wdijkstr@arm.com>
7434
7435         * NEWS: Add 16918 to fixed bug list.
7436
7437 2014-06-24  Wilco  <wdijkstr@arm.com>
7438
7439         * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
7440
7441 2014-06-24  Wilco  <wdijkstr@arm.com>
7442
7443         * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
7444         * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
7445         (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
7446         (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
7447         (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
7448         * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
7449         * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
7450         Use _FPU_MASK_RM.
7451
7452 2014-06-24  Wilco  <wdijkstr@arm.com>
7453
7454         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
7455
7456 2014-06-24  Wilco  <wdijkstr@arm.com>
7457
7458         * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
7459         * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
7460         * sysdeps/arm/fesetround.c (fesetround): Remove space.
7461         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
7462
7463 2014-06-24  Wilco  <wdijkstr@arm.com>
7464
7465         [BZ #16918]
7466         * sysdeps/arm/feupdateenv.c (feupdateenv):
7467         Rewrite to reduce FPSCR accesses and fix return value.
7468
7469 2014-06-24  Wilco  <wdijkstr@arm.com>
7470
7471         * sysdeps/arm/fclrexcpt.c (feclearexcept):
7472         Optimize to avoid unnecessary FPSCR writes.
7473         * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
7474         * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
7475         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
7476         * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
7477
7478 2014-06-24  Wilco  <wdijkstr@arm.com>
7479
7480         * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
7481         * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
7482         * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
7483         * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
7484         Call libc_fetestexcept_vfp.
7485         * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
7486         * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
7487         __SOFTFP__ ifdef so that they can be built for softfp.
7488
7489 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
7490
7491         * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
7492         argument type signed char.
7493
7494         * Makerules (check-abi): Dump diff of symlist if the test
7495         fails.
7496
7497 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7498
7499         * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
7500         using abort.
7501
7502         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
7503         Remove unused variable ST.
7504
7505 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
7506
7507         [BZ #16354]
7508         [BZ #17061]
7509         * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
7510         small arguments before calling __expm1.
7511         * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
7512         small arguments before calling __expm1f.
7513         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
7514         small arguments before calling __expm1l.
7515         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
7516         Likewise.
7517         * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
7518         * math/auto-libm-test-in: Add more cosh tests.  Do not allow
7519         spurious underflow for some cosh tests.
7520         * math/auto-libm-test-out: Regenerated.
7521         * sysdeps/i386/fpu/libm-test-ulps: Update.
7522
7523         [BZ #17050]
7524         * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
7525         (__ieee754_y1): Set errno if return value overflows.
7526         * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
7527         (__ieee754_y1f): Set errno if return value overflows.
7528         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
7529         (__ieee754_y1l): Set errno if return value overflows.
7530         * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
7531         (__ieee754_y1l): Set errno if return value overflows.
7532         * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
7533         * math/auto-libm-test-out: Regenerated.
7534
7535         * math/gen-auto-libm-tests.c: Document use of
7536         ignore-zero-inf-sign.
7537         (input_flag_type): Add value flag_ignore_zero_inf_sign.
7538         (input_flags): Add ignore-zero-inf-sign.
7539         (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
7540         * math/gen-libm-test.pl (generate_testfile): Handle
7541         ignore-zero-inf-sign.
7542         * math/auto-libm-test-in: Mark some cpow tests with
7543         ignore-zero-inf-sign and some with xfail-rounding.
7544         * math/auto-libm-test-out: Regenerated.
7545         * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
7546         * sysdeps/i386/fpu/libm-test-ulps: Update.
7547         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
7548
7549         [BZ #16315]
7550         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
7551         overflowing or underflowing operations take place with sign of
7552         result.
7553         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
7554         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
7555         * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
7556         (__ieee754_pow): Recompute overflowing and underflowing results in
7557         original rounding mode.
7558         * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
7559         (__powl_helper): Allow negative argument X and scale negated value
7560         as needed.  Avoid passing value outside [-1, 1] to f2xm1.
7561         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
7562         overflowing or underflowing operations take place with sign of
7563         result.
7564         * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
7565         Include <math.h>.
7566         * math/auto-libm-test-in: Add more tests of pow.
7567         * math/auto-libm-test-out: Regenerated.
7568         * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
7569         (pow_tonearest_test_data): Remove.
7570         (pow_test_tonearest): Likewise.
7571         (pow_towardzero_test_data): Likewise.
7572         (pow_test_towardzero): Likewise.
7573         (pow_downward_test_data): Likewise.
7574         (pow_test_downward): Likewise.
7575         (pow_upward_test_data): Likewise.
7576         (pow_test_upward): Likewise.
7577         (main): Don't call removed functions.
7578         * sysdeps/i386/fpu/libm-test-ulps: Update.
7579         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
7580
7581 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7582
7583         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
7584         Moved ...
7585         * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
7586         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
7587         Moved ...
7588         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
7589         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
7590         Moved ...
7591         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
7592         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
7593         Moved ...
7594         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
7595         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
7596         File removed.
7597         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
7598         File removed.
7599         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
7600         File removed.
7601         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
7602         File removed.
7603         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
7604         File removed.
7605         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
7606         File removed.
7607         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
7608         File removed.
7609         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
7610         File removed.
7611         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
7612         File removed.
7613         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
7614         File removed.
7615         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
7616         File removed.
7617         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
7618         File removed.
7619         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
7620         Moved ...
7621         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
7622         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
7623         Moved ...
7624         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
7625         ... here.
7626         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
7627         Moved ...
7628         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
7629         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
7630         Moved ...
7631         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
7632         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
7633         Moved ...
7634         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
7635         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
7636         Moved ...
7637         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
7638         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
7639         Moved ...
7640         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
7641         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
7642         Moved ...
7643         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
7644         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
7645         Moved ...
7646         * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
7647         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
7648         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
7649         ... here.
7650         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
7651         Moved ...
7652         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
7653         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
7654         Moved ...
7655         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
7656         ... here.
7657         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
7658         Moved ...
7659         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
7660         ... here.
7661         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
7662         Moved ...
7663         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
7664         ... here.
7665         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
7666         Moved ...
7667         * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
7668         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
7669         Moved ...
7670         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
7671         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
7672         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
7673         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
7674         Moved ...
7675         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
7676         ... here.
7677         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
7678         Moved ...
7679         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
7680         ... here.
7681         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
7682         Moved ...
7683         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
7684         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
7685         Moved ...
7686         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
7687         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
7688         Moved ...
7689         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
7690         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
7691         Moved ...
7692         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
7693         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
7694         Moved ...
7695         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
7696         ... here.
7697         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
7698         Moved ...
7699         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
7700         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
7701         Moved ...
7702         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
7703         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
7704         Moved ...
7705         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
7706         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
7707         Moved ...
7708         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
7709         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
7710         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
7711         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
7712         Moved ...
7713         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
7714         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
7715         Moved ...
7716         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
7717         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
7718         Moved ...
7719         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
7720         ... here.
7721         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
7722         Moved ...
7723         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
7724         ... here.
7725         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
7726         Moved ...
7727         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
7728         ... here.
7729         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
7730         Moved ...
7731         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
7732         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
7733         Moved ...
7734         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
7735         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
7736         Moved ...
7737         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
7738         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
7739         Moved ...
7740         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
7741         ... here.
7742         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
7743         Moved ...
7744         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
7745         ... here.
7746         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
7747         Moved ...
7748         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
7749         ... here.
7750         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
7751         Moved ...
7752         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
7753         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
7754         Moved ...
7755         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
7756
7757 2014-06-23  Will Newton  <will.newton@linaro.org>
7758             Wilco  <wdijkstr@arm.com>
7759
7760         * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
7761         implementation.  Include get-rounding-mode.h.
7762         [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
7763         [!libc_feholdsetround_noex_ctx]: Define
7764         libc_feholdsetround_noex_ctx.
7765         [!libc_feholdsetround_noexf_ctx]: Define
7766         libc_feholdsetround_noexf_ctx.
7767         [!libc_feholdsetround_noexl_ctx]: Define
7768         libc_feholdsetround_noexl_ctx.
7769         (libc_feholdsetround_ctx): New function.
7770         (libc_feresetround_ctx): New function.
7771         (libc_feholdsetround_noex_ctx): New function.
7772         (libc_feresetround_noex_ctx): New function.
7773
7774 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7775
7776         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
7777         * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
7778         * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
7779         * sysdeps/mips/nptl/bits/semaphore.h: ... here.
7780         * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
7781         * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
7782
7783         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
7784         * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
7785         * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
7786         * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
7787         * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
7788         * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
7789         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
7790         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
7791         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
7792         * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
7793         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
7794         Moved ...
7795         * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
7796         ... here.
7797         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
7798         * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
7799         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
7800         * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
7801         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
7802         Moved ...
7803         * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
7804         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
7805         * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
7806         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
7807         * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
7808         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
7809         * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
7810         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
7811         Moved ...
7812         * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
7813         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
7814         Moved ...
7815         * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
7816         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
7817         * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
7818         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
7819         Moved ...
7820         * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
7821         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
7822         * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
7823         * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
7824         * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
7825         * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
7826         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
7827         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
7828         * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
7829         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
7830         Moved ...
7831         * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
7832         ... here.
7833         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
7834         * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
7835         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
7836         * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
7837         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
7838         * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
7839         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
7840         * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
7841         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
7842         * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
7843         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
7844         * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
7845         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
7846         Moved ...
7847         * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
7848         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
7849         * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
7850         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
7851         * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
7852         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
7853         Moved ...
7854         * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
7855         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
7856         * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
7857         * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
7858         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
7859
7860         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
7861         * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
7862         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
7863         * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
7864         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
7865         * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
7866         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
7867         * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
7868         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
7869         * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
7870         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
7871         * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
7872         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
7873         * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
7874         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
7875         * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
7876         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
7877         * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
7878         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
7879         * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
7880         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
7881         * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
7882         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
7883         * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
7884         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
7885         * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
7886         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
7887         * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
7888
7889 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
7890
7891         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
7892         (FALLOC_FL_COLLAPSE_RANGE): New macro.
7893         [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
7894         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
7895         (IPV6_PMTUDISC_INTERFACE): Likewise.
7896         (IPV6_PMTUDISC_OMIT): Likewise.
7897
7898 2014-06-23  Andreas Schwab  <schwab@suse.de>
7899
7900         * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
7901         Remove unused errout label.
7902
7903 2014-06-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7904
7905         * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
7906         macro: hardware supports Vector Crypto instructions.
7907
7908 2014-06-23  Will Newton  <will.newton@linaro.org>
7909
7910         * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
7911         rather than __builtin_expect.
7912
7913         * elf/dl-lookup.c (undefined_msg): Remove variable.
7914         (_dl_lookup_symbol_x): Replace undefined_msg with string
7915         literal.
7916
7917         * elf/dl-lookup.c (do_lookup_unique): New function.
7918         (do_lookup_x): Move STB_GNU_UNIQUE handling code
7919         to a separate function.
7920
7921 2014-06-23  Andreas Schwab  <schwab@suse.de>
7922
7923         [BZ #17079]
7924         * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
7925         before reading the next line.
7926
7927 2014-06-23  Will Newton  <will.newton@linaro.org>
7928
7929         * test-skeleton.c (signal_handler): Use printf and %m
7930         rather than perror.  Use printf rather than fprintf to
7931         stderr.  Use puts rather than fputs to stderr.
7932         (main): Likewise.
7933
7934 2014-06-22  Ludovic Courtès  <ludo@gnu.org>
7935
7936         * nscd/nscd.c (thread_info_t): Remove typedef.
7937         (thread_info): Remove variable.
7938
7939 2014-06-21  Allan McRae  <allan@archlinux.org>
7940
7941         * NEWS: Mention CVE-2014-4043.
7942
7943 2014-06-20  Roland McGrath  <roland@hack.frob.com>
7944
7945         * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
7946         * nptl/smp.h: ... here.
7947
7948         * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
7949
7950         * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
7951         * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
7952         * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
7953         * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
7954
7955         * nptl/allocatestack.c: Include <stack-aliasing.h>.
7956         * nptl/stack-aliasing.h: New file.
7957         * sysdeps/i386/i686/stack-aliasing.h: New file.
7958         * sysdeps/i386/i686/nptl/Makefile: File removed.
7959         * sysdeps/x86_64/stack-aliasing.h: New file.
7960         * sysdeps/x86_64/nptl/Makefile
7961         (CFLAGS-pthread_create.c): Variable removed.
7962
7963         * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
7964         * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
7965         old file.
7966         * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
7967         * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
7968         old file.
7969
7970 2014-06-21  Joseph Myers  <joseph@codesourcery.com>
7971
7972         * sysdeps/unix/sysv/linux/arm/kernel-features.h
7973         (__ASSUME_SIGFRAME_V2): Remove macro.
7974         * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
7975         [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
7976         (__default_sa_restorer_v2): Rename to __default_sa_restorer.
7977         (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
7978         * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
7979         Declare as function.  Remove conditional macro definitions.
7980         (__default_rt_sa_restorer): Likewise.
7981         (__default_sa_restorer_v1): Remove declaration.
7982         (__default_sa_restorer_v2): Likewise.
7983         (__default_rt_sa_restorer_v1): Likewise.
7984         (__default_rt_sa_restorer_v2): Likewise.
7985         * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
7986         __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
7987         __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
7988
7989 2014-06-20  Roland McGrath  <roland@hack.frob.com>
7990
7991         * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
7992         (libpthread-routines): Add sysdep.
7993         * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
7994         * sysdeps/unix/sysv/linux/sparc/Versions
7995         (libpthread: GLIBC_2.3.3): New version set.
7996         * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
7997         * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
7998         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
7999         * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
8000         * sysdeps/sparc/nptl/internaltypes.h: ... here.  Use #include_next.
8001         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
8002         Moved ...
8003         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
8004         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
8005         * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
8006         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
8007         * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
8008         * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
8009         * sysdeps/sparc/nptl/sem_init.c: ... here.
8010         * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
8011         * sysdeps/sparc/nptl/sem_post.c: ... here.
8012         * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
8013         * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
8014         * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
8015         * sysdeps/sparc/nptl/sem_wait.c: ... here.
8016         * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
8017         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
8018         * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
8019         (libpthread-routines): Add cpu_relax.
8020         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
8021         File removed.
8022         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
8023         (librt: GLIBC_2.3.3): New version set.
8024         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
8025         * sysdeps/sparc/sparc64/nptl/Makefile: New file.
8026         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
8027         (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
8028         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
8029         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
8030         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
8031         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
8032         Moved ...
8033         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
8034         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
8035         * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
8036         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
8037         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
8038         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
8039         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
8040         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
8041         * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
8042         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
8043         Moved ...
8044         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
8045         Update #include.
8046         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
8047         Moved ...
8048         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
8049         Update #include.
8050         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
8051         Moved ...
8052         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
8053         Update #include.
8054         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
8055         Moved ...
8056         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
8057         Update #include.
8058         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
8059         Moved ...
8060         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
8061         Update #include.
8062         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
8063         Moved ...
8064         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
8065         Update #include.
8066         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
8067         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
8068         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
8069         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
8070         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
8071         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
8072         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
8073         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
8074         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
8075         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
8076         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
8077         Moved ...
8078         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
8079         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
8080         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
8081         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
8082         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
8083
8084 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8085
8086         * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
8087         * nptl/pthread_rwlock_timedrdlock.c: Likewise.
8088         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
8089         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
8090         * nscd/nscd.c: Likewise.
8091         * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
8092         * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
8093         * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
8094         * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
8095
8096         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
8097         <kernel-features.h>.
8098         (init_mq_netlink): Remove conditional have_sock_cloexec
8099         definitions.  Remove code conditional on have_sock_cloexec < 0.
8100         (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
8101         (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
8102         * sysdeps/unix/sysv/linux/opensock.c: Do not include
8103         <kernel-features.h>.
8104         (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
8105         (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
8106
8107 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
8108
8109         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
8110         Add tests for memset_chk and memset.
8111
8112         * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
8113         with AVX2_Usable.
8114
8115 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
8116
8117         [BZ #16046]
8118         * elf/tst-dl-iter-static.c: New file.
8119         * elf/Makefile (tests-static): Add tst-dl-iter-static.
8120
8121         * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
8122         error.
8123
8124 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8125
8126         * sysdeps/unix/sysv/linux/kernel-features.h
8127         (__ASSUME_F_GETOWN_EX): Remove macro.
8128         * sysdeps/unix/sysv/linux/fcntl.c: Do not include
8129         <kernel-features.h>.
8130         (miss_F_GETOWN_EX): Remove variable or macro.
8131         (do_fcntl): Do not check miss_F_GETOWN_EX.
8132         (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
8133
8134         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
8135         Remove macro.
8136         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
8137         [!__ASSUME_AT_RANDOM]: Remove conditional code.
8138         (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
8139
8140         * sysdeps/unix/sysv/linux/kernel-features.h
8141         (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
8142         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
8143         [ADJ_OFFSET_SS_READ]: Make code unconditional.
8144         (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
8145
8146 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
8147
8148         [BZ #17075]
8149         * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
8150         Fix calculation of the symbol's value.
8151         * sysdeps/arm/tst-armtlsdescloc.c: New file.
8152         * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
8153         * sysdeps/arm/tst-armtlsdescextnow.c: New file.
8154         * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
8155         * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
8156         * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
8157         * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
8158         `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
8159         (modules-names): Add `tst-armtlsdescmod',
8160         `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
8161         (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
8162         (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
8163         (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
8164         (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
8165         (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
8166         (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
8167         ($(objpfx)tst-armtlsdescloc): New dependency.
8168         ($(objpfx)tst-armtlsdescextnow): Likewise.
8169         ($(objpfx)tst-armtlsdescextlazy): Likewise.
8170         * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
8171         TLS scheme support.
8172         * sysdeps/arm/configure: Regenerate.
8173
8174 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8175
8176         * include/fcntl.h (__atfct_seterrno): Remove prototype.
8177         (__atfct_seterrno_2): Likewise.
8178         * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
8179         <kernel-features.h>.
8180         (__ASSUME_ATFCTS): Do not undefine and redefine.
8181         * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
8182         (__have_atfcts): Remove conditional definition.
8183         (__fxstatat([__NR_fstatat64]: Make code unconditional.
8184         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
8185         unreachable if [__ASSUME_ATFCTS].
8186         * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
8187         not undefine and redefine.
8188         * sysdeps/unix/sysv/linux/faccessat.c: Do not include
8189         <kernel-features.h>.
8190         (faccessat) [__NR_faccessat]: Make code unconditional.
8191         (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
8192         * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
8193         <kernel-features.h>.
8194         (fchmodat) [__NR_fchmodat]: Make code unconditional.
8195         (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
8196         * sysdeps/unix/sysv/linux/fchownat.c: Do not include
8197         <kernel-features.h>.
8198         (fchownat) [__NR_fchownat]: Make code unconditional.
8199         (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
8200         * sysdeps/unix/sysv/linux/futimesat.c: Do not include
8201         <kernel-features.h>.
8202         (futimesat) [__NR_futimesat]: Make code unconditional.
8203         (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
8204         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
8205         <kernel-features.h>.
8206         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
8207         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8208         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
8209         <kernel-features.h>.
8210         (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
8211         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
8212         * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
8213         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
8214         <kernel-features.h>.
8215         (__fxstatat) [__NR_fstatat64]: Make code unconditional.
8216         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8217         * sysdeps/unix/sysv/linux/linkat.c: Do not include
8218         <kernel-features.h>.
8219         (linkat) [__NR_linkat]: Make code unconditional.
8220         (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8221         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
8222         * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
8223         <kernel-features.h>.
8224         (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
8225         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
8226         * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
8227         <kernel-features.h>.
8228         (mkdirat) [__NR_mkdirat]: Make code unconditional.
8229         (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
8230         * sysdeps/unix/sysv/linux/openat.c: Do not include
8231         <kernel-features.h>.
8232         [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
8233         [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
8234         (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
8235         (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
8236         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
8237         * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
8238         <kernel-features.h>.
8239         (readlinkat) [__NR_readlinkat]: Make code unconditional.
8240         (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
8241         result of INLINE_SYSCALL directly, not via int variable.
8242         * sysdeps/unix/sysv/linux/renameat.c: Do not include
8243         <kernel-features.h>.
8244         [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
8245         (renameat) [__NR_renameat]: Make code unconditional.
8246         (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
8247         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
8248         * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
8249         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
8250         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
8251         (__ASSUME_ATFCTS): Do not undefine and redefine.
8252         * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
8253         <kernel-features.h>.
8254         (symlinkat) [__NR_symlinkat]: Make code unconditional.
8255         (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8256         * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
8257         <kernel-features.h>.
8258         (unlinkat) [__NR_unlinkat]: Make code unconditional.
8259         (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8260         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
8261         (__ASSUME_ATFCTS): Do not undefine and redefine.
8262         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
8263         <kernel-features.h>.
8264         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
8265         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8266         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
8267         <kernel-features.h>.
8268         (__xmknodat) [__NR_mknodat]: Make code unconditional.
8269         (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
8270
8271 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
8272
8273         * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
8274
8275 2014-06-20  Andreas Schwab  <schwab@linux-m68k.org>
8276
8277         [BZ #17069]
8278         * posix/regcomp.c (parse_reg_exp): Deallocate partially
8279         constructed tree before returning error.
8280         * posix/bug-regexp36.c: Expand test case.
8281
8282 2014-06-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
8283
8284         [BZ #6803]
8285         * math/libm-test.inc (scalbln_test_date):
8286         Add errno expectations.
8287         * math/w_scalblnf.c: New File.
8288         Add wrapper which checks for setting errno to ERANGE.
8289         Add weak_alias for corresponding scalbln function.
8290         * math/w_scalbln.c: Likewise.
8291         * math/w_scalblnl.c: Likewise.
8292         * math/Makefile (libm-calls): Add w_scalbln.
8293         * sysdeps/ieee754/flt-32/s_scalblnf.c:
8294         Remove weak_alias for corresponding scalbln function.
8295         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
8296         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
8297         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
8298         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
8299         * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
8300         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
8301         * sysdeps/i386/fpu/s_scalbn.S: Likewise.
8302         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
8303         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
8304         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
8305         Remove long_double_symbol for scalblnl function in libm, libc.
8306         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
8307         Add wrapper which checks for setting errno to ERANGE.
8308         Add long_double_symbol for scalblnl function in libm, libc.
8309         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
8310         Remove long_double_symbol for scalblnl in libm.
8311         * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
8312         Add wrapper which checks for setting errno to ERANGE.
8313         Add long_double_symbol for scalblnl function in libm.
8314         * sysdeps/ia64/fpu/w_scalblnf.c: New File.
8315         Do not use wrapper because of own implementation.
8316
8317 2014-06-19  H.J. Lu  <hongjiu.lu@intel.com>
8318
8319         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
8320         3 bytes for __pad1 for x32.
8321         (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
8322
8323 2014-06-19  Ling Ma  <ling.ml@alibaba-inc.com>
8324             H.J. Lu  <hongjiu.lu@intel.com>
8325
8326         * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
8327         * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
8328         * sysdeps/x86_64/multiarch/memset.S: Likewise.
8329         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
8330         * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
8331
8332 2014-06-19  Andreas Schwab  <schwab@linux-m68k.org>
8333
8334         [BZ #17069]
8335         * posix/regcomp.c (parse_expression): Deallocate partially
8336         constructed tree before returning error.
8337         * posix/Makefile.c (tests): Add bug-regex36.
8338         (generated): Add bug-regex36.mtrace.
8339         (tests-special): Add $(objpfx)bug-regex36-mem.out
8340         (bug-regex36-ENV): New variable.
8341         ($(objpfx)bug-regex36-mem.out): New rule.
8342         * posix/bug-regex36.c: New file.
8343
8344 2014-06-19  Will Newton  <will.newton@linaro.org>
8345
8346         * malloc/malloc.c (systrim): If extra is zero then return
8347         early.
8348
8349 2014-06-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
8350
8351         * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
8352
8353 2014-06-19  Richard Earnshaw  <rearnsha@arm.com>
8354
8355         * sysdeps/aarch64/strchr.S: New file.
8356
8357 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
8358
8359         [BZ #17022]
8360         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
8361         from arguments -2 or below.
8362         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
8363         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
8364
8365 2014-06-18  Andreas Schwab  <schwab@suse.de>
8366
8367         [BZ #17062]
8368         * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
8369         of a bracket expr not to run off the end of the string.
8370         * posix/Makefile (tests): Add tst-fnmatch3.
8371         * posix/tst-fnmatch3.c: New file.
8372
8373 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
8374
8375         * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
8376         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
8377         [$(cross-compiling) = no]: Likewise.
8378         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
8379         [$(cross-compiling) = no]: Likewise.
8380
8381 2014-16-17  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
8382
8383         [BZ #17031]
8384         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
8385         double, adjusted for any remainder from the high double.
8386         * math/libm-test.inc (nearbyint): Add tests.
8387         (rint): Likewise.
8388
8389 2014-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8390
8391         * nptl/sysdeps/powerpc/Makefile: Moved ...
8392         * sysdeps/powerpc/nptl/Makefile: ... here.
8393         * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
8394         * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
8395         * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
8396         * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
8397         * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
8398         * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
8399         * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
8400         * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
8401         * nptl/sysdeps/powerpc/tls.h: Moved ...
8402         * sysdeps/powerpc/nptl/tls.h: ... here.
8403
8404 2014-06-16  Joseph Myers  <joseph@codesourcery.com>
8405
8406         [BZ #16681]
8407         * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
8408         * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
8409         * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
8410         * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
8411         * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
8412         * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
8413         * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
8414         * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
8415         * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
8416
8417 2014-06-17  Andreas Schwab  <schwab@linux-m68k.org>
8418
8419         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
8420
8421 2014-06-16  Andreas Schwab  <schwab@linux-m68k.org>
8422
8423         * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
8424         defined operator.
8425
8426         * scripts/cross-test-ssh.sh (timeoutfactor): Default to
8427         $TIMEOUTFACTOR.
8428
8429 2014-06-16  Florian Weimer  <fweimer@redhat.com>
8430
8431         [BZ #17058]
8432         * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
8433         non-executed part of the test.
8434
8435 2014-06-16  Andreas Schwab  <schwab@suse.de>
8436
8437         * string/bits/string2.h (strdup, strndup): Update feature guard.
8438
8439 2014-06-14  David S. Miller  <davem@davemloft.net>
8440
8441         * sysdeps/sparc/fpu/libm-test-ulps: Update.
8442
8443 2014-06-14  Andreas Schwab  <schwab@linux-m68k.org>
8444
8445         * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
8446         that was previously under [RESET_PID].
8447         * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
8448
8449         * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
8450         * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
8451         * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
8452         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
8453         (__libc_vfork): New strong alias.
8454         * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
8455
8456 2014-06-14 Andi Kleen  <ak@linux.intel.com>
8457
8458         * sysdeps/generic/elide.h: New file.
8459
8460 2014-06-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
8461
8462         * Makefile (installed-headers): Adjust path of pthread.h header.
8463
8464 2014-06-13  Roland McGrath  <roland@hack.frob.com>
8465
8466         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
8467         * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
8468         * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
8469         * sysdeps/s390/nptl/bits/semaphore.h: ... here.
8470
8471         * nptl/sysdeps/s390/Makefile: Moved ...
8472         * sysdeps/s390/nptl/Makefile: ... here.
8473         * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
8474         * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
8475         * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
8476         * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
8477         * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
8478         * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
8479         * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
8480         * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
8481         * nptl/sysdeps/s390/pthreaddef.h: Moved ...
8482         * sysdeps/s390/nptl/pthreaddef.h: ... here.
8483         * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
8484         * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
8485         * nptl/sysdeps/s390/tls.h: Moved ...
8486         * sysdeps/s390/nptl/tls.h: ... here.
8487
8488         * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
8489         * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
8490
8491 2014-06-13  David S. Miller  <davem@davemloft.net>
8492
8493         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
8494         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
8495         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
8496         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
8497         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
8498         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
8499         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
8500         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
8501         * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
8502         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
8503         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
8504         Remove RESET_PID cpp guards.
8505         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
8506         Remove RESET_PID cpp guards.
8507         * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
8508
8509 2014-06-13  Andreas Schwab  <schwab@linux-m68k.org>
8510
8511         * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
8512         __sp to uintptr_t.
8513
8514 2014-06-13  Andi Kleen  <ak@linux.intel.com>
8515
8516         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
8517         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
8518         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
8519         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
8520         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
8521         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
8522         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
8523         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
8524         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
8525         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
8526         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
8527         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
8528         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
8529         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
8530         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
8531         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
8532         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
8533         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
8534         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
8535         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
8536
8537         * nptl/pthread_rwlock_rdlock.c: Include elide.h.
8538         (pthread_rwlock_rdlock): Add elision.
8539         * nptl/pthread_rwlock_wrlock.c: Include elide.h.
8540         (pthread_rwlock_wrlock): Add elision.
8541         * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
8542         (pthread_rwlock_trywrlock): Add elision.
8543         * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
8544         (pthread_rwlock_tryrdlock): Add elision.
8545         * nptl/pthread_rwlock_unlock.c: Include elide.h.
8546         (pthread_rwlock_tryrdlock): Add elision unlock.
8547         * nptl/sysdeps/pthread/pthread.h:
8548         (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
8549         (PTHREAD_RWLOCK_INITIALIZER,
8550         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
8551         Handle new elision field.
8552         * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
8553         * sysdeps/arm/nptl/bits/pthreadtypes.h
8554         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8555         * sysdeps/sh/nptl/bits/pthreadtypes.h
8556         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8557         * sysdeps/tile/nptl/bits/pthreadtypes.h
8558         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8559         * sysdeps/a/nptl/bits/pthreadtypes.h
8560         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8561         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
8562         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8563         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
8564         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8565         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
8566         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8567         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
8568         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8569         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
8570         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8571         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
8572         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8573         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
8574         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8575         * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
8576         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8577         * sysdeps/unix/sysv/linux/x86/elision-conf.c:
8578         (elision_init): Set try_xbegin to zero when no RTM.
8579         * sysdeps/x86/nptl/bits/pthreadtypes.h
8580         (pthread_rwlock_t): Change __pad1 to __rwelision.
8581         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8582
8583 2014-06-13  Andi Kleen  <ak@linux.intel.com>
8584
8585         * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
8586         Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
8587         * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
8588         Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
8589
8590 2014-06-13  Meador Inge  <meadori@codesourcery.com>
8591
8592         [BZ #16996]
8593         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
8594         that the cached result has been set before returning it.
8595
8596 2014-06-12  Roland McGrath  <roland@hack.frob.com>
8597
8598         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
8599         * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
8600         * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
8601         * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
8602         * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
8603         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
8604
8605         * nptl/sysdeps/sparc/Makefile: Moved ...
8606         * sysdeps/sparc/nptl/Makefile: ... here.
8607         * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
8608         * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
8609         * nptl/sysdeps/sparc/tls.h: Moved ...
8610         * sysdeps/sparc/nptl/tls.h: ... here.
8611         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
8612         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
8613         * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
8614         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
8615         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
8616         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
8617         * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
8618         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
8619         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
8620         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
8621         * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
8622         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
8623         * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
8624         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
8625         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
8626         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
8627         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
8628         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
8629         Update #include.
8630         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
8631         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
8632         Update #include.
8633         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
8634         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
8635         Update #include.
8636         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
8637         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
8638         Update #include.
8639
8640         * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
8641
8642         * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
8643         * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
8644
8645         * sysdeps/pthread/posix-timer.h: Include <list.h>.
8646         (struct list_links): Type removed.
8647         (struct thread_node, struct timer_node): Replace struct list_links
8648         with struct list_head.
8649         (list_unlink_ip): Likewise.
8650         * sysdeps/pthread/timer_routines.c
8651         (timer_free_list, thread_free_list, thread_active_list): Likewise.
8652         (list_append, list_insbefore): Likewise.
8653         (list_init): Function removed.
8654         (thread_init, init_module): Use INIT_LIST_HEAD instead.
8655         * sysdeps/nptl/Makefile: Move tst-timer bits to ...
8656         * sysdeps/pthread/Makefile: ... here, new file.
8657
8658         * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
8659         * sysdeps/nptl/Implies: ... here.
8660         * sysdeps/unix/sysv/linux/Implies: Add nptl.
8661         * nptl/sysdeps/pthread/list.h: Moved ...
8662         * include/list.h: ... here.
8663         * nptl/sysdeps/pthread/createthread.c: Moved ...
8664         * nptl/createthread.c: ... here.
8665         * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
8666         * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
8667         * nptl/pt-longjmp.c: ... here.
8668         * nptl/sysdeps/pthread/Makefile: Moved ...
8669         * sysdeps/nptl/Makefile: ... here.
8670         * nptl/sysdeps/pthread/Subdirs: Moved ...
8671         * sysdeps/nptl/Subdirs: ... here.
8672         * nptl/sysdeps/pthread/aio_misc.h: Moved ...
8673         * sysdeps/nptl/aio_misc.h: ... here.
8674         * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
8675         * sysdeps/nptl/bits/libc-lock.h: ... here.
8676         * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
8677         * sysdeps/nptl/bits/libc-lockP.h: ... here.
8678         * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
8679         * sysdeps/nptl/bits/stdio-lock.h: ... here.
8680         * nptl/sysdeps/pthread/configure: Moved ...
8681         * sysdeps/nptl/configure: ... here.
8682         * nptl/sysdeps/pthread/configure.ac: Moved ...
8683         * sysdeps/nptl/configure.ac: ... here.
8684         * nptl/sysdeps/pthread/gai_misc.h: Moved ...
8685         * sysdeps/nptl/gai_misc.h: ... here.
8686         * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
8687         * sysdeps/nptl/librt-cancellation.c: ... here.
8688         * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
8689         * sysdeps/nptl/malloc-machine.h: ... here.
8690         * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
8691         * sysdeps/nptl/pthread-functions.h: ... here.
8692         * nptl/sysdeps/pthread/pthread.h: Moved ...
8693         * sysdeps/nptl/pthread.h: ... here.
8694         * nptl/sysdeps/pthread/setxid.h: Moved ...
8695         * sysdeps/nptl/setxid.h: ... here.
8696         * nptl/sysdeps/pthread/sigfillset.c: Moved ...
8697         * sysdeps/nptl/sigfillset.c: ... here.
8698         * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
8699         * sysdeps/nptl/tcb-offsets.h: ... here.
8700         * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
8701         * sysdeps/nptl/tst-mqueue8x.c: ... here.
8702         * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
8703         * sysdeps/nptl/unwind-forcedunwind.c: ... here.
8704         * nptl/sysdeps/pthread/allocalim.h: Moved ...
8705         * sysdeps/pthread/allocalim.h: ... here.
8706         * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
8707         * sysdeps/pthread/bits/sigthread.h: ... here.
8708         * nptl/sysdeps/pthread/flockfile.c: Moved ...
8709         * sysdeps/pthread/flockfile.c: ... here.
8710         * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
8711         * sysdeps/pthread/ftrylockfile.c: ... here.
8712         * nptl/sysdeps/pthread/funlockfile.c: Moved ...
8713         * sysdeps/pthread/funlockfile.c: ... here.
8714         * nptl/sysdeps/pthread/posix-timer.h: Moved ...
8715         * sysdeps/pthread/posix-timer.h: ... here.
8716         * nptl/sysdeps/pthread/timer_create.c: Moved ...
8717         * sysdeps/pthread/timer_create.c: ... here.
8718         * nptl/sysdeps/pthread/timer_delete.c: Moved ...
8719         * sysdeps/pthread/timer_delete.c: ... here.
8720         * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
8721         * sysdeps/pthread/timer_getoverr.c: ... here.
8722         * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
8723         * sysdeps/pthread/timer_gettime.c: ... here.
8724         * nptl/sysdeps/pthread/timer_routines.c: Moved ...
8725         * sysdeps/pthread/timer_routines.c: ... here.
8726         * nptl/sysdeps/pthread/timer_settime.c: Moved ...
8727         * sysdeps/pthread/timer_settime.c: ... here.
8728         * nptl/sysdeps/pthread/tst-timer.c: Moved ...
8729         * sysdeps/pthread/tst-timer.c: ... here.
8730         * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
8731         * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
8732
8733         * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
8734         * nptl/sysdeps/pthread/sigprocmask.c: File removed.
8735
8736         * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
8737         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
8738         * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
8739         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
8740         Update #include target.
8741         * nptl/sysdeps/i386/i686/Makefile: Moved ...
8742         * sysdeps/i386/i686/nptl/Makefile: ... here.
8743         * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
8744         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
8745         Update #include target.
8746         * nptl/sysdeps/i386/i686/tls.h: Moved ...
8747         * sysdeps/i386/i686/nptl/tls.h: ... here.  Use #include_next.
8748         * nptl/sysdeps/i386/Makefile: Moved ...
8749         * sysdeps/i386/nptl/Makefile: ... here.
8750         * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
8751         * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
8752         * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
8753         * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
8754         * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
8755         * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
8756         * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
8757         * nptl/sysdeps/i386/pthreaddef.h: Moved ...
8758         * sysdeps/i386/nptl/pthreaddef.h: ... here.
8759         * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
8760         * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
8761         * nptl/sysdeps/i386/tls.h: Moved ...
8762         * sysdeps/i386/nptl/tls.h: ... here.
8763
8764         * sysdeps/sh/Makefile [$(subdir) = csu]
8765         (gen-as-const-headers): Add tcb-offsets.sym.
8766         * nptl/sysdeps/sh/Makefile: File removed.
8767         * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
8768         * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
8769         * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
8770         * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
8771         * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
8772         * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
8773         * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
8774         * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
8775         * nptl/sysdeps/sh/pthreaddef.h: Moved ...
8776         * sysdeps/sh/nptl/pthreaddef.h: ... here.
8777         * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
8778         * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
8779         * nptl/sysdeps/sh/tls.h: Moved ...
8780         * sysdeps/sh/nptl/tls.h: ... here.
8781         * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
8782         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
8783         * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
8784         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
8785         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
8786         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
8787         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
8788         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
8789         * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
8790         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
8791         * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
8792         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
8793         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
8794         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
8795         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
8796         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
8797         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
8798         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
8799         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
8800         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
8801         * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
8802         * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
8803         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
8804         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
8805         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
8806         Moved ...
8807         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
8808         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
8809         Moved ...
8810         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
8811         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
8812         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
8813         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
8814         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
8815         * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
8816         * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
8817         * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
8818         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
8819         * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
8820         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
8821         * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
8822         * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
8823         * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
8824         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
8825         * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
8826         * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
8827         * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
8828         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
8829
8830 2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
8831
8832         * posix/spawn_faction_addopen.c: Include string.h.
8833
8834 2014-06-11  Roland McGrath  <roland@hack.frob.com>
8835
8836         * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
8837         * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
8838         * nptl/sysdeps/x86_64/Makefile: Moved ...
8839         * sysdeps/x86_64/nptl/Makefile: ... here.
8840         * nptl/sysdeps/x86_64/configure: Moved ...
8841         * sysdeps/x86_64/nptl/configure: ... here.
8842         * nptl/sysdeps/x86_64/configure.ac: Moved ...
8843         * sysdeps/x86_64/nptl/configure.ac: ... here.
8844         * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
8845         * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
8846         * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
8847         * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
8848         * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
8849         * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
8850         * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
8851         * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
8852         * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
8853         * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
8854         * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
8855         * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
8856         * nptl/sysdeps/x86_64/tls.h: Moved ...
8857         * sysdeps/x86_64/nptl/tls.h: ... here.
8858         * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
8859         * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
8860         * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
8861         * sysdeps/x86_64/x32/nptl/tls.h: ... here.
8862
8863         * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
8864
8865 2014-06-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8866
8867         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8868
8869 2014-06-11  Joseph Myers  <joseph@codesourcery.com>
8870
8871         * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
8872         type.
8873         [POSIX] (off_t): Likewise.
8874         * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
8875         [POSIX] (S_ISBLK): Require macro.
8876         [POSIX] (S_ISCHR): Likewise.
8877         [POSIX] (S_ISDIR): Likewise.
8878         [POSIX] (S_ISFIFO): Likewise.
8879         [POSIX] (S_ISREG): Likewise.
8880         [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
8881         optional-macro.
8882         * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
8883         type.
8884         [POSIX] (time_t): Likewise.
8885         [POSIX] (timer_t): Likewise.
8886
8887 2014-06-11  Florian Weimer  <fweimer@redhat.com>
8888
8889         [BZ #17048]
8890         * posix/spawn_int.h (struct __spawn_action): Make the path string
8891         non-const to support deallocation.
8892         * posix/spawn_faction_addopen.c
8893         (posix_spawn_file_actions_addopen): Make a copy of the pathname.
8894         * posix/spawn_faction_destroy.c
8895         (posix_spawn_file_actions_destroy): Adjust comment.  Deallocate
8896         path in all spawn_do_open actions.
8897         * posix/tst-spawn.c (do_test): Exercise the copy operation in
8898         posix_spawn_file_actions_addopen.
8899
8900 2014-06-11  Chris Metcalf  <cmetcalf@tilera.com>
8901
8902         * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
8903         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
8904         * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
8905         conditional code always true.
8906         (__libc_vfork): New alias.
8907
8908 2014-06-11  Roland McGrath  <roland@hack.frob.com>
8909
8910         * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8911         * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
8912
8913         * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
8914
8915         * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8916         * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
8917
8918         * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
8919         * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
8920
8921         * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8922         * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
8923
8924 2014-06-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
8925
8926         * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
8927         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
8928         multiarch strcmp for PPC64.
8929         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
8930         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
8931         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
8932         multiarch optimizations.
8933         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
8934         (__libc_ifunc_impl_list): Likewise.
8935
8936 2014-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
8937
8938         * benchtests/scripts/validate_benchout.py: New script.
8939         * benchtests/Makefile (bench-func): Call it.
8940         * benchtests/scripts/benchout.schema.json: New file.
8941
8942 2014-06-10  Chris Metcalf  <cmetcalf@tilera.com>
8943
8944         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
8945         * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
8946         * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
8947         * sysdeps/tile/nptl/bits/semaphore.h: ... here.
8948         * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
8949         * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
8950         * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
8951         * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
8952         * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
8953         * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
8954         * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
8955         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
8956         * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
8957         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
8958         * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
8959         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
8960         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
8961         Moved ...
8962         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
8963         ... here.
8964         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
8965         Moved ...
8966         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
8967         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
8968         Moved ...
8969         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
8970         ... here.
8971         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
8972         Moved ...
8973         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
8974         ... here.
8975         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
8976         Moved ...
8977         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
8978         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
8979         Moved ...
8980         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
8981         ... here.
8982         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
8983         Moved ...
8984         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
8985         ... here.
8986         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
8987         Moved ...
8988         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
8989         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
8990         Moved ...
8991         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
8992         ... here.
8993         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
8994         Moved ...
8995         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
8996         ... here.
8997         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
8998         Moved ...
8999         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
9000         ... here.
9001         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
9002         Moved ...
9003         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
9004         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
9005         Moved ...
9006         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
9007         ... here.
9008         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
9009         Moved ...
9010         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
9011         ... here.
9012         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
9013         Moved ...
9014         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
9015         ... here.
9016         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
9017         Moved ...
9018         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
9019         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
9020         Moved ...
9021         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
9022         ... here.
9023         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
9024         Moved ...
9025         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
9026         ... here.
9027         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
9028         Moved ...
9029         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
9030         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
9031         Moved ...
9032         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
9033         ... here.
9034         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
9035         Moved ...
9036         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
9037         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
9038         Moved ...
9039         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
9040         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
9041         Moved ...
9042         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
9043         ... here.
9044         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
9045         Moved ...
9046         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
9047         ... here.
9048         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
9049         Moved ...
9050         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
9051         ... here.
9052         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
9053         Moved ...
9054         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
9055         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
9056         Moved ...
9057         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
9058         ... here.
9059         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
9060         Moved ...
9061         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
9062         ... here.
9063         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
9064         * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
9065         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
9066         * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
9067         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
9068         Moved ...
9069         * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
9070         ... here.
9071         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
9072         * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
9073         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
9074         * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
9075         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
9076         * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
9077         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
9078         * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
9079         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
9080         * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
9081         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
9082         * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
9083         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
9084         Moved ...
9085         * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
9086         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
9087         Moved ...
9088         * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
9089         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
9090         * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
9091         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
9092         Moved ...
9093         * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
9094         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
9095         * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
9096         * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
9097         * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
9098         * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
9099         * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
9100
9101 2014-06-10  Wilco  <wdijkstr@arm.com>
9102
9103         * math/test-fenv-return.c: New file.
9104         * math/Makefile: Add new test test-fenv-return.
9105
9106 2014-06-10  Joseph Myers  <joseph@codesourcery.com>
9107
9108         [BZ #17042]
9109         * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
9110         when x - 1 is zero.
9111         * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
9112         * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
9113         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
9114         0.0L for an argument of 1.0L.
9115         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
9116         Likewise.
9117         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
9118         value when x - 1 is zero.
9119         * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
9120         * sysdeps/i386/fpu/libm-test-ulps: Update.
9121         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9122
9123 2014-06-09  Bernard Ogden  <bernie.ogden@linaro.org>
9124
9125         [BZ #15119]
9126         * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
9127
9128 2014-06-09  Roland McGrath  <roland@hack.frob.com>
9129
9130         * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
9131         * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
9132
9133 2014-06-09  Roland McGrath  <roland@hack.frob.com>
9134
9135         * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9136         * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
9137
9138         * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9139         * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
9140
9141         * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9142         * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
9143
9144         * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9145         * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
9146
9147         * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
9148         if not already defined.
9149         (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
9150         * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
9151         * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
9152         (TLS_INIT_TP): Use it.
9153         (TLS_DEFINE_INIT_TP): New macro.
9154         * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
9155
9156 2014-06-09  Joseph Myers  <joseph@codesourcery.com>
9157
9158         * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
9159         constant.
9160         [POSIX] (IXANY): Likewise.
9161         [POSIX] (OLCUC): Likewise.
9162         [POSIX || POSIX2008] (CBAUD): Do not allow.
9163         [POSIX || POSIX2008] (DEFECHO): Likewise.
9164         [POSIX || POSIX2008] (ECHOCTL): Likewise.
9165         [POSIX || POSIX2008] (ECHOKE): Likewise.
9166         [POSIX || POSIX2008] (ECHOPRT): Likewise.
9167         [POSIX || POSIX2008] (EXTA): Likewise.
9168         [POSIX || POSIX2008] (EXTB): Likewise.
9169         [POSIX || POSIX2008] (FLUSHO): Likewise.
9170         [POSIX || POSIX2008] (LOBLK): Likewise.
9171         [POSIX || POSIX2008] (PENDIN): Likewise.
9172         [POSIX || POSIX2008] (SWTCH): Likewise.
9173         [POSIX || POSIX2008] (VDISCARD): Likewise.
9174         [POSIX || POSIX2008] (VDSUSP): Likewise.
9175         [POSIX || POSIX2008] (VLNEXT): Likewise.
9176         [POSIX || POSIX2008] (VREPRINT): Likewise.
9177         [POSIX || POSIX2008] (VSTATUS): Likewise.
9178         [POSIX || POSIX2008] (VWERASE): Likewise.
9179         (B*): Change to B[0123456789]*.
9180         * conform/data/time.h-data [POSIX || UNIX98]
9181         (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
9182         [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
9183         [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
9184         [POSIX] (tm_*): Do not allow.
9185
9186 2014-06-07  Joseph Myers  <joseph@codesourcery.com>
9187
9188         * Makefile (install): Don't set LANGUAGE.
9189         * Makefile.in (install): Likewise.
9190         * assert/Makefile (test-assert-ENV): Remove variable.
9191         (test-assert-perr-ENV): Likewise.
9192         * elf/Makefile (neededtest4-ENV): Likewise.
9193         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
9194         [$(cross-compiling) = no]: Don't set LANGUAGE.
9195         * io/ftwtest-sh (LANG): Remove variable.
9196         * libio/Makefile (tst-widetext-ENV): Likewise.
9197         * manual/install.texi (Running make install): Don't refer to
9198         environment settings for make install.
9199         * INSTALL: Regenerated.
9200         * nptl/tst-tls6.sh: Don't set LANG.
9201         * posix/globtest.sh (LANG): Remove variable.
9202         * string/Makefile (tester-ENV): Likewise.
9203         (inl-tester-ENV): Likewise.
9204         (noinl-tester-ENV): Likewise.
9205         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
9206         [$(cross-compiling) = no]: Don't set LANGUAGE.
9207         * timezone/Makefile (build-testdata): Use $(built-program-cmd)
9208         without explicit environment settings.
9209
9210 2014-06-06  Roland McGrath  <roland@hack.frob.com>
9211
9212         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
9213         * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
9214         * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
9215         * sysdeps/sh/nptl/bits/semaphore.h: ... here.
9216
9217 2014-06-06  Chris Metcalf  <cmetcalf@tilera.com>
9218
9219         * crypt/crypt-private.h [DOS]: Add some includes taken from the
9220         other files in the crypt directory.
9221         * crypt/crypt.c: Remove duplicate includes.
9222         * crypt/crypt-entry.c: Likewise.
9223         * crypt/crypt_util.c: Likewise.
9224
9225 2014-06-06  Joseph Myers  <joseph@codesourcery.com>
9226
9227         * Makeconfig (run-program-env): New variable.
9228         (run-program-prefix-before-env): Likewise.
9229         (run-program-prefix-after-env): Likewise.
9230         (run-program-prefix): Define in terms of new variables.
9231         (built-program-cmd-before-env): New variable.
9232         (built-program-cmd-after-env): Likewise.
9233         (built-program-cmd): Define in terms of new variables.
9234         (test-program-prefix-before-env): New variable.
9235         (test-program-prefix-after-env): Likewise.
9236         (test-program-prefix): Define in terms of new variables.
9237         (test-program-cmd-before-env): New variable.
9238         (test-program-cmd-after-env): Likewise.
9239         (test-program-cmd): Define in terms of new variables.
9240         * Rules (make-test-out): Use $(run-program-env).
9241         * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
9242         (help): Do not mention environment variables.  Mention
9243         --timeoutfactor option.
9244         (timeoutfactor): New variable.
9245         (blacklist_exports): Remove function.
9246         (exports): Remove variable.
9247         (command): Do not include ${exports}.
9248         * manual/install.texi (Configuring and compiling): Do not mention
9249         test wrappers preserving environment variables.  Mention that last
9250         assignment to a variable must take precedence.
9251         * INSTALL: Regenerated.
9252         * benchtests/Makefile (run-bench): Use $(run-program-env).
9253         * catgets/Makefile ($(objpfx)test1.cat): Use
9254         $(built-program-cmd-before-env), $(run-program-env) and
9255         $(built-program-cmd-after-env).
9256         ($(objpfx)test2.cat): Do not specify environment variables
9257         explicitly.
9258         ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
9259         $(run-program-env) and $(built-program-cmd-after-env).
9260         ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
9261         $(run-program-env) and $(test-program-cmd-after-env).
9262         ($(objpfx)sample.SJIS.cat): Do not specify environment variables
9263         explicitly.
9264         * catgets/test-gencat.sh: Use test_program_cmd_before_env,
9265         run_program_env and test_program_cmd_after_env arguments.
9266         * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
9267         * elf/tst-pathopt.sh: Use run_program_env argument.
9268         * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
9269         $(test-wrapper-env) and $(run-program-env).
9270         * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
9271         run_program_env arguments.
9272         * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
9273         * intl/Makefile ($(objpfx)tst-gettext.out): Use
9274         $(test-program-prefix-before-env), $(run-program-env) and
9275         $(test-program-prefix-after-env).
9276         ($(objpfx)tst-gettext2.out): Likewise.
9277         * intl/tst-gettext.sh: Use test_program_prefix_before_env,
9278         run_program_env and test_program_prefix_after_env arguments.
9279         * intl/tst-gettext2.sh: Likewise.
9280         * intl/tst-gettext4.sh: Do not set environment variables
9281         explicitly.
9282         * intl/tst-gettext6.sh: Likewise.
9283         * intl/tst-translit.sh: Likewise.
9284         * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
9285         $(test-program-prefix-before-env), $(run-program-env) and
9286         $(test-program-prefix-after-env).
9287         * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
9288         run_program_env and test_program_prefix_after_env arguments.
9289         * math/Makefile (run-regen-ulps): Use $(run-program-env).
9290         * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
9291         * nptl/tst-tls6.sh: Use run_program_env argument.  Set LANG=C
9292         explicitly with each use of ${test_wrapper_env}.
9293         * posix/Makefile ($(objpfx)wordexp-tst.out): Use
9294         $(test-program-prefix-before-env), $(run-program-env) and
9295         $(test-program-prefix-after-env).
9296         * posix/tst-getconf.sh: Do not set environment variables
9297         explicitly.
9298         * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
9299         run_program_env and test_program_prefix_after_env arguments.
9300         * stdio-common/tst-printf.sh: Do not set environment variables
9301         explicitly.
9302         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
9303         $(test-program-prefix-before-env), $(run-program-env) and
9304         $(test-program-prefix-after-env).
9305         * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
9306         run_program_env and test_program_prefix_after_env arguments.
9307         Split $test calls into $test_pre and $test.
9308         * timezone/Makefile (build-testdata): Use
9309         $(built-program-cmd-before-env), $(run-program-env) and
9310         $(built-program-cmd-after-env).
9311
9312 2014-06-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9313
9314         * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
9315         strlen for non SHARED builds.
9316
9317 2014-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
9318
9319         * nptl/allocatestack.c (check_list): Inlined function...
9320         (__reclaim_stacks): ... here.
9321
9322 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
9323
9324         [BZ #15698]
9325         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
9326         memory overrun.
9327
9328 2014-06-05  Joseph Myers  <joseph@codesourcery.com>
9329
9330         * Rules (make-test-out): Include
9331         LOCPATH=$(common-objpfx)localedata in default environment.
9332         * debug/Makefile (tst-chk1-ENV): Remove variable.
9333         (tst-chk2-ENV): Likewise.
9334         (tst-chk3-ENV): Likewise.
9335         (tst-chk4-ENV): Likewise.
9336         (tst-chk5-ENV): Likewise.
9337         (tst-chk6-ENV): Likewise.
9338         (tst-lfschk1-ENV): Likewise.
9339         (tst-lfschk2-ENV): Likewise.
9340         (tst-lfschk3-ENV): Likewise.
9341         (tst-lfschk4-ENV): Likewise.
9342         (tst-lfschk5-ENV): Likewise.
9343         (tst-lfschk6-ENV): Likewise.
9344         * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
9345         (tst-iconv7-ENV): Likewise.
9346         * intl/Makefile (LOCPATH-ENV): Likewise.
9347         (tst-codeset-ENV): Likewise.
9348         (tst-gettext3-ENV): Likewise.
9349         (tst-gettext5-ENV): Likewise.
9350         * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
9351         (tst-fopenloc-ENV): Likewise.
9352         (tst-fgetws-ENV): Remove variable.
9353         (tst-ungetwc1-ENV): Likewise.
9354         (tst-ungetwc2-ENV): Likewise.
9355         (bug-ungetwc2-ENV): Likewise.
9356         (tst-swscanf-ENV): Likewise.
9357         (bug-ftell-ENV): Likewise.
9358         (tst-fgetwc-ENV): Likewise.
9359         (tst-fseek-ENV): Likewise.
9360         (tst-ftell-partial-wide-ENV): Likewise.
9361         (tst-ftell-active-handler-ENV): Likewise.
9362         (tst-ftell-append-ENV): Likewise.
9363         * posix/Makefile (tst-fnmatch-ENV): Likewise.
9364         (tst-regexloc-ENV): Likewise.
9365         (bug-regex1-ENV): Likewise.
9366         (tst-regex-ENV): Likewise.
9367         (tst-regex2-ENV): Likewise.
9368         (bug-regex5-ENV): Likewise.
9369         (bug-regex6-ENV): Likewise.
9370         (bug-regex17-ENV): Likewise.
9371         (bug-regex18-ENV): Likewise.
9372         (bug-regex19-ENV): Likewise.
9373         (bug-regex20-ENV): Likewise.
9374         (bug-regex22-ENV): Likewise.
9375         (bug-regex23-ENV): Likewise.
9376         (bug-regex25-ENV): Likewise.
9377         (bug-regex26-ENV): Likewise.
9378         (bug-regex30-ENV): Likewise.
9379         (bug-regex32-ENV): Likewise.
9380         (bug-regex33-ENV): Likewise.
9381         (bug-regex34-ENV): Likewise.
9382         (bug-regex35-ENV): Likewise.
9383         (tst-rxspencer-ENV): Likewise.
9384         (tst-rxspencer-no-utf8-ENV): Likewise.
9385         * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
9386         (tst-sscanf-ENV): Likewise.
9387         (tst-swprintf-ENV): Likewise.
9388         (tst-swscanf-ENV): Likewise.
9389         (test-vfprintf-ENV): Likewise.
9390         (scanf13-ENV): Likewise.
9391         (bug14-ENV): Likewise.
9392         (tst-grouping-ENV): Likewise.
9393         * stdlib/Makefile (tst-strtod-ENV): Likewise.
9394         (tst-strtod3-ENV): Likewise.
9395         (tst-strtod4-ENV): Likewise.
9396         (tst-strtod5-ENV): Likewise.
9397         (testmb2-ENV): Likewise./
9398         * string/Makefile (tst-strxfrm-ENV): Likewise.
9399         (tst-strxfrm2-ENV): Likewise.
9400         (bug-strcoll1-ENV): Likewise.
9401         (test-strcasecmp-ENV): Likewise.
9402         (test-strncasecmp-ENV): Likewise.
9403         * time/Makefile (tst-strptime-ENV): Likewise.
9404         (tst-ftime_l-ENV): Likewise.
9405         * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
9406         (tst-mbrtowc-ENV): Likewise.
9407         (tst-wcrtomb-ENV): Likewise.
9408         (tst-mbrtowc2-ENV): Likewise.
9409         (tst-c16c32-1-ENV): Likewise.
9410         (tst-mbsnrtowcs-ENV): Likewise.
9411
9412 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
9413
9414         * manual/resource.texi (How to get information about the memory
9415         subsystem?): Fix typo.
9416         Reported by Peon de la Parra Ivan <peon@keba.com>
9417
9418 2014-06-03  Guo Yixuan  <culu.gyx@gmail.com>
9419
9420         [BZ #16882]
9421         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
9422         (pthread_spin_lock): Branch out of spin loop to proper location.
9423         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
9424         (pthread_spin_lock): Likewise.
9425
9426         * nptl/tst-spin4.c: New test.
9427         * nptl/Makefile (tests): Add tst-spin4.
9428
9429 2014-06-03  Andreas Schwab  <schwab@suse.de>
9430
9431         [BZ #15946]
9432         * resolv/res_send.c (send_dg): Reload file descriptor after
9433         calling reopen.
9434
9435 2014-06-03  Stefan Liebler  <stli@linux.vnet.ibm.com>
9436
9437         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
9438
9439 2014-06-03  Richard Henderson  <rth@redhat.com>
9440
9441         * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
9442         * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
9443         * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
9444         SAVE_PID and RESTORE_PID blocks from pt-vfork.S.  Map 0 to INT_MIN
9445         in the SAVE_PID block.
9446         (__libc_vfork): New alias.
9447         * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
9448
9449         * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
9450         child in registers, not on the stack.  Remove RESET_PID conditionals.
9451         * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
9452
9453 2014-06-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9454
9455         * sysdeps/aarch64/libm-test-ulps: Regenerate.
9456
9457 2014-06-03  Wilco  <wdijkstr@arm.com>
9458
9459         * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
9460         (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
9461         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
9462         Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
9463         * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
9464         Likewise.
9465
9466 2014-06-03  Wilco  <wdijkstr@arm.com>
9467
9468         * sysdeps/aarch64/fpu/math_private.h
9469         (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
9470         (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
9471         (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
9472         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
9473         Fix declarations.
9474
9475 2014-06-03  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
9476
9477         * crypt/crypt-private.h: Include ufc-crypt.h.
9478         (__b64_from_24bit): Declare extern.
9479         * crypt/crypt_util.c(__b64_from_24bit): New function.
9480         (b64t): New static const variable.
9481         * crypt/md5-crypt.c (b64_from_24bit): Remove function.
9482         (b64t): Remove variable.
9483         (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
9484         * crypt/sha256-crypt.c: Include crypt-private.h.
9485         (b64t): Remove variable.
9486         (__sha256_crypt_r): Remove b64_from_24bit and replace
9487         with __b64_from_24bit.
9488         * crypt/sha512-crypt.c: Likewise.
9489
9490 2014-06-02  Roland McGrath  <roland@hack.frob.com>
9491
9492         * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
9493         * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
9494         Label the code __libc_vfork rather than __vfork.
9495         [!NOT_IN_libc] (vfork): Define as weak alias.
9496         [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
9497         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
9498         * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
9499
9500 2014-06-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
9501
9502         * malloc/malloc.c (malloc_info): Fix format specifier for
9503         n_mmaps.
9504
9505 2014-06-02  Wilco  <wdijkstr@arm.com>
9506
9507         * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
9508         FPCR write.
9509
9510 2014-06-02  Wilco  <wdijkstr@arm.com>
9511
9512         [BZ #17009]
9513         * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
9514         Rewrite to reduce FPCR/FPSR accesses.
9515
9516 2014-06-01  David S. Miller  <davem@davemloft.net>
9517
9518         * sysdeps/sparc/fpu/libm-test-ulps: Update.
9519
9520 2014-05-31  David S. Miller  <davem@davemloft.net>
9521
9522         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
9523         to occur in round to nearest mode when |x| >= 2.0
9524
9525 2014-05-30  Richard Henderson  <rth@twiddle.net>
9526
9527         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
9528         (PSEUDO_RET_NOERRNO): Remove.
9529         (ret): Don't redefine.
9530         (ret_NOERRNO): Define in terms of ret.
9531         (ret_ERRVAL): Likewise.
9532
9533         * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
9534         use of PSEUDO_RET; perform the error check directly.
9535
9536 2014-05-30 Marko Myllynen  <myllynen@redhat.com>
9537
9538         * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
9539         with __int128_t.
9540
9541 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
9542
9543         * malloc/malloc (malloc_info): Fix formatting.
9544
9545 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
9546             Roland McGrath  <roland@hack.frob.com>
9547
9548         * malloc/malloc (malloc_info): Also print mmapped statistics.
9549
9550 2014-05-30  Roland McGrath  <roland@hack.frob.com>
9551
9552         * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
9553         * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
9554
9555 2014-05-30  Ondřej Bílka  <neleai@seznam.cz>
9556
9557         * malloc/malloc.c (malloc_info): Inline mi_arena.
9558
9559 2014-05-29  Richard Henderson  <rth@twiddle.net>
9560
9561         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
9562         Remove comma before expanding ASM_ARGS_##nr.
9563         (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
9564         Make _x0 a strict output; make _x8 a strict input; adjust expansion
9565         of ASM_ARGS_##nr.
9566         (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
9567         (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
9568         (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
9569         (ASM_ARGS_1): Add leading comma.
9570
9571         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
9572         (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
9573         to __errno_location.
9574         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
9575         Remove the expected plt for __errno_location.
9576
9577         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9578         [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
9579         call to __read_tp.
9580
9581         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9582         Always allocate 64 bytes of stack frame.  Use ldp/stp to create
9583         it and break it down.
9584         (DOCARGS_0, DOCARGS_1): Do nothing.
9585         (DOCARGS_2): Update to store into the new stack frame.
9586         (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
9587         (UNDOCARGS_1): Update to restore from the new stack frame.
9588         (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
9589         (UNDOCARGS_5, UNDOCARGS_6): Likewise.
9590
9591         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9592         (SINGLE_THREAD_P): New parameter for result regno.
9593         (PSEUDO): Update to match; use cbz instead of beq.
9594
9595         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9596         Use ENTRY to define the _nocancel entry point.  Share the syscall
9597         and syscall error check paths with the cancel path.
9598         (PSEUDO_END): New.
9599
9600         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
9601         whitespace; tabs before and after asm mnemonics.
9602
9603 2014-05-29  Eric Wong  <normalperson@yhbt.net>
9604
9605         [BZ #15132]
9606         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
9607         Call fstat64 or stat64 internally, depending on arguments passed.
9608         Replace stat buffer argument with file descriptor argument.
9609         (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
9610         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
9611         Pass fd to __internal_statvfs instead of calling fstat64.
9612         * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
9613         Pass fd to __internal_statvfs64 instead of calling fstat64.
9614         * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
9615         Pass -1 to __internal_statvfs instead of calling stat64.
9616         * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
9617         Pass -1 to __internal_statvfs64 instead of calling stat64.
9618
9619 2014-05-28  Roland McGrath  <roland@hack.frob.com>
9620
9621         * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
9622         that was previously under [RESET_PID].
9623         * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
9624
9625         * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
9626         * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
9627
9628 2014-05-27  Roland McGrath  <roland@hack.frob.com>
9629
9630         * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
9631
9632         * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
9633         * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
9634
9635 2014-05-27  Ondřej Bílka  <neleai@seznam.cz>
9636
9637         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
9638
9639 2014-05-27  Andreas Schwab  <schwab@suse.de>
9640
9641         * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
9642         TLS_INIT_TP macro.
9643         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
9644         * elf/rtld.c (init_tls, dl_main): Likewise.
9645         * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
9646         * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
9647         * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
9648         * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
9649         * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
9650         * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
9651         * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
9652         * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
9653         * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
9654         * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
9655         * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
9656         * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
9657         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
9658         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
9659         * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
9660         * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
9661         * sysdeps/generic/tls.h: Update description.
9662
9663 2014-05-27  Will Newton  <will.newton@linaro.org>
9664
9665         [BZ #16990]
9666         * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
9667         and restore r2 rather than just restoring.
9668
9669 2014-05-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
9670
9671         [BZ #16724]
9672         * libio/tst-ftell-append.c: New test case.
9673         * libio/Makefile (tests): Add test case.
9674         * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
9675         append mode.
9676         * libio/wfileops.c (do_ftell_wide): Likewise.
9677
9678 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9679
9680         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
9681
9682         * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
9683         ...
9684         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
9685         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
9686         * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
9687         * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
9688         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
9689         * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
9690         * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
9691         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
9692         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
9693         Moved ...
9694         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
9695         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
9696         Moved ...
9697         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
9698         * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
9699         * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
9700         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
9701         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
9702         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
9703         ...
9704         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
9705         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
9706         Moved ...
9707         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
9708         here.
9709         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
9710         ...
9711         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
9712         * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
9713         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
9714
9715         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
9716         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
9717         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
9718         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
9719
9720         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
9721         merge into ...
9722         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
9723         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
9724         ...
9725         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
9726         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
9727         ...
9728         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
9729         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
9730         Moved ...
9731         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
9732         here.
9733         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
9734         Moved ...
9735         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
9736         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
9737         Moved ...
9738         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
9739
9740         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
9741         conditional [RESET_PID].
9742         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
9743         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
9744         removed.
9745         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
9746         removed.
9747
9748         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
9749         <tcb-offsets.h>.
9750         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
9751         (__libc_vfork): New strong alias.
9752         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
9753         removed.
9754         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
9755         Removed.
9756
9757         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
9758         <tcb-offsets.h>.
9759         (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
9760         (__libc_vfork): New strong alias.
9761         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
9762         removed.
9763         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
9764         removed.
9765
9766 2014-05-26  Carlos O'Donell  <carlos@redhat.com>
9767
9768         * malloc/malloc.c (mi_arena): New function.
9769         (malloc_info): Remove nested function mi_arena. Call non-nosted
9770         function mi_arena.
9771
9772 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9773
9774         * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
9775         by insrwi.
9776         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
9777         * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
9778         * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
9779         * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
9780         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
9781         * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
9782         * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
9783
9784 2014-05-26  Andreas Schwab  <schwab@suse.de>
9785
9786         [BZ #16984]
9787         * locale/programs/repertoire.c (repertoire_read): Add slash
9788         between I18NPATH element and file name.
9789         * locale/programs/locfile.c (locfile_read): Likewise.
9790
9791 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
9792
9793         * nptl/pthread_mutexattr_settype.c
9794         (__pthread_mutexattr_settype):
9795         Disable lock elision for PTHREAD_MUTEX_NORMAL.
9796
9797 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
9798
9799         * nptl/tst-mutex5 (do_test):
9800         Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
9801
9802 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
9803
9804         * benchtests/README: Document 'init' directive.
9805         * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
9806         BENCH_INIT.
9807         * scripts/bench.py (gen_source): Define BENCH_INIT macro.
9808         (parse_file): Recognize 'init' directive.
9809
9810 2014-05-26  Kyle McMartin  <kyle@redhat.com>
9811
9812         [BZ #16796]
9813         * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
9814         alignment of struct pthread.
9815
9816 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
9817
9818         [BZ #16878]
9819         * nscd/netgroupcache.c (addgetnetgrentX): Look for
9820         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
9821         * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
9822         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
9823
9824 2014-05-25  Richard Henderson  <rth@twiddle.net>
9825
9826         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9827         (SINGLE_THREAD_P_PIC): Remove.
9828         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
9829         (SINGLE_THREAD_P_PIC): Remove.
9830
9831         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
9832         branch to syscall error ...
9833         (PSEUDO): ... here.
9834         [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
9835         from __local_syscall_error to .Lsyscall_error.
9836         [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
9837         (SYSCALL_ERROR): Update label name.
9838
9839         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9840         Do not use DOARGS/UNDOARGS.
9841         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
9842         (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
9843         (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
9844         (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
9845         (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
9846
9847         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
9848         block comment.
9849
9850         * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
9851         define if !NOT_IN_libc.
9852         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
9853         define with non-default symbol versions.
9854
9855 2014-05-23  Richard Henderson  <rth@twiddle.net>
9856
9857         * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
9858         (vfork, __vfork): Define via compat_symbol.
9859
9860         * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
9861         [!HAVE_IFUNC] (vfork_compat): Remove.
9862         [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
9863
9864 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
9865
9866         [BZ #16978]
9867         * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
9868         * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
9869         variable.
9870
9871 2014-05-23  Richard Henderson  <rth@twiddle.net>
9872
9873         * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
9874         * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
9875         * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
9876         * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
9877
9878         * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
9879         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
9880         * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
9881         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
9882         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
9883         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
9884         * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
9885         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
9886         * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
9887         * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
9888         * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
9889         * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
9890         * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
9891         * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
9892         * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
9893         * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
9894         * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
9895         * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
9896         * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
9897         * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
9898         * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
9899         * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
9900         * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
9901         * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
9902         * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
9903         * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
9904         * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
9905         * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
9906         * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
9907         * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
9908         * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
9909         * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
9910         * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
9911         * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
9912         * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
9913         * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
9914         * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
9915         * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
9916         * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
9917         * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
9918         * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
9919         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
9920         * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
9921         * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
9922         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
9923         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
9924         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
9925         * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
9926         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
9927         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
9928         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
9929         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
9930         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
9931         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
9932         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
9933         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
9934
9935         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
9936         * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
9937         * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here.  Restore PID
9938         before exiting on error.
9939         (__libc_vfork): New strong alias.
9940         * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
9941         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
9942
9943         * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
9944         that was previously under [RESET_PID].
9945         * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
9946
9947         * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
9948
9949 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
9950
9951         [BZ #16977]
9952         * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
9953         value when x - 1 is zero.
9954         * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
9955         * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
9956         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
9957         0.0L for an argument of 1.0L.
9958         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
9959         Likewise.
9960         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
9961         value when x - 1 is zero.
9962         * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
9963         * sysdeps/i386/fpu/libm-test-ulps: Update.
9964         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9965
9966 2014-05-23  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
9967
9968         * manual/filesys.texi (Scanning Directory Content): Fix prototype of
9969         alphasort and versionsort.
9970
9971 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9972
9973         * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
9974         macro.
9975         [copysignf]: Likewise.
9976
9977 2014-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
9978
9979         * crypt/md5-crypt.c: Fix formatting.
9980
9981 2014-05-22  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
9982
9983         * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
9984         (b64_from_24bit): New function.
9985
9986 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9987
9988         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
9989         libc_hidden_builtin_def to ifunc.
9990         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
9991         [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
9992
9993 2014-05-21  Roland McGrath  <roland@hack.frob.com>
9994
9995         * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
9996         * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
9997
9998 2014-05-21  Joseph Myers  <joseph@codesourcery.com>
9999
10000         * nscd/Depend (linuxthreads): Remove.
10001         (nptl): Add.
10002         * resolv/Depend (linuxthreads): Remove.
10003         * rt/Depend (linuxthreads): Remove.
10004
10005         * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
10006         (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
10007         $(common-objpfx)elf/.
10008         (link-libc-before-gnulib): Likewise.
10009         (elfobjdir): Remove variable.
10010         * Makefile (install): Use $(elf-objpfx) instead of
10011         $(common-objpfx)elf/.
10012         * Makerules (link-libc-args): Use $(elf-objpfx) instead of
10013         $(elfobjdir)/.
10014         (link-libc-deps): Likewise.
10015         ($(common-objpfx)libc.so): Likewise.
10016         ($(common-objpfx)linkobj/libc.so): Likewise.
10017         [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
10018         instead of $(common-objpfx)elf/.
10019         (symbolic-link-list): Likewise.
10020         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
10021         [$(cross-compiling) = no]: Likewise.
10022         * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
10023         $(elfobjdir)/.
10024         (static-gnulib-arch): Likewise.
10025         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
10026         [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
10027         $(common-objpfx)elf/.
10028
10029 2014-05-21  Richard Henderson  <rth@redhat.com>
10030
10031         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
10032         (SINGLE_THREAD_P): Use the correct width load.  Fold
10033         into the ldr offset.
10034
10035         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
10036         (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
10037
10038 2014-05-20  Joseph Myers  <joseph@codesourcery.com>
10039
10040         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
10041         (libgcc_s_resume): Use __attribute_used__.
10042         * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
10043         Likewise.
10044
10045 2014-05-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10046
10047         * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
10048         optimization when used with float constants.
10049
10050         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10051
10052 2014-05-20  Aurelien Jarno  <aurelien@aurel32.net>
10053
10054         [BZ #16915]
10055         * locale/nl_langinfo_l.c: Make direct reference to every
10056         _nl_current_CATEGORY symbol.
10057         * localedata/Makefile (test-srcs): Add tst-langinfo-static.
10058         (tests-static): Add tst-langinfo-static.
10059         (tests-special): Add tst-langinfo-static.out.
10060         ($(objpfx)tst-langinfo.out): Redirect output.
10061         ($(objpfx)tst-langinfo-static.out): New.
10062         * localedata/tst-langinfo.sh: Send output to stdout.
10063         * localedata/tst-langinfo-static.c: New file.
10064
10065         [BZ #16965]
10066         * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
10067         when the shift amount is modulo the limb size.
10068
10069 2014-05-20  Richard Henderson  <rth@redhat.com>
10070
10071         [BZ #16967]
10072         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
10073         Change type of sa_flags from unsigned int to int.
10074
10075         [BZ #16966]
10076         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
10077
10078         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
10079
10080 2014-05-20  Will Newton  <will.newton@linaro.org>
10081
10082         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
10083         Test the return value of the system call in the nocancel case.
10084
10085 2014-05-20  Will Newton  <will.newton@linaro.org>
10086             Yvan Roux  <yvan.roux@linaro.org>
10087
10088         * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
10089         #include of asm/ptrace.h.
10090         (PTRACE_GET_THREAD_AREA): Remove #undef.
10091         (PTRACE_GETHBPREGS): Likewise.
10092         (PTRACE_SETHBPREGS): Likewise.
10093         (struct user_regs_struct): New structure.
10094         (struct user_fpsimd_struct): New structure.
10095         * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
10096         #include of asm/ptrace.h and second #include of sys/user.h.
10097         (PTRACE_GET_THREAD_AREA): Remove #undef.
10098         (PTRACE_GETHBPREGS): Likewise.
10099         (PTRACE_SETHBPREGS): Likewise.
10100         (ELF_NGREG): Use new struct user_regs_struct.
10101         (elf_fpregset_t): Use new struct user_fpsimd_struct.
10102
10103 2014-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10104
10105         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
10106         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
10107
10108 2014-05-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
10109
10110         [BZ #16958]
10111         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
10112         membar to avoid block loads/stores to overlap previous stores.
10113
10114 2014-05-17  Richard Henderson  <rth@redhat.com>
10115
10116         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
10117         Create the __##syscall_name##_nocancel entry point.
10118         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
10119         Remove; let the sysdep-cancel.h code create it.
10120
10121 2014-05-17  David S. Miller  <davem@davemloft.net>
10122
10123         * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
10124         Protect with __USE_GNU.
10125         (TIOCSET_TEMPT): Likewise.
10126         (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
10127         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
10128         these are already provided in bits/ioctl-types.h
10129
10130 2014-05-16  Roland McGrath  <roland@hack.frob.com>
10131
10132         * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
10133         * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
10134
10135         * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
10136         Use wait4 regardless of [__NR_waitpid].
10137
10138 2014-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
10139
10140         PR libgcc/60166
10141         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
10142         (_FP_NANSIGN_Q): Set the quiet bit.
10143
10144 2014-05-16  Joseph Myers  <joseph@codesourcery.com>
10145
10146         * benchtests/Makefile
10147         ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
10148         not $(common-objpfx)math/libm.so.
10149         ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
10150         $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
10151         * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
10152         $(common-objpfx)dlfcn/libdl.so.
10153         ($(objpfx)tst-audit8): Depend on $(libm), not
10154         $(common-objpfx)math/libm.so.
10155         * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
10156         not $(common-objpfx)dlfcn/libdl.so.
10157         * math/Makefile
10158         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
10159         Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
10160         [$(build-shared) = yes].
10161         ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
10162         $(common-objpfx)nptl/libpthread.so.
10163         * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
10164         $(common-objpfx)math/libm.so$(libm.so-version) or
10165         $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
10166         * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
10167         $(common-objpfx)dlfcn/libdl.so.
10168         * setjmp/Makefile (link-libm): Remove variable.
10169         ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
10170         * stdio-common/Makefile (link-libm): Remove variable.
10171         ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
10172         * stdlib/Makefile (link-libm): Remove variable.
10173         ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
10174         ($(objpfx)tst-strtod-round): Likewise.
10175         ($(objpfx)tst-tininess): Likewise.
10176         ($(objpfx)tst-strtod-underflow): Likewise.
10177         ($(objpfx)tst-strtod6): Likewise.
10178         ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
10179         $(libdl), not $(common-objpfx)nptl/libpthread.so and
10180         $(common-objpfx)dlfcn/libdl.so.
10181
10182 2014-05-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10183
10184         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
10185         BSD terminal modes definitions.
10186
10187 2014-05-16  Roland McGrath  <roland@hack.frob.com>
10188
10189         * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
10190         * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
10191
10192         * sysdeps/unix/sysv/linux/arch-fork.h: New file.
10193         * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
10194         * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
10195         Don't do #include_next.
10196         * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
10197         * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
10198         Don't do #include_next.
10199         * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
10200         * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
10201         * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
10202         * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
10203
10204 2014-05-16  Allan McRae  <allan@archlinux.org>
10205
10206         * po/sv.po: Update Swedish translation from translation project.
10207
10208         * timezone/Makefile ($(objpfx)tzselect): Use correct variable
10209         in sed expression.
10210
10211 2014-05-16  Aurelien Jarno  <aurelien@aurel32.net>
10212
10213         [BZ #16917]
10214         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
10215         errno if the TIOCGPTN ioctl fails with an error different than
10216         EINVAL.
10217         * login/tst-ptsname.c: New file.
10218         * login/Makefile (tests): Add tst-ptsname.
10219
10220         [BZ #16943]
10221         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
10222         and prlimit64.
10223
10224 2014-05-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
10225
10226         [BZ #16849]
10227         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
10228         herrno to return EAI_AGAIN.
10229
10230 2014-05-14  Roland McGrath  <roland@hack.frob.com>
10231
10232         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
10233         * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
10234         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
10235         * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
10236         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
10237         * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
10238         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
10239         * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
10240         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
10241         * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
10242         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
10243         * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
10244         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
10245         * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
10246         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
10247         * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
10248         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
10249         * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
10250         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
10251         * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
10252         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
10253         * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
10254         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
10255         * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
10256         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
10257         * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
10258         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
10259         * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
10260         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
10261         * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
10262         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
10263         * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
10264         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
10265         * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
10266         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
10267         Moved ...
10268         * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
10269         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
10270         * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
10271         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
10272         * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
10273         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
10274         * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
10275         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
10276         * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
10277         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
10278         * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
10279         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
10280         * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
10281         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
10282         * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
10283         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
10284         * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
10285         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
10286         * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
10287         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
10288         * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
10289         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
10290         * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
10291         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
10292         * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
10293         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
10294         * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
10295         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
10296         Moved ...
10297         * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
10298         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
10299         * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
10300         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
10301         * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
10302         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
10303         * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
10304         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
10305         * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
10306         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
10307         * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
10308         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
10309         * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
10310         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
10311         * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
10312         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
10313         * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
10314         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
10315         * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
10316         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
10317         Moved ...
10318         * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
10319         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
10320         * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
10321
10322         * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
10323         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
10324         (libpthread-sysdep_routines): Add elision-related stuff here instead.
10325         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
10326         * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
10327         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
10328         * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
10329         * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
10330         * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
10331         * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
10332         * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
10333         * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
10334         * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
10335         * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
10336         * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
10337         * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
10338         * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
10339         * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
10340         * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
10341         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
10342         * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
10343         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
10344         * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
10345         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
10346         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
10347         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
10348         * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
10349         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
10350         * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
10351         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
10352         * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
10353
10354         * sysdeps/unix/sysv/linux/mips/fork.h: New file.
10355         * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
10356
10357         * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
10358         * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
10359         * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
10360         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
10361         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
10362         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
10363         Moved ...
10364         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
10365         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
10366         Moved ...
10367         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
10368         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
10369         Moved ...
10370         * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
10371         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
10372         Moved ...
10373         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
10374         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
10375         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
10376         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
10377         Moved ...
10378         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
10379         * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
10380         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
10381         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
10382         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
10383         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
10384         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
10385         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
10386         Moved ...
10387         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
10388         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
10389         Moved ...
10390         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
10391         ... here.
10392         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
10393         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
10394         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
10395         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
10396         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
10397         Moved ...
10398         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
10399         ... here.
10400         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
10401         Moved ...
10402         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
10403         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
10404         * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
10405         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
10406         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
10407         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
10408         Moved ...
10409         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
10410         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
10411         Moved ...
10412         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
10413         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
10414         Moved ...
10415         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
10416         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
10417         Moved ...
10418         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
10419         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
10420         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
10421         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
10422         Moved ...
10423         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
10424         * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
10425         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
10426         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
10427         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
10428         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
10429         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
10430         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
10431         Moved ...
10432         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
10433         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
10434         Moved ...
10435         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
10436         ... here.
10437         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
10438         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
10439         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
10440         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
10441         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
10442         Moved ...
10443         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
10444         ... here.
10445         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
10446         Moved ...
10447         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
10448         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
10449         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
10450         * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
10451         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
10452         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
10453         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
10454         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
10455         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
10456         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
10457         Moved ...
10458         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
10459         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
10460         Moved ...
10461         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
10462         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
10463         Moved ...
10464         * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
10465         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
10466         Moved ...
10467         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
10468         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
10469         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
10470         * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
10471         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
10472         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
10473         Moved ...
10474         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
10475         * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
10476         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
10477         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
10478         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
10479         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
10480         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
10481         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
10482         Moved ...
10483         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
10484         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
10485         Moved ...
10486         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
10487         ... here.
10488         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
10489         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
10490         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
10491         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
10492         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
10493         Moved ...
10494         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
10495         ... here.
10496         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
10497         Moved ...
10498         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
10499         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
10500         * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
10501         * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
10502         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
10503         * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
10504         * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
10505         * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
10506         * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
10507         * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
10508         * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
10509
10510         * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
10511         * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
10512
10513         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
10514         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
10515
10516         * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
10517         * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
10518         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
10519         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
10520         * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
10521         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
10522         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
10523         * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
10524         * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
10525         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
10526         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
10527         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
10528         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
10529         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
10530         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
10531         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
10532         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
10533         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
10534         Moved ...
10535         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
10536         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
10537         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
10538         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
10539         Moved ...
10540         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
10541         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
10542         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
10543         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
10544         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
10545         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
10546         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
10547         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
10548         Moved ...
10549         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
10550         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
10551         Moved ...
10552         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
10553         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
10554         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
10555         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
10556         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
10557         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
10558         * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
10559         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
10560         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
10561         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
10562         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
10563         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
10564         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
10565         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
10566         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
10567         * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
10568         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
10569
10570         * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
10571         * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
10572         * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
10573         * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
10574         * sysdeps/unix/sysv/linux/i386/fork.h: New file.
10575
10576         * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
10577         * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
10578         * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
10579         * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
10580         * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
10581         * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
10582         * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
10583         * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
10584         * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
10585         * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
10586
10587         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
10588         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
10589
10590         * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
10591         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
10592         * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
10593         * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
10594         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
10595         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
10596         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
10597         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
10598         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
10599         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
10600         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
10601         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
10602         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
10603         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
10604         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
10605         Update #include.
10606         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
10607         Likewise.
10608         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
10609         Likewise.
10610         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
10611         Likewise.
10612         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
10613         Likewise.
10614         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
10615         Likewise.
10616         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
10617         Likewise.
10618         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
10619         Likewise.
10620         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
10621         Likewise.
10622         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
10623         Likewise.
10624         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
10625         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
10626         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
10627         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
10628         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
10629         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
10630         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
10631         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
10632         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
10633         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
10634         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
10635         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
10636         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
10637         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c:  Likewise.
10638         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c:  Likewise.
10639
10640         * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
10641         that was previously under [RESET_PID].
10642         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
10643         * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
10644         * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
10645
10646         * sysdeps/i386/nptl/Implies: New file.
10647         * sysdeps/x86_64/nptl/Implies: New file.
10648         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
10649         * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
10650         * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
10651         * sysdeps/x86/nptl/bits/semaphore.h: ... here.
10652
10653         * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
10654         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10655         (__libc_vfork): New strong alias.
10656         * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
10657         * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
10658
10659         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
10660         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10661         (__libc_vfork): New strong alias.
10662         * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
10663         * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
10664
10665         * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
10666         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10667         (__libc_vfork): New strong alias.
10668         * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
10669         * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
10670         * nptl/pt-vfork.c: New file.
10671         * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
10672         (libpthread: GLIBC_2.20): New version set (empty).
10673
10674 2014-05-14  Will Newton  <will.newton@linaro.org>
10675
10676         * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
10677         rather than #if.
10678
10679 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
10680
10681         [BZ #16564]
10682         * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
10683         arguments with exponent 65 or above.
10684         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
10685         arguments 0x1p113L or above.
10686         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
10687         to arguments 0x1p107L or above.
10688         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
10689         positive arguments with exponent 65 or above.
10690         * math/auto-libm-test-in: Add more tests of log1p.
10691         * math/auto-libm-test-out: Regenerated.
10692
10693         [BZ #16928]
10694         * math/s_cacos.c (__cacos): Ensure zero real part of result from
10695         non-finite arguments is +0.
10696         * math/s_cacosf.c (__cacosf): Likewise.
10697         * math/s_cacosl.c (__cacosl): Likewise.
10698         * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
10699         * sysdeps/i386/fpu/libm-test-ulps: Update.
10700         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10701
10702         [BZ #16927]
10703         * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
10704         value.
10705         * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
10706         * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
10707         * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
10708         for explicit high bit of mantissa when testing for argument equal
10709         to 1.
10710         * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
10711         * sysdeps/i386/fpu/libm-test-ulps: Update.
10712         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10713
10714         [BZ #16516]
10715         * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
10716         (__erf): Scale by 16 instead of 8 in potentially underflowing
10717         case.  Ensure exception if result actually underflows.
10718         * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
10719         (__erff): Scale by 16 instead of 8 in potentially underflowing
10720         case.  Ensure exception if result actually underflows.
10721         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
10722         (efx8): Remove variable.
10723         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10724         case.  Ensure exception if result actually underflows.
10725         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
10726         (efx8): Remove variable.
10727         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10728         case.  Ensure exception if result actually underflows.
10729         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
10730         (efx8): Remove variable.
10731         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10732         case.  Ensure exception if result actually underflows.
10733         * math/auto-libm-test-in: Add more tests of erf.
10734         * math/auto-libm-test-out: Regenerated.
10735
10736 2014-05-14  Andreas Schwab  <schwab@suse.de>
10737
10738         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
10739         Remove code conditionalized on USE___THREAD.
10740
10741         * config.h.in (HAVE_PT_CHOWN): Define as 0.
10742         * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
10743         not definedness.
10744
10745 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
10746
10747         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
10748         Define unconditionally.
10749         (__ASSUME_O_CLOEXEC): Likewise.
10750         (__ASSUME_SOCK_CLOEXEC): Likewise.
10751         (__ASSUME_IN_NONBLOCK): Likewise.
10752         (__ASSUME_PIPE2): Likewise.
10753         (__ASSUME_EVENTFD2): Likewise.
10754         (__ASSUME_SIGNALFD4): Likewise.
10755         (__ASSUME_DUP3): Likewise.
10756         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
10757         (__ASSUME_DUP3): Do not define.
10758         (__ASSUME_EVENTFD2): Likewise.
10759         (__ASSUME_IN_NONBLOCK): Likewise.
10760         (__ASSUME_O_CLOEXEC): Likewise.
10761         (__ASSUME_PIPE2): Likewise.
10762         (__ASSUME_SIGNALFD4): Likewise.
10763         (__ASSUME_SOCK_CLOEXEC): Likewise.
10764         (__ASSUME_UTIMES): Undefine.
10765         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
10766         (__ASSUME_UTIMES): Do not define.
10767         (__ASSUME_O_CLOEXEC): Likewise.
10768         (__ASSUME_SOCK_CLOEXEC): Likewise.
10769         (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
10770         0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
10771         0x020621].
10772         (__ASSUME_PIPE2): Likewise.
10773         (__ASSUME_EVENTFD2): Likewise.
10774         (__ASSUME_SIGNALFD4): Likewise.
10775         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
10776         * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
10777         Do not define.
10778         (__ASSUME_EVENTFD2): Likewise.
10779         (__ASSUME_SIGNALFD4): Likewise.
10780         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
10781         (__ASSUME_32BITUIDS): Likewise.
10782         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
10783         (__ASSUME_IPC64): Likewise.
10784         (__ASSUME_ST_INO_64_BIT): Likewise.
10785         (__ASSUME_GETDENTS64_SYSCALL): Likewise.
10786         [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
10787         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
10788         (__ASSUME_UTIMES): Do not define.
10789         (__ASSUME_PSELECT): Likewise.
10790         (__ASSUME_PPOLL): Likewise.
10791         (__ASSUME_O_CLOEXEC): Likewise.
10792         (__ASSUME_SOCK_CLOEXEC): Likewise.
10793         (__ASSUME_IN_NONBLOCK): Likewise.
10794         (__ASSUME_PIPE2): Likewise.
10795         (__ASSUME_EVENTFD2): Likewise.
10796         (__ASSUME_SIGNALFD4): Likewise.
10797         (__ASSUME_DUP3): Likewise.
10798         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
10799         (__ASSUME_UTIMES): Likewise.
10800         (__ASSUME_O_CLOEXEC): Likewise.
10801         (__ASSUME_SOCK_CLOEXEC): Likewise.
10802         (__ASSUME_IN_NONBLOCK): Likewise.
10803         (__ASSUME_PIPE2): Likewise.
10804         (__ASSUME_EVENTFD2): Likewise.
10805         (__ASSUME_SIGNALFD4): Likewise.
10806         (__ASSUME_DUP3): Likewise.
10807         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
10808         (__ASSUME_UTIMES): Likewise.
10809         (__ASSUME_O_CLOEXEC): Likewise.
10810         (__ASSUME_SOCK_CLOEXEC): Likewise.
10811         (__ASSUME_IN_NONBLOCK): Likewise.
10812         (__ASSUME_PIPE2): Likewise.
10813         (__ASSUME_EVENTFD2): Likewise.
10814         (__ASSUME_SIGNALFD4): Likewise.
10815         (__ASSUME_DUP3): Likewise.
10816         * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
10817         Likewise.
10818         (__ASSUME_UTIMES): Likewise.
10819         (__ASSUME_EVENTFD2): Likewise.
10820         (__ASSUME_SIGNALFD4): Likewise.
10821         * sysdeps/unix/sysv/linux/tile/kernel-features.h
10822         (__ASSUME_O_CLOEXEC): Likewise.
10823         (__ASSUME_SOCK_CLOEXEC): Likewise.
10824         (__ASSUME_IN_NONBLOCK): Likewise.
10825         (__ASSUME_PIPE2): Likewise.
10826         (__ASSUME_EVENTFD2): Likewise.
10827         (__ASSUME_SIGNALFD4): Likewise.
10828         (__ASSUME_DUP3): Likewise.
10829         (__ASSUME_UTIMES): Undefine.
10830
10831         * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
10832         feclearexcept.  Remove symbol versioning code.
10833         * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv.  Remove
10834         symbol versioning code.
10835         * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv.  Remove
10836         symbol versioning code.
10837         * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
10838         feupdateenv.  Remove symbol versioning code.
10839         * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
10840         fegetexceptflag.  Remove symbol versioning code.
10841         * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
10842         fesetexceptflag.  Remove symbol versioning code.
10843         * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
10844         GLIBC_2.2 and GLIBC_2.3.3 entries.  Change GLIBC_2.1 to GLIBC_2.4.
10845         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
10846         (__posix_fadvise64_l32): Remove prototype.
10847         [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
10848         code.
10849
10850 2014-05-13  Roland McGrath  <roland@hack.frob.com>
10851
10852         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
10853         * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
10854         * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
10855         * sysdeps/arm/nptl/bits/semaphore.h: ... here.
10856
10857 2014-05-13  Sami Kerola  <kerolasa@iki.fi>
10858
10859         * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
10860         current working directory
10861
10862 2014-05-13  Roland McGrath  <roland@hack.frob.com>
10863
10864         * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
10865         * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
10866         * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
10867         * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
10868         * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
10869         * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
10870         * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
10871         * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
10872         * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
10873         * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
10874         * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
10875         * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
10876         * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
10877         * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
10878         * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
10879         * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
10880         * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
10881         * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
10882         * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
10883         * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
10884         * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
10885         * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
10886         * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
10887         * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
10888         * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
10889         * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
10890         * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
10891         * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
10892         * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
10893         * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
10894         * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
10895         * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
10896         * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
10897         * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
10898         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
10899         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
10900         * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
10901         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
10902         * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
10903         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
10904         * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
10905         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
10906
10907         * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
10908         * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
10909
10910         * sysdeps/unix/sysv/linux/arm/Makefile
10911         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
10912         Add rt-aeabi_unwind_cpp_pr1.
10913         [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
10914         Add nptl-aeabi_unwind_cpp_pr1.
10915         [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
10916         * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
10917         * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
10918         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
10919         * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
10920         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
10921
10922         * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
10923         * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
10924         * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
10925         * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
10926
10927         * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
10928         Deconditionalize the code that was previously under [RESET_PID].
10929         * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
10930
10931         * sysdeps/generic/exit-thread.h: New file.
10932         * sysdeps/unix/sysv/linux/exit-thread.h: New file.
10933         * include/unistd.h (__exit_thread): Remove declaration.
10934         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
10935         * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
10936         * csu/libc-start.c: Include <exit-thread.h>.
10937         (LIBC_START_MAIN): Pass no argument to __exit_thread.
10938         * nptl/pthread_create.c: Include <exit-thread.h>.
10939         (start_thread): Call __exit_thread in place of __exit_thread_inline.
10940         * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
10941         * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
10942         * nptl/sysdeps/s390/pthreaddef.h: Likewise.
10943         * nptl/sysdeps/sh/pthreaddef.h: Likewise.
10944         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
10945         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
10946         * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
10947         * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
10948         * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
10949         * sysdeps/arm/nptl/pthreaddef.h: Likewise.
10950         * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
10951         * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
10952         * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
10953         * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
10954         * sysdeps/mips/nptl/pthreaddef.h: Likewise.
10955         * sysdeps/tile/nptl/pthreaddef.h: Likewise.
10956
10957 2014-05-13  Andreas Schwab  <schwab@suse.de>
10958
10959         * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
10960
10961 2014-05-12  Joseph Myers  <joseph@codesourcery.com>
10962
10963         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
10964         (__ASSUME_UTIMES): Do not condition on kernel version.
10965         (__ASSUME_PSELECT): Define unconditionally.
10966         (__ASSUME_PPOLL): Likewise.
10967         (__ASSUME_ATFCTS): Likewise.
10968         (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
10969         (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
10970         (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
10971         (__ASSUME_UTIMENSAT): Define unconditionally.
10972         (__ASSUME_PRIVATE_FUTEX): Likewise.
10973         (__ASSUME_FALLOCATE): Likewise.
10974         (__ASSUME_O_CLOEXEC): Likewise.
10975         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
10976         (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
10977         (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
10978         (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
10979         (__ASSUME_IN_NONBLOCK): Likewise.
10980         (__ASSUME_PIPE2): Likewise.
10981         (__ASSUME_EVENTFD2): Likewise.
10982         (__ASSUME_SIGNALFD4): Likewise.
10983         (__ASSUME_DUP3): Likewise.
10984         [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
10985         (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
10986         (__ASSUME_AT_RANDOM): Likewise.
10987         (__ASSUME_PREADV): Likewise.
10988         (__ASSUME_PWRITEV): Likewise.
10989         (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
10990         (__ASSUME_F_GETOWN_EX): Define unconditionally.
10991         (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
10992         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
10993         [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
10994         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
10995         (__ASSUME_O_CLOEXEC): Define unconditionally.
10996         (__ASSUME_PSELECT): Do not undefine conditionally.
10997         (__ASSUME_PPOLL): Likewise.
10998         (__ASSUME_ATFCTS): Likewise.
10999         (__ASSUME_SET_ROBUST_LIST): Likewise.
11000         (__ASSUME_UTIMENSAT): Likewise.
11001         (__ASSUME_FDATASYNC): Define unconditionally.
11002         * sysdeps/unix/sysv/linux/arm/kernel-features.h
11003         (__ASSUME_SIGFRAME_V2): Likewise.
11004         )__ASSUME_EVENTFD2): Likewise.
11005         (__ASSUME_SIGNALFD4): Likewise.
11006         (__ASSUME_PSELECT): Do not undefine conditionally.
11007         (__ASSUME_PPOLL): Likewise.
11008         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
11009         (__ASSUME_PSELECT): Define unconditionally.
11010         (__ASSUME_PPOLL): Likewise.
11011         (__ASSUME_O_CLOEXEC): Likewise.
11012         (__ASSUME_SOCK_CLOEXEC): Likewise.
11013         (__ASSUME_IN_NONBLOCK): Likewise.
11014         (__ASSUME_PIPE2): Likewise.
11015         (__ASSUME_EVENTFD2): Likewise.
11016         (__ASSUME_SIGNALFD4): Likewise.
11017         (__ASSUME_DUP3): Likewise.
11018         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
11019         (__ASSUME_O_CLOEXEC): Likewise.
11020         (__ASSUME_SOCK_CLOEXEC): Likewise.
11021         (__ASSUME_IN_NONBLOCK): Likewise.
11022         (__ASSUME_PIPE2): Likewise.
11023         (__ASSUME_EVENTFD2): Likewise.
11024         (__ASSUME_SIGNALFD4): Likewise.
11025         (__ASSUME_DUP3): Likewise.
11026         * sysdeps/unix/sysv/linux/mips/kernel-features.h
11027         (__ASSUME_EVENTFD2): Likewise.
11028         (__ASSUME_SIGNALFD4): Likewise.
11029         (__ASSUME_ACCEPT4_SYSCALL): Likewise.
11030
11031 2014-05-12  Andreas Schwab  <schwab@suse.de>
11032
11033         [BZ #16932]
11034         * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
11035         (_nss_nis_gethostbyname4_r): Return error if item length is larger
11036         than maximum RPC packet size.
11037         * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
11038         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
11039         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
11040         (_nss_nis_getservbyport_r): Likewise.
11041
11042 2014-05-12  Will Newton  <will.newton@linaro.org>
11043
11044         * malloc/Makefile (tests): Add tst-mallopt.
11045         * malloc/tst-mallopt.c: New file.
11046
11047 2014-05-09  Roland McGrath  <roland@hack.frob.com>
11048
11049         * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
11050         [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
11051
11052 2014-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11053
11054         * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
11055         (tst-tlsmod6.so): Likewise.
11056
11057 2014-05-09  Roland McGrath  <roland@hack.frob.com>
11058
11059         * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
11060
11061 2014-05-09  Joseph Myers  <joseph@codesourcery.com>
11062
11063         [BZ #16064]
11064         * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
11065         and <dl-procinfo.h>.
11066         (__fegetenv): Save SSE state in envp->__eip if supported.
11067         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
11068         envp->__eip if supported.
11069         * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
11070         and <dl-procinfo.h>.
11071         (__fesetenv): Always set __eip, __cs_selector, __opcode,
11072         __data_offset and __data_selector in environment to 0.  Set SSE
11073         state if supported.
11074         * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
11075         test-fenv-sse.
11076         [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
11077         -mfpmath=sse.
11078         * sysdeps/x86/fpu/test-fenv-sse.c: New file.
11079
11080 2014-05-09  Will Newton  <will.newton@linaro.org>
11081
11082         * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
11083         and libc_relro_required for ARM.
11084         * sysdeps/arm/preconfigure: Regenerate.
11085
11086 2014-05-09  Dominik Vogt  <vogt@linux.vnet.ibm.com>
11087             Stefan Liebler  <stli@linux.vnet.ibm.com>
11088
11089         * config.make.in (enable-lock-elision): New Makefile variable.
11090         * configure.ac: Likewise.
11091         * configure: Regenerate.
11092         * sysdeps/s390/configure.ac:
11093         Add check for gcc transactions support.
11094         * sysdeps/s390/configure: Regenerate.
11095         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
11096         Build elision files if enabled.
11097         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
11098         Add lock elision support for s390.
11099         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
11100         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
11101         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
11102         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
11103         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
11104         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
11105         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
11106         Likewise.
11107         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
11108         Likewise.
11109         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
11110         Likewise.
11111         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
11112         Likewise.
11113         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
11114         (__lll_timedlock_elision, __lll_lock_elision)
11115         (__lll_unlock_elision, __lll_trylock_elision)
11116         (lll_timedlock_elision, lll_lock_elision)
11117         (lll_unlock_elision, lll_trylock_elision): Add.
11118         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
11119         (pthread_mutex_t): Add lock elision support for s390.
11120
11121 2014-05-14  Wilco  <wdijkstr@arm.com>
11122
11123         * sysdeps/arm/fclrexcpt.c: Cleanup.
11124         * sysdeps/arm/fedisblxcpt.c: Cleanup.
11125         * sysdeps/arm/feenablxcpt.c: Cleanup.
11126         * sysdeps/arm/fegetenv.c: Cleanup.
11127         * sysdeps/arm/fegetexcept.c: Cleanup.
11128         * sysdeps/arm/fegetround.c: Cleanup.
11129         * sysdeps/arm/feholdexcpt.c: Cleanup.
11130         * sysdeps/arm/fesetenv.c: Cleanup.
11131         * sysdeps/arm/fesetround.c: Cleanup.
11132         * sysdeps/arm/feupdateenv.c: Cleanup.
11133         * sysdeps/arm/fgetexcptflg.c: Cleanup.
11134         * sysdeps/arm/fraiseexcpt.c: Cleanup.
11135         * sysdeps/arm/fsetexcptflg.c: Cleanup.
11136         * sysdeps/arm/ftestexcept.c: Cleanup.
11137         * sysdeps/arm/get-rounding-mode.h: Cleanup.
11138         * sysdeps/arm/setfpucw.c: Cleanup.
11139
11140 2014-05-09  Will Newton  <will.newton@linaro.org>
11141
11142         * sysdeps/arm/armv7/strcmp.S: New file.
11143         * NEWS: Mention addition of ARMv7 optimized strcmp.
11144
11145 2014-05-08  Roland McGrath  <roland@hack.frob.com>
11146
11147         * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
11148         look for %.ac rather than %.in.
11149
11150         * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
11151         * sysdeps/unix/sysv/linux/configure.ac: Likewise.
11152         * sysdeps/mach/hurd/configure: Regenerated.
11153         * sysdeps/unix/sysv/linux/configure: Regenerated.
11154
11155         * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
11156
11157 2014-05-07  Steve Ellcey  <sellcey@mips.com>
11158
11159         [BZ# 16922]
11160         * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
11161         (LONG_SUB): Ditto.
11162         (PTR_SUB): Ditto.
11163
11164 2014-05-07  Andreas Schwab  <schwab@suse.de>
11165
11166         * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
11167         when skipping over non-matching result from nscd.
11168
11169 2014-05-07  Ondřej Bílka  <neleai@seznam.cz>
11170
11171         [BZ #16876]
11172         * nptl/sockperf.c (client): Check socket return value.
11173
11174         [BZ #16877]
11175         * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
11176         nscd security class.
11177
11178 2014-05-06  Roland McGrath  <roland@hack.frob.com>
11179
11180         * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
11181         * sysdeps/arm/unwind.h: ... here.
11182
11183 2014-05-06  Aurelien Jarno  <aurelien@aurel32.net>
11184
11185         [BZ# 16916]
11186         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
11187         Define.
11188
11189 2014-05-06  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
11190
11191         * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
11192         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
11193         multiarch strncpy for PPC64.
11194         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
11195         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
11196         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
11197         multiarch optimizations.
11198         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
11199         (__libc_ifunc_impl_list): Likewise.
11200         * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
11201         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
11202         multiarch stpncpy for PPC64.
11203         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
11204         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
11205
11206 2014-05-06  Andreas Schwab  <schwab@suse.de>
11207
11208         [BZ #16912]
11209         * gmon/mcount.c (_MCOUNT_DECL): Use
11210         atomic_compare_and_exchange_bool_acq instead of
11211         catomic_compare_and_exchange_bool_acq.
11212
11213 2014-05-05  Roland McGrath  <roland@hack.frob.com>
11214
11215         * elf/Makefile (others, install-bin): Remove pldd.
11216         (pldd-modules): Variable removed.
11217         ($(objpfx)pldd): Target removed.
11218         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
11219         (others, install-bin): Append pldd here.
11220         ($(objpfx)pldd): New target.
11221
11222         * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
11223         to 0, so the first #if test emitted later doesn't see it undefined.
11224         (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
11225         * sysdeps/gnu/errlist.c: Regenerated.
11226
11227 2014-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11228
11229         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
11230         [libc_hidden_builtin_def]: Define to empty value.
11231         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
11232         [libc_hidden_builtin_def]: Likewise.
11233         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
11234         [libc_hidden_builtin_def]: Likewise.
11235         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
11236         [libc_hidden_builtin_def]: Likewise.
11237         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
11238         __redirect_memcpy and define ifunc as default hidden symbol.
11239         * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
11240         * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
11241
11242 2014-05-04  Adam Conrad  <adconrad@0c3.net>
11243
11244         * locale/iso-4217.def: Reintroduce XDR currency.
11245
11246 2014-05-04  Allan McRae  <allan@archlinux.org>
11247
11248         * po/eo.po: Update Esperanto translation from translation project.
11249
11250 2014-05-02  Carlos O'Donell  <carlos@redhat.com>
11251
11252         * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
11253         and FEATURE_INDEX_MAX to 1.
11254         [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
11255
11256 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11257
11258         * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
11259         * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
11260         * iconvdata/big5.c (ONE_DIRECTION): Define.
11261         * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
11262         * iconvdata/cp1255.c (ONE_DIRECTION): Define.
11263         * iconvdata/cp1258.c (ONE_DIRECTION): Define.
11264         * iconvdata/cp932.c (ONE_DIRECTION): Define.
11265         * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
11266         * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
11267         * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
11268         * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
11269         * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
11270         * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
11271         * iconvdata/gb18030.c (ONE_DIRECTION): Define.
11272         * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
11273         * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
11274         * iconvdata/gbk.c (ONE_DIRECTION): Define.
11275         * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
11276         * iconvdata/ibm930.c (ONE_DIRECTION): Define.
11277         * iconvdata/ibm932.c (ONE_DIRECTION): Define.
11278         * iconvdata/ibm933.c (ONE_DIRECTION): Define.
11279         * iconvdata/ibm935.c (ONE_DIRECTION): Define.
11280         * iconvdata/ibm937.c (ONE_DIRECTION): Define.
11281         * iconvdata/ibm939.c (ONE_DIRECTION): Define.
11282         * iconvdata/ibm943.c (ONE_DIRECTION): Define.
11283         * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
11284         * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
11285         * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
11286         * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
11287         * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
11288         * iconvdata/iso646.c (ONE_DIRECTION): Define.
11289         * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
11290         * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
11291         * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
11292         * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
11293         * iconvdata/johab.c (ONE_DIRECTION): Define.
11294         * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
11295         * iconvdata/sjis.c (ONE_DIRECTION): Define.
11296         * iconvdata/t.61.c (ONE_DIRECTION): Define.
11297         * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
11298         * iconvdata/tscii.c (ONE_DIRECTION): Define.
11299         * iconvdata/uhc.c (ONE_DIRECTION): Define.
11300         * iconvdata/unicode.c (ONE_DIRECTION): Define.
11301         * iconvdata/utf-16.c (ONE_DIRECTION): Define.
11302         * iconvdata/utf-32.c (ONE_DIRECTION): Define.
11303         * iconvdata/utf-7.c (ONE_DIRECTION): Define.
11304
11305 2014-05-01  Roland McGrath  <roland@hack.frob.com>
11306
11307         * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
11308         (_IO_JUMPS_OFFSET): Define to 0.
11309
11310         * nptl/sysdeps/pthread/bits/libc-lock.h
11311         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
11312         (__libc_lock_define_initialized_recursive): Always define using
11313         initializer.  Modern compilers treat uninitialized (implicit zero) and
11314         explicit zero initializers the same (i.e. put the datum in bss).
11315
11316 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
11317
11318         * nscd/nscd-client.h: Include <string.h>.
11319
11320 2014-05-01  David S. Miller  <davem@davemloft.net>
11321
11322         [BZ #16885]
11323         * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
11324         multiple zero bytes exist at the end of a string.
11325         Reported by Aurelien Jarno <aurelien@aurel32.net>
11326
11327         * string/test-strcmp.c (check): Add explicit test for situations where
11328         there are multiple zero bytes after the first.
11329
11330 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
11331
11332         [BZ #16890]
11333         * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
11334         when compiling wprintf.
11335         * stdio-common/tstdiomisc.c (t3): New function.
11336         (main): Call it.
11337
11338 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11339
11340         * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
11341         * iconv/gconv_simple.c (ONE_DIRECTION): Define.
11342         * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
11343         * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
11344
11345 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11346
11347         * stdlib/longlong.h: Updated from GCC.
11348
11349 2014-05-01  Will Newton  <will.newton@linaro.org>
11350             Bernard Ogden  <bernie.ogden@linaro.org>
11351
11352         * NEWS: Update fixed bug list.
11353
11354         [BZ #15119]
11355         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
11356
11357 2014-04-30  David S. Miller  <davem@davemloft.net>
11358
11359         * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
11360         (libc_feholdexcept_setround_sparc_ctx): New function.
11361         (libc_fesetenv_sparc_ctx): Likewise.
11362         (libc_feupdateenv_sparc_ctx): Likewise.
11363         (libc_feholdsetround_sparc_ctx): Likewise.
11364         (libc_feholdexcept_setround_ctx): Define.
11365         (libc_feholdexcept_setroundf_ctx): Likewise.
11366         (libc_feholdexcept_setroundl_ctx): Likewise.
11367         (libc_fesetenv_ctx): Likewise.
11368         (libc_fesetenvf_ctx): Likewise.
11369         (libc_fesetenvl_ctx): Likewise.
11370         (libc_feupdateenv_ctx): Likewise.
11371         (libc_feupdateenvf_ctx): Likewise.
11372         (libc_feupdateenvl_ctx): Likewise.
11373         (libc_feresetround_ctx): Likewise.
11374         (libc_feresetroundf_ctx): Likewise.
11375         (libc_feresetroundl_ctx): Likewise.
11376         (libc_feholdsetround_ctx): Likewise.
11377         (libc_feholdsetroundf_ctx): Likewise.
11378         (libc_feholdsetroundl_ctx): Likewise.
11379
11380         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
11381         with __USE_GNU instead of XOPEN cpp guards.
11382
11383         * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
11384         0.
11385
11386         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
11387         with XOPEN cpp guards.
11388
11389 2014-04-30  Julian Brown  <julian@codesourcery.com>
11390
11391         [BZ #16888]
11392         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
11393         handling.
11394
11395 2014-04-30  Joseph Myers  <joseph@codesourcery.com>
11396
11397         [BZ #9894]
11398         * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
11399         Change to 2.6.32.
11400         (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
11401         * sysdeps/unix/sysv/linux/configure: Regenerated.
11402         * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
11403         * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
11404         * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
11405         * sysdeps/unix/sysv/linux/tile/configure: Likewise.
11406         * README: Update reference to required Linux kernel version.
11407         * manual/install.texi (Linux): Update reference to required Linux
11408         kernel headers version.
11409         * INSTALL: Regenerated.
11410
11411         * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
11412         header inclusion.
11413         [POSIX] (limits.h): Likewise.
11414         [POSIX] (math.h): Likewise.
11415         [POSIX] (sys/wait.h): Likewise.
11416         * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
11417         function.
11418         [POSIX] (stddef.h): Do not allow header inclusion.
11419
11420 2014-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11421
11422         * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
11423
11424 2014-04-30  Yang Yingliang  <yangyingliang@huawei.com>
11425
11426         * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
11427         Return immediately after lll_futex_wake.
11428
11429 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11430
11431         [BZ #16791]
11432         * nscd/nscd-client.h (datahead_init_common): Initialize entire
11433         structure.
11434         (datahead_init_pos): Call datahead_init_common early.
11435         (datahead_init_neg): Likewise.
11436
11437         * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
11438         datahead_init_neg): New functions.
11439         * nscd/aicache.c (addhstaiX): Use them.
11440         * nscd/grpcache.c (cache_addgr): Likewise.
11441         * nscd/hstcache.c (cache_addhst): Likewise.
11442         * nscd/initgrcache.c (addinitgroupsX): Likewise.
11443         * nscd/netgroupcache.c (do_notfound): Likewise.
11444         (addgetnetgrentX): Likewise.
11445         (addinnetgrX): Likewise.
11446         * nscd/pwdcache.c (cache_addpw): Likewise.
11447         * nscd/servicescache.c (cache_addserv): Likewise.
11448
11449 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11450             Atsushi Onoe  <atsushi@onoe.org>
11451
11452         [BZ #14308]
11453         [BZ #12994]
11454         [BZ #13651]
11455         * resolv/res_query.c (__libc_res_nsearch): Return if at least
11456         one response is valid.
11457         * resolv/res_send.c (send_dg): Check for validity of other
11458         response if the current response is a referral.
11459
11460 2014-04-29  Steve Ellcey  <sellcey@mips.com>
11461
11462         * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
11463
11464 2014-04-29  Stefan Liebler  <stli@linux.vnet.ibm.com>
11465
11466         [BZ #16823]
11467         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
11468         Always divide by positive zero when computing -Inf result.
11469         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
11470         * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
11471
11472 2014-04-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11473
11474         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
11475         FPSCR if value do not change.
11476         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
11477         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
11478         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
11479         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
11480         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
11481         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
11482         function.
11483
11484 2014-05-29  Carlos O'Donell  <carlos@systemhalted.org>
11485
11486         * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
11487         * sysdeps/unix/sysv/linux/hppa: Move directory from
11488         ports/systeps/unix/sysv/linux/hppa.
11489         * README: Update listing for hppa-*-linux-gnu.
11490
11491 2014-04-28  Ondřej Bílka  <neleai@seznam.cz>
11492
11493         [BZ #16754]
11494         * manual/stdio.texi (Hook functions): Fix types of stream hook
11495         functions.
11496         [BZ #16854]
11497         * socket/sys/socket.h: Fix typo in comment.
11498
11499 2014-04-28  Wilco  <wdijkstr@arm.com>
11500
11501         * sysdeps/arm/fenv_private.h: New file.
11502         * sysdeps/arm/math_private.h: New file.
11503         * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
11504
11505 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
11506
11507         * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
11508         with __int128_t.
11509         (La_x86_64_retval): Likewise.
11510
11511 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
11512
11513         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
11514         fpsr if value didn't change.
11515         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
11516         to fpcr if value didn't change.
11517         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
11518         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
11519         fpsr or fpcr if value didn't change.
11520         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
11521         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
11522         fpcr if value didn't change.
11523         * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
11524         to fpsr if value didn't change.
11525
11526 2014-02-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
11527
11528         * nptl/tst-sem3.c: Use test-skeleton.c
11529         (main): Rename to do_test.  Use return instead of
11530         exit.
11531         * nptl/tst-sem4.c: Use test-skeleton.c
11532         (main): Rename to do_test.
11533
11534 2014-04-22  David S. Miller  <davem@davemloft.net>
11535
11536         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
11537         (struct sigaction): New struct member __glibc_reserved0, change
11538         type of sa_flags to int.
11539
11540 2014-04-22  Yufeng Zhang  <yufeng.zhang@arm.com>
11541
11542         * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
11543         (COUNT_LEADING_ZEROS_0): Define for AArch64.
11544
11545 2014-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
11546
11547         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
11548         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
11549
11550 2014-04-22  Will Newton  <will.newton@linaro.org>
11551             Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
11552
11553         * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
11554         (__longjmp): Add longjmp and longjmp_target SystemTap
11555         probes.
11556         * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
11557         (__sigsetjmp): Add setjmp SystemTap probe.
11558
11559 2014-04-17  Carlos O'Donell  <carlos@redhat.com>
11560
11561         * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
11562         match manual order.
11563
11564 2014-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11565
11566         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
11567
11568         * sysdeps/powerpc/fpu/fenv_private.h
11569         (libc_feholdexcept_setroundl_ctx): Define to
11570         libc_feholdexcept_setround_ppc_ctx.
11571         (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
11572         (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
11573         (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
11574         (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
11575
11576 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
11577
11578         * sysdeps/aarch64/math-tests.h: New file.
11579
11580 2014-04-17  Sihai Yao  <sihai.ysh@alibaba-inc.com>
11581
11582         * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
11583         New.
11584         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
11585         Check and set bit_AVX2_Usable.
11586         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
11587         macro.
11588         (bit_AVX2): Likewise.
11589         (index_AVX2_Usable): Likewise.
11590         (CPUID_AVX2): Likewise.
11591         (HAS_AVX2): Likewise.
11592
11593 2014-04-17  Will Newton  <will.newton@linaro.org>
11594
11595         * manual/setjmp.texi (System V contexts): Add note that
11596         calling setcontext on a context created by a call to a
11597         signal handler is undefined.  Update text to note that
11598         setcontext from a signal handler is possible but not
11599         recommended.
11600
11601         [BZ #16629]
11602         * stdlib/tst-setcontext.c: Include signal.h.
11603         (main): Check that the signal stack before and
11604         after swapcontext is the same.
11605
11606         * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
11607         Re-implement to restore registers in user code and avoid
11608         rt_sigreturn system call.
11609
11610 2014-04-17  Wilco  <wdijkstr@arm.com>
11611
11612         * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
11613         * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
11614         * math/test-fenv.c: Skip exception trap tests on targets which only
11615         support non-stop mode.
11616
11617 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
11618             Wilco Dijkstra  <wilco.dijkstra@arm.com>
11619
11620         * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
11621         (libc_feholdsetround_aarch64_ctx)
11622         (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
11623         (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
11624         (libc_feresetround_ctx, libc_feresetroundf_ctx)
11625         (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
11626         (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
11627         (libc_feresetround_noexl_ctx): Define.
11628
11629 2014-04-16  Richard Henderson  <rth@redhat.com>
11630
11631         * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
11632
11633         * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
11634         unwind tables.
11635
11636         * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
11637         const from the non-libc, non-ldso copy.
11638
11639         * sysdeps/alpha/libm-test-ulps: Regenerate.
11640
11641 2014-04-16  Ian Bolton  <ian.bolton@arm.com>
11642             Wilco Dijkstra  <wilco.dijkstra@arm.com>
11643
11644         * sysdeps/aarch64/fpu/math_private.h: New file.
11645
11646 2014-04-16  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11647
11648         * sysdeps/aarch64/libm-test-ulps: Regenerate.
11649
11650 2014-04-16  Igor Zamyatin  <igor.zamyatin@intel.com>
11651
11652         [BZ #16275]
11653         * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
11654         (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
11655         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
11656         Intel MPX bound registers before _dl_profile_fixup.
11657         * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
11658         registers after _dl_profile_fixup.  Save and restore bound
11659         registers bnd0/bnd1 when calling _dl_call_pltexit.
11660         * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
11661         (LR_BND_OFFSET): Likewise.
11662         (LRV_BND0_OFFSET): Likewise.
11663         (LRV_BND1_OFFSET): Likewise.
11664
11665 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
11666
11667         * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
11668         to...
11669         * sysdeps/mach/hurd/i386/tls.h: ... here.
11670         (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
11671         pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
11672         fields.
11673
11674 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
11675
11676         * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
11677
11678 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
11679
11680         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
11681
11682 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
11683
11684         [BZ #14770]
11685         * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
11686         * sysdeps/s390/configure: Regenerate.
11687
11688         [BZ #16824]
11689         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
11690         Set round-to-nearest internally to reduce error accumulation.
11691
11692 2014-04-16  Alan Modra  <amodra@gmail.com>
11693
11694         [BZ #16740]
11695         [BZ #16619]
11696         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
11697         * math/libm-test.inc (frexp_test_data): Add tests.
11698         * NEWS: Update fixed bug list.
11699
11700 2014-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
11701
11702         * benchtests/Makefile: Depend on libraries in build directory.
11703         (bench-math): Separate out math tests.
11704         (bench-pthread): Separate out pthread tests.
11705         (bench): Include math and pthread tests.
11706
11707 2014-04-14  Carlos O'Donell  <carlos@redhat.com>
11708
11709         [BZ #16831]
11710         * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
11711         _dl_debug_initialize.
11712
11713         * configure.ac: Remove SELinux header check.
11714         * configure: Regenerate.
11715         * nscd/selinux.c (perms): Array of const char* to permission names.
11716         (nscd_request_avc_has_perm): Call security_deny_unknown to find
11717         default policy. Call string_to_security_class and string_to_av_perm to
11718         translate strings. Enforce default policy and call avs_has_perm with
11719         results of translated strings.
11720
11721 2014-04-13  David S. Miller  <davem@davemloft.net>
11722
11723         * sysdeps/sparc/fpu/libm-test-ulps: Update.
11724
11725 2014-04-12  Allan McRae  <allan@archlinux.org>
11726
11727         [BZ #16838]
11728         * manual/string.texi (Collation Functions): Fix qsort argument
11729         order in example.
11730         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
11731
11732 2014-04-11  Chris Metcalf  <cmetcalf@tilera.com>
11733
11734         * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
11735         Make the test a no-op if there are no exceptions defined.
11736
11737 2014-04-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
11738
11739         * elf/Makefile (tests): make tst-dlopen-aout conditional on
11740         enable-hardcoded-path-in-tests
11741
11742 2014-04-11  Will Newton  <will.newton@linaro.org>
11743
11744         * benchtests/Makefile (extra-objs): Add json-lib.o.
11745         (bench-func): Tidy up JSON output.
11746         * benchtests/bench-skeleton.c: Include json-lib.h.
11747         (main): Use JSON library functions to do output of
11748         benchmark results.
11749         * benchtests/bench-timing-type.c (main): Output the
11750         timing type simply, leaving formatting to the user.
11751         * benchtests/json-lib.c: New file.
11752         * benchtests/json-lib.h: Likewise.
11753
11754 2014-04-11  Torvald Riegel  <triegel@redhat.com>
11755
11756         [BZ #15215]
11757         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
11758         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here.  Add missing
11759         memory barriers.  Add comments.
11760         * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
11761         * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
11762         * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
11763         * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
11764         * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
11765         * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
11766
11767 2014-04-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
11768
11769         * sysdeps/s390/s390-32/configure.ac: Unify file with ...
11770         * sysdeps/s390/s390-64/configure.ac: ... this ...
11771         * sysdeps/s390/configure.ac: ... to here.
11772         * sysdeps/s390/s390-32/configure: Delete file.
11773         * sysdeps/s390/s390-64/configure: Delete file.
11774         * sysdeps/s390/configure: Regenerate.
11775
11776 2014-04-11  Joseph Anthony Pasquale Holsten  <joseph@josephholsten.com>
11777
11778         * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
11779
11780 2014-04-11  Will Newton  <will.newton@linaro.org>
11781
11782         * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
11783         to zero if it is not defined elsewhere.  (mtrim): Test
11784         the value of MALLOC_DEBUG with #if rather than #ifdef.
11785
11786 2014-04-10 Torvald Riegel  <triegel@redhat.com>
11787
11788         * benchtests/pthread_once-inputs: New file.
11789         * benchtests/pthread_once-source.c: New file.
11790         * benchtests/README: Update documentation.
11791
11792 2014-04-09  Igor Zamyatin  <igor.zamyatin@intel.com>
11793             H.J. Lu  <hongjiu.lu@intel.com>
11794
11795         [BZ #16275]
11796         * config.h.in (HAVE_MPX_SUPPORT): New #undef.
11797         * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
11798         * sysdeps/x86_64/configure: Regenerated.
11799         * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
11800         macro.
11801         (REGISTER_SAVE_RAX): Likewise.
11802         (REGISTER_SAVE_RCX): Likewise.
11803         (REGISTER_SAVE_RDX): Likewise.
11804         (REGISTER_SAVE_RSI): Likewise.
11805         (REGISTER_SAVE_RDI): Likewise.
11806         (REGISTER_SAVE_R8): Likewise.
11807         (REGISTER_SAVE_R9): Likewise.
11808         (REGISTER_SAVE_BND0): Likewise.
11809         (REGISTER_SAVE_BND1): Likewise.
11810         (REGISTER_SAVE_BND2): Likewise.
11811         (_dl_runtime_resolve): Use them.  Save and restore Intel MPX
11812         bound registers when calling _dl_fixup.
11813
11814 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11815
11816         * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
11817         * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
11818         of its definition.
11819         * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
11820         * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
11821         * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
11822         * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
11823         * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
11824         * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
11825         * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
11826
11827 2014-04-09  Peter Brett  <peter@peter-b.co.uk>
11828
11829         [BZ #15514]
11830         * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
11831         pathconf(_PC_NAME_MAX).
11832
11833 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11834
11835         * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
11836         Remove macro usage.
11837         (__PTHREAD_SPINS): Move definition to ...
11838         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
11839         (__PTHREAD_SPINS): ... here.
11840         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
11841         (__PTHREAD_SPIN): Likewise.
11842         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
11843         (__PTHREAD_SPIN): Likewise.
11844         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
11845         (__PTHREAD_SPIN): Likewise.
11846         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
11847         (__PTHREAD_SPIN): Likewise.
11848         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
11849         (__PTHREAD_SPIN): Likewise.
11850         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
11851         (__PTHREAD_SPIN): Likewise.
11852         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
11853         (__PTHREAD_SPIN): Likewise.
11854         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
11855         (__PTHREAD_SPIN): Likewise.
11856         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
11857         (__PTHREAD_SPIN): Likewise.
11858         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
11859         (__PTHREAD_SPIN): Likewise.
11860         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
11861         (__PTHREAD_SPIN): Likewise.
11862         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
11863         (__PTHREAD_SPIN): Likewise.
11864
11865         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
11866         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
11867         * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
11868         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
11869         imply folder.
11870         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
11871         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
11872         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
11873         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
11874         correct imply path.
11875         * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
11876         strlen symbol for non multi-arch builds.
11877         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
11878         missing hidden_def and weak_alias.
11879
11880 2014-04-08  Carlos O'Donell  <carlos@redhat.com>
11881
11882         * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
11883
11884 2014-04-07  Will Newton  <will.newton@linaro.org>
11885
11886         * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
11887         and contents.  [!_LIBC] Remove #ifndef and contents.
11888         (basename): Use ANSI prototype.  [_LIBC] Remove #idef.
11889         * string/memccpy.c (__memccpy): Use ANSI prototype.
11890         * string/memfrob.c (memfrob): Likewise.
11891         * string/strcoll.c (STRCOLL): Likewise.
11892         * string/strlen.c (strlen): Likewise.
11893         * string/strtok.c (STRTOK): Likewise.
11894         * string/strcat.c: Remove unused #include of memcopy.h.
11895         (strcat): Use ANSI prototype.
11896         * string/strchr.c: Remove unused #include of memcopy.h.
11897         (strchr): Use ANSI prototype.
11898         * string/strcmp.c: Remove unused #include of memcopy.h.
11899         (strcmp): Use ANSI prototype.
11900         * string/strcpy.c: Remove unused #include of memcopy.h.
11901         (strcpy): Use ANSI prototype.
11902
11903 2014-04-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11904
11905         * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
11906         * config.make.in (config-extra-cppflags): Set it from
11907         libc_extra_cppflags.
11908         * configure.ac (libc_extra_cflags): Make it accumulate over
11909         configure fragments.
11910         (libc_extra_cppflags): New flag.
11911         * configure. Regenerate.
11912         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
11913         (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
11914         not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
11915         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
11916
11917         [BZ #16815]
11918         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
11919         result for FE_DOWNWARD rounding mode.
11920         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
11921         Likewise.
11922         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11923
11924 2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
11925
11926         * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
11927         in function argument name.
11928
11929 2014-04-03  David Svoboda  <svoboda@cert.org>
11930
11931         [BZ #5666]
11932         * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
11933         explicitly.
11934
11935 2014-04-03  Roland McGrath  <roland@hack.frob.com>
11936
11937         * elf/dl-unmap-segments.h: New file.
11938         * sysdeps/generic/ldsodefs.h
11939         (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
11940         * elf/dl-close.c: Include <dl-unmap-segments.h>.
11941         * elf/dl-fptr.c: Likewise.
11942         (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
11943         * sysdeps/aarch64/tlsdesc.c: Likewise.
11944         * sysdeps/arm/tlsdesc.c: Likewise.
11945         * sysdeps/i386/tlsdesc.c: Likewise.
11946         * sysdeps/tile/dl-runtime.c: Likewise.
11947         * sysdeps/x86_64/tlsdesc.c: Likewise.
11948         * elf/dl-load.h: New file.
11949         * elf/dl-load.c: Include it.
11950         (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
11951         Macros moved to dl-load.h.
11952         (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
11953         (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
11954         Use _dl_unmap_segments in place of __munmap.
11955         Break out segment-mapping loop into ...
11956         * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
11957
11958 2014-04-03  Will Newton  <will.newton@linaro.org>
11959
11960         * elf/dl-lookup.c (do_lookup_x): Remove comment
11961         referring to nested function and move variable
11962         declarations down to before first use.
11963
11964 2014-04-02  Joseph Myers  <joseph@codesourcery.com>
11965
11966         [BZ #16799]
11967         [BZ #16800]
11968         * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
11969         with 0 numerator.
11970         * math/s_catanf.c (__catanf): Likewise.
11971         * math/s_catanh.c (__catanh): Likewise.
11972         * math/s_catanhf.c (__catanhf): Likewise.
11973         * math/s_catanhl.c (__catanhl): Likewise.
11974         * math/s_catanl.c (__catanl): Likewise.
11975         * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
11976         by positive zero when computing -Inf result.
11977         * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
11978         (catanh_test): Likewise.
11979         * sysdeps/i386/fpu/libm-test-ulps: Update.
11980         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11981
11982         [BZ #16789]
11983         * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
11984         instead of using underflowing value in computing result.
11985         * math/s_clog10.c (__clog10): Likewise.
11986         * math/s_clog10f.c (__clog10f): Likewise.
11987         * math/s_clog10l.c (__clog10l): Likewise.
11988         * math/s_clogf.c (__clogf): Likewise.
11989         * math/s_clogl.c (__clogl): Likewise.
11990         * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
11991         (clog10_test): Likewise.
11992         * sysdeps/i386/fpu/libm-test-ulps: Update.
11993         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11994
11995 2014-04-02  Alan Modra  <amodra@gmail.com>
11996
11997         [BZ #16739]
11998         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
11999         output when value is near a power of two.  Use int64_t for lx and
12000         remove casts.  Use decimal rather than hex exponent constants.
12001         Don't use long double multiplication when double will suffice.
12002         * math/libm-test.inc (nextafter_test_data): Add tests.
12003         * NEWS: Add 16739 and 16786 to bug list.
12004
12005         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
12006
12007         * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
12008
12009 2014-04-01  Will Newton  <will.newton@linaro.org>
12010
12011         * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
12012         -fno-builtin.  (CFLAGS-bench-ffsll.c): Likewise.
12013
12014 2014-04-01  Florian Weimer  <fweimer@redhat.com>
12015
12016         [BZ #13347]
12017         * nptl/nptl-init.c (sighandler_setxid): Check system call result.
12018         * nptl/tst-setuid2.c: New file.
12019         * nptl/Makefile (xtests): Add tst-setuid2.
12020
12021 2014-04-01  Alan Modra  <amodra@gmail.com>
12022
12023         [BZ #16786]
12024         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
12025
12026 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
12027
12028         [BZ #6803]
12029         [BZ #6804]
12030         * math/w_scalb.c (__scalb): For non-SVID mode, check result and
12031         set errno as appropriate.
12032         * math/w_scalbf.c (__scalbf): Likewise.
12033         * math/w_scalbl.c (__scalbl): Likewise.
12034         * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
12035         ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
12036         * math/libm-test.inc (scalb_test_data): Add errno expectations.
12037         Add more NaN tests.
12038
12039         [BZ #16349]
12040         * math/w_atan2.c: Include <errno.h>.
12041         (__atan2): Set errno for result underflowing to zero.
12042         * math/w_atan2f.c: Include <errno.h>.
12043         (__atan2f): Set errno for result underflowing to zero.
12044         * math/w_atan2l.c: Include <errno.h>.
12045         (__atan2l): Set errno for result underflowing to zero.
12046         * math/auto-libm-test-in: Don't allow missing errno for some atan2
12047         tests.
12048         * math/auto-libm-test-out: Regenerated.
12049
12050 2014-03-31  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12051
12052         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
12053         Encode instruction correctly in little endian.
12054         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
12055         Likewise.
12056         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
12057         Likewise.
12058         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
12059         Likewise.
12060         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
12061         Likewise.
12062
12063 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
12064
12065         [BZ #9894]
12066         * sysdeps/unix/sysv/linux/kernel-features.h
12067         [__sparc__ && !__arch64__ && !__sparc_v9__]
12068         (__ASSUME_SET_ROBUST_LIST): Do not define.
12069         [__sparc__ && !__arch64__ && !__sparc_v9__]
12070         (__ASSUME_FUTEX_LOCK_PI): Likewise.
12071         [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
12072         Likewise.
12073         * sysdeps/unix/sysv/linux/arm/kernel-features.h
12074         (__ASSUME_FUTEX_LOCK_PI): Undefine.
12075         (__ASSUME_REQUEUE_PI): Likewise.
12076         (__ASSUME_SET_ROBUST_LIST): Likewise.
12077         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12078         [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
12079         Undefine.
12080         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12081         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
12082         Likewise.
12083         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
12084         Likewise.
12085         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
12086         Likewise.
12087         * sysdeps/unix/sysv/linux/mips/kernel-features.h
12088         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
12089         Undefine.
12090         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
12091         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
12092         Likewise.
12093
12094         [BZ #16648]
12095         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12096         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
12097         * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
12098
12099 2014-03-31  Will Newton  <will.newton@linaro.org>
12100
12101         * benchtests/Makefile (bench): Add ffs and ffsll to list
12102         of tests.
12103         * benchtests/ffs-inputs: New file.
12104         * benchtests/ffsll-inputs: Likewise.
12105
12106 2014-03-29  Joseph Myers  <joseph@codesourcery.com>
12107
12108         [BZ #16770]
12109         * math/e_scalb.c (__ieee754_scalb): Check second argument is not
12110         too large before casting to int.
12111         * math/e_scalbf.c (__ieee754_scalbf): Likewise.
12112         * math/e_scalbl.c (__ieee754_scalbl): Likewise.
12113         * math/libm-test.inc (scalb_test_data): Add more tests.
12114
12115 2014-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
12116
12117         * benchtests/Makefile (DETAILED_OPT): New make option.
12118         (bench-func): Run benchmark program with -d if DETAILED_OPT is
12119         set.
12120         * benchtests/bench-skeleton.c: Include stdbool.h.
12121         (main): Store and print timings per input.
12122         * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
12123         member to each argument value.
12124         (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
12125         (_print_arg_data): Initialize per-input timing to 0.
12126
12127         * benchtests/Makefile (timing-type): New binary.
12128         (bench-clean): Also remove bench-timing-type.
12129         (bench): New target for timing-type.
12130         (bench-func): Print output in JSON format.
12131         * benchtests/bench-skeleton.c (main): Print output in JSON
12132         format.
12133         * benchtests/bench-timing-type.c: New file.
12134         * benchtests/bench-timing.h (TIMING_TYPE): New macro.
12135         (TIMING_PRINT_STATS): Remove.
12136         * benchtests/scripts/bench.py (_print_arg_data): Store variant
12137         name separately.
12138
12139         * benchtests/bench-modf.c: Remove.
12140         * benchtests/modf-inputs: New inputs file.
12141
12142 2014-03-28  Joseph Myers  <joseph@codesourcery.com>
12143
12144         [BZ #16362]
12145         * math/s_clog10.c (M_PI_LOG10E): New macro.
12146         (__clog10): Use M_PI_LOG10E instead of M_PI when real and
12147         imaginary parts are 0.
12148         * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
12149         (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
12150         imaginary parts are 0.
12151         * math/s_clog10l.c (M_PI_LOG10El): New macro.
12152         (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
12153         imaginary parts are 0.
12154         * math/libm-test.inc (clog10_test_data): Update expected results
12155         for when real and imaginary parts are 0.
12156
12157 2014-03-27  Paul Pluzhnikov  <ppluzhnikov@google.com>
12158
12159         * elf/dl-load.c: Finish conversion of __builtin_expect into
12160         __glibc_{un}likely.
12161
12162 2014-03-27  Joseph Myers  <joseph@codesourcery.com>
12163
12164         [BZ #16348]
12165         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
12166         1+x for argument with exponent below -67.
12167         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
12168         Likewise.
12169         * math/auto-libm-test-in: Add more tests of exp.
12170         * math/auto-libm-test-out: Regenerated.
12171
12172 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
12173
12174         [BZ #16759]
12175         * inet/getnetgrent_r.c (get_nonempty_val): New function.
12176         (nscd_getnetgrent): Use it.
12177
12178         [BZ #16760]
12179         * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
12180         of stpcpy.
12181
12182 2014-03-27  Andi Kleen  <ak@linux.intel.com>
12183
12184         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
12185         (lll_robust_lock, lll_cond_lock, lll_timedlock)
12186         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
12187         (lll_robust_unlock): Remove out of line section. Use cfi
12188         intrinsics.
12189         (LLL_STUB_UNWIND_INFO*): Remove.
12190         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
12191         (lll_robust_lock, lll_cond_lock, lll_timedlock)
12192         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
12193         (lll_robust_unlock): Remove out of line section. Use cfi
12194         intrinsics.
12195         (LLL_STUB_UNWIND_INFO*): Remove.
12196
12197 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
12198
12199         [BZ #16758]
12200         * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
12201         blank values.
12202
12203 2014-03-26  Paul Pluzhnikov  <ppluzhnikov@google.com>
12204
12205         * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
12206
12207 2014-03-26  Joseph Myers  <joseph@codesourcery.com>
12208
12209         [BZ #16198]
12210         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
12211         fnstenv.
12212         * math/test-fenv-preserve.c: New file.
12213         * math/Makefile (tests): Add test-fenv-preserve.
12214
12215 2014-03-26  Will Newton <will.newton@linaro.org>
12216
12217         * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
12218
12219 2014-03-25  Roland McGrath  <roland@hack.frob.com>
12220
12221         * scripts/versionlist.awk: Partition the version sets and emit all
12222         GLIBC_* (sorted) before all others (sorted).
12223
12224 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
12225
12226         * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
12227         GLIBC_2.2.5 version.
12228
12229 2014-03-25 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12230
12231         * scripts/localplt.awk: Check for PLT generated by internal IFUNC
12232         calls.
12233
12234         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
12235         previous change.
12236
12237         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
12238
12239 2014-03-25  Andreas Schwab  <schwab@suse.de>
12240
12241         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
12242         label to be used after in6ailist is initialized.
12243
12244 2014-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12245
12246         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
12247         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
12248
12249 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
12250
12251         [BZ #16357]
12252         [BZ #16599]
12253         * math/gen-auto-libm-tests.c (fp_format_desc): Add field
12254         min_plus_half.
12255         (fp_formats): Update initializers.
12256         (init_fp_formats): Initialize new field.
12257         (output_for_one_input_case): Allow underflow for results up to
12258         min_plus_half.
12259         * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
12260         * math/auto-libm-test-in: Don't mark some underflows from asin and
12261         atanh as spurious.
12262         * math/auto-libm-test-out: Regenerated.
12263         * sysdeps/i386/fpu/libm-test-ulps: Update.
12264         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12265
12266 2014-03-25  Andreas Schwab  <schwab@suse.de>
12267
12268         * libio/Makefile (tst-ftell-partial-wide-ENV)
12269         (tst-ftell-active-handler-ENV): Define.
12270
12271 2014-03-25  Stefan Liebler <stli@linux.vnet.ibm.com>
12272
12273         * NEWS: Add 16712, 16713, 16714 to fixed bug list.
12274
12275 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
12276
12277         * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
12278
12279 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
12280
12281         * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
12282         * sysdeps/x86_64/fpu/multiarch/e_exp.c
12283         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
12284
12285 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
12286
12287         [BZ #16634]
12288         * elf/dl-load.c (open_verify): Add mode parameter.
12289         Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
12290         (open_path): Change from boolean 'secure' to complete flag 'mode'
12291         (_dl_map_object): Adjust.
12292         * elf/Makefile (tests): Add tst-dlopen-aout.
12293         * elf/tst-dlopen-aout.c: New test.
12294
12295 2014-03-24  Stefan Liebler <stli@linux.vnet.ibm.com>
12296
12297         [BZ #16714]
12298         * sysdeps/unix/sysv/linux/s390/bits/stat.h
12299         (struct stat): Rename member pad0 to __glibc_reserved0.
12300
12301         [BZ #16712]
12302         * sysdeps/s390/s390-32/bits/wordsize.h
12303         (__WORDSIZE32_SIZE_ULONG): New define.
12304         * sysdeps/s390/s390-64/bits/wordsize.h
12305         (__WORDSIZE32_SIZE_ULONG): Likewise.
12306         * sysdeps/generic/stdint.h (SIZE_MAX):
12307         Define as UL if __WORDSIZE32_SIZE_ULONG.
12308
12309         [BZ #16713]
12310         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
12311         (__glibc_reserved0): New variable.
12312         (sa_flags): Change type to int.
12313
12314         * posix/Makefile (before-compile): Use += before-compile instead
12315         of a :=.
12316
12317         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
12318         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
12319
12320 2014-03-20  Andreas Schwab  <schwab@suse.de>
12321
12322         [BZ #16743]
12323         * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
12324         non-matching result from nscd.
12325
12326 2014-03-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
12327
12328         * scripts/bench.py: Moved to ...
12329         * benchtests/scripts/bench.py: ... here.
12330         * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
12331
12332 2014-03-24  Andreas Schwab  <schwab@suse.de>
12333
12334         [BZ #16002]
12335         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
12336         alloca_account and account alloca use for struct in6ailist.
12337
12338 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
12339
12340         [BZ #16284]
12341         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
12342         rounding mode to recompute results that overflow to infinity or
12343         underflow to zero.
12344         * math/auto-libm-test-in: Don't mark tests as expected to fail for
12345         bug 16284.
12346         * math/auto-libm-test-out: Regenerated.
12347         * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
12348         (ccosh_test): Likewise.
12349         (csin_test_data): Use plus_oflow.
12350         (csin_test): Use ALL_RM_TEST.
12351         (csinh_test_data): Use plus_oflow.
12352         (csinh_test): Use ALL_RM_TEST.
12353         * sysdeps/i386/fpu/libm-test-ulps: Update.
12354         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12355
12356 2014-03-21  Joseph Myers  <joseph@codesourcery.com>
12357
12358         * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
12359         * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
12360         * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
12361
12362         [BZ #16731]
12363         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
12364         when x - 1 is zero.
12365         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
12366         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
12367         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
12368         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
12369         argument is 1.
12370         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
12371         * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
12372         zero.
12373         * math/libm-test.inc (log_test): Use ALL_RM_TEST.
12374         * sysdeps/i386/fpu/libm-test-ulps: Update.
12375         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12376
12377 2014-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
12378
12379         * scripts/bench.pl: Remove file.
12380         * scripts/bench.py: New benchmark script.
12381         * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
12382         * benchtests/README: Mention python dependency.
12383         * scripts/pylintrc: New file.
12384         * scripts/pylint: New file.
12385
12386         * bits/mathdef.h: Use #ifdef instead of #if.
12387         * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
12388         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12389         * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
12390         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12391         * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
12392         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12393
12394 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12395             Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
12396
12397         * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
12398         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
12399         and strpbrk-ppc64 objects.
12400         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12401         (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
12402         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
12403         multiarch strpbrk for POWER7.
12404         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
12405         multiarch strpbrk for PPC64.
12406         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
12407         ifunc selector.
12408         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
12409         strpbrk for POWER7.
12410
12411 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
12412
12413         * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
12414         (atan_test): Likewise.
12415         (atanh_test_data): Use NO_TEST_INLINE for two tests.
12416         (atanh_test): Use ALL_RM_TEST.
12417         (atan2_test_data): Likewise.
12418         (cabs_test): Likewise.
12419         (cacosh_test): Likewise.
12420         (carg_test): Likewise.
12421         (casin_test): Likewise.
12422         (casinh_test): Likewise.
12423         (cbrt_test): Likewise.
12424         (csqrt_test): Likewise.
12425         (erf_test): Likewise.
12426         (erfc_test): Likewise.
12427         (pow10_test): Likewise.
12428         (exp2_test): Likewise.
12429         (hypot_test): Likewise.
12430         (j0_test): Likewise.
12431         (j1_test): Likewise.
12432         (lgamma_test): Likewise.
12433         (gamma_test): Likewise.
12434         (sincos_test): Likewise.
12435         (tanh_test): Likewise.
12436         (y0_test): Likewise.
12437         (y1_test): Likewise.
12438         * sysdeps/i386/fpu/libm-test-ulps: Update.
12439         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12440
12441 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12442
12443         * string/strcspn.c (strcspn): Using macro to redefine symbol name.
12444         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
12445         and strcspn-ppc64 objects.
12446         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12447         (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
12448         * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
12449         multiarch strcspn for POWER7.
12450         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
12451         multiarch strcspn for PPC64.
12452         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
12453         ifunc selector.
12454         * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
12455         strcspn for POWER7.
12456
12457 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
12458
12459         * math/gen-libm-test.pl (generate_testfile): Expect only function
12460         name as argument to AUTO_TESTS_* and pass results for all rounding
12461         modes to parse_args.
12462         (parse_auto_input): Separate inputs of automatic tests from
12463         outputs before storing in %auto_tests.
12464         * math/libm-test.inc (acos_test_data): Update call to
12465         AUTO_TESTS_f_f.
12466         (acos_test): Use ALL_RM_TEST.
12467         (acos_tonearest_test_data): Remove.
12468         (acos_test_tonearest): Likewise.
12469         (acos_towardzero_test_data): Likewise.
12470         (acos_test_towardzero): Likewise.
12471         (acos_downward_test_data): Likewise.
12472         (acos_test_downward): Likewise.
12473         (acos_upward_test_data): Likewise.
12474         (acos_test_upward): Likewise.
12475         (acosh_test_data): Update call to AUTO_TESTS_f_f.
12476         (asin_test_data): Likewise.
12477         (asin_test): Use ALL_RM_TEST.
12478         (asin_tonearest_test_data): Remove.
12479         (asin_test_tonearest): Likewise.
12480         (asin_towardzero_test_data): Likewise.
12481         (asin_test_towardzero): Likewise.
12482         (asin_downward_test_data): Likewise.
12483         (asin_test_downward): Likewise.
12484         (asin_upward_test_data): Likewise.
12485         (asin_test_upward): Likewise.
12486         (asinh_test_data): Update call to AUTO_TESTS_f_f.
12487         (atan_test_data): Likewise.
12488         (atanh_test_data): Likewise.
12489         (atan2_test_data): Update call to AUTO_TESTS_ff_f.
12490         (cabs_test_data): Update call to AUTO_TESTS_c_f.
12491         (carg_test_data): Likewise.
12492         (cbrt_test_data): Update call to AUTO_TESTS_f_f.
12493         (ccos_test_data): Update call to AUTO_TESTS_c_c.
12494         (ccosh_test_data): Likewise.
12495         (cexp_test_data): Likewise.
12496         (clog_test_data): Likewise.
12497         (clog10_test_data): Likewise.
12498         (cos_test_data): Update call to AUTO_TESTS_f_f.
12499         (cos_test): Use ALL_RM_TEST.
12500         (cos_tonearest_test_data): Remove.
12501         (cos_test_tonearest): Likewise.
12502         (cos_towardzero_test_data): Likewise.
12503         (cos_test_towardzero): Likewise.
12504         (cos_downward_test_data): Likewise.
12505         (cos_test_downward): Likewise.
12506         (cos_upward_test_data): Likewise.
12507         (cos_test_upward): Likewise.
12508         (cosh_test_data): Update call to AUTO_TESTS_f_f.
12509         (cosh_test): Use ALL_RM_TEST.
12510         (cosh_tonearest_test_data): Remove.
12511         (cosh_test_tonearest): Likewise.
12512         (cosh_towardzero_test_data): Likewise.
12513         (cosh_test_towardzero): Likewise.
12514         (cosh_downward_test_data): Likewise.
12515         (cosh_test_downward): Likewise.
12516         (cosh_upward_test_data): Likewise.
12517         (cosh_test_upward): Likewise.
12518         (cpow_test_data): Update call to AUTO_TESTS_cc_c.
12519         (csqrt_test_data): Update call to AUTO_TESTS_c_c.
12520         (ctan_test_data): Likewise.
12521         (ctan_test): Use ALL_RM_TEST.
12522         (ctan_tonearest_test_data): Remove.
12523         (ctan_test_tonearest): Likewise.
12524         (ctan_towardzero_test_data): Likewise.
12525         (ctan_test_towardzero): Likewise.
12526         (ctan_downward_test_data): Likewise.
12527         (ctan_test_downward): Likewise.
12528         (ctan_upward_test_data): Likewise.
12529         (ctan_test_upward): Likewise.
12530         (ctanh_test_data): Update call to AUTO_TESTS_c_c.
12531         (ctanh_test): Use ALL_RM_TEST.
12532         (ctanh_tonearest_test_data): Remove.
12533         (ctanh_test_tonearest): Likewise.
12534         (ctanh_towardzero_test_data): Likewise.
12535         (ctanh_test_towardzero): Likewise.
12536         (ctanh_downward_test_data): Likewise.
12537         (ctanh_test_downward): Likewise.
12538         (ctanh_upward_test_data): Likewise.
12539         (ctanh_test_upward): Likewise.
12540         (erf_test_data): Update call to AUTO_TESTS_f_f.
12541         (erfc_test_data): Likewise.
12542         (exp_test_data): Likewise.
12543         (exp_test): Use ALL_RM_TEST.
12544         (exp_tonearest_test_data): Remove.
12545         (exp_test_tonearest): Likewise.
12546         (exp_towardzero_test_data): Likewise.
12547         (exp_test_towardzero): Likewise.
12548         (exp_downward_test_data): Likewise.
12549         (exp_test_downward): Likewise.
12550         (exp_upward_test_data): Likewise.
12551         (exp_test_upward): Likewise.
12552         (exp10_test_data): Update call to AUTO_TESTS_f_f.
12553         (exp10_test): Use ALL_RM_TEST.
12554         (exp10_tonearest_test_data): Remove.
12555         (exp10_test_tonearest): Likewise.
12556         (exp10_towardzero_test_data): Likewise.
12557         (exp10_test_towardzero): Likewise.
12558         (exp10_downward_test_data): Likewise.
12559         (exp10_test_downward): Likewise.
12560         (exp10_upward_test_data): Likewise.
12561         (exp10_test_upward): Likewise.
12562         (exp2_test_data): Update call to AUTO_TESTS_f_f.
12563         (expm1_test_data): Likewise.
12564         (expm1_test): Use ALL_RM_TEST.
12565         (expm1_tonearest_test_data): Remove.
12566         (expm1_test_tonearest): Likewise.
12567         (expm1_towardzero_test_data): Likewise.
12568         (expm1_test_towardzero): Likewise.
12569         (expm1_downward_test_data): Likewise.
12570         (expm1_test_downward): Likewise.
12571         (expm1_upward_test_data): Likewise.
12572         (expm1_test_upward): Likewise.
12573         (fma_test_data): Update call to AUTO_TESTS_fff_f.
12574         (fma_test): Use ALL_RM_TEST.
12575         (fma_towardzero_test_data): Remove.
12576         (fma_test_towardzero): Likewise.
12577         (fma_downward_test_data): Likewise.
12578         (fma_test_downward): Likewise.
12579         (fma_upward_test_data): Likewise.
12580         (fma_test_upward): Likewise.
12581         (hypot_test_data): Update call to AUTO_TESTS_ff_f.
12582         (j0_test_data): Update call to AUTO_TESTS_f_f.
12583         (j1_test_data): Likewise.
12584         (jn_test_data): Update call to AUTO_TESTS_if_f.
12585         (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
12586         (log_test_data): Update call to AUTO_TESTS_f_f.
12587         (log10_test_data): Likewise.
12588         (log1p_test_data): Likewise.
12589         (log2_test_data): Likewise.
12590         (pow_test_data): Update call to AUTO_TESTS_ff_f.
12591         (pow_tonearest_test_data): Likewise.
12592         (sin_test_data): Update call to AUTO_TESTS_f_f.
12593         (sin_test): Use ALL_RM_TEST.
12594         (sin_tonearest_test_data): Remove.
12595         (sin_test_tonearest): Likewise.
12596         (sin_towardzero_test_data): Likewise.
12597         (sin_test_towardzero): Likewise.
12598         (sin_downward_test_data): Likewise.
12599         (sin_test_downward): Likewise.
12600         (sin_upward_test_data): Likewise.
12601         (sin_test_upward): Likewise.
12602         (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
12603         (sinh_test_data): Update call to AUTO_TESTS_f_f.
12604         (sinh_test): Use ALL_RM_TEST.
12605         (sinh_tonearest_test_data): Remove.
12606         (sinh_test_tonearest): Likewise.
12607         (sinh_towardzero_test_data): Likewise.
12608         (sinh_test_towardzero): Likewise.
12609         (sinh_downward_test_data): Likewise.
12610         (sinh_test_downward): Likewise.
12611         (sinh_upward_test_data): Likewise.
12612         (sinh_test_upward): Likewise.
12613         (sqrt_test_data): Update call to AUTO_TESTS_f_f.
12614         (sqrt_test): Use ALL_RM_TEST.
12615         (sqrt_tonearest_test_data): Remove.
12616         (sqrt_test_tonearest): Likewise.
12617         (sqrt_towardzero_test_data): Likewise.
12618         (sqrt_test_towardzero): Likewise.
12619         (sqrt_downward_test_data): Likewise.
12620         (sqrt_test_downward): Likewise.
12621         (sqrt_upward_test_data): Likewise.
12622         (sqrt_test_upward): Likewise.
12623         (tan_test_data): Update call to AUTO_TESTS_f_f.
12624         (tan_test): Use ALL_RM_TEST.
12625         (tan_tonearest_test_data): Remove.
12626         (tan_test_tonearest): Likewise.
12627         (tan_towardzero_test_data): Likewise.
12628         (tan_test_towardzero): Likewise.
12629         (tan_downward_test_data): Likewise.
12630         (tan_test_downward): Likewise.
12631         (tan_upward_test_data): Likewise.
12632         (tan_test_upward): Likewise.
12633         (tanh_test_data): Update call to AUTO_TESTS_f_f.
12634         (tgamma_test_data): Likewise.
12635         (y0_test_data): Likewise.
12636         (y1_test_data): Likewise.
12637         (yn_test_data): Update call to AUTO_TESTS_if_f.
12638         (main): Do not call removed functions.
12639
12640 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
12641
12642         * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
12643         (ldexp_test_data): Remove.
12644         (ldexp_test): Move to after scalbn_test.  Use ALL_RM_TEST with
12645         scalbn_test_data.
12646         (scalb_test): Use ALL_RM_TEST.
12647
12648 2014-03-19  Andreas Schwab  <schwab@suse.de>
12649
12650         * nscd/nscd.service: Also invalidate netgroup cache on reload.
12651
12652 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
12653
12654         [BZ #16649]
12655         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12656         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
12657         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
12658         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12659         (__ASSUME_PREADV): Undefine.
12660         (__ASSUME_PWRITEV): Likewise.
12661
12662 2014-03-18  Roland McGrath  <roland@hack.frob.com>
12663
12664         * bits/mman-linux.h: Add comment about non-Linux use.
12665         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
12666         bits/mman-linux.h resting place.
12667
12668         * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
12669         * bits/mman-linux.h: ... here.
12670
12671 2014-03-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12672
12673         * conform/conformtest.pl: Add standard definition when calling C
12674         preprocessor on data files.
12675         (checknamespace): Remove unused variable.
12676
12677 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
12678
12679         * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
12680         minus_oflow, plus_uflow and minus_uflow in expected results.
12681         * math/libm-test.inc (scalbn_test_data): Add more tests of
12682         negative arguments.  Use plus_oflow, minus_oflow, plus_uflow and
12683         minus_uflow.
12684         (scalbn_test): Use ALL_RM_TEST.
12685         (scalbln_test_data): Add more tests of negative arguments.  Use
12686         plus_oflow, minus_oflow, plus_uflow and minus_uflow.
12687         (scalbln_test): Use ALL_RM_TEST.
12688
12689 2014-03-18  Roland McGrath  <roland@hack.frob.com>
12690
12691         * scripts/abilist.awk: Ignore symbols marked with .hidden.
12692
12693 2014-03-18  Will Newton  <will.newton@linaro.org>
12694
12695         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
12696         inaccurate comment.
12697
12698 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
12699
12700         * Makerules [!subdir] (check-abi): Exit with error status if a
12701         test failed.
12702
12703 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
12704
12705         * math/libm-test.inc (nearbyint_test_data): Include all tests used
12706         for rint.  Include results for all rounding modes.
12707         (nearbyint_test): Use ALL_RM_TEST.
12708         (rint_test_data): Include all tests used for nearbyint.
12709
12710 2014-03-17  Will Newton  <will.newton@linaro.org>
12711
12712         * nptl/sysdeps/pthread/pthread.h: Revert previous
12713         change.
12714
12715         * sysdeps/generic/ldsodefs.h: Revert previous
12716         change.
12717
12718         * libio/genops.c: Revert previous change.
12719         * libio/libioP.h: Likewise.
12720         * stdio-common/vfprintf.c: Likewise.
12721
12722         * sysdeps/generic/math_private.h: Revert previous
12723         change.
12724
12725         * sysdeps/generic/math_private.h: Check whether
12726         HAVE_RM_CTX is defined with #ifdef rather
12727         than #if.
12728
12729         * argp/argp-fmtstream.h: Check whether
12730         __STRICT_ANSI__ is defined with #ifdef rather
12731         than #if.
12732         * argp/argp.h: Likewise.
12733
12734         * libio/genops.c: Check whether
12735         _IO_JUMPS_OFFSET is defined with #ifdef rather
12736         than #if.
12737         * libio/libioP.h: Likewise.
12738         * stdio-common/vfprintf.c: Likewise.
12739
12740         * sysdeps/generic/ldsodefs.h: Check whether
12741         HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
12742         than #if.
12743
12744         * nptl/sysdeps/pthread/pthread.h: Check
12745         __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
12746         its value.
12747
12748 2014-03-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
12749
12750         * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
12751         setting O_APPEND.
12752         * libio/tst-ftell-active-handler.c (do_append_test): Add a
12753         test case.
12754
12755         [BZ #16680]
12756         * libio/fileops.c (_IO_file_open): Seek to end of file but
12757         don't cache the offset.
12758         (get_file_offset): Remove function.
12759         (do_ftell): Use cached offset when available.
12760         * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
12761         don't cache the offset.
12762         * libio/tst-ftell-active-handler.c (do_rewind_test): New test
12763         case.
12764         (do_one_test): Call it.
12765         (do_ftell_test): Fix up expected old offset for a+ mode.
12766         * libio/wfileops.c (do_ftell_wide): Used cached offset when
12767         available.
12768
12769         * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
12770         up test status with function return status.
12771         (do_write_test): Likewise.
12772         (do_append_test): Likewise.
12773
12774         * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
12775         && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
12776         Remove.
12777
12778 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
12779
12780         * math/gen-libm-test.pl (parse_args): Handle results specified for
12781         each rounding mode separately.
12782         * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
12783         tests and results from lrint_tonearest_test_data,
12784         lrint_towardzero_test_data, lrint_downward_test_data and
12785         lrint_upward_test_data.
12786         (lrint_test): Use ALL_RM_TEST.
12787         (lrint_tonearest_test_data): Remove.
12788         (lrint_test_tonearest): Likewise.
12789         (lrint_towardzero_test_data): Likewise.
12790         (lrint_test_towardzero): Likewise.
12791         (lrint_downward_test_data): Likewise.
12792         (lrint_test_downward): Likewise.
12793         (lrint_upward_test_data): Likewise.
12794         (lrint_test_upward): Likewise.
12795         (llrint_test_data): Merge in per-rounding-mode tests and results
12796         from llrint_tonearest_test_data, llrint_towardzero_test_data,
12797         llrint_downward_test_data and llrint_upward_test_data.
12798         (llrint_test): Use ALL_RM_TEST.
12799         (llrint_tonearest_test_data): Remove.
12800         (llrint_test_tonearest): Likewise.
12801         (llrint_towardzero_test_data): Likewise.
12802         (llrint_test_towardzero): Likewise.
12803         (llrint_downward_test_data): Likewise.
12804         (llrint_test_downward): Likewise.
12805         (llrint_upward_test_data): Likewise.
12806         (llrint_test_upward): Likewise.
12807         (rint_test_data): Merge in per-rounding-mode tests and results
12808         from rint_tonearest_test_data, rint_towardzero_test_data,
12809         rint_downward_test_data and rint_upward_test_data.  Add
12810         per-rounding-mode results for tests not in those arrays.
12811         (rint_test): Use ALL_RM_TEST.
12812         (rint_tonearest_test_data): Remove.
12813         (rint_test_tonearest): Likewise.
12814         (rint_towardzero_test_data): Likewise.
12815         (rint_test_towardzero): Likewise.
12816         (rint_downward_test_data): Likewise.
12817         (rint_test_downward): Likewise.
12818         (rint_upward_test_data): Likewise.
12819         (rint_test_upward): Likewise.
12820         (main): Don't call removed functions.
12821
12822 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12823
12824         * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
12825         "Compiled on ..." crapola.  It is anti-useful.
12826
12827 2014-03-14  Joseph Myers  <joseph@codesourcery.com>
12828
12829         * scripts/evaluate-test.sh: Handle fourth argument to determine
12830         whether test run should stop on failure.
12831         * Makeconfig (stop-on-test-failure): New variable.
12832         (evaluate-test): Pass fourth argument to evaluate-test.sh based on
12833         $(stop-on-test-failure).
12834         * Makefile (tests): Give a summary of results from testing and
12835         exit with failure status if they include an ERROR or FAIL.
12836         (xtests): Likewise.
12837         * manual/install.texi (Configuring and compiling): Mention
12838         stop-on-test-failure=y.
12839         * INSTALL: Regenerated.
12840
12841 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12842
12843         * scripts/versionlist.awk: New file.
12844         * Makerules [$(build-shared) = yes]
12845         (postclean-generated): Add Versions.def, not Versions.def.v and
12846         Versions.def.v.i.
12847         ($(common-objpfx)Versions.def.v.i): Target removed.
12848         ($(common-objpfx)Versions.def): New target.
12849         ($(common-objpfx)Versions.all): Depend on that rather that
12850         $(common-objpfx)Versions.def.v.
12851         * Versions.def: File removed.
12852
12853         * Makeconfig (+gccwarn): Add -Wundef.
12854         * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
12855         a dl-sysdep.h breaking its contract.
12856         [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
12857         * include/stackinfo.h: New file.
12858         * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
12859         * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
12860         * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
12861         * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
12862         * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
12863         * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
12864         * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12865         * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12866         * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12867         * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12868         * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12869         * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
12870         * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12871         * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12872         * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12873
12874 2014-03-14  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12875
12876         [BZ #16707]
12877         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
12878         implementation.
12879         * math/libm-test.inc (round_test_data): Add more tests.
12880
12881         [BZ #16706]
12882         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
12883         implementation.
12884         * math/libm-test.inc (nearbyint_test_data): Add more tests.
12885
12886         [BZ #16701]
12887         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
12888         implementation.
12889         * math/libm-test.inc (ceil_test_data): Add more tests.
12890
12891         * math/libm-test.inc (trunc_test_data): Add more tests related to
12892         BZ#16414.
12893
12894 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12895
12896         * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
12897         with #if rather than #ifdef.
12898         * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
12899
12900 2014-03-14  H.J. Lu  <hongjiu.lu@intel.com>
12901
12902         * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
12903         first.  Disable AVX-512 GCC support if assembler doesn't support
12904         it.
12905         * sysdeps/x86_64/configure: Regenerated.
12906
12907 2014-03-13  Carlos O'Donell  <carlos@redhat.com>
12908
12909         * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
12910         [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
12911         (__old_pthread_attr_setstack): Likewise.
12912         * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
12913         [!_STACK_GROWS_DOWN]: Likewise.
12914
12915 2014-03-13  Mike Frysinger  <vapier@gentoo.org>
12916
12917         * config.make.in (have-bash2): Delete.
12918         * configure.ac (libc_cv_have_bash2): Delete.
12919         * configure: Regenerate.
12920         * elf/Makefile (common-ldd-rewrite): Rename to ...
12921         (ldd-rewrite): ... this.  Move bash-ldd-rewrite content to end.
12922         (sh-ldd-rewrite): Delete.
12923         (bash-ldd-rewrite): Delete.
12924         (have-bash2): Delete checks.
12925         [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
12926         ldd-rewrite.
12927
12928         * config.make.in (have-ksh): Delete.
12929         (KSH): Delete.
12930         * configure.ac (libc_cv_have_ksh): Delete.
12931         * configure: Regenerate.
12932
12933         * elf/Makefile: Delete $(have-ksh) check.
12934         ($(objpfx)sotruss): Change KSH to BASH.
12935         * elf/sotruss.ksh: Rename to ...
12936         * elf/sotruss.sh: ... this.  Change @KSH@ to @BASH@.  Change
12937         function style to match POSIX.  Drop ksh vim mode setting.
12938
12939         * manual/time.texi (Specifying the Time Zone with TZ): Change
12940         Tuesday to Thursday.
12941
12942         * debug/tst-longjmp_chk2.c: Update header comment.
12943         (stackoverflow_handler): Add comment.  Call assert on pass value.
12944
12945 2014-03-13  Igor Zamyatin  <igor.zamyatin@intel.com>
12946
12947         [BZ #16194]
12948         * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
12949         (HAVE_AVX512_ASM_SUPPORT): Likewise.
12950         * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
12951         (La_x86_64_vector): Add zmm.
12952         * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
12953         (modules-names): Add tst-auditmod10a and tst-auditmod10b.
12954         ($(objpfx)tst-audit10): New target.
12955         ($(objpfx)tst-audit10.out): Likewise.
12956         (tst-audit10-ENV): New.
12957         (AVX512-CFLAGS): Likewise.
12958         (CFLAGS-tst-audit10.c): Likewise.
12959         (CFLAGS-tst-auditmod10a.c): Likewise.
12960         (CFLAGS-tst-auditmod10b.c): Likewise.
12961         * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
12962         HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
12963         * sysdeps/x86_64/configure: Regenerated.
12964         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
12965         AVX-512 zmm register support.
12966         (_dl_x86_64_save_sse): Likewise.
12967         (_dl_x86_64_restore_sse): Likewise.
12968         * sysdeps/x86_64/dl-trampoline.h: Updated to support different
12969         size vector registers.
12970         * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
12971         (ZMM_SIZE): Likewise.
12972         * sysdeps/x86_64/tst-audit10.c: New file.
12973         * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
12974         * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
12975
12976 2014-03-13  Roland McGrath  <roland@hack.frob.com>
12977
12978         * configure.ac (HAVE_EHDR_START): New check.
12979         * configure: Regenerated.
12980         * config.h.in (HAVE_EHDR_START): New #undef.
12981         * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
12982         assuming the lowest-addressed segment maps the start of the file.
12983
12984 2014-03-13  Joseph Myers  <joseph@codesourcery.com>
12985
12986         * INSTALL: Regenerated.
12987
12988 2014-03-13  Will Newton  <will.newton@linaro.org>
12989
12990         * manual/setjmp.texi (System V contexts): Improve
12991         clarity and grammar of documentation.
12992
12993 2014-03-12  Paul Pluzhnikov  <ppluzhnikov@google.com>
12994
12995         [BZ #16381]
12996         * elf/Makefile (tests): Add tst-pie2.
12997         (tests-pie): Add tst-pie2.
12998         * elf/tst-pie2.c: New file.
12999         * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
13000         for ET_EXEC.
13001         * elf/rtld.c (map_doit): Load executable as lt_executable.
13002         (dl_main): Likewise.
13003
13004 2014-03-12  Joseph Myers  <joseph@codesourcery.com>
13005
13006         [BZ #16642]
13007         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13008         (__ASSUME_PSELECT): Undefine.
13009
13010 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13011
13012         [BZ #16689]
13013         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
13014         (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
13015         static build.
13016         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
13017         selector for static builds.
13018
13019 2014-03-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
13020
13021         [BZ #16695]
13022         * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
13023         key in the buffer.
13024
13025 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13026
13027         * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
13028         IFUNC selector for static builds.
13029
13030 2014-03-11  Joseph Myers  <joseph@codesourcery.com>
13031
13032         * sysdeps/mips/math_private.h [__mips_hard_float]
13033         (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
13034         libc_feresetround_mips_ctx.
13035         [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
13036         [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
13037         [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
13038
13039         [BZ #16677]
13040         * math/s_nextafter.c (__nextafter): Do not return value from
13041         overflowing computation.
13042         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
13043         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
13044         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
13045         Likewise.
13046         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
13047         Likewise.
13048         * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
13049         * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
13050
13051 2014-03-11  Roland McGrath  <roland@hack.frob.com>
13052
13053         * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
13054         * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
13055         Move sfi_sp use from the load-multiple (that no longer sets sp) to
13056         the new mov targetting sp.
13057
13058 2014-03-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13059
13060         [BZ #16683]
13061         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
13062         Define it for static builds as well.
13063         (NO_BZERO_IMPL): Likewise.
13064
13065 2014-03-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13066
13067         * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
13068         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
13069         multiarch strspn for PPC64.
13070         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
13071         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
13072         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13073         (__libc_ifunc_impl_list): Likewise.
13074         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
13075         multiarch optimizations
13076         * string/strspn.c (strspn): Using macro to redefine symbol name.
13077
13078 2014-03-10  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13079             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13080
13081         * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
13082         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
13083         multiarch strncat for PPC64.
13084         * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
13085         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
13086         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13087         (__libc_ifunc_impl_list): Likewise.
13088         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
13089         multiarch optimizations
13090
13091 2014-03-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
13092
13093         [BZ #16639]
13094         * nscd/nscd.service: Make service type forking.
13095
13096 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13097
13098         * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
13099         sign in non default rounding modes.
13100         * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
13101
13102 2014-03-08  Joseph Myers  <joseph@codesourcery.com>
13103
13104         * math/libm-test.inc (ALL_RM_TEST): New macro.
13105         (ceil_test): Use ALL_RM_TEST.
13106         (cimag_test): Likewise.
13107         (conj_test): Likewise.
13108         (copysign_test): Likewise.
13109         (cproj_test): Likewise.
13110         (creal_test): Likewise.
13111         (fabs_test): Likewise.
13112         (floor_test): Likewise.
13113         (fmax_test): Likewise.
13114         (fmin_test): Likewise.
13115         (fmod_test): Likewise.
13116         (fpclassify_test): Likewise.
13117         (frexp_test): Likewise.
13118         (ilogb_test): Likewise.
13119         (isfinite_test): Likewise.
13120         (finite_test): Likewise.
13121         (isgreater_test): Likewise.
13122         (isgreaterequal_test): Likewise.
13123         (isinf_test): Likewise.
13124         (isless_test): Likewise.
13125         (islessequal_test): Likewise.
13126         (islessgreater_test): Likewise.
13127         (isnan_test): Likewise.
13128         (isnormal_test): Likewise.
13129         (issignaling_test): Likewise.
13130         (isunordered_test): Likewise.
13131         (logb_test): Likewise.
13132         (logb_downward_test_data): Remove.
13133         (logb_test_downward): Likewise.
13134         (lround_test): Use ALL_RM_TEST.
13135         (llround_test): Likewise.
13136         (modf_test): Likewise.
13137         (nexttoward_test): Likewise.
13138         (remainder_test): Likewise.
13139         (drem_test): Likewise.
13140         (remainder_tonearest_test_data): Likewise.
13141         (remainder_test_tonearest): Likewise.
13142         (drem_test_tonearest): Likewise.
13143         (remainder_towardzero_test_data): Likewise.
13144         (remainder_test_towardzero): Likewise.
13145         (drem_test_towardzero): Likewise.
13146         (remainder_downward_test_data): Likewise.
13147         (remainder_test_downward): Likewise.
13148         (drem_test_downward): Likewise.
13149         (remainder_upward_test_data): Likewise.
13150         (remainder_test_upward): Likewise.
13151         (drem_test_upward): Likewise.
13152         (remquo_test): Use ALL_RM_TEST.  Remove comment about x.
13153         (round_test): Use ALL_RM_TEST.
13154         (signbit_test): Likewise.
13155         (trunc_test): Likewise.
13156         (significand_test): Likewise.
13157         (main): Don't call removed functions.
13158
13159 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
13160
13161         [BZ #16674]
13162         * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
13163         || __USE_XOPEN2K8].
13164         (ILL_ILLOPN): Likewise.
13165         (ILL_ILLADR): Likewise.
13166         (ILL_ILLTRP): Likewise.
13167         (ILL_PRVOPC): Likewise.
13168         (ILL_PRVREG): Likewise.
13169         (ILL_COPROC): Likewise.
13170         (ILL_BADSTK): Likewise.
13171         (FPE_INTDIV): Likewise.
13172         (FPE_INTOVF): Likewise.
13173         (FPE_FLTDIV): Likewise.
13174         (FPE_FLTOVF): Likewise.
13175         (FPE_FLTUND): Likewise.
13176         (FPE_FLTRES): Likewise.
13177         (FPE_FLTINV): Likewise.
13178         (FPE_FLTSUB): Likewise.
13179         (SEGV_MAPERR): Likewise.
13180         (SEGV_ACCERR): Likewise.
13181         (BUS_ADRALN): Likewise.
13182         (BUS_ADRERR): Likewise.
13183         (BUS_OBJERR): Likewise.
13184         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13185         (TRAP_TRACE): Likewise.
13186         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13187         __USE_XOPEN2K8].
13188         (CLD_KILLED): Likewise.
13189         (CLD_DUMPED): Likewise.
13190         (CLD_TRAPPED): Likewise.
13191         (CLD_STOPPED): Likewise.
13192         (CLD_CONTINUED): Likewise.
13193         (POLL_IN): Likewise.
13194         (POLL_OUT): Likewise.
13195         (POLL_MSG): Likewise.
13196         (POLL_ERR): Likewise.
13197         (POLL_PRI): Likewise.
13198         (POLL_HUP): Likewise.
13199         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
13200         Likewise.
13201         (ILL_ILLOPN): Likewise.
13202         (ILL_ILLADR): Likewise.
13203         (ILL_ILLTRP): Likewise.
13204         (ILL_PRVOPC): Likewise.
13205         (ILL_PRVREG): Likewise.
13206         (ILL_COPROC): Likewise.
13207         (ILL_BADSTK): Likewise.
13208         (FPE_INTDIV): Likewise.
13209         (FPE_INTOVF): Likewise.
13210         (FPE_FLTDIV): Likewise.
13211         (FPE_FLTOVF): Likewise.
13212         (FPE_FLTUND): Likewise.
13213         (FPE_FLTRES): Likewise.
13214         (FPE_FLTINV): Likewise.
13215         (FPE_FLTSUB): Likewise.
13216         (SEGV_MAPERR): Likewise.
13217         (SEGV_ACCERR): Likewise.
13218         (BUS_ADRALN): Likewise.
13219         (BUS_ADRERR): Likewise.
13220         (BUS_OBJERR): Likewise.
13221         (BUS_MCEERR_AR): Likewise.
13222         (BUS_MCEERR_AO): Likewise.
13223         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13224         (TRAP_TRACE): Likewise.
13225         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13226         __USE_XOPEN2K8].
13227         (CLD_KILLED): Likewise.
13228         (CLD_DUMPED): Likewise.
13229         (CLD_TRAPPED): Likewise.
13230         (CLD_STOPPED): Likewise.
13231         (CLD_CONTINUED): Likewise.
13232         (POLL_IN): Likewise.
13233         (POLL_OUT): Likewise.
13234         (POLL_MSG): Likewise.
13235         (POLL_ERR): Likewise.
13236         (POLL_PRI): Likewise.
13237         (POLL_HUP): Likewise.
13238         * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
13239         (ILL_ILLOPN): Likewise.
13240         (ILL_ILLADR): Likewise.
13241         (ILL_ILLTRP): Likewise.
13242         (ILL_PRVOPC): Likewise.
13243         (ILL_PRVREG): Likewise.
13244         (ILL_COPROC): Likewise.
13245         (ILL_BADSTK): Likewise.
13246         (FPE_INTDIV): Likewise.
13247         (FPE_INTOVF): Likewise.
13248         (FPE_FLTDIV): Likewise.
13249         (FPE_FLTOVF): Likewise.
13250         (FPE_FLTUND): Likewise.
13251         (FPE_FLTRES): Likewise.
13252         (FPE_FLTINV): Likewise.
13253         (FPE_FLTSUB): Likewise.
13254         (SEGV_MAPERR): Likewise.
13255         (SEGV_ACCERR): Likewise.
13256         (BUS_ADRALN): Likewise.
13257         (BUS_ADRERR): Likewise.
13258         (BUS_OBJERR): Likewise.
13259         (BUS_MCEERR_AR): Likewise.
13260         (BUS_MCEERR_AO): Likewise.
13261         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13262         (TRAP_TRACE): Likewise.
13263         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13264         __USE_XOPEN2K8].
13265         (CLD_KILLED): Likewise.
13266         (CLD_DUMPED): Likewise.
13267         (CLD_TRAPPED): Likewise.
13268         (CLD_STOPPED): Likewise.
13269         (CLD_CONTINUED): Likewise.
13270         (POLL_IN): Likewise.
13271         (POLL_OUT): Likewise.
13272         (POLL_MSG): Likewise.
13273         (POLL_ERR): Likewise.
13274         (POLL_PRI): Likewise.
13275         (POLL_HUP): Likewise.
13276         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
13277         Likewise.
13278         (ILL_ILLOPN): Likewise.
13279         (ILL_ILLADR): Likewise.
13280         (ILL_ILLTRP): Likewise.
13281         (ILL_PRVOPC): Likewise.
13282         (ILL_PRVREG): Likewise.
13283         (ILL_COPROC): Likewise.
13284         (ILL_BADSTK): Likewise.
13285         (ILL_BADIADDR): Likewise.
13286         (ILL_BREAK): Likewise.
13287         (FPE_INTDIV): Likewise.
13288         (FPE_INTOVF): Likewise.
13289         (FPE_FLTDIV): Likewise.
13290         (FPE_FLTOVF): Likewise.
13291         (FPE_FLTUND): Likewise.
13292         (FPE_FLTRES): Likewise.
13293         (FPE_FLTINV): Likewise.
13294         (FPE_FLTSUB): Likewise.
13295         (FPE_DECOVF): Likewise.
13296         (FPE_DECDIV): Likewise.
13297         (FPE_DECERR): Likewise.
13298         (FPE_INVASC): Likewise.
13299         (FPE_INVDEC): Likewise.
13300         (SEGV_MAPERR): Likewise.
13301         (SEGV_ACCERR): Likewise.
13302         (SEGV_PSTKOVF): Likewise.
13303         (BUS_ADRALN): Likewise.
13304         (BUS_ADRERR): Likewise.
13305         (BUS_OBJERR): Likewise.
13306         (BUS_MCEERR_AR): Likewise.
13307         (BUS_MCEERR_AO): Likewise.
13308         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13309         (TRAP_TRACE): Likewise.
13310         (TRAP_BRANCH): Likewise.
13311         (TRAP_HWBKPT): Likewise.
13312         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13313         __USE_XOPEN2K8].
13314         (CLD_KILLED): Likewise.
13315         (CLD_DUMPED): Likewise.
13316         (CLD_TRAPPED): Likewise.
13317         (CLD_STOPPED): Likewise.
13318         (CLD_CONTINUED): Likewise.
13319         (POLL_IN): Likewise.
13320         (POLL_OUT): Likewise.
13321         (POLL_MSG): Likewise.
13322         (POLL_ERR): Likewise.
13323         (POLL_PRI): Likewise.
13324         (POLL_HUP): Likewise.
13325         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
13326         (ILL_ILLOPN): Likewise.
13327         (ILL_ILLADR): Likewise.
13328         (ILL_ILLTRP): Likewise.
13329         (ILL_PRVOPC): Likewise.
13330         (ILL_PRVREG): Likewise.
13331         (ILL_COPROC): Likewise.
13332         (ILL_BADSTK): Likewise.
13333         (FPE_INTDIV): Likewise.
13334         (FPE_INTOVF): Likewise.
13335         (FPE_FLTDIV): Likewise.
13336         (FPE_FLTOVF): Likewise.
13337         (FPE_FLTUND): Likewise.
13338         (FPE_FLTRES): Likewise.
13339         (FPE_FLTINV): Likewise.
13340         (FPE_FLTSUB): Likewise.
13341         (SEGV_MAPERR): Likewise.
13342         (SEGV_ACCERR): Likewise.
13343         (BUS_ADRALN): Likewise.
13344         (BUS_ADRERR): Likewise.
13345         (BUS_OBJERR): Likewise.
13346         (BUS_MCEERR_AR): Likewise.
13347         (BUS_MCEERR_AO): Likewise.
13348         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13349         (TRAP_TRACE): Likewise.
13350         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13351         __USE_XOPEN2K8].
13352         (CLD_KILLED): Likewise.
13353         (CLD_DUMPED): Likewise.
13354         (CLD_TRAPPED): Likewise.
13355         (CLD_STOPPED): Likewise.
13356         (CLD_CONTINUED): Likewise.
13357         (POLL_IN): Likewise.
13358         (POLL_OUT): Likewise.
13359         (POLL_MSG): Likewise.
13360         (POLL_ERR): Likewise.
13361         (POLL_PRI): Likewise.
13362         (POLL_HUP): Likewise.
13363         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
13364         (ILL_ILLOPN): Likewise.
13365         (ILL_ILLADR): Likewise.
13366         (ILL_ILLTRP): Likewise.
13367         (ILL_PRVOPC): Likewise.
13368         (ILL_PRVREG): Likewise.
13369         (ILL_COPROC): Likewise.
13370         (ILL_BADSTK): Likewise.
13371         (FPE_INTDIV): Likewise.
13372         (FPE_INTOVF): Likewise.
13373         (FPE_FLTDIV): Likewise.
13374         (FPE_FLTOVF): Likewise.
13375         (FPE_FLTUND): Likewise.
13376         (FPE_FLTRES): Likewise.
13377         (FPE_FLTINV): Likewise.
13378         (FPE_FLTSUB): Likewise.
13379         (SEGV_MAPERR): Likewise.
13380         (SEGV_ACCERR): Likewise.
13381         (BUS_ADRALN): Likewise.
13382         (BUS_ADRERR): Likewise.
13383         (BUS_OBJERR): Likewise.
13384         (BUS_MCEERR_AR): Likewise.
13385         (BUS_MCEERR_AO): Likewise.
13386         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13387         (TRAP_TRACE): Likewise.
13388         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13389         __USE_XOPEN2K8].
13390         (CLD_KILLED): Likewise.
13391         (CLD_DUMPED): Likewise.
13392         (CLD_TRAPPED): Likewise.
13393         (CLD_STOPPED): Likewise.
13394         (CLD_CONTINUED): Likewise.
13395         (POLL_IN): Likewise.
13396         (POLL_OUT): Likewise.
13397         (POLL_MSG): Likewise.
13398         (POLL_ERR): Likewise.
13399         (POLL_PRI): Likewise.
13400         (POLL_HUP): Likewise.
13401         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
13402         (ILL_ILLOPN): Likewise.
13403         (ILL_ILLADR): Likewise.
13404         (ILL_ILLTRP): Likewise.
13405         (ILL_PRVOPC): Likewise.
13406         (ILL_PRVREG): Likewise.
13407         (ILL_COPROC): Likewise.
13408         (ILL_BADSTK): Likewise.
13409         (FPE_INTDIV): Likewise.
13410         (FPE_INTOVF): Likewise.
13411         (FPE_FLTDIV): Likewise.
13412         (FPE_FLTOVF): Likewise.
13413         (FPE_FLTUND): Likewise.
13414         (FPE_FLTRES): Likewise.
13415         (FPE_FLTINV): Likewise.
13416         (FPE_FLTSUB): Likewise.
13417         (SEGV_MAPERR): Likewise.
13418         (SEGV_ACCERR): Likewise.
13419         (BUS_ADRALN): Likewise.
13420         (BUS_ADRERR): Likewise.
13421         (BUS_OBJERR): Likewise.
13422         (BUS_MCEERR_AR): Likewise.
13423         (BUS_MCEERR_AO): Likewise.
13424         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13425         (TRAP_TRACE): Likewise.
13426         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13427         __USE_XOPEN2K8].
13428         (CLD_KILLED): Likewise.
13429         (CLD_DUMPED): Likewise.
13430         (CLD_TRAPPED): Likewise.
13431         (CLD_STOPPED): Likewise.
13432         (CLD_CONTINUED): Likewise.
13433         (POLL_IN): Likewise.
13434         (POLL_OUT): Likewise.
13435         (POLL_MSG): Likewise.
13436         (POLL_ERR): Likewise.
13437         (POLL_PRI): Likewise.
13438         (POLL_HUP): Likewise.
13439         * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
13440         (ILL_ILLOPN): Likewise.
13441         (ILL_ILLADR): Likewise.
13442         (ILL_ILLTRP): Likewise.
13443         (ILL_PRVOPC): Likewise.
13444         (ILL_PRVREG): Likewise.
13445         (ILL_COPROC): Likewise.
13446         (ILL_BADSTK): Likewise.
13447         (ILL_DBLFLT): Likewise.
13448         (ILL_HARDWALL): Likewise.
13449         (FPE_INTDIV): Likewise.
13450         (FPE_INTOVF): Likewise.
13451         (FPE_FLTDIV): Likewise.
13452         (FPE_FLTOVF): Likewise.
13453         (FPE_FLTUND): Likewise.
13454         (FPE_FLTRES): Likewise.
13455         (FPE_FLTINV): Likewise.
13456         (FPE_FLTSUB): Likewise.
13457         (SEGV_MAPERR): Likewise.
13458         (SEGV_ACCERR): Likewise.
13459         (BUS_ADRALN): Likewise.
13460         (BUS_ADRERR): Likewise.
13461         (BUS_OBJERR): Likewise.
13462         (BUS_MCEERR_AR): Likewise.
13463         (BUS_MCEERR_AO): Likewise.
13464         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13465         (TRAP_TRACE): Likewise.
13466         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13467         __USE_XOPEN2K8].
13468         (CLD_KILLED): Likewise.
13469         (CLD_DUMPED): Likewise.
13470         (CLD_TRAPPED): Likewise.
13471         (CLD_STOPPED): Likewise.
13472         (CLD_CONTINUED): Likewise.
13473         (POLL_IN): Likewise.
13474         (POLL_OUT): Likewise.
13475         (POLL_MSG): Likewise.
13476         (POLL_ERR): Likewise.
13477         (POLL_PRI): Likewise.
13478         (POLL_HUP): Likewise.
13479         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
13480         (ILL_ILLOPN): Likewise.
13481         (ILL_ILLADR): Likewise.
13482         (ILL_ILLTRP): Likewise.
13483         (ILL_PRVOPC): Likewise.
13484         (ILL_PRVREG): Likewise.
13485         (ILL_COPROC): Likewise.
13486         (ILL_BADSTK): Likewise.
13487         (FPE_INTDIV): Likewise.
13488         (FPE_INTOVF): Likewise.
13489         (FPE_FLTDIV): Likewise.
13490         (FPE_FLTOVF): Likewise.
13491         (FPE_FLTUND): Likewise.
13492         (FPE_FLTRES): Likewise.
13493         (FPE_FLTINV): Likewise.
13494         (FPE_FLTSUB): Likewise.
13495         (SEGV_MAPERR): Likewise.
13496         (SEGV_ACCERR): Likewise.
13497         (BUS_ADRALN): Likewise.
13498         (BUS_ADRERR): Likewise.
13499         (BUS_OBJERR): Likewise.
13500         (BUS_MCEERR_AR): Likewise.
13501         (BUS_MCEERR_AO): Likewise.
13502         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13503         (TRAP_TRACE): Likewise.
13504         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13505         __USE_XOPEN2K8].
13506         (CLD_KILLED): Likewise.
13507         (CLD_DUMPED): Likewise.
13508         (CLD_TRAPPED): Likewise.
13509         (CLD_STOPPED): Likewise.
13510         (CLD_CONTINUED): Likewise.
13511         (POLL_IN): Likewise.
13512         (POLL_OUT): Likewise.
13513         (POLL_MSG): Likewise.
13514         (POLL_ERR): Likewise.
13515         (POLL_PRI): Likewise.
13516         (POLL_HUP): Likewise.
13517         * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
13518         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
13519
13520         [BZ #16670]
13521         * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
13522         before #include of <time.h>.
13523         [!__USE_XOPEN2K] (__need_timespec): Likewise.
13524         * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
13525         (test-xfail-UNIX98/sched.h/conform): Likewise.
13526
13527 2014-03-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
13528
13529         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
13530         error absence of trapping exception support.
13531         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
13532
13533 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
13534
13535         * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
13536         ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
13537         * timezone/Makefile (testdata): Move definition above include of
13538         Rules.
13539         (test-zones): New variable.
13540         (tests-special): Add zone files.
13541         (build-testdata): Use $(evaluate-test).
13542
13543         * elf/Makefile (tests-special): Rename tests to end with .out.
13544         ($(objpfx)noload-mem): Likewise.
13545         ($(objpfx)tst-leaks1-mem): Likewise.
13546         ($(objpfx)tst-leaks1-static-mem.out): Likewise.
13547         * iconv/Makefile (xtests-special): Change test-iconvconfig to
13548         $(objpfx)test-iconvconfig.out.
13549         (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out.  Use
13550         set -e inside subshell and redirect output to file.
13551         * iconvdata/Makefile (generated): Rename tests to end with .out.
13552         Correct type.
13553         (tests-special): Rename tests to end with .out.
13554         ($(objpfx)mtrace-tst-loading): Likewise.
13555         * intl/Makefile (generated): Likewise.
13556         (tests-special): Likewise.
13557         ($(objpfx)mtrace-tst-gettext): Likewise.
13558         * misc/Makefile (generated): Likewise.
13559         (tests-special): Likewise.
13560         ($(objpfx)tst-error1-mem): Likewise.
13561         * nptl/Makefile (tests-special): Likewise.
13562         ($(objpfx)tst-stack3-mem): Likewise.
13563         (generated): Likewise.
13564         * posix/Makefile (generated): Likewise.
13565         (tests-special): Likewise.
13566         (xtests-special): Likewise.
13567         ($(objpfx)tst-fnmatch-mem): Likewise.
13568         ($(objpfx)bug-regex2-mem): Likewise.
13569         ($(objpfx)bug-regex14-mem): Likewise.
13570         ($(objpfx)bug-regex21-mem): Likewise.
13571         ($(objpfx)bug-regex31-mem): Likewise.
13572         ($(objpfx)tst-vfork3-mem): Likewise.
13573         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
13574         ($(objpfx)tst-pcre-mem): Likewise.
13575         ($(objpfx)tst-boost-mem): Likewise.
13576         ($(objpfx)bug-ga2-mem): Likewise.
13577         ($(objpfx)bug-glob2-mem): Likewise.
13578         * resolv/Makefile (generate): Likewise.
13579         (tests-special): Likewise.
13580         (xtests-special): Likewise.
13581         (generated): Likewise.
13582         ($(objpfx)mtrace-tst-leaks): Likewise.
13583         ($(objpfx)mtrace-tst-leaks2): Likewise.
13584
13585         * scripts/merge-test-results.sh: New file.
13586         * Makefile (tests-special-notdir): New variable.
13587         (tests): Run merge-test-results.sh.
13588         (xtests): Likewise.
13589         * Rules (tests-special-notdir): New variable.
13590         (xtests-special-notdir): Likewise.
13591         (tests): Run merge-test-results.sh
13592         (xtests): Likewise.
13593
13594         * Makeconfig (test-xfail-name): New variable.
13595         (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
13596         compute variable name for expected failures.
13597         * conform/Makefile (conformtest-headers-data): New variable.
13598         (conformtest-standards): Likewise.
13599         (conformtest-headers-ISO): Likewise.
13600         (conformtest-headers-ISO99): Likewise.
13601         (conformtest-headers-ISO11): Likewise.
13602         (conformtest-headers-POSIX): Likewise.
13603         (conformtest-headers-XPG3): Likewise.
13604         (conformtest-headers-XPG4): Likewise.
13605         (conformtest-headers-UNIX98): Likewise.
13606         (conformtest-headers-XOPEN2K): Likewise.
13607         (conformtest-headers-POSIX2008): Likewise.
13608         (conformtest-headers-XOPEN2K8): Likewise.
13609         (conformtest-header-list-base): Likewise.
13610         (conformtest-header-list-tests): Likewise.
13611         (conformtest-header-base): Likewise.
13612         (conformtest-header-tests): Likewise.
13613         (tests-special): Add $(conformtest-header-list-tests).  If
13614         [$(fast-check) && !$(cross-compiling)], add
13615         $(conformtest-header-tests) instead of
13616         $(objpfx)run-conformtest.out.
13617         (generated): Add $(conformtest-header-list-base).  If
13618         [$(fast-check) && !$(cross-compiling)], add
13619         $(conformtest-header-base).  Remove previous setting.
13620         ($(conformtest-header-list-tests)): New target.
13621         (test-xfail-run-conformtest): Remove variable.
13622         ($(objpfx)run-conformtest.out): Remove target.
13623         (test-xfail-ISO11/complex.h/conform): New variable.
13624         (test-xfail-ISO11/stdalign.h/conform): Likewise.
13625         (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
13626         (test-xfail-XPG3/varargs.h/conform): Likewise.
13627         (test-xfail-XPG4/varargs.h/conform): Likewise.
13628         (test-xfail-UNIX98/varargs.h/conform): Likewise.
13629         (test-xfail-XPG4/ndbm.h/conform): Likewise.
13630         (test-xfail-UNIX98/ndbm.h/conform): Likewise.
13631         (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
13632         (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
13633         (test-xfail-XPG3/fcntl.h/conform): Likewise.
13634         (test-xfail-XPG3/ftw.h/conform): Likewise.
13635         (test-xfail-XPG3/grp.h/conform): Likewise.
13636         (test-xfail-XPG3/langinfo.h/conform): Likewise.
13637         (test-xfail-XPG3/limits.h/conform): Likewise.
13638         (test-xfail-XPG3/pwd.h/conform): Likewise.
13639         (test-xfail-XPG3/search.h/conform): Likewise.
13640         (test-xfail-XPG3/signal.h/conform): Likewise.
13641         (test-xfail-XPG3/stdio.h/conform): Likewise.
13642         (test-xfail-XPG3/stdlib.h/conform): Likewise.
13643         (test-xfail-XPG3/string.h/conform): Likewise.
13644         (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
13645         (test-xfail-XPG3/sys/msg.h/conform): Likewise.
13646         (test-xfail-XPG3/sys/sem.h/conform): Likewise.
13647         (test-xfail-XPG3/sys/shm.h/conform): Likewise.
13648         (test-xfail-XPG3/sys/stat.h/conform): Likewise.
13649         (test-xfail-XPG3/sys/types.h/conform): Likewise.
13650         (test-xfail-XPG3/sys/wait.h/conform): Likewise.
13651         (test-xfail-XPG3/termios.h/conform): Likewise.
13652         (test-xfail-XPG3/time.h/conform): Likewise.
13653         (test-xfail-XPG3/unistd.h/conform): Likewise.
13654         (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
13655         (test-xfail-XPG4/fcntl.h/conform): Likewise.
13656         (test-xfail-XPG4/langinfo.h/conform): Likewise.
13657         (test-xfail-XPG4/netdb.h/conform): Likewise.
13658         (test-xfail-XPG4/netinet/in.h/conform): Likewise.
13659         (test-xfail-XPG4/signal.h/conform): Likewise.
13660         (test-xfail-XPG4/stdio.h/conform): Likewise.
13661         (test-xfail-XPG4/stdlib.h/conform): Likewise.
13662         (test-xfail-XPG4/stropts.h/conform): Likewise.
13663         (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
13664         (test-xfail-XPG4/sys/msg.h/conform): Likewise.
13665         (test-xfail-XPG4/sys/sem.h/conform): Likewise.
13666         (test-xfail-XPG4/sys/shm.h/conform): Likewise.
13667         (test-xfail-XPG4/sys/socket.h/conform): Likewise.
13668         (test-xfail-XPG4/sys/stat.h/conform): Likewise.
13669         (test-xfail-XPG4/sys/time.h/conform): Likewise.
13670         (test-xfail-XPG4/sys/types.h/conform): Likewise.
13671         (test-xfail-XPG4/sys/wait.h/conform): Likewise.
13672         (test-xfail-XPG4/termios.h/conform): Likewise.
13673         (test-xfail-XPG4/ucontext.h/conform): Likewise.
13674         (test-xfail-XPG4/unistd.h/conform): Likewise.
13675         (test-xfail-XPG4/utmpx.h/conform): Likewise.
13676         (test-xfail-POSIX/sched.h/conform): Likewise.
13677         (test-xfail-POSIX/signal.h/conform): Likewise.
13678         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
13679         (test-xfail-POSIX/tar.h/conform): Likewise.
13680         (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
13681         (test-xfail-UNIX98/fcntl.h/conform): Likewise.
13682         (test-xfail-UNIX98/langinfo.h/conform): Likewise.
13683         (test-xfail-UNIX98/netdb.h/conform): Likewise.
13684         (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
13685         (test-xfail-UNIX98/sched.h/conform): Likewise.
13686         (test-xfail-UNIX98/signal.h/conform): Likewise.
13687         (test-xfail-UNIX98/stdio.h/conform): Likewise.
13688         (test-xfail-UNIX98/stdlib.h/conform): Likewise.
13689         (test-xfail-UNIX98/stropts.h/conform): Likewise.
13690         (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
13691         (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
13692         (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
13693         (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
13694         (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
13695         (test-xfail-UNIX98/sys/time.h/conform): Likewise.
13696         (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
13697         (test-xfail-UNIX98/ucontext.h/conform): Likewise.
13698         (test-xfail-UNIX98/unistd.h/conform): Likewise.
13699         (test-xfail-UNIX98/utmpx.h/conform): Likewise.
13700         (test-xfail-XOPEN2K/aio.h/conform): Likewise.
13701         (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
13702         (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
13703         (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
13704         (test-xfail-XOPEN2K/math.h/conform): Likewise.
13705         (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
13706         (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
13707         (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
13708         (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
13709         (test-xfail-XOPEN2K/signal.h/conform): Likewise.
13710         (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
13711         (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
13712         (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
13713         (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
13714         (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
13715         (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
13716         (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
13717         (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
13718         (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
13719         (test-xfail-XOPEN2K/termios.h/conform): Likewise.
13720         (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
13721         (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
13722         (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
13723         (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
13724         (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
13725         (test-xfail-POSIX2008/netdb.h/conform): Likewise.
13726         (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
13727         (test-xfail-POSIX2008/signal.h/conform): Likewise.
13728         (test-xfail-POSIX2008/stropts.h/conform): Likewise.
13729         (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
13730         (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
13731         (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
13732         (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
13733         (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
13734         (test-xfail-XOPEN2K8/math.h/conform): Likewise.
13735         (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
13736         (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
13737         (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
13738         (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
13739         (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
13740         (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
13741         (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
13742         (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
13743         (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
13744         (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
13745         (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
13746         (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
13747         (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
13748         (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
13749         (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
13750         (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
13751         (conformtest-cc-flags): Likewise.
13752         ($(conformtest-header-tests): New target.
13753         * conform/check-header-lists.sh: New file.
13754         * conform/run-conformtest.sh: Remove.
13755
13756         * conform/conformtest.pl: Allow ' and \ in values given for
13757         constants.
13758         * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
13759         inclusion.
13760         [POSIX] (sys/types.h): Likewise.
13761         [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
13762         inclusion.
13763         [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
13764         inclusion.
13765         * conform/data/signal.h-data (SIGIO): Remove expectation.
13766         [XPG3] (SIGBUS): Do not expect.
13767         [POSIX || XPG3] (SIGPOLL): Likewise.
13768         [POSIX || XPG3] (SIGPROF): Likewise.
13769         [POSIX || XPG3] (SIGSYS): Likewise.
13770         [XPG3] (SIGTRAP): Likewise.
13771         [POSIX || XPG3] (SIGURG): Likewise.
13772         [POSIX || XPG3] (SIGVTALRM): Likewise.
13773         [POSIX || XPG3] (SIGXCPU): Likewise.
13774         [POSIX || XPG3] (SIGXFSZ): Likewise.
13775         [POSIX] (SA_SIGINFO): Expect.
13776         [XPG3] (siginfo_t): Do not expect type or contents.
13777         [POSIX] (si_pid): Do not expect element.
13778         [POSIX] (si_uid): Likewise.
13779         [POSIX] (si_addr): Likewise.
13780         [POSIX] (si_status): Likewise.
13781         [POSIX] (si_band): Likewise.
13782         [XPG4] (si_value): Likewise.
13783         [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
13784         [POSIX || XPG3] (ILL_ILLOPN): Likewise.
13785         [POSIX || XPG3] (ILL_ILLADR): Likewise.
13786         [POSIX || XPG3] (ILL_ILLTRP): Likewise.
13787         [POSIX || XPG3] (ILL_PRVOPC): Likewise.
13788         [POSIX || XPG3] (ILL_PRVREG): Likewise.
13789         [POSIX || XPG3] (ILL_COPROC): Likewise.
13790         [POSIX || XPG3] (ILL_BADSTK): Likewise.
13791         [POSIX || XPG3] (FPE_INTDIV): Likewise.
13792         [POSIX || XPG3] (FPE_INTOVF): Likewise.
13793         [POSIX || XPG3] (FPE_FLTDIV): Likewise.
13794         [POSIX || XPG3] (FPE_FLTOVF): Likewise.
13795         [POSIX || XPG3] (FPE_FLTUND): Likewise.
13796         [POSIX || XPG3] (FPE_FLTRES): Likewise.
13797         [POSIX || XPG3] (FPE_FLTINV): Likewise.
13798         [POSIX || XPG3] (FPE_FLTSUB): Likewise.
13799         [POSIX || XPG3] (SEGV_MAPERR): Likewise.
13800         [POSIX || XPG3] (SEGV_ACCERR): Likewise.
13801         [POSIX || XPG3] (BUS_ADRALN): Likewise.
13802         [POSIX || XPG3] (BUS_ADRERR): Likewise.
13803         [POSIX || XPG3] (BUS_OBJERR): Likewise.
13804         [POSIX || XPG3] (CLD_EXITED): Likewise.
13805         [POSIX || XPG3] (CLD_KILLED): Likewise.
13806         [POSIX || XPG3] (CLD_DUMPED): Likewise.
13807         [POSIX || XPG3] (CLD_TRAPPED): Likewise.
13808         [POSIX || XPG3] (CLD_STOPPED): Likewise.
13809         [POSIX || XPG3] (CLD_CONTINUED): Likewise.
13810         [POSIX || XPG3] (POLL_IN): Likewise.
13811         [POSIX || XPG3] (POLL_OUT): Likewise.
13812         [POSIX || XPG3] (POLL_MSG): Likewise.
13813         [POSIX || XPG3] (POLL_ERR): Likewise.
13814         [POSIX || XPG3] (POLL_PRI): Likewise.
13815         [POSIX || XPG3] (POLL_HUP): Likewise.
13816         [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
13817         [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
13818         (SIG*): Do not allow.
13819         [XPG3] (si_*): Likewise.
13820         [XPG3] (SI_*): Likewise.
13821         [XPG3 || XPG4] (sigev_*): Likewise.
13822         [XPG3 || XPG4] (SIGEV_*): Likewise.
13823         [XPG3 || XPG4] (sival_*): Likewise.
13824         [POSIX || XPG3 || XPG4] (uc_*): Likewise.
13825         [POSIX || XPG3] (BUS_*): Likewise.
13826         [POSIX || XPG3] (CLD_*): Likewise.
13827         [POSIX || XPG3] (FPE_*): Likewise.
13828         [POSIX || XPG3] (ILL_*): Likewise.
13829         [POSIX || XPG3] (POLL_*): Likewise.
13830         [POSIX || XPG3] (SEGV_*): Likewise.
13831         [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
13832         [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
13833         [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
13834         [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
13835         [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
13836         * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
13837         Specify type and value.
13838         (TVERSLEN): Likewise.
13839         (REGTYPE): Likewise.
13840         (AREGTYPE): Likewise.
13841         (LNKTYPE): Likewise.
13842         (SYMTYPE): Likewise.
13843         (CHRTYPE): Likewise.
13844         (BLKTYPE): Likewise.
13845         (DIRTYPE): Likewise.
13846         (FIFOTYPE): Likewise.
13847         (CONTTYPE): Likewise.
13848         (TSUID): Likewise.
13849         (TSGID): Likewise.
13850         (TSVTX): Likewise.
13851         (TUREAD): Likewise.
13852         (TUWRITE): Likewise.
13853         (TUEXEC): Likewise.
13854         (TGREAD): Likewise.
13855         (TGWRITE): Likewise.
13856         (TGEXEC): Likewise.
13857         (TOREAD): Likewise.
13858         (TOWRITE): Likewise.
13859         (TOEXEC): Likewise.
13860         [POSIX] (TSVTX): Expect constant.
13861
13862 2014-03-06  Joseph Myers  <joseph@codesourcery.com>
13863
13864         * Makefile (tests): Change dependencies to ....
13865         (tests-special): ... additions to this variable.
13866         (tests): Depend on $(tests-special).
13867         * Makerules (check-abi-list): New variable.
13868         (check-abi): Depend on $(check-abi-list).
13869         [$(subdir) = elf] (tests-special): Add
13870         $(objpfx)check-abi-libc.out.
13871         [$(build-shared) = yes && subdir] (tests-special): Add
13872         $(check-abi-list).
13873         [$(build-shared) = yes && subdir] (tests): Do not depend on
13874         check-abi.
13875         * Rules (tests): Depend on $(tests-special).
13876         (xtests): Depend on $(xtests-special).
13877         * catgets/Makefile (tests): Change dependencies to ....
13878         (tests-special): ... additions to this variable.
13879         * conform/Makefile (tests): Change dependencies to ....
13880         (tests-special): ... additions to this variable.
13881         * elf/Makefile (tests): Change dependencies to ....
13882         (tests-special): ... additions to this variable.
13883         * grp/Makefile (tests): Change dependencies to ....
13884         (tests-special): ... additions to this variable.
13885         * iconv/Makefile (xtests): Change dependencies to ....
13886         (xtests-special): ... additions to this variable.
13887         * iconvdata/Makefile (tests): Change dependencies to ....
13888         (tests-special): ... additions to this variable.
13889         * intl/Makefile (tests): Change dependencies to ....
13890         (tests-special): ... additions to this variable.  Also add
13891         $(objpfx)tst-gettext.out.
13892         * io/Makefile (tests): Change dependencies to ....
13893         (tests-special): ... additions to this variable.
13894         * libio/Makefile (tests): Change dependencies to ....
13895         (tests-special): ... additions to this variable.
13896         * malloc/Makefile (tests): Change dependencies to ....
13897         (tests-special): ... additions to this variable.
13898         * misc/Makefile (tests): Change dependencies to ....
13899         (tests-special): ... additions to this variable.
13900         * nptl/Makefile (tests): Change dependencies to ....
13901         (tests-special): ... additions to this variable.
13902         * nptl_db/Makefile (tests): Change dependencies to ....
13903         (tests-special): ... additions to this variable.
13904         * posix/Makefile (tests): Change dependencies to ....
13905         (tests-special): ... additions to this variable.
13906         (xtests): Change dependencies to ....
13907         (xtests-special): ... additions to this variable.
13908         * resolv/Makefile (tests): Change dependencies to ....
13909         (tests-special): ... additions to this variable.
13910         (xtests): Change dependencies to ....
13911         (xtests-special): ... additions to this variable.
13912         * stdio-common/Makefile (tests): Change dependencies to ....
13913         (tests-special): ... additions to this variable.
13914         (do-tst-unbputc): Remove target.
13915         (do-tst-printf): Likewise.
13916         * stdlib/Makefile (tests): Change dependencies to ....
13917         (tests-special): ... additions to this variable.
13918         * string/Makefile (tests): Change dependencies to ....
13919         (tests-special): ... additions to this variable.
13920         * sysdeps/x86/Makefile (tests): Change dependencies to ....
13921         (tests-special): ... additions to this variable.
13922
13923         * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
13924         whole file.
13925         * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
13926         whole file.
13927         * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
13928         * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
13929
13930         * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
13931         * conform/data/arpa/inet.h-data [XPG3]: Likewise.
13932         * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
13933         * conform/data/fmtmsg.h-data [XPG3]: Likewise.
13934         * conform/data/libgen.h-data [XPG3]: Likewise.
13935         * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
13936         * conform/data/ndbm.h-data [XPG3]: Likewise.
13937         * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
13938         * conform/data/netdb.h-data [XPG3]: Likewise.
13939         * conform/data/netinet/in.h-data [XPG3]: Likewise.
13940         * conform/data/poll.h-data [XPG3]: Likewise.
13941         * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
13942         * conform/data/strings.h-data [XPG3]: Likewise.
13943         * conform/data/stropts.h-data [XPG3]: Likewise.
13944         * conform/data/sys/mman.h-data [XPG3]: Likewise.
13945         * conform/data/sys/resource.h-data [XPG3]: Likewise.
13946         * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
13947         Likewise.
13948         * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
13949         * conform/data/sys/time.h-data [XPG3]: Likewise.
13950         * conform/data/sys/timeb.h-data [XPG3]: Likewise.
13951         * conform/data/sys/uio.h-data [XPG3]: Likewise.
13952         * conform/data/sys/un.h-data [XPG3]: Likewise.
13953         * conform/data/syslog.h-data [XPG3]: Likewise.
13954         * conform/data/ucontext.h-data [XPG3]: Likewise.
13955         * conform/data/utmpx.h-data [XPG3]: Likewise.
13956         * conform/data/varargs.h-data [UNIX98]: Enable file.
13957
13958         * manual/Makefile (INSTALL_INFO): Remove variable setting.
13959
13960         * math/libm-test.inc (struct test_f_f_data): Move expected results
13961         into structure for each rounding mode.
13962         (struct test_ff_f_data): Likewise.
13963         (struct test_ff_f_data_nexttoward): Likewise.
13964         (struct test_fi_f_data): Likewise.
13965         (struct test_fl_f_data): Likewise.
13966         (struct test_if_f_data): Likewise.
13967         (struct test_fff_f_data): Likewise.
13968         (struct test_c_f_data): Likewise.
13969         (struct test_f_f1_data): Likewise.
13970         (struct test_fF_f1_data): Likewise.
13971         (struct test_ffI_f1_data): Likewise.
13972         (struct test_c_c_data): Likewise.
13973         (struct test_cc_c_data): Likewise.
13974         (struct test_f_i_data): Likewise.
13975         (struct test_ff_i_data): Likewise.
13976         (struct test_f_l_data): Likewise.
13977         (struct test_f_L_data): Likewise.
13978         (struct test_fFF_11_data): Likewise.
13979         (RM_): New macro.
13980         (RM_FE_DOWNWARD): Likewise.
13981         (RM_FE_TONEAREST): Likewise.
13982         (RM_FE_TOWARDZERO): Likewise.
13983         (RM_FE_UPWARD): Likewise.
13984         (RUN_TEST_LOOP_f_f): Update references to expected results.
13985         (RUN_TEST_LOOP_2_f): Likewise.
13986         (RUN_TEST_LOOP_fff_f): Likewise.
13987         (RUN_TEST_LOOP_c_f): Likewise.
13988         (RUN_TEST_LOOP_f_f1): Likewise.
13989         (RUN_TEST_LOOP_fF_f1): Likewise.
13990         (RUN_TEST_LOOP_fI_f1): Likewise.
13991         (RUN_TEST_LOOP_ffI_f1): Likewise.
13992         (RUN_TEST_LOOP_c_c): Likewise.
13993         (RUN_TEST_LOOP_cc_c): Likewise.
13994         (RUN_TEST_LOOP_f_i): Likewise.
13995         (RUN_TEST_LOOP_f_i_tg): Likewise.
13996         (RUN_TEST_LOOP_ff_i_tg): Likewise.
13997         (RUN_TEST_LOOP_f_b): Likewise.
13998         (RUN_TEST_LOOP_f_b_tg): Likewise.
13999         (RUN_TEST_LOOP_f_l): Likewise.
14000         (RUN_TEST_LOOP_f_L): Likewise.
14001         (RUN_TEST_LOOP_fFF_11): Likewise.
14002         * math/gen-libm-test.pl (parse_args): Output four copies of
14003         expected results for each test.
14004
14005         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14006         (__ASSUME_UTIMES): Remove.
14007         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14008         (__ASSUME_UTIMES): Likewise.
14009
14010         * math/gen-auto-libm-tests.c: Update comment on output format.
14011         (output_for_one_input_case): Generate before-rounding and
14012         after-rounding information as conditions on output flags not
14013         floating-point format.
14014         * math/auto-libm-test-out: Regenerated.
14015         * math/gen-libm-test.pl (cond_value): New function.
14016         (or_cond_value): Use cond_value.
14017         (generate_testfile): Handle conditional exceptions.
14018
14019 2014-03-05  Joseph Myers  <joseph@codesourcery.com>
14020
14021         * math/libm-test.inc (max_valid_error): New variable.
14022         (init_max_error): Take new argument specifying whether function
14023         results are exactly determined.  Set max_valid_error and bound
14024         other variables for errors based on this argument.
14025         (set_max_error): Do not record results above max_valid_error.
14026         (check_float_internal): Only accept errors of up to 0.5ulps if
14027         also at most max_valid_error.
14028         (START): Take new argument EXACT and pass it to init_max_error.
14029         (acos_test): Update call to START.
14030         (acos_test_tonearest): Likewise.
14031         (acos_test_towardzero): Likewise.
14032         (acos_test_downward): Likewise.
14033         (acos_test_upward): Likewise.
14034         (acosh_test): Likewise.
14035         (asin_test): Likewise.
14036         (asin_test_tonearest): Likewise.
14037         (asin_test_towardzero): Likewise.
14038         (asin_test_downward): Likewise.
14039         (asin_test_upward): Likewise.
14040         (asinh_test): Likewise.
14041         (atan_test): Likewise.
14042         (atanh_test): Likewise.
14043         (atan2_test): Likewise.
14044         (cabs_test): Likewise.
14045         (cacos_test): Likewise.
14046         (cacosh_test): Likewise.
14047         (carg_test): Likewise.
14048         (casin_test): Likewise.
14049         (casinh_test): Likewise.
14050         (catan_test): Likewise.
14051         (catanh_test): Likewise.
14052         (cbrt_test): Likewise.
14053         (ccos_test): Likewise.
14054         (ccosh_test): Likewise.
14055         (ceil_test): Likewise.
14056         (cexp_test): Likewise.
14057         (cimag_test): Likewise.
14058         (clog_test): Likewise.
14059         (clog10_test): Likewise.
14060         (conj_test): Likewise.
14061         (copysign_test): Likewise.
14062         (cos_test): Likewise.
14063         (cos_test_tonearest): Likewise.
14064         (cos_test_towardzero): Likewise.
14065         (cos_test_downward): Likewise.
14066         (cos_test_upward): Likewise.
14067         (cosh_test): Likewise.
14068         (cosh_test_tonearest): Likewise.
14069         (cosh_test_towardzero): Likewise.
14070         (cosh_test_downward): Likewise.
14071         (cosh_test_upward): Likewise.
14072         (cpow_test): Likewise.
14073         (cproj_test): Likewise.
14074         (creal_test): Likewise.
14075         (csin_test): Likewise.
14076         (csinh_test): Likewise.
14077         (csqrt_test): Likewise.
14078         (ctan_test): Likewise.
14079         (ctan_test_tonearest): Likewise.
14080         (ctan_test_towardzero): Likewise.
14081         (ctan_test_downward): Likewise.
14082         (ctan_test_upward): Likewise.
14083         (ctanh_test): Likewise.
14084         (ctanh_test_tonearest): Likewise.
14085         (ctanh_test_towardzero): Likewise.
14086         (ctanh_test_downward): Likewise.
14087         (ctanh_test_upward): Likewise.
14088         (erf_test): Likewise.
14089         (erfc_test): Likewise.
14090         (exp_test): Likewise.
14091         (exp_test_tonearest): Likewise.
14092         (exp_test_towardzero): Likewise.
14093         (exp_test_downward): Likewise.
14094         (exp_test_upward): Likewise.
14095         (exp10_test): Likewise.
14096         (exp10_test_tonearest): Likewise.
14097         (exp10_test_towardzero): Likewise.
14098         (exp10_test_downward): Likewise.
14099         (exp10_test_upward): Likewise.
14100         (pow10_test): Likewise.
14101         (exp2_test): Likewise.
14102         (expm1_test): Likewise.
14103         (expm1_test_tonearest): Likewise.
14104         (expm1_test_towardzero): Likewise.
14105         (expm1_test_downward): Likewise.
14106         (expm1_test_upward): Likewise.
14107         (fabs_test): Likewise.
14108         (fdim_test): Likewise.
14109         (floor_test): Likewise.
14110         (fma_test): Likewise.
14111         (fma_test_towardzero): Likewise.
14112         (fma_test_downward): Likewise.
14113         (fma_test_upward): Likewise.
14114         (fmax_test): Likewise.
14115         (fmin_test): Likewise.
14116         (fmod_test): Likewise.
14117         (fpclassify_test): Likewise.
14118         (frexp_test): Likewise.
14119         (hypot_test): Likewise.
14120         (ilogb_test): Likewise.
14121         (isfinite_test): Likewise.
14122         (finite_test): Likewise.
14123         (isgreater_test): Likewise.
14124         (isgreaterequal_test): Likewise.
14125         (isinf_test): Likewise.
14126         (isless_test): Likewise.
14127         (islessequal_test): Likewise.
14128         (islessgreater_test): Likewise.
14129         (isnan_test): Likewise.
14130         (isnormal_test): Likewise.
14131         (issignaling_test): Likewise.
14132         (isunordered_test): Likewise.
14133         (j0_test): Likewise.
14134         (j1_test): Likewise.
14135         (jn_test): Likewise.
14136         (ldexp_test): Likewise.
14137         (lgamma_test): Likewise.
14138         (gamma_test): Likewise.
14139         (lrint_test): Likewise.
14140         (lrint_test_tonearest): Likewise.
14141         (lrint_test_towardzero): Likewise.
14142         (lrint_test_downward): Likewise.
14143         (lrint_test_upward): Likewise.
14144         (llrint_test): Likewise.
14145         (llrint_test_tonearest): Likewise.
14146         (llrint_test_towardzero): Likewise.
14147         (llrint_test_downward): Likewise.
14148         (llrint_test_upward): Likewise.
14149         (log_test): Likewise.
14150         (log10_test): Likewise.
14151         (log1p_test): Likewise.
14152         (log2_test): Likewise.
14153         (logb_test): Likewise.
14154         (logb_test_downward): Likewise.
14155         (lround_test): Likewise.
14156         (llround_test): Likewise.
14157         (modf_test): Likewise.
14158         (nearbyint_test): Likewise.
14159         (nextafter_test): Likewise.
14160         (nexttoward_test): Likewise.
14161         (pow_test): Likewise.
14162         (pow_test_tonearest): Likewise.
14163         (pow_test_towardzero): Likewise.
14164         (pow_test_downward): Likewise.
14165         (pow_test_upward): Likewise.
14166         (remainder_test): Likewise.
14167         (drem_test): Likewise.
14168         (remainder_test_tonearest): Likewise.
14169         (drem_test_tonearest): Likewise.
14170         (remainder_test_towardzero): Likewise.
14171         (drem_test_towardzero): Likewise.
14172         (remainder_test_downward): Likewise.
14173         (drem_test_downward): Likewise.
14174         (remainder_test_upward): Likewise.
14175         (drem_test_upward): Likewise.
14176         (remquo_test): Likewise.
14177         (rint_test): Likewise.
14178         (rint_test_tonearest): Likewise.
14179         (rint_test_towardzero): Likewise.
14180         (rint_test_downward): Likewise.
14181         (rint_test_upward): Likewise.
14182         (round_test): Likewise.
14183         (scalb_test): Likewise.
14184         (scalbn_test): Likewise.
14185         (scalbln_test): Likewise.
14186         (signbit_test): Likewise.
14187         (sin_test): Likewise.
14188         (sin_test_tonearest): Likewise.
14189         (sin_test_towardzero): Likewise.
14190         (sin_test_downward): Likewise.
14191         (sin_test_upward): Likewise.
14192         (sincos_test): Likewise.
14193         (sinh_test): Likewise.
14194         (sinh_test_tonearest): Likewise.
14195         (sinh_test_towardzero): Likewise.
14196         (sinh_test_downward): Likewise.
14197         (sinh_test_upward): Likewise.
14198         (sqrt_test): Likewise.
14199         (sqrt_test_tonearest): Likewise.
14200         (sqrt_test_towardzero): Likewise.
14201         (sqrt_test_downward): Likewise.
14202         (sqrt_test_upward): Likewise.
14203         (tan_test): Likewise.
14204         (tan_test_tonearest): Likewise.
14205         (tan_test_towardzero): Likewise.
14206         (tan_test_downward): Likewise.
14207         (tan_test_upward): Likewise.
14208         (tanh_test): Likewise.
14209         (tgamma_test): Likewise.
14210         (trunc_test): Likewise.
14211         (y0_test): Likewise.
14212         (y1_test): Likewise.
14213         (yn_test): Likewise.
14214         (significand_test): Likewise.
14215
14216         * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
14217         individual tests in comment.
14218         (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
14219         (prev_max_error): New variable.
14220         (prev_real_max_error): Likewise.
14221         (prev_imag_max_error): Likewise.
14222         (compare_ulp_data): Don't refer to test names in comment.
14223         (find_test_ulps): Remove function.
14224         (find_function_ulps): Likewise.
14225         (find_complex_function_ulps): Likewise.
14226         (init_max_error): Take function name as argument.  Look up ulps
14227         for that function.
14228         (print_ulps): Remove function.
14229         (print_max_error): Use prev_max_error instead of calling
14230         find_function_ulps.
14231         (print_complex_max_error): Use prev_real_max_error and
14232         prev_imag_max_error instead of calling find_complex_function_ulps.
14233         (check_float_internal): Take max_ulp parameter instead of calling
14234         find_test_ulps.  Don't call print_ulps.
14235         (check_float): Update call to check_float_internal.
14236         (check_complex): Update calls to check_float_internal.
14237         (START): Pass argument to init_max_error.
14238         * math/gen-libm-test.pl (%results): Don't include "kind"
14239         information.
14240         (parse_ulps): Don't handle ulps of individual tests.
14241         (print_ulps_file): Likewise.
14242         (output_ulps): Likewise.
14243         * math/README.libm-test: Update.
14244         * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
14245         individual tests.
14246         * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
14247         * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
14248         * sysdeps/arm/libm-test-ulps: Likewise.
14249         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
14250         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
14251         * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
14252         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
14253         * sysdeps/microblaze/libm-test-ulps: Likewise.
14254         * sysdeps/mips/mips32/libm-test-ulps: Likewise.
14255         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
14256         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
14257         * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
14258         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
14259         * sysdeps/sh/libm-test-ulps: Likewise.
14260         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
14261         * sysdeps/tile/libm-test-ulps: Likewise.
14262         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14263
14264 2014-03-04  Joseph Myers  <joseph@codesourcery.com>
14265
14266         * math/libm-test.inc (print_complex_max_error): Check separately
14267         whether real and imaginary errors are within allowed range and
14268         pass 0 to print_complex_function_ulps instead of value within
14269         allowed range.
14270
14271 2014-03-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
14272
14273         * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
14274         formatting.
14275         (get_handles_fopen): Likewise.
14276         (do_write_test): Likewise.
14277
14278         * libio/wfileops.c (do_ftell_wide): Fix up formatting.
14279
14280         * libio/fileops.c (do_ftell): Use cached offset when
14281         available.
14282         * libio/iofwide.c (do_ftell_wide): Likewise.
14283         * libio/iofdopen.c (_IO_new_fdopen): Don't use
14284         _IO_file_attach.
14285         * libio/wfileops.c (_IO_fwide): Don't cache offset.
14286
14287         [BZ #16532]
14288         * libio/libioP.h (get_file_offset): New function.
14289         * libio/fileops.c (get_file_offset): Likewise.
14290         (do_ftell): Likewise.
14291         (_IO_new_file_seekoff): Split out ftell logic.
14292         * libio/wfileops.c (do_ftell_wide): Likewise.
14293         (_IO_wfile_seekoff): Split out ftell logic.
14294         * libio/tst-ftell-active-handler.c: New test case.
14295         * libio/Makefile (tests): Add it.
14296
14297 2014-03-03  Roland McGrath  <roland@hack.frob.com>
14298
14299         * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
14300         * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
14301
14302 2014-03-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
14303
14304         [BZ #16639]
14305         * nscd/connections.c (nscd_init): Call do_exit.
14306         (start_threads): Call do_exit and notify_parent.
14307         (begin_drop_privileges): Call do_exit.
14308         (finish_drop_privileges): Likewise.
14309         * nscd/selinux.c (preserve_capabilities): Likewise.
14310         (install_real_capabilities): Likewise.
14311         (nscd_selinux_enabled): Likewise.
14312         (avc_create_thread): Likewise.
14313         (avc_alloc_lock): Likewise.
14314         (nscd_avc_init): Likewise.
14315         * nscd/nscd.c (parent_fd): New static variable.
14316         (main): Create a pipe between parent and child processes.
14317         Skip closing parent_fd.
14318         (monitor_child): New function.
14319         (do_exit): Likewise.
14320         (notify_parent): Likewise.
14321         * nscd/nscd.h (notify_parent): Likewise.
14322         (do_exit): Likewise.
14323
14324 2014-03-03  Carlos O'Donell  <carlos@redhat.com>
14325
14326         * malloc/malloc.c (__libc_calloc): Revert last change.
14327
14328 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14329
14330         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14331
14332 2014-03-03  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
14333
14334         * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
14335         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
14336         implementation.
14337         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14338         (__libc_ifunc_impl_list): Likewise.
14339         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
14340         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
14341         * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
14342         * string/strrchr.c: Define STRRCHR.
14343
14344 2014-02-28  Ondřej Bílka  <neleai@seznam.cz>
14345
14346         * benchtest/bench-strtok.c (simple_strtok): Delete.
14347         (strtok_string): Use as benchmark.
14348         * string/strtok (STRTOK): New macro.
14349
14350 2014-02-28  Carlos O'Donell  <carlos@redhat.com>
14351
14352         * manual/threads.texi: Add header and standard comments to all
14353         functions.
14354
14355         * elf/dl-lookup.c (check_match): New function.
14356         (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
14357         (do_lookup_x): Remove nested function check_match. Use non-nested
14358         function check_match.
14359
14360 2014-02-28  Roland McGrath  <roland@hack.frob.com>
14361
14362         * csu/Makefile (generated, before-compile): Use += rather than =.
14363         * catgets/Makefile (generated, generated-dirs): Likewise.
14364         * debug/Makefile (generated): Likewise.
14365         * dlfcn/Makefile (generated): Likewise.
14366         * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
14367         * iconvdata/Makefile (before-compile, generated): Likewise.
14368         * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
14369         * libio/Makefile (generated): Likewise.
14370         * malloc/Makefile (generated): Likewise.
14371         * manual/Makefile (generated, generated-dirs): Likewise.
14372         * misc/Makefile (generated): Likewise.
14373         * posix/Makefile (generated): Likewise.
14374         * resolv/Makefile (generated): Likewise.
14375         * sunrpc/Makefile (generated, generated-dirs): Likewise.
14376         * timezone/Makefile (generated, generated-dirs): Likewise.
14377
14378         * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
14379
14380 2014-02-27  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14381
14382         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
14383         power8 implementation.
14384         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
14385         file: POWER8 llround ifunc implementation.
14386         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
14387         (__lllround): Add POWER8 implementation.
14388         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
14389         POWER8 llround implementation.
14390
14391         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
14392         power8 implementation.
14393         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
14394         file: POWER8 llrint ifunc implementation.
14395         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
14396         Add POWER8 implementation.
14397         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
14398         POWER8 llrint implementation.
14399
14400         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
14401         power8 implementation.
14402         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
14403         file: POWER8 finite ifunc implementation.
14404         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
14405         Add POWER8 implementation.
14406         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
14407         Likewise.
14408         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
14409         POWER8 finite implementation.
14410         * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
14411
14412         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
14413         power8 implementation.
14414         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
14415         file: POWER8 isinf ifunc implementation.
14416         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
14417         POWER8 implementation.
14418         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
14419         Likewise.
14420         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
14421         isinf implementation.
14422         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
14423
14424         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
14425         (INIT_ARCH): Add hwcap2 initialization.
14426         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
14427         power8 implementation.
14428         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
14429         file: POWER8 isnan ifunc implementation.
14430         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
14431         POWER8 implementation.
14432         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
14433         Likewise.
14434         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
14435         isnan implementation.
14436         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
14437
14438 2014-02-27  Joey Ye  <joey.ye@arm.com>
14439
14440         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
14441         (_FP_NANFRAC_Q): Set to zero.
14442
14443 2014-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
14444
14445         [BZ #16623]
14446         * math/auto-libm-test-in: New test inputs.
14447         * math/auto-libm-test-out: Regenerate.
14448         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
14449         and DA.
14450         (__cos): Likewise.
14451         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
14452
14453 2014-02-27  Joseph Myers  <joseph@codesourcery.com>
14454
14455         * scripts/evaluate-test.sh: Take new argument indicating whether
14456         failure is expected.
14457         * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
14458         indicating whether failure is expected.
14459         * conform/Makefile (test-xfail-run-conformtest): New variable.
14460         ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
14461         level.
14462         * posix/Makefile (test-xfail-annexc): New variable.
14463         ($(objpfx)annexc.out): Don't expect to fail at makefile level.
14464
14465 2014-02-26  Joseph Myers  <joseph@codesourcery.com>
14466
14467         * argp/Makefile: Include Makeconfig immediately after defining
14468         subdir.
14469         * assert/Makefile: Likewise.
14470         * benchtests/Makefile: Likewise.
14471         * catgets/Makefile: Likewise.
14472         * conform/Makefile: Likewise.
14473         * crypt/Makefile: Likewise.
14474         * csu/Makefile: Likewise.
14475         (all): Remove target.
14476         * ctype/Makefile: Include Makeconfig immediately after defining
14477         subdir.
14478         * debug/Makefile: Likewise.
14479         * dirent/Makefile: Likewise.
14480         * dlfcn/Makefile: Likewise.
14481         * gmon/Makefile: Likewise.
14482         * gnulib/Makefile: Likewise.
14483         * grp/Makefile: Likewise.
14484         * gshadow/Makefile: Likewise.
14485         * hesiod/Makefile: Likewise.
14486         * hurd/Makefile: Likewise.
14487         (all): Remove target.
14488         * iconvdata/Makefile: Include Makeconfig immediately after
14489         defining subdir.
14490         * inet/Makefile: Likewise.
14491         * intl/Makefile: Likewise.
14492         * io/Makefile: Likewise.
14493         * libio/Makefile: Likewise.
14494         (all): Remove target.
14495         * locale/Makefile: Include Makeconfig immediately after defining
14496         subdir.
14497         * login/Makefile: Likewise.
14498         * mach/Makefile: Likewise.
14499         (all): Remove target.
14500         * malloc/Makefile: Include Makeconfig immediately after defining
14501         subdir.
14502         (all): Remove target.
14503         * manual/Makefile: Include Makeconfig immediately after defining
14504         subdir.
14505         * math/Makefile: Likewise.
14506         * misc/Makefile: Likewise.
14507         * nis/Makefile: Likewise.
14508         * nss/Makefile: Likewise.
14509         * po/Makefile: Likewise.
14510         (all): Remove target.
14511         * posix/Makefile: Include Makeconfig immediately after defining
14512         subdir.
14513         * pwd/Makefile: Likewise.
14514         * resolv/Makefile: Likewise.
14515         * resource/Makefile: Likewise.
14516         * rt/Makefile: Likewise.
14517         * setjmp/Makefile: Likewise.
14518         * shadow/Makefile: Likewise.
14519         * signal/Makefile: Likewise.
14520         * socket/Makefile: Likewise.
14521         * soft-fp/Makefile: Likewise.
14522         * stdio-common/Makefile: Likewise.
14523         * stdlib/Makefile: Likewise.
14524         * streams/Makefile: Likewise.
14525         * string/Makefile: Likewise.
14526         * sunrpc/Makefile: Likewise.
14527         (all): Remove target.
14528         * sysvipc/Makefile: Include Makeconfig immediately after defining
14529         subdir.
14530         * termios/Makefile: Likewise.
14531         * time/Makefile: Likewise.
14532         * timezone/Makefile: Likewise.
14533         (all): Remove target.
14534         * wcsmbs/Makefile: Include Makeconfig immediately after defining
14535         subdir.
14536         * wctype/Makefile: Likewise.
14537
14538 2014-02-26  Steve Ellcey  <sellcey@mips.com>
14539
14540         * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
14541         (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
14542         (libc_feholdexcept_setround_mips): Ditto.
14543         (libc_feholdsetround): New.
14544         (libc_feholdsetroundf): New.
14545         (libc_feholdsetroundl): New.
14546         (libc_feupdateenv_test_mips): New.
14547         (libc_feupdateenv_test): New.
14548         (libc_feupdateenv_testf): New.
14549         (libc_feupdateenv_testl): New.
14550         (libc_feresetround): New.
14551         (libc_feresetroundf): New.
14552         (libc_feresetroundl): New.
14553         (libc_fetestexcept_mips): New.
14554         (libc_fetestexcept): New.
14555         (libc_fetestexceptf): New.
14556         (libc_fetestexceptl): New.
14557         (HAVE_RM_CTX): New.
14558         (libc_feholdexcept_setround_mips_ctx): New.
14559         (libc_feholdexcept_setround_ctx): New.
14560         (libc_feholdexcept_setroundf_ctx): New.
14561         (libc_feholdexcept_setroundl_ctx): New.
14562         (libc_fesetenv_mips_ctx): New.
14563         (libc_fesetenv_ctx): New.
14564         (libc_fesetenv_ctxf): New.
14565         (libc_fesetenv_ctxl): New.
14566         (libc_feupdateenv_mips_ctx): New.
14567         (libc_feupdateenv_ctx): New.
14568         (libc_feupdateenvf_ctx): New.
14569         (libc_feupdateenvl_ctx): New.
14570         (libc_feholdsetround_mips_ctx): New.
14571         (libc_feholdsetround_ctx): New.
14572         (libc_feholdsetroundf_ctx): New.
14573         (libc_feholdsetroundl_ctx): New.
14574         (libc_feresetround_mips_ctx): New.
14575         (libc_feresetround_ctx): New.
14576         (libc_feresetroundf_ctx): New.
14577         (libc_feresetroundl_ctx): New.
14578
14579 2014-02-26  Carlos O'Donell  <carlos@redhat.com>
14580
14581         * manual/ipc.texi (Semaphores): Use @Theglibc{}.
14582
14583         * manual/ipc.texi: New file.
14584         * manual/Makefile (chapters): Add ipc.
14585         * manual/job.texi: Add "Inter-Process Communication" to next.
14586         * manual/process.texi: Add "Inter-Process Communication" to prev.
14587
14588 2014-02-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14589
14590         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14591
14592 2014-02-26  Ondřej Bílka  <neleai@seznam.cz>
14593
14594         * malloc/malloc.c (__libc_calloc): Simplify implementation.
14595
14596         * manual/arith.texi: Fix spaces after sentences.
14597         * manual/charset.texi: Likewise.
14598         * manual/errno.texi: Likewise.
14599         * manual/install.texi: Likewise.
14600         * manual/llio.texi: Likewise.
14601         * manual/locale.texi: Likewise.
14602         * manual/maint.texi: Likewise.
14603         * manual/math.texi: Likewise.
14604         * manual/memory.texi: Likewise.
14605         * manual/message.texi: Likewise.
14606         * manual/probes.texi: Likewise.
14607         * manual/resource.texi: Likewise.
14608         * manual/signal.texi: Likewise.
14609         * manual/socket.texi: Likewise.
14610         * manual/stdio.texi: Likewise.
14611         * manual/string.texi: Likewise.
14612         * manual/time.texi: Likewise.
14613         * manual/users.texi: Likewise.
14614
14615 2014-02-25  Carlos O'Donell  <carlos@redhat.com>
14616
14617         [BZ #16632]
14618         * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
14619         _DEFAULT_SOURCE is defined.
14620
14621 2014-02-25  Ulrich Drepper  <drepper@gmail.com>
14622             Carlos O'Donell  <carlos@redhat.com>
14623
14624         [BZ #16613]
14625         * elf/dl-tls.c (_dl_count_modids): New function.
14626         * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
14627         * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
14628         audit library and increment generation counter.
14629         (_dl_allocate_tls_init): Add assertion to check TLS generation count.
14630         * elf/tst-audit9.c: New file.
14631         * elf/tst-auditmod9a.c: New file.
14632         * elf/tst-auditmod9b.c: New file.
14633         * elf/Makefile: Add rules to build and run tst-audit9.
14634
14635 2014-02-25  Florian Weimer  <fweimer@redhat.com>
14636
14637         [BZ #15347]
14638         * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
14639
14640 2014-02-25  Will Newton  <will.newton@linaro.org>
14641
14642         * sysdeps/arm/__longjmp.S: Include stap-probe.h.
14643         (__longjmp): Restore sp and lr before restoring callee
14644         saved registers.  Add longjmp and longjmp_target
14645         SystemTap probe point.
14646         * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
14647         * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
14648         Define to zero to match jmpbuf layout.
14649         * sysdeps/arm/setjmp.S: Include stap-probe.h.
14650         (__sigsetjmp): Save sp and lr before saving callee
14651         saved registers.  Add setjmp SystemTap probe point.
14652
14653 2014-02-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
14654
14655         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
14656
14657 2014-02-24  Andreas Schwab  <schwab@suse.de>
14658
14659         [BZ #15804]
14660         * elf/pldd.c (wait_for_ptrace_stop): New function.
14661         (main): Call it after attaching.
14662
14663 2014-02-22  Roland McGrath  <roland@hack.frob.com>
14664
14665         * Makerules ($(common-objpfx)Versions.v.i): No longer depend
14666         on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
14667         Versions files is now verboten.
14668         * hurd/Versions (libc: GLIBC_2.0):
14669         Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
14670         (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
14671         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
14672         * mach/Versions: Likewise.
14673
14674         * csu/Versions: Remove unused %include.
14675         * resolv/Versions: Likewise.
14676
14677 2014-02-21  Joseph Myers  <joseph@codesourcery.com>
14678
14679         * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
14680         ($(objpfx)check-local-headers.out): Likewise.
14681         ($(objpfx)begin-end-check.out): Likewise.
14682         * Makerules (check-abi-%.out): Likewise.
14683         * catgets/Makefile ($(objpfx)test1.cat): Likewise.
14684         ($(objpfx)test2.cat): Likewise.
14685         ($(objpfx)de/libc.cat): Likewise.
14686         ($(objpfx)test-gencat.out): Likewise.
14687         * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
14688         * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
14689         ($(objpfx)noload-mem): Likewise.
14690         ($(objpfx)tst-pathopt.out): Likewise.
14691         ($(objpfx)tst-rtld-load-self.out): Likewise.
14692         ($(objpfx)tst-array1-cmp.out): Likewise.
14693         ($(objpfx)tst-array1-static-cmp.out): Likewise.
14694         ($(objpfx)tst-array2-cmp.out): Likewise.
14695         ($(objpfx)tst-array3-cmp.out): Likewise.
14696         ($(objpfx)tst-array4-cmp.out): Likewise.
14697         ($(objpfx)tst-array5-cmp.out): Likewise.
14698         ($(objpfx)tst-array5-static-cmp.out): Likewise.
14699         ($(objpfx)check-textrel.out): Likewise.
14700         ($(objpfx)check-execstack.out): Likewise.
14701         ($(objpfx)check-localplt.out): Likewise.
14702         ($(objpfx)order2-cmp.out): Likewise.
14703         ($(objpfx)tst-leaks1-mem): Likewise.
14704         ($(objpfx)tst-leaks1-static-mem): Likewise.
14705         ($(objpfx)tst-initorder-cmp.out): Likewise.
14706         ($(objpfx)tst-initorder2-cmp.out): Likewise.
14707         ($(objpfx)tst-unused-dep.out): Likewise.
14708         ($(objpfx)tst-unused-dep-cmp.out): Likewise.
14709         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
14710         * iconv/Makefile (test-iconvconfig): Likewise.
14711         * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
14712         ($(objpfx)iconv-test.out): Likewise.
14713         ($(objpfx)tst-tables.out): Likewise.
14714         * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
14715         ($(objpfx)tst-gettext.out): Likewise.
14716         ($(objpfx)tst-translit.out): Likewise.
14717         ($(objpfx)tst-gettext2.out): Likewise.
14718         ($(objpfx)tst-gettext4.out): Likewise.
14719         ($(objpfx)tst-gettext6.out): Likewise.
14720         * io/Makefile ($(objpfx)ftwtest.out): Likewise.
14721         * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
14722         ($(objpfx)tst-fopenloc-cmp.out): Likewise.
14723         ($(objpfx)tst-fopenloc-mem.out): Likewise.
14724         * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
14725         * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
14726         * posix/Makefile ($(objpfx)globtest.out): Likewise.
14727         ($(objpfx)wordexp-tst.out): Likewise.
14728         ($(objpfx)annexc.out): Likewise.
14729         ($(objpfx)tst-fnmatch-mem): Likewise.
14730         ($(objpfx)bug-regex2-mem): Likewise.
14731         ($(objpfx)bug-regex14-mem): Likewise.
14732         ($(objpfx)bug-regex21-mem): Likewise.
14733         ($(objpfx)bug-regex31-mem): Likewise.
14734         ($(objpfx)tst-vfork3-mem): Likewise.
14735         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
14736         ($(objpfx)tst-pcre-mem): Likewise.
14737         ($(objpfx)tst-boost-mem): Likewise.
14738         ($(objpfx)tst-getconf.out): Likewise.
14739         ($(objpfx)bug-ga2-mem): Likewise.
14740         ($(objpfx)bug-glob2-mem): Likewise.
14741         * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
14742         ($(objpfx)mtrace-tst-leaks2): Likewise.
14743         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
14744         ($(objpfx)tst-printf.out): Likewise.
14745         ($(objpfx)tst-setvbuf1.out): Likewise.
14746         ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
14747         * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
14748         ($(objpfx)tst-fmtmsg.out): Likewise.
14749         * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
14750         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
14751
14752         * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
14753         * bits/sigaction.h [__USE_MISC]: Likewise.
14754         * bits/waitstatus.h: Update #endif comments.
14755         * ctype/ctype.h: Likewise.
14756         * dirent/dirent.h: Likewise.
14757         [__USE_MISC]: Remove redundant conditionals.
14758         * grp/grp.h: Update #endif comments.
14759         [__USE_GNU]: Remove redundant conditionals.
14760         [__USE_MISC]: Likewise.
14761         * inet/netinet/in.h [__USE_GNU]: Likewise.
14762         * io/sys/stat.h [__USE_MISC]: Likewise.
14763         * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
14764         * libio/bits/stdio.h: Update #endif comments.
14765         [__USE_MISC]: Remove redundant conditionals.
14766         * libio/bits/stdio2.h [__USE_MISC]: Likewise.
14767         * libio/stdio.h: Update #endif comments.
14768         [__USE_MISC]: Remove redundant conditionals.
14769         * math/bits/math-finite.h [__USE_MISC]: Likewise.
14770         * math/bits/mathcalls.h [__USE_MISC]: Likewise.
14771         * math/math.h: Update #else and #endif comments.
14772         [__USE_MISC]: Remove redundant conditionals.
14773         * misc/sys/uio.h: Update #endif comments.
14774         * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
14775         * posix/glob.h [__USE_MISC]: Likewise.
14776         * posix/sys/types.h: Update #endif comments.
14777         [__USE_MISC]: Remove redundant conditionals.
14778         * posix/sys/wait.h: Update #endif comments.
14779         [__USE_MISC]: Remove redundant conditionals.
14780         * posix/unistd.h: Update #endif comments.
14781         [__USE_MISC]: Remove redundant conditionals.
14782         * pwd/pwd.h [__USE_GNU]: Likewise.
14783         [__USE_MISC]: Likewise.
14784         * resolv/netdb.h [__USE_GNU]: Likewise.
14785         * signal/signal.h: Update #endif comments.
14786         [__USE_MISC]: Remove redundant conditionals.
14787         * stdlib/stdlib.h: Update #else and #endif comments.
14788         [__USE_MISC]: Remove redundant conditionals.
14789         [__USE_GNU]: Likewise.
14790         * string/bits/string2.h [__USE_MISC]: Likewise.
14791         * string/string.h: Update #endif comments.
14792         [__USE_MISC]: Remove redundant conditionals.
14793         * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
14794         Likewise.
14795         * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
14796         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
14797         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
14798         Likewise.
14799         * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
14800         Likewise.
14801         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
14802         comments.
14803         [__USE_MISC]: Remove redundant conditionals.
14804         * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
14805         * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
14806         * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
14807         * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
14808         * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
14809         Likewise.
14810         * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
14811         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
14812         Likewise.
14813         * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
14814         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
14815         Likewise.
14816         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
14817         Likewise.
14818         * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
14819         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
14820         Likewise.
14821         * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
14822         Likewise.
14823         * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
14824         * sysdeps/x86/bits/string.h: Update #endif comments.
14825         * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
14826         conditionals.
14827         * time/sys/time.h: Update #endif comments.
14828         * time/time.h: Likewise.
14829         [__USE_MISC]: Remove redundant conditionals.
14830
14831 2014-02-21  Yury Gribov  <y.gribov@samsung.com>
14832
14833         [BZ #16600]
14834         * sysdeps/arm/libm-test-ulps: Update for VFPv4.
14835
14836 2014-02-21  Andreas Schwab  <schwab@linux-m68k.org>
14837
14838         * Versions.def (librt): Add GLIBC_2.17.
14839
14840 2014-02-21  Adam Conrad  <adconrad@0c3.net>
14841
14842         * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
14843         synonym for _SYS_AUXV_H to allow direct inclusion.
14844         * sysdeps/sparc/bits/hwcap.h: Likewise.
14845         * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
14846         _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
14847         * sysdeps/sparc/sysdep.h: Likewise.
14848
14849 2014-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
14850
14851         * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
14852
14853 2014-02-21  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
14854
14855         * benchtests/bench-strrchr.c: Print length instead of position.
14856
14857 2014-02-20  Joseph Myers  <joseph@codesourcery.com>
14858
14859         [BZ #16611]
14860         * sysdeps/unix/sysv/linux/kernel-features.h
14861         [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
14862         (__ASSUME_SENDMMSG_SOCKETCALL): Define.
14863         [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
14864         __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
14865         Likewise.
14866         [__i386__ || __powerpc__ || __sh__ || __sparc__]
14867         (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14868         [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
14869         (__ASSUME_SENDMMSG): Define instead of using previous
14870         [__LINUX_KERNEL_VERSION >= 0x020627] condition.
14871         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14872         (__ASSUME_SENDMMSG_SYSCALL): Define.
14873         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14874         [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
14875         Likewise.
14876         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14877         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14878         Likewise.
14879         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14880         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14881         Likewise.
14882         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
14883         && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
14884         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
14885         [__ASSUME_SENDMMSG]: Change conditionals to
14886         [__ASSUME_SENDMMSG_SOCKETCALL].
14887         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14888         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
14889         Define.
14890         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14891         [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
14892         Likewise.
14893         * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
14894         !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
14895         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
14896         [!__ASSUME_SENDMMSG]: Change conditional to
14897         [!__ASSUME_SENDMMSG_SOCKETCALL].
14898         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14899         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14900         Define.
14901
14902         [BZ #16610]
14903         * sysdeps/unix/sysv/linux/kernel-features.h
14904         [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
14905         (__ASSUME_RECVMMSG_SOCKETCALL): Define.
14906         [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
14907         __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
14908         || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
14909         [__i386__ || __sparc__]
14910         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14911         [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
14912         (__ASSUME_RECVMMSG): Define instead of using previous
14913         [__LINUX_KERNEL_VERSION >= 0x020621] condition.
14914         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14915         (__ASSUME_RECVMMSG_SYSCALL): Define.
14916         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14917         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14918         Likewise.
14919         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14920         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14921         Likewise.
14922         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14923         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14924         Likewise.
14925         * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
14926         && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
14927         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
14928         [__ASSUME_RECVMMSG]: Change condition to
14929         [__ASSUME_RECVMMSG_SOCKETCALL].
14930         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14931         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14932         Define.
14933         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14934         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14935         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14936         Likewise.
14937         * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
14938         !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
14939         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
14940         [!__ASSUME_RECVMMSG]: Change condition to
14941         [!__ASSUME_RECVMMSG_SOCKETCALL].
14942         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14943         (__ASSUME_RECVMMSG_SYSCALL): Define.
14944
14945         [BZ #16609]
14946         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
14947         __powerpc__ || __s390__ || __sh__ || __sparc__]
14948         (__ASSUME_SOCKETCALL): Define.
14949         [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
14950         (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
14951         [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
14952         || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
14953         __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
14954         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
14955         [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
14956         (__ASSUME_ACCEPT4): Define instead of using previous
14957         [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
14958         __powerpc__ || __sparc__ || __s390__)] condition.
14959         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14960         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
14961         * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
14962         !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
14963         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
14964         [!__ASSUME_ACCEPT4]: Change condition to
14965         [!__ASSUME_ACCEPT4_SOCKETCALL].
14966         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14967         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
14968         condition to [__LINUX_KERNEL_VERSION >= 0x030200].
14969         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14970         [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
14971         __ASSUME_ACCEPT4_SYSCALL.
14972         * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
14973         Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
14974         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14975         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
14976         __ASSUME_ACCEPT4_SYSCALL.
14977         * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
14978         && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
14979         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
14980         [__ASSUME_ACCEPT4]: Change condition to
14981         [__ASSUME_ACCEPT4_SOCKETCALL].
14982         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
14983         (__ASSUME_SOCKETCALL): Define.
14984         [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
14985         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14986         (__ASSUME_SOCKETCALL): Define.
14987         (__ASSUME_ACCEPT4): Remove.
14988         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
14989         Define.
14990         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14991         [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
14992         Likewise.
14993         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14994         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
14995
14996         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
14997         macro.
14998         (HWCAP_ARM_LPAE): Likewise.
14999         (HWCAP_ARM_EVTSTRM): Likewise.
15000         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
15001         Add vpfd32, lpae and evtstrm.
15002         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
15003         Increase to 22.
15004
15005 2014-02-19  Joseph Myers  <joseph@codesourcery.com>
15006
15007         * math/auto-libm-test-in: Add tests of clog10.
15008         * math/auto-libm-test-out: Regenerated.
15009         * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
15010         * sysdeps/i386/fpu/libm-test-ulps: Update.
15011         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15012
15013 2014-02-18  Andreas Schwab  <schwab@suse.de>
15014
15015         [BZ #16574]
15016         * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
15017         Store non-zero if the second buffer was newly allocated.
15018         (send_dg): Likewise.
15019         (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
15020         to send_vc and send_dg.
15021         (res_nsend): Pass NULL for ansp2_malloced.
15022         * resolv/res_query.c (__libc_res_nquery): Add parameter
15023         answerp2_malloced and pass it down to __libc_res_nsend.
15024         (res_nquery): Pass additional NULL to __libc_res_nquery.
15025         (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
15026         down to __libc_res_nquery and __libc_res_nquerydomain.  Deallocate
15027         second answer buffer if answerp2_malloced was set.
15028         (res_nsearch): Pass additional NULL to __libc_res_nsearch.
15029         (__libc_res_nquerydomain): Add parameter
15030         answerp2_malloced and pass it down to __libc_res_nquery.
15031         (res_nquerydomain): Pass additional NULL to
15032         __libc_res_nquerydomain.
15033         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
15034         additional NULL to __libc_res_nsend and __libc_res_nquery.
15035         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
15036         additional NULL to __libc_res_nsearch.
15037         (_nss_dns_gethostbyname4_r): Revert last change.  Use new
15038         parameter of __libc_res_nsearch to check for separately allocated
15039         second buffer.
15040         (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
15041         __libc_res_nquery.
15042         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
15043         additional NULL to __libc_res_nquery.
15044         * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
15045         __libc_res_nsearch.
15046         (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
15047         * include/resolv.h: Update prototypes of __libc_res_nquery,
15048         __libc_res_nsearch, __libc_res_nsend.
15049
15050 2014-02-18  Joseph Myers  <joseph@codesourcery.com>
15051
15052         * math/auto-libm-test-in: Add tests of fma.
15053         * math/auto-libm-test-out: Regenerated.
15054         * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
15055         (fma_towardzero_test_data): Likewise.
15056         (fma_downward_test_data): Likewise.
15057         (fma_upward_test_data): Likewise.
15058         * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
15059         mpc_mode.
15060         (rounding_modes): Add values for new field.
15061         (func_calc_method): Add value mpfr_fff_f.
15062         (func_calc_desc): Add mpfr_fff_f union field.
15063         (test_function): Add field exact_args.
15064         (FUNC): Add macro argument EXACT_ARGS.
15065         (FUNC_mpfr_f_f): Update call to FUNC.
15066         (FUNC_mpfr_f_f): Likewise.
15067         (FUNC_mpfr_ff_f): Likewise.
15068         (FUNC_mpfr_if_f): Likewise.
15069         (FUNC_mpc_c_f): Likewise.
15070         (FUNC_mpc_c_c): Likewise.
15071         (test_functions): Add fma.  Update calls to FUNC.
15072         (handle_input_arg): Add argument exact_args.
15073         (add_test): Update call to handle_input_arg.
15074         (calc_generic_results): Add argument mode.  Handle mpfr_fff_f.
15075         (output_for_one_input_case): Update call to calc_generic_results.
15076         Recalculate exact zero results in each rounding mode.
15077
15078         * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
15079         non-negative before setting low bit.
15080         * math/auto-libm-test-in: Mark one asin test possibly having
15081         spurious underflow.
15082         * math/auto-libm-test-out: Regenerated.
15083         * sysdeps/i386/fpu/libm-test-ulps: Update.
15084         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15085
15086 2014-02-17  David Holsgrove <david.holsgrove@xilinx.com>
15087
15088         * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
15089         * sysdeps/unix/sysv/linux/microblaze: Move directory from
15090         ports/sysdeps/unix/sysv/linux/microblaze.
15091         * README: Add missing listing for microblaze*-*-linux-gnu.
15092
15093 2014-02-16  Ondřej Bílka  <neleai@seznam.cz>
15094
15095         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
15096         duplicate code
15097
15098 2014-02-16  Mike Frysinger  <vapier@gentoo.org>
15099
15100         * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
15101         * sysdeps/unix/sysv/linux/ia64: Move directory from
15102         ports/sysdeps/unix/sysv/linux/ia64.
15103         * README: Update listing for ia64-*-linux-gnu.
15104
15105 2014-02-14  Tomas Dohnalek  <tdohnale@redhat.com>
15106             Joseph Myers  <joseph@codesourcery.com>
15107
15108         * Makeconfig (test-name): New variable.
15109         (evaluate-test): Likewise.
15110         * Makerules (do-test-clean): Remove .test-result files.
15111         (common-mostlyclean): Likewise.
15112         * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
15113         * scripts/evaluate-test.sh: New file.
15114
15115 2014-02-14  Joseph Myers  <joseph@codesourcery.com>
15116
15117         * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
15118         separate $(objpfx)tst-fopenloc-cmp.out and
15119         $(objpfx)tst-fopenloc-mem.out targets.
15120         (tests): Update dependencies.
15121         * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
15122         (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
15123         tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
15124         (tst-rxspencer-no-utf8-ARGS): New variable.
15125         (tst-rxspencer-no-utf8-ENV): Likewise.
15126         (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
15127         instead of $(objpfx)tst-rxspencer-mem.
15128         ($(objpfx)tst-rxspencer-mem): Change target to
15129         $(objpfx)tst-rxspencer-no-utf8-mem.  Depend on
15130         $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
15131         * posix/tst-rxspencer-no-utf8.c: New file.
15132
15133         * elf/Makefile ($(objpfx)order.out): Remove rule.
15134         [$(run-built-tests) = yes] (tests): Depend on
15135         $(objpfx)order-cmp.out.
15136         ($(objpfx)order-cmp.out): New rule.
15137         [$(run-built-tests) = yes] (tests): Depend on
15138         $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
15139         $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
15140         $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
15141         $(objpfx)tst-array5-static-cmp.out.
15142         ($(objpfx)tst-array1.out): Remove rule.
15143         ($(objpfx)tst-array1-cmp.out): New rule.
15144         ($(objpfx)tst-array1-static.out): Remove rule.
15145         ($(objpfx)tst-array1-static-cmp.out): New rule.
15146         ($(objpfx)tst-array2.out): Remove rule.
15147         ($(objpfx)tst-array2-cmp.out): New rule.
15148         ($(objpfx)tst-array3.out): Remove rule.
15149         ($(objpfx)tst-array3-cmp.out): New rule.
15150         ($(objpfx)tst-array4.out): Remove rule.
15151         ($(objpfx)tst-array4-cmp.out): New rule.
15152         ($(objpfx)tst-array5.out): Remove rule.
15153         ($(objpfx)tst-array5-cmp.out): New rule.
15154         ($(objpfx)tst-array5-static.out): Remove rule.
15155         ($(objpfx)tst-array5-static-cmp.out): New rule.
15156         [$(run-built-tests) = yes] (tests): Depend on
15157         $(objpfx)order2-cmp.out.
15158         ($(objpfx)order2.out): Remove rule.
15159         ($(objpfx)order2-cmp.out): New rule.
15160         ($(objpfx)tst-initorder.out): Remove rule.
15161         [$(run-built-tests) = yes] (tests): Depend on
15162         $(objpfx)tst-initorder-cmp.out.
15163         ($(objpfx)tst-initorder-cmp.out): New rule.
15164         ($(objpfx)tst-initorder2.out): Remove rule.
15165         [$(run-built-tests) = yes] (tests): Depend on
15166         $(objpfx)tst-initorder2-cmp.out.
15167         ($(objpfx)tst-initorder2-cmp.out): New rule.
15168         [$(run-built-tests) = yes] (tests): Depend on
15169         $(objpfx)tst-unused-dep-cmp.out.
15170         ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
15171         ($(objpfx)tst-unused-dep-cmp.out): New rule.
15172         * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
15173         on $(objpfx)tst-setvbuf1-cmp.out.
15174         ($(objpfx)tst-setvbuf1.out): Do not run cmp.
15175         ($(objpfx)tst-setvbuf1-cmp.out): New rule.
15176         * string/Makefile [$(run-built-tests) = yes] (tests): Depend
15177         $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
15178         ($(objpfx)tst-svc.out): Remove rule.
15179         ($(objpfx)tst-svc-cmp.out): New rule.
15180
15181 2014-02-13  Joseph Myers  <joseph@codesourcery.com>
15182
15183         * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
15184         * ctype/ctype.h [__USE_MISC]: Likewise.
15185         * dirent/dirent.h [__USE_MISC]: Likewise.
15186         * grp/grp.h [__USE_MISC]: Likewise.
15187         * io/fcntl.h [__USE_MISC]: Likewise.
15188         * io/sys/stat.h [__USE_MISC]: Likewise.
15189         * libio/stdio.h [__USE_MISC]: Likewise.
15190         * posix/unistd.h [__USE_MISC]: Likewise.
15191         * pwd/pwd.h [__USE_MISC]: Likewise.
15192         * stdlib.h [__USE_MISC]: Likewise.
15193         * string/bits/string2.h [__USE_MISC]: Likewise.
15194         * string/string.h [__USE_MISC]: Likewise.
15195         * time/time.h [__USE_MISC]: Likewise.
15196
15197 2014-02-13  Andreas Schwab  <schwab@suse.de>
15198
15199         [BZ #16574]
15200         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
15201         second answer buffer if it was separately allocated.
15202
15203 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
15204
15205         * sysdeps/mips/math-tests.h: Include <features.h>.
15206         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
15207         (ROUNDING_TESTS_long_double): Do not define.
15208         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
15209         (EXCEPTION_TESTS_long_double): Likewise.
15210         * sysdeps/mips/mips64/libm-test-ulps: Update.
15211
15212         * include/features.h (__USE_BSD): Remove macro definitions.
15213         (__USE_SVID): Likewise.
15214         (_BSD_SOURCE): Likewise.
15215         (_SVID_SOURCE): Likewise.
15216         [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
15217         from definition of _DEFAULT_SOURCE.
15218         [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
15219         [_DEFAULT_SOURCE].
15220         * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
15221         * bits/mman.h [__USE_BSD]: Likewise.
15222         * bits/termios.h [__USE_BSD]: Likewise.
15223         * bits/waitstatus.h [__USE_BSD]: Likewise.
15224         * ctype/ctype.h [__USE_SVID]: Likewise.
15225         * dirent/dirent.h [__USE_BSD]: Likewise.
15226         * grp/grp.h [__USE_SVID]: Likewise.
15227         [__USE_BSD]: Likewise.
15228         * inet/netinet/igmp.h [__USE_BSD]: Likewise.
15229         * io/fcntl.h [__USE_BSD]: Likewise.
15230         * io/ftw.h [__USE_BSD]: Likewise.
15231         * io/sys/stat.h [__USE_BSD]: Likewise.
15232         * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
15233         * libio/bits/stdio2.h [__USE_BSD]: Likewise.
15234         * libio/stdio.h [__USE_SVID]: Likewise.
15235         [__USE_BSD]: Likewise.
15236         * math/math.h [__USE_SVID]: Likewise.
15237         [__USE_BSD]: Likewise.
15238         * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
15239         * misc/bits/syslog.h [__USE_BSD]: Likewise.
15240         * misc/search.h [__USE_SVID]: Likewise.
15241         * misc/sys/mman.h [__USE_BSD]: Likewise.
15242         * misc/sys/syslog.h [__USE_BSD]: Likewise.
15243         * misc/sys/uio.h [__USE_BSD]: Likewise.
15244         * posix/bits/unistd.h [__USE_BSD]: Likewise.
15245         * posix/glob.h [__USE_BSD]: Likewise.
15246         * posix/regex.h [__USE_BSD]: Likewise.
15247         * posix/sys/types.h [__USE_BSD]: Likewise.
15248         [__USE_SVID]: Likewise.
15249         * posix/sys/utsname.h [__USE_SVID]: Likewise.
15250         * posix/sys/wait.h [__USE_BSD]: Likewise.
15251         [__USE_SVID]: Likewise.
15252         * posix/unistd.h [__USE_BSD]: Likewise.
15253         [__USE_SVID]: Likewise.
15254         * pwd/pwd.h [__USE_SVID]: Likewise.
15255         * resolv/netdb.h [__USE_BSD]: Likewise.
15256         * setjmp/setjmp.h [__USE_BSD]: Likewise.
15257         * signal/signal.h [__USE_BSD]: Likewise.
15258         [__USE_SVID]: Likewise.
15259         * socket/sys/socket.h [__USE_BSD]: Likewise.
15260         * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
15261         * stdlib/stdlib.h [__USE_BSD]: Likewise.
15262         [__USE_SVID]: Likewise.
15263         * string/bits/string2.h [__USE_BSD]: Likewise.
15264         [__USE_SVID]: Likewise.
15265         * string/bits/string3.h [__USE_BSD]: Likewise.
15266         * string/endian.h [__USE_BSD]: Likewise.
15267         * string/string.h [__USE_SVID]: Likewise.
15268         [__USE_BSD]: Likewise.
15269         * string/strings.h [__USE_BSD]: Likewise.
15270         * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
15271         * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
15272         * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
15273         * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
15274         * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
15275         * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
15276         Likewise.
15277         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
15278         Likewise.
15279         * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
15280         * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
15281         Likewise.
15282         * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
15283         * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
15284         Likewise.
15285         * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
15286         Likewise.
15287         * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
15288         * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
15289         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
15290         Likewise.
15291         * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
15292         Likewise.
15293         * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
15294         * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
15295         * termios/termios.h [__USE_BSD]: Likewise.
15296         * time/sys/time.h [__USE_BSD]: Likewise.
15297         * time/time.h [__USE_BSD]: Likewise.
15298         [__USE_SVID]: Likewise.
15299
15300         * Makefile (subdir_targets): Remove subdir_lint.out.
15301
15302         * stdio-common/Makefile (do-tst-unbputc): Remove target.
15303         (do-tst-printf): Likewise.
15304         (tests): Depend directly on $(objpfx)tst-unbputc.out and
15305         $(objpfx)tst-printf.out.
15306
15307         * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
15308
15309         * Makerules (check-abi-%): Change target to
15310         $(objpfx)check-abi-%.out.
15311         (check-abi target): Update dependencies.
15312         (check-abi-pattern variable): Redirect output of diff to $@.
15313         (check-abi variable): Likewise.
15314         * elf/Makefile (check-abi): Update dependencies.
15315
15316         * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
15317         unused.
15318         (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
15319         value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
15320         subnormal range.
15321         (_FP_PACK_CANONICAL): Determine tininess based on rounding to
15322         normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
15323         value has largest subnormal exponent.
15324         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
15325         (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
15326         * sysdeps/aarch64/soft-fp/sfp-machine.h
15327         (_FP_TININESS_AFTER_ROUNDING): New macro.
15328         * sysdeps/alpha/soft-fp/sfp-machine.h
15329         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15330         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15331         Likewise.
15332         * sysdeps/mips/mips64/soft-fp/sfp-machine.h
15333         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15334         * sysdeps/mips/soft-fp/sfp-machine.h
15335         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15336         * sysdeps/powerpc/soft-fp/sfp-machine.h
15337         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15338         * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15339         Likewise.
15340         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
15341         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15342         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
15343         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15344         * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15345         Likewise.
15346
15347 2014-02-12  Dylan Alex Simon  <dylan@dylex.net>
15348
15349         [BZ #16545]
15350         * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
15351         model 1.
15352
15353 2014-02-12  Richard Henderson  <rth@redhat.com>
15354
15355         * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
15356         * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
15357         * sysdeps/unix/sysv/linux/alpha: Move directory from
15358         ports/sysdeps/unix/sysv/linux/alpha.
15359         * README: Update listing for alpha-*-linux-gnu.
15360
15361 2014-02-11  Joseph Myers  <joseph@codesourcery.com>
15362
15363         * include/features.h: Update comment documenting feature test
15364         macros.
15365         [_BSD_SOURCE || _SVID_SOURCE]: Give #warning.  Define
15366         _DEFAULT_SOURCE.
15367         * manual/creature.texi (_BSD_SOURCE): Remove documentation.
15368         (_SVID_SOURCE): Likewise.
15369         (_DEFAULT_SOURCE): Update description of default features.
15370         (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
15371         with _GNU_SOURCE.
15372         * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
15373         (S_ISVTX): Likewise.
15374         * manual/math.texi (Mathematical Constants): Likewise.
15375         * manual/signal.texi (Interrupted Primitives): Likewise.
15376         * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
15377         * math/test-matherr.c (_SVID_SOURCE): Do not define.
15378         * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
15379         Don't refer to _SVID_SOURCE in warning text.
15380
15381         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
15382
15383         * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
15384         already defined.
15385         (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
15386         * sysdeps/mips/dl-lookup.c: Remove.
15387         * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
15388
15389 2014-02-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
15390
15391         [BZ #16447]
15392         * math/auto-libm-test-in: Add testcase for expl.
15393         * math/auto-libm-test-out: Regenerate.
15394         * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
15395         calculation of unsafe.
15396         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
15397
15398 2014-02-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
15399
15400         * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
15401         * sysdeps/unix/sysv/linux/aarch64: Move directory from
15402         ports/sysdeps/unix/sysv/linux/aarch64.
15403         * README: Update listing for aarch64*-*-linux-gnu.
15404
15405 2014-02-11  Will Newton  <will.newton@linaro.org>
15406
15407         * manual/probes.texi (Mathematical Function Probes): Use
15408         "triggered" instead of "hit".
15409
15410         * manual/probes.texi (Internal Probes): Add documentation
15411         of setjmp, longjmp and longjmp_target probes.
15412
15413         * include/stap-probe.h: Add comment about probe argument
15414         format.
15415
15416         * malloc/mtrace.c (attribute_hidden): Remove unused macro
15417         definition.  (tr_where, tr_freehook, tr_mallochook,
15418         tr_reallochook, tr_memalignhook): Use ANSI protoype.
15419
15420 2014-02-11  David S. Miller  <davem@davemloft.net>
15421
15422         * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
15423         processing int_tests.
15424
15425 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
15426
15427         * sysdeps/mips: Move directory from ports/sysdeps/mips.
15428         * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
15429         * sysdeps/unix/sysv/linux/mips: Move directory from
15430         ports/sysdeps/unix/sysv/linux/mips.
15431         * README: Update listing for mips-*-linux-gnu and
15432         mips64-*-linux-gnu.
15433
15434 2014-02-10  Andreas Schwab  <schwab@linux-m68k.org>
15435
15436         * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
15437         * sysdeps/unix/sysv/linux/m68k: Move directory from
15438         ports/sysdeps/unix/sysv/linux/m68k.
15439         * README: Update listing for m68k-*-linux-gnu.
15440
15441 2014-02-10  Chris Metcalf  <cmetcalf@tilera.com>
15442
15443         * sysdeps/tile: Move directory from ports/sysdeps/tile.
15444         * sysdeps/unix/sysv/linux/generic: Move directory from
15445         ports/sysdeps/unix/sysv/linux/generic.
15446         * sysdeps/unix/sysv/linux/tile: Move directory from
15447         ports/sysdeps/unix/sysv/linux/tile.
15448         * README: Update listing for tile*-*-linux-gnu.
15449
15450 2014-02-10  Ondřej Bílka  <neleai@seznam.cz>
15451
15452         * assert/assert.c (__assert_fail_base): Use glibc_likely instead
15453         __builtin_expect.
15454         * benchtests/bench-memmem.c (simple_memmem): Likewise.
15455         * catgets/open_catalog.c (__open_catalog): Likewise.
15456         * csu/libc-start.c (LIBC_START_MAIN): Likewise.
15457         * debug/confstr_chk.c: Likewise.
15458         * debug/fread_chk.c (__fread_chk): Likewise.
15459         * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
15460         * debug/getgroups_chk.c: Likewise.
15461         * debug/mbsnrtowcs_chk.c: Likewise.
15462         * debug/mbsrtowcs_chk.c: Likewise.
15463         * debug/mbstowcs_chk.c: Likewise.
15464         * debug/memcpy_chk.c: Likewise.
15465         * debug/memmove_chk.c: Likewise.
15466         * debug/mempcpy_chk.c: Likewise.
15467         * debug/memset_chk.c: Likewise.
15468         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
15469         * debug/strcat_chk.c (__strcat_chk): Likewise.
15470         * debug/strcpy_chk.c (__strcpy_chk): Likewise.
15471         * debug/strncat_chk.c (__strncat_chk): Likewise.
15472         * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
15473         * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
15474         * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
15475         * debug/wcpncpy_chk.c: Likewise.
15476         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
15477         * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
15478         * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
15479         * debug/wcsncpy_chk.c: Likewise.
15480         * debug/wcsnrtombs_chk.c: Likewise.
15481         * debug/wcsrtombs_chk.c: Likewise.
15482         * debug/wcstombs_chk.c: Likewise.
15483         * debug/wmemcpy_chk.c: Likewise.
15484         * debug/wmemmove_chk.c: Likewise.
15485         * debug/wmempcpy_chk.c: Likewise.
15486         * debug/wmemset_chk.c: Likewise.
15487         * dirent/scandirat.c (SCANDIRAT): Likewise.
15488         * dlfcn/dladdr1.c (dladdr1): Likewise.
15489         * dlfcn/dladdr.c (dladdr): Likewise.
15490         * dlfcn/dlclose.c (dlclose_doit): Likewise.
15491         * dlfcn/dlerror.c (__dlerror): Likewise.
15492         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
15493         * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
15494         * dlfcn/dlopen.c (dlopen_doit): Likewise.
15495         * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
15496         * dlfcn/dlsym.c (dlsym_doit): Likewise.
15497         * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
15498         * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
15499         * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
15500         Likewise.
15501         * elf/dl-conflict.c: Likewise.
15502         * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
15503         * elf/dl-dst.h: Likewise.
15504         * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
15505         * elf/dl-fptr.c (_dl_make_fptr): Likewise.
15506         * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
15507         * elf/dl-init.c (call_init, _dl_init): Likewise.
15508         * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
15509         * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
15510         (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
15511         Likewise.
15512         * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
15513         Likewise.
15514         * elf/dl-minimal.c (__libc_memalign): Likewise.
15515         * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
15516         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
15517         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
15518         * elf/dl-sym.c (do_sym): Likewise.
15519         * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
15520         (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
15521         * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
15522         * elf/dl-writev.h (_dl_writev): Likewise.
15523         * elf/ldconfig.c (search_dir): Likewise.
15524         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
15525         (dl_main): Likewise.
15526         * elf/setup-vdso.h (setup_vdso): Likewise.
15527         * grp/compat-initgroups.c (compat_call): Likewise.
15528         * grp/fgetgrent.c (fgetgrent): Likewise.
15529         * grp/initgroups.c (getgrouplist, initgroups): Likewise.
15530         * grp/putgrent.c (putgrent): Likewise.
15531         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
15532         Likewise.
15533         * hurd/hurdinit.c: Likewise.
15534         * iconvdata/8bit-gap.c (struct): Likewise.
15535         * iconvdata/ansi_x3.110.c : Likewise.
15536         * iconvdata/big5.c : Likewise.
15537         * iconvdata/big5hkscs.c : Likewise.
15538         * iconvdata/cp1255.c: Likewise.
15539         * iconvdata/cp1258.c : Likewise.
15540         * iconvdata/cp932.c : Likewise.
15541         * iconvdata/euc-cn.c: Likewise.
15542         * iconvdata/euc-jisx0213.c : Likewise.
15543         * iconvdata/euc-jp.c: Likewise.
15544         * iconvdata/euc-jp-ms.c : Likewise.
15545         * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
15546         * iconvdata/gb18030.c : Likewise.
15547         * iconvdata/gbbig5.c (const): Likewise.
15548         * iconvdata/gbgbk.c: Likewise.
15549         * iconvdata/gbk.c : Likewise.
15550         * iconvdata/ibm1364.c : Likewise.
15551         * iconvdata/ibm930.c : Likewise.
15552         * iconvdata/ibm932.c: Likewise.
15553         * iconvdata/ibm933.c : Likewise.
15554         * iconvdata/ibm935.c : Likewise.
15555         * iconvdata/ibm937.c : Likewise.
15556         * iconvdata/ibm939.c : Likewise.
15557         * iconvdata/ibm943.c: Likewise.
15558         * iconvdata/iso_11548-1.c: Likewise.
15559         * iconvdata/iso-2022-cn.c : Likewise.
15560         * iconvdata/iso-2022-cn-ext.c : Likewise.
15561         * iconvdata/iso-2022-jp-3.c: Likewise.
15562         * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
15563         * iconvdata/iso-2022-kr.c : Likewise.
15564         * iconvdata/iso646.c (gconv_end): Likewise.
15565         * iconvdata/iso_6937-2.c : Likewise.
15566         * iconvdata/iso_6937.c : Likewise.
15567         * iconvdata/iso8859-1.c: Likewise.
15568         * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
15569         * iconvdata/shift_jisx0213.c : Likewise.
15570         * iconvdata/sjis.c : Likewise.
15571         * iconvdata/t.61.c : Likewise.
15572         * iconvdata/tcvn5712-1.c : Likewise.
15573         * iconvdata/tscii.c: Likewise.
15574         * iconvdata/uhc.c : Likewise.
15575         * iconvdata/unicode.c (gconv_end): Likewise.
15576         * iconvdata/utf-16.c (gconv_end): Likewise.
15577         * iconvdata/utf-32.c (gconv_end): Likewise.
15578         * iconvdata/utf-7.c (base64): Likewise.
15579         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
15580         * iconv/gconv_close.c (__gconv_close): Likewise.
15581         * iconv/gconv_open.c (__gconv_open): Likewise.
15582         * iconv/gconv_simple.c (internal_ucs4_loop_single)
15583         (ucs4_internal_loop, ucs4_internal_loop_unaligned)
15584         (ucs4_internal_loop_single, internal_ucs4le_loop_single)
15585         (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
15586         (ucs4le_internal_loop_single): Likewise.
15587         * iconv/iconv.c (iconv): Likewise.
15588         * iconv/iconv_close.c: Likewise.
15589         * iconv/loop.c (SINGLE): Likewise.
15590         * iconv/skeleton.c (FUNCTION_NAME): Likewise.
15591         * include/atomic.h: Likewise.
15592         * inet/inet6_option.c (option_alloc): Likewise.
15593         * intl/bindtextdom.c (set_binding_values): Likewise.
15594         * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
15595         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
15596         * intl/localealias.c (read_alias_file): Likewise.
15597         * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
15598         * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
15599         (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
15600         * libio/fmemopen.c (fmemopen): Likewise.
15601         * libio/iofgets.c (_IO_fgets): Likewise.
15602         * libio/iofgets_u.c (fgets_unlocked): Likewise.
15603         * libio/iofgetws.c (fgetws): Likewise.
15604         * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
15605         * libio/iogetdelim.c (_IO_getdelim): Likewise.
15606         * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
15607         (adjust_wide_data, _IO_wfile_seekoff): Likewise.
15608         * locale/findlocale.c (_nl_find_locale): Likewise.
15609         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
15610         * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
15611         Likewise.
15612         * locale/setlocale.c (setlocale): Likewise.
15613         * login/programs/pt_chown.c (main): Likewise.
15614         * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
15615         * malloc/malloc.c (_int_malloc, _int_free): Likewise.
15616         * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
15617         (mmap, mmap64, mremap, munmap): Likewise.
15618         * math/e_exp2l.c: Likewise.
15619         * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
15620         * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
15621         * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
15622         * math/s_catan.c (__catan): Likewise.
15623         * math/s_catanf.c (__catanf): Likewise.
15624         * math/s_catanh.c (__catanh): Likewise.
15625         * math/s_catanhf.c (__catanhf): Likewise.
15626         * math/s_catanhl.c (__catanhl): Likewise.
15627         * math/s_catanl.c (__catanl): Likewise.
15628         * math/s_ccosh.c (__ccosh): Likewise.
15629         * math/s_ccoshf.c (__ccoshf): Likewise.
15630         * math/s_ccoshl.c (__ccoshl): Likewise.
15631         * math/s_cexp.c (__cexp): Likewise.
15632         * math/s_cexpf.c (__cexpf): Likewise.
15633         * math/s_cexpl.c (__cexpl): Likewise.
15634         * math/s_clog10.c (__clog10): Likewise.
15635         * math/s_clog10f.c (__clog10f): Likewise.
15636         * math/s_clog10l.c (__clog10l): Likewise.
15637         * math/s_clog.c (__clog): Likewise.
15638         * math/s_clogf.c (__clogf): Likewise.
15639         * math/s_clogl.c (__clogl): Likewise.
15640         * math/s_csin.c (__csin): Likewise.
15641         * math/s_csinf.c (__csinf): Likewise.
15642         * math/s_csinh.c (__csinh): Likewise.
15643         * math/s_csinhf.c (__csinhf): Likewise.
15644         * math/s_csinhl.c (__csinhl): Likewise.
15645         * math/s_csinl.c (__csinl): Likewise.
15646         * math/s_csqrt.c (__csqrt): Likewise.
15647         * math/s_csqrtf.c (__csqrtf): Likewise.
15648         * math/s_csqrtl.c (__csqrtl): Likewise.
15649         * math/s_ctan.c (__ctan): Likewise.
15650         * math/s_ctanf.c (__ctanf): Likewise.
15651         * math/s_ctanh.c (__ctanh): Likewise.
15652         * math/s_ctanhf.c (__ctanhf): Likewise.
15653         * math/s_ctanhl.c (__ctanhl): Likewise.
15654         * math/s_ctanl.c (__ctanl): Likewise.
15655         * math/w_pow.c: Likewise.
15656         * math/w_powf.c: Likewise.
15657         * math/w_powl.c: Likewise.
15658         * math/w_scalb.c (sysv_scalb): Likewise.
15659         * math/w_scalbf.c (sysv_scalbf): Likewise.
15660         * math/w_scalbl.c (sysv_scalbl): Likewise.
15661         * misc/error.c (error_tail): Likewise.
15662         * misc/pselect.c (__pselect): Likewise.
15663         * nis/nis_callback.c (__nis_create_callback): Likewise.
15664         * nis/nis_call.c (__nisfind_server): Likewise.
15665         * nis/nis_creategroup.c (nis_creategroup): Likewise.
15666         * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
15667         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
15668         * nis/nis_getservlist.c (nis_getservlist): Likewise.
15669         * nis/nis_lookup.c (nis_lookup): Likewise.
15670         * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
15671         * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
15672         (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
15673         * nis/nis_xdr.c (xdr_endpoint): Likewise.
15674         * nis/nss_compat/compat-grp.c (getgrent_next_file)
15675         (internal_getgrnam_r, internal_getgrgid_r): Likewise.
15676         * nis/nss_compat/compat-initgroups.c (add_group)
15677         (internal_getgrent_r): Likewise.
15678         * nis/nss_compat/compat-pwd.c (getpwent_next_file)
15679         (internal_getpwnam_r, internal_getpwuid_r): Likewise.
15680         * nis/nss_compat/compat-spwd.c (getspent_next_file)
15681         (internal_getspnam_r): Likewise.
15682         * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
15683         (_nss_nis_getaliasbyname_r): Likewise.
15684         * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
15685         (_nss_nis_getntohost_r): Likewise.
15686         * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
15687         (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
15688         (_nss_nis_getgrgid_r): Likewise.
15689         * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
15690         (internal_nis_gethostent_r, internal_gethostbyname2_r)
15691         (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
15692         (_nss_nis_gethostbyname4_r): Likewise.
15693         * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
15694         (initgroups_netid): Likewise.
15695         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
15696         * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
15697         (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
15698         * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
15699         (_nss_nis_getprotobynumber_r): Likewise.
15700         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
15701         (_nss_nis_getsecretkey): Likewise.
15702         * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
15703         (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
15704         (_nss_nis_getpwuid_r): Likewise.
15705         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
15706         (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
15707         * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
15708         (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
15709         * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
15710         (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
15711         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
15712         Likewise.
15713         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
15714         (_nss_nisplus_getntohost_r): Likewise.
15715         * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
15716         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
15717         * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
15718         (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
15719         Likewise.
15720         * nis/nss_nisplus/nisplus-initgroups.c
15721         (_nss_nisplus_initgroups_dyn): Likewise.
15722         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
15723         (_nss_nisplus_getnetbyaddr_r): Likewise.
15724         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
15725         (_nss_nisplus_getprotobynumber_r): Likewise.
15726         * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
15727         (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
15728         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
15729         Likewise.
15730         * nis/nss_nisplus/nisplus-service.c
15731         (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
15732         (_nss_nisplus_getservbyport_r): Likewise.
15733         * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
15734         (_nss_nisplus_getspnam_r): Likewise.
15735         * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
15736         Likewise.
15737         * nscd/aicache.c (addhstaiX): Likewise.
15738         * nscd/cache.c (cache_search, prune_cache): Likewise.
15739         * nscd/connections.c (register_traced_file, send_ro_fd)
15740         (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
15741         (main_loop_epoll): Likewise.
15742         * nscd/grpcache.c (addgrbyX): Likewise.
15743         * nscd/hstcache.c (addhstbyX): Likewise.
15744         * nscd/initgrcache.c (addinitgroupsX): Likewise.
15745         * nscd/mem.c (gc, mempool_alloc): Likewise.
15746         * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
15747         (addinnetgrX): Likewise.
15748         * nscd/nscd-client.h (__nscd_acquire_maplock)
15749         (__nscd_drop_map_ref): Likewise.
15750         * nscd/nscd_getai.c (__nscd_getai): Likewise.
15751         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
15752         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
15753         Likewise.
15754         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
15755         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
15756         * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
15757         (__nscd_get_map_ref): Likewise.
15758         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
15759         * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
15760         Likewise.
15761         * nscd/pwdcache.c (addpwbyX): Likewise.
15762         * nscd/selinux.c (preserve_capabilities): Likewise.
15763         * nscd/servicescache.c (addservbyX): Likewise.
15764         * nss/nss_files/files-XXX.c (internal_getent): Likewise.
15765         * posix/fnmatch.c (fnmatch): Likewise.
15766         * posix/getopt.c (_getopt_internal_r): Likewise.
15767         * posix/glob.c (glob, glob_in_dir): Likewise.
15768         * posix/wordexp.c (exec_comm_child): Likewise.
15769         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
15770         (getanswer_r, gaih_getanswer_slice): Likewise.
15771         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
15772         * resolv/res_init.c: Likewise.
15773         * resolv/res_mkquery.c (res_nmkquery): Likewise.
15774         * resolv/res_query.c (__libc_res_nquery): Likewise.
15775         * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
15776         Likewise.
15777         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
15778         * stdio-common/perror.c (perror): Likewise.
15779         * stdio-common/printf_fp.c (___printf_fp): Likewise.
15780         * stdio-common/tmpnam.c (tmpnam): Likewise.
15781         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
15782         * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
15783         * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
15784         Likewise.
15785         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
15786         * stdlib/putenv.c (putenv): Likewise.
15787         * stdlib/setenv.c (__add_to_environ): Likewise.
15788         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
15789         * stdlib/strtol_l.c (INTERNAL): Likewise.
15790         * string/memmem.c (memmem): Likewise.
15791         * string/strerror.c (strerror): Likewise.
15792         * string/strnlen.c (__strnlen): Likewise.
15793         * string/test-memmem.c (simple_memmem): Likewise.
15794         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
15795         * sunrpc/pm_getport.c (__get_socket): Likewise.
15796         * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
15797         * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
15798         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
15799         (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
15800         Likewise.
15801         * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
15802         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
15803         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
15804         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
15805         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
15806         * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
15807         Likewise.
15808         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
15809         Likewise.
15810         * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
15811         * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
15812         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
15813         * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
15814         * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
15815         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
15816         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
15817         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
15818         * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
15819         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
15820         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
15821         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
15822         Likewise.
15823         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
15824         Likewise.
15825         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
15826         Likewise.
15827         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
15828         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
15829         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
15830         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
15831         * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
15832         * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
15833         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
15834         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
15835         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
15836         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
15837         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
15838         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
15839         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
15840         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
15841         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
15842         * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
15843         Likewise.
15844         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
15845         Likewise.
15846         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
15847         Likewise.
15848         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
15849         Likewise.
15850         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
15851         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
15852         * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
15853         Likewise.
15854         * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
15855         * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
15856         * sysdeps/posix/opendir.c (__opendirat): Likewise.
15857         * sysdeps/posix/sleep.c: Likewise.
15858         * sysdeps/posix/tempname.c: Likewise.
15859         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
15860         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
15861         Likewise.
15862         * sysdeps/powerpc/powerpc32/dl-machine.h
15863         (elf_machine_runtime_setup, elf_machine_rela): Likewise.
15864         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
15865         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
15866         * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
15867         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
15868         Likewise.
15869         * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
15870         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
15871         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
15872         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
15873         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
15874         * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
15875         * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
15876         * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
15877         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
15878         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
15879         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
15880         (elf_machine_lazy_rel): Likewise.
15881         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
15882         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
15883         (elf_machine_lazy_rel): Likewise.
15884         * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
15885         * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
15886         * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
15887         * sysdeps/unix/grantpt.c (grantpt): Likewise.
15888         * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
15889         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
15890         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
15891         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
15892         Likewise.
15893         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
15894         * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
15895         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
15896         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
15897         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
15898         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
15899         * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
15900         * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
15901         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
15902         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
15903         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
15904         Likewise.
15905         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
15906         (__posix_fallocate64_l64): Likewise.
15907         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
15908         (posix_fallocate): Likewise.
15909         * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
15910         Likewise.
15911         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
15912         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
15913         (getifaddrs_internal): Likewise.
15914         * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
15915         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
15916         * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
15917         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
15918         * sysdeps/unix/sysv/linux/posix_fallocate64.c
15919         (__posix_fallocate64_l64): Likewise.
15920         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
15921         Likewise.
15922         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
15923         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
15924         (__get_clockfreq): Likewise.
15925         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
15926         * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
15927         * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
15928         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
15929         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
15930         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
15931         * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
15932         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
15933         Likewise.
15934         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
15935         * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
15936         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
15937         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
15938         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
15939         * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
15940         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
15941         Likewise.
15942         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
15943         (posix_fallocate): Likewise.
15944         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
15945         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
15946         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
15947         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
15948         (elf_machine_rela, elf_machine_rela_relative)
15949         (elf_machine_lazy_rel): Likewise.
15950         * time/asctime.c (asctime_internal): Likewise.
15951         * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
15952         * time/tzset.c (__tzset_parse_tz): Likewise.
15953         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
15954         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
15955         * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
15956         * wcsmbs/wcsmbsload.h: Likewise.
15957
15958         [BZ #15894]
15959         * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
15960
15961         * malloc/arena.c (grow_heap, get_free_list, reused_arena)
15962         (arena_get2): Remove THREAD_STATS conditionals.
15963         * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
15964         (__malloc_stats, int): Likewise.
15965
15966 2014-02-08  Mike Frysinger  <vapier@gentoo.org>
15967
15968         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
15969         f.f_type to RAMFS_MAGIC too.  Compare mp->mnt_type to shm too.
15970
15971         * manual/setjmp.texi: Fix typos/grammar errors.
15972
15973         * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
15974         Only return early when n is <= 0.  Delete unused return statement.
15975
15976         * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
15977         (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
15978         * debug/tst-longjmp_chk3.c: New file.
15979
15980         * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
15981         (test_main): Replace code with set_fortify_handler call.
15982         * debug/test-strcpy_chk.c: Likewise.
15983         * debug/tst-chk1.c: Likewise.
15984         * debug/tst-longjmp_chk.c: Likewise.
15985         * test-skeleton.c: Include fcntl.h & paths.h
15986         (set_fortify_handler): Define.
15987
15988         * debug/tst-longjmp_chk.c: Add header comment and include
15989         ../test-skeleton.c.
15990         (do_test): Mark static.
15991         (TEST_FUNCTION): Define.
15992
15993         * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
15994         (IP_PMTUDISC_INTERFACE): Likewise.
15995         (IP_MULTICAST_IF): Likewise.
15996         (IP_MULTICAST_TTL): Likewise.
15997         (IP_MULTICAST_LOOP): Likewise.
15998         (IP_ADD_MEMBERSHIP): Likewise.
15999         (IP_DROP_MEMBERSHIP): Likewise.
16000         (IP_UNBLOCK_SOURCE): Likewise.
16001         (IP_BLOCK_SOURCE): Likewise.
16002         (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
16003         (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
16004         (IP_MSFILTER): Likewise.
16005         (MCAST_JOIN_GROUP): Likewise.
16006         (MCAST_BLOCK_SOURCE): Likewise.
16007         (MCAST_UNBLOCK_SOURCE): Likewise.
16008         (MCAST_LEAVE_GROUP): Likewise.
16009         (MCAST_JOIN_SOURCE_GROUP): Likewise.
16010         (MCAST_LEAVE_SOURCE_GROUP): Likewise.
16011         (MCAST_MSFILTER): Likewise.
16012         (IP_MULTICAST_ALL): Likewise.
16013         (IP_UNICAST_IF): Likewise.
16014
16015         * timezone/Makefile: Delete $(have-ksh) check.
16016         ($(objpfx)tzselect): Change $(KSH) to $(BASH).
16017         * timezone/tzselect.ksh: Add +x mode bits.
16018
16019         * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
16020         (ANON_INODE_FS_MAGIC): Likewise.
16021         (BDEVFS_MAGIC): Likewise.
16022         (BINFMTFS_MAGIC): Likewise.
16023         (BTRFS_TEST_MAGIC): Likewise.
16024         (CRAMFS_MAGIC_WEND): Likewise.
16025         (DEBUGFS_MAGIC): Likewise.
16026         (ECRYPTFS_SUPER_MAGIC): Likewise.
16027         (EXT3_SUPER_MAGIC): Likewise.
16028         (EXT4_SUPER_MAGIC): Likewise.
16029         (FUTEXFS_SUPER_MAGIC): Likewise.
16030         (HOSTFS_SUPER_MAGIC): Likewise.
16031         (HUGETLBFS_MAGIC): Likewise.
16032         (MINIX3_SUPER_MAGIC): Likewise.
16033         (MTD_INODE_FS_MAGIC): Likewise.
16034         (NILFS_SUPER_MAGIC): Likewise.
16035         (OPENPROM_SUPER_MAGIC): Likewise.
16036         (PIPEFS_MAGIC): Likewise.
16037         (PSTOREFS_MAGIC): Likewise.
16038         (QNX6_SUPER_MAGIC): Likewise.
16039         (RAMFS_MAGIC): Likewise.
16040         (REISERFS_SUPER_MAGIC_STRING): Likewise.
16041         (REISER2FS_SUPER_MAGIC_STRING): Likewise.
16042         (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
16043         (SECURITYFS_MAGIC): Likewise.
16044         (SELINUX_MAGIC): Likewise.
16045         (SMACK_MAGIC): Likewise.
16046         (SOCKFS_MAGIC): Likewise.
16047         (SQUASHFS_MAGIC): Likewise.
16048         (STACK_END_MAGIC): Likewise.
16049         (TMPFS_MAGIC): Likewise.
16050         (USBDEVICE_SUPER_MAGIC): Likewise.
16051         (V9FS_MAGIC): Likewise.
16052         (XENFS_SUPER_MAGIC): Likewise.
16053         (CRAMFS_MAGIC): Fix typo in comment.
16054         (EXT2_SUPER_MAGIC): Update comment.
16055         (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
16056
16057 2014-02-08  Joseph Myers  <joseph@codesourcery.com>
16058
16059         * sysdeps/arm: Move directory from ports/sysdeps/arm.
16060         * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
16061         * sysdeps/unix/sysv/linux/arm: Move directory from
16062         ports/sysdeps/unix/sysv/linux/arm.
16063         * README: Update listing for arm-*-linux-gnueabi.
16064
16065         * README: Remove mention of am33.
16066
16067 2014-02-07  Roland McGrath  <roland@hack.frob.com>
16068
16069         * bits/sigset.h (__sigemptyset): Use a statement expression rather
16070         than the comma operator, to avoid "rhs of comma has no effect"
16071         compiler warnings.
16072         (__sigfillset, __sigandset, __sigorset): Likewise.
16073         * include/signal.h (__sigemptyset): Likewise.
16074         * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
16075
16076 2014-02-07  Allan McRae  <allan@archlinux.org>
16077
16078         * version.h (RELEASE): Set to "development".
16079         (VERSION): Set to "2.19.90"
16080         * NEWS: Add 2.20 section.
16081
16082 2014-02-06  Carlos O'Donell  <carlos@redhat.com>
16083
16084         [BZ #16529]
16085         * inet/netinet/in.h: Remove comma after IPPROTO_MH.
16086
16087 2014-02-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
16088
16089         * manual/contrib.texi: Update entry for Carlos O'Donell,
16090         Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
16091
16092 2014-02-05  Carlos O'Donell  <carlos@rehdat.com>
16093
16094         * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
16095
16096         * sysdeps/unix/sysv/linux/kernel-features.h
16097         [__LINUX_KERNEL_VERSION >= 0x020621]
16098         (__ASSUME_PROC_PID_TASK_COMM): Define.
16099
16100 2014-02-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
16101
16102         [BZ #16398]
16103         * libio/wfileops.c (_IO_wfile_seekoff): Break out form
16104         conversion when destination buffer does not have enough space.
16105         * libio/tst-ftell-partial-wide.c: New test case.
16106         * libio/Makefile (tests): Add tst-ftell-partial-wide.
16107
16108         * manual/contrib.texi: Update entry for Ondrej Bilka, Will
16109         Newton and Alexandre Oliva.  Add entries for Steve Ellcey, Chris
16110         Leonard and Allan McRae.
16111
16112 2014-02-04  David S. Miller  <davem@davemloft.net>
16113
16114         * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
16115         32-bit.
16116
16117 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16118
16119         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
16120         New file
16121         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
16122         New file
16123         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
16124         New file.
16125         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
16126         New file.
16127         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
16128         New file.
16129         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
16130         New file.
16131         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
16132         New file.
16133         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
16134         New file.
16135         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
16136         New file.
16137         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
16138         New file.
16139         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
16140         New file.
16141         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
16142         New file.
16143         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
16144         New file.
16145
16146 2014-02-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16147
16148         * nptl/shlib-versions: Change powerpc*le start to 2.17.
16149         * shlib-versions: Likewise.
16150
16151 2014-02-04  Roland McGrath  <roland@hack.frob.com>
16152             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16153
16154         * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
16155         (abilist-pattern): New variable, set to %-le.abilist.
16156
16157         * Makerules (abilist-pattern): New variable.
16158         (vpath): Use $(abilist-pattern) in place of %.abilist.
16159         (check-abi-% pattern rule): Likewise.
16160         (check-abi, update-abi): Likewise.
16161
16162 2014-02-04  Eric Wong  <normalperson@yhbt.net>
16163
16164         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
16165
16166 2014-02-03  Carlos O'Donell  <carlos@redhat.com>
16167
16168         * manual/startup.texi: Add next, previous, and top entries for
16169         the `Program Arguments' and `Environment Variables' nodes.
16170
16171 2014-02-03  Alexandre Oliva <aoliva@redhat.com>
16172
16173         * manual/macros.texi: Add comments before MTASC-safety macros.
16174
16175         * manual/users.texi: Document MTASC-safety properties.
16176
16177         * manual/threads.texi (pthread_key_create, pthread_key_delete)
16178         (pthread_getspecific, pthread_setspecific): Format with
16179         @deftypefun, and add @safety note.
16180         * manual/signal.texi: Move comments that analyze the above
16181         functions to their home place.
16182
16183 2014-02-03  Allan McRae  <allan@archlinux.org>
16184
16185         * po/sl.po: Update Slovenian translation from translation project.
16186
16187 2014-02-02  Alexandre Oliva <aoliva@redhat.com>
16188
16189         * manual/time.texi (timegm): Add missing blank after @c.
16190         Reported by Joseph Myers <joseph@codesourcery.com>.
16191
16192 2014-02-01  Alexandre Oliva <aoliva@redhat.com>
16193
16194         * manual/check-safety.sh: New.
16195         * manual/Makefile ($(objpfx)stamp-summary): Run it.
16196
16197         * manual/terminal.texi: Document MTASC-safety properties.
16198
16199         * manual/filesys.texi: Document MTASC-safety properties.
16200
16201         * manual/errno.texi: Document MTASC-safety properties.
16202
16203         * manual/intro.texi: Document safety identifiers and
16204         conditionals.
16205
16206         * manual/string.texi (wcstok): Fix prototype.
16207         (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
16208
16209         * manual/time.texi: Document MTASC-safety properties.
16210
16211         * manual/string.texi: Document MTASC-safety properties.
16212
16213         * manual/threads.texi: Document MTASC-safety properties.
16214
16215         * manual/stdio.texi: Document MTASC-safety properties.
16216
16217         * manual/syslog.texi: Document MTASC-safety properties.
16218
16219         * manual/sysinfo.texi: Document MTASC-safety properties.
16220
16221         * manual/startup.texi: Document MTASC-safety properties.
16222
16223         * manual/socket.texi: Document MTASC-safety properties.
16224
16225         * manual/signal.texi: Document MTASC-safety properties.
16226
16227 2014-01-31  Alexandre Oliva <aoliva@redhat.com>
16228
16229         * manual/setjmp.texi: Document MTASC-safety properties.
16230
16231         * manual/search.texi: Document MTASC-safety properties.
16232
16233         * manual/resource.texi: Document MTASC-safety properties.
16234
16235         * manual/process.texi: Document MTASC-safety properties.
16236
16237         * manual/platform.texi: Document MTASC-safety properties.
16238
16239         * manual/pipe.texi: Document MTASC-safety properties.
16240
16241         * manual/pattern.texi: Document MTASC-safety properties.
16242
16243         * manual/message.texi: Document MTASC-safety properties.
16244
16245         [BZ #12751]
16246         * manual/memory.texi: Document MTASC-safety properties.
16247
16248         * manual/math.texi: Document MTASC-safety properties.
16249
16250         * manual/locale.texi: Document MTASC-safety properties.
16251
16252         * manual/llio.texi: Document MTASC-safety properties.
16253
16254         * manual/libdl.texi: New.
16255
16256         * manual/lang.texi: Document MTASC-safety properties.
16257
16258         * manual/job.texi: Document MTASC-safety properties.
16259
16260         * manual/getopt.texi: Document MTASC-safety properties.
16261
16262         * manual/ctype.texi: Document MTASC-safety properties.
16263
16264 2014-01-31  Maciej W. Rozycki  <macro@codesourcery.com>
16265
16266         [BZ #16046]
16267         * csu/libc-tls.c (static_map): Remove variable.
16268         (__libc_setup_tls): Use main executable's link map for TLS data.
16269         * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
16270         casing for LM_ID_BASE and GL(dl_nns).
16271         * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
16272         function.  Alias dl_iterate_phdr to __dl_iterate_phdr.
16273         * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
16274         casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
16275         * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
16276         member.
16277         (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
16278         l_phnum members.
16279
16280 2014-01-30  Alexandre Oliva <aoliva@redhat.com>
16281
16282         * manual/debug.texi: Document MTASC-safety properties.
16283
16284 2014-01-29  H.J. Lu  <hongjiu.lu@intel.com>
16285
16286         [BZ #16510]
16287         * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
16288         of __x86_64__ when disabling x87 inline functions.
16289
16290 2014-01-29  Alexandre Oliva <aoliva@redhat.com>
16291
16292         * manual/charset.texi: Document MTASC-safety properties.
16293
16294         * manual/crypt.texi: Document MTASC-safety properties.
16295
16296         * manual/conf.texi: Document MTASC-safety properties.
16297
16298         * manual/arith.texi: Document MTASC-safety properties.
16299
16300         * manual/argp.texi: Document MTASC-safety properties.
16301
16302         * manual/macros.texi: Introduce macros to document multi
16303         thread, asynchronous signal and asynchronous cancellation
16304         safety properties.
16305         * manual/intro.texi: Introduce the properties themselves.
16306
16307 2014-01-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16308
16309         * sysdeps/sh/sh4/Makefile: New file.
16310
16311 2014-01-27  Andreas Schwab  <schwab@linux-m68k.org>
16312
16313         * math/gen-libm-test.pl ($srcdir): New variable.
16314         ($auto_input): Use it.
16315
16316 2014-01-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
16317
16318         [BZ #16506]
16319         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
16320         access beyond array bounds when parsing netgroups file.
16321
16322         * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
16323         the old buffer before realloc.
16324
16325 2014-01-27  Allan McRae  <allan@archlinux.org>
16326
16327         * po/fr.po: Update French translation from translation project.
16328
16329 2014-01-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16330
16331         * sysdeps/sh/libm-test-ulps: Regenerate.
16332
16333 2014-01-24  David S. Miller  <davem@davemloft.net>
16334
16335         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
16336
16337 2014-01-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16338
16339         * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
16340         * sysdeps/sh/libm-test-ulps: ... here and regenerated.
16341
16342 2013-01-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
16343
16344         [BZ #16474]
16345         * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
16346         string pointers after reallocation.
16347
16348 2014-01-24  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16349
16350         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
16351         __SH4A__ instead of __SH_FPU_ANY__.
16352
16353 2014-01-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16354
16355         * sysdeps/sh/fpu_control.h: New file.
16356         * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
16357         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
16358         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
16359         * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
16360         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
16361         * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
16362         * sysdeps/sh/sys/ucontext.h: Remove.
16363         * sysdeps/sh/sys: Remove directory.
16364
16365 2014-01-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16366
16367         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
16368         s390/sys/ucontext.h.
16369         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
16370         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
16371
16372 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
16373
16374         [BZ #15605]
16375         * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
16376
16377 2014-01-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16378
16379         [BZ#16431]
16380         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
16381         Adjust the vDSO correctly for internal calls.
16382         * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
16383
16384 2014-01-20  Allan McRae  <allan@archlinux.org>
16385
16386         * po/ca.po: Update Catalan translation from translation project.
16387
16388 2014-01-16  Mike Frysinger  <vapier@gentoo.org>
16389
16390         * sysdeps/s390/sotruss-lib.c: New file.
16391
16392 2014-01-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16393
16394         [BZ#16430]
16395         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
16396         (__GI___gettimeofday): Alias for a different internal symbol to avoid
16397         local calls issues by not having a PLT stub required for IFUNC calls.
16398         * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
16399
16400 2014-01-16 Joseph Myers  <joseph@codesourcery.com>
16401
16402         * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
16403         * math/test-fpucw-static.c: Likewise.
16404
16405 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
16406
16407         [BZ #16453]
16408         * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
16409
16410 2014-01-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16411
16412         * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
16413         implementation for powerpc.
16414
16415 2014-01-15  Ondřej Bílka  <neleai@seznam.cz>
16416
16417         [BZ #14782]
16418         * sysdeps/posix/system.c (__libc_system): Do not enable
16419         asynchronous cancellation.
16420
16421 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16422
16423         [BZ #16427]
16424         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
16425         handling only for numbers special also in the IEEE case.
16426
16427 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16428
16429         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
16430
16431 2014-01-11  Allan McRae  <allan@archlinux.org>
16432
16433         * po/bg.po: Update Bulgarian translation from translation project.
16434
16435         * po/de.po: Update German translation from translation project.
16436
16437 2014-01-10  Roland McGrath  <roland@hack.frob.com>
16438
16439         * sysdeps/generic/gcc-compat.h: New file.
16440
16441 2014-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
16442
16443         * benchtests/asin-inputs: Correct slow inputs.
16444         * benchtests/acos-inputs: Likewise.
16445
16446 2014-01-10  Allan McRae  <allan@archlinux.org>
16447
16448         * po:sv.po: Update Swedish translation from translation project.
16449
16450         * po/vi.po: Update Vietnamese translation from translation project.
16451
16452         * po/eo.po: Update Esperanto translation from translation project.
16453
16454         * po/cs.po: Update Czech translation from translation project.
16455
16456         * po/nl.po: Update Dutch translation from translation project.
16457
16458         * po/pl.po: Update Polish translation from translation project.
16459
16460         * po/ru.po: Update Russian translation from translation project.
16461
16462         * po/uk.po: Update Ukrainian translation from translation project.
16463
16464 2014-01-08  Brooks Moses  <bmoses@google.com>
16465
16466         * elf/dl-load.c: Fix comment typo.
16467
16468 2014-01-08  Carlos O'Donell  <carlos@redhat.com>
16469
16470         * po/header.pot: Rename to...
16471         * po/pot.header: ... this.
16472         * po/Makefile: Use pot.header.
16473
16474 2014-01-08  Yuriy Kaminskiy  <yumkam@gmail.com>
16475             Maxim Kuvyrkov  <maxim@kugelworks.com>
16476
16477         [BZ #16394]
16478         * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
16479         SRC and DEST against LEN.
16480
16481 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16482
16483         [BZ #16414]
16484         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
16485         implementation.
16486         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
16487
16488 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16489
16490         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16491
16492 2014-01-08  Joseph Myers  <joseph@codesourcery.com>
16493
16494         [BZ #16408]
16495         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
16496         for large positive arguments.
16497
16498 2014-01-07  Joseph Myers  <joseph@codesourcery.com>
16499
16500         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
16501
16502         * math/auto-libm-test-in: Mark various tests with
16503         xfail-rounding:ldbl-128ibm.
16504         * math/auto-libm-test-out: Regenerated.
16505
16506         [BZ #16407]
16507         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
16508         Increase overflow threshold.
16509
16510 2014-01-07  Ondřej Bílka  <neleai@seznam.cz>
16511
16512         [BZ #14286]
16513         * stdio-common/vfprintf.c: Check for integer overflow.
16514
16515 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16516
16517         * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
16518         the first argument and return value of __tls_get_addr_internal.
16519
16520 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16521
16522         * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
16523         also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
16524
16525 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16526
16527         * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
16528         * sysdeps/s390/rtld-global-offsets.sym: New file.
16529         * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
16530         GLIBC_2.19 symbol.
16531         * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
16532         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
16533         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
16534         ... this.
16535         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
16536         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
16537         ... this.
16538         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
16539         Regenerate.
16540         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
16541         Regenerate.
16542         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
16543         halfs of GPRs for high_gprs contexts.
16544         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
16545         restore upper halfs of GPRs for high_gprs contexts.  Copy uc_flags
16546         field.
16547         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
16548         uc_flags field.
16549         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
16550         64 bit versions:
16551         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
16552         for high GPRs (uc_high_gprs) and for future extensions
16553         (__reserved).
16554         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
16555         for future extensions (__reserved).
16556         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
16557         64 bit versions:
16558         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
16559         SC_HIGHGPRS offset definition.
16560         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
16561         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
16562
16563         * Versions.def: Add GLIBC_2.19 for libpthread.
16564         * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
16565         siglongjmp for libpthread with GLIBC_2.19 symver.
16566         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
16567         * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
16568         * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
16569         * sysdeps/s390/__longjmp.c: New file.
16570         * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
16571         * sysdeps/s390/longjmp.c: New file.
16572         * sysdeps/s390/setjmp.S: New file.
16573         * sysdeps/s390/sigjmp.S: New file.
16574         * sysdeps/s390/v1-longjmp.c: New file.
16575         * sysdeps/s390/v1-setjmp.h: New file.
16576         * sysdeps/s390/v1-sigjmp.c: New file.
16577         * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
16578         * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
16579         GLIBC_2.19 version.
16580         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
16581         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
16582         versioned symbols for ____longjmp_chk.
16583         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
16584         Likewise.
16585         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
16586         Regenerate.
16587         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
16588         Regenerate.
16589         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
16590         Regenerate.
16591         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
16592         Regenerate.
16593         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
16594         * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
16595         * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
16596         * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
16597         * sysdeps/s390/s390-32/setjmp-common.S: ... this.
16598         * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
16599         * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
16600         * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
16601         * sysdeps/s390/s390-64/setjmp-common.S: ... this.
16602         * sysdeps/s390/rtld-__longjmp.c: New file.
16603         * sysdeps/s390/rtld-setjmp.S: New file.
16604
16605 2014-01-06  Joseph Myers  <joseph@codesourcery.com>
16606
16607         [BZ #16400]
16608         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
16609         Return -__logl (x) for small positive arguments without evaluating
16610         a polynomial.
16611
16612 2014-01-06  Mike Frysinger  <vapier@gentoo.org>
16613
16614         * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
16615         Rename to ...
16616         (__ptrace_peeksiginfo_args): ... this.
16617         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
16618         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
16619         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
16620
16621 2014-01-06  Allan McRae  <allan@archlinux.org>
16622
16623         * inet/netinet/in.h: Fix typo in comment.
16624
16625 2014-01-05  Andreas Jaeger  <aj@suse.de>
16626
16627         * sysdeps/i386/fpu/libm-test-ulps: Update.
16628
16629 2014-01-05  Allan McRae  <allan@archlinux.org>
16630
16631         * po/libc.pot: Regenerated.
16632
16633         * malloc/memusagestat.c: Fix gettext call formatting.
16634
16635 2014-01-04  Sami Kerola  <kerolasa@iki.fi>
16636
16637         * nscd/nscd.c: Improve usage() output.
16638
16639 2014-01-04  Mike Frysinger  <vapier@gentoo.org>
16640
16641         * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
16642         * sysdeps/unix/sysv/linux/configure: Regenerated.
16643         * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
16644         * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
16645
16646 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
16647
16648         [BZ #16390]
16649         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
16650         (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
16651
16652 2014-01-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16653
16654         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
16655         extra tokens at end of #undef directive.
16656         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
16657         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
16658         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
16659
16660 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
16661
16662         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
16663
16664         * math/auto-libm-test-in: Mark various tests with
16665         xfail-rounding:ldbl-128ibm.
16666         * math/auto-libm-test-out: Regenerated.
16667
16668 2014-01-02  Joseph Myers  <joseph@codesourcery.com>
16669
16670         [BZ #16386]
16671         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
16672         numbers with subnormal high part when calculating exponent.
16673
16674         [BZ #16385]
16675         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
16676         fabs.
16677
16678         [BZ #16384]
16679         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
16680         M_LN2l.
16681         (__ieee754_acoshl): Use __log1pl not __log1p.
16682
16683 2013-01-02  Ondřej Bílka  <neleai@seznam.cz>
16684
16685         * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
16686         (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
16687         (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
16688         (grow_heap, heap_trim, _int_new_arena, get_free_list)
16689         (reused_arena, arena_get2): Convert to GNU style.
16690         * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
16691         (mem2mem_check, mem2chunk_check, top_check, realloc_check)
16692         (memalign_check, __malloc_set_state): Likewise.
16693         * malloc/mallocbug.c (main): Likewise.
16694         * malloc/malloc.c (__malloc_assert, malloc_init_state)
16695         (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
16696         (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
16697         (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
16698         (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
16699         (__posix_memalign, malloc_info): Likewise.
16700         * malloc/malloc.h: Likewise.
16701         * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
16702         (mallochook, memalignhook, reallochook, mabort): Likewise.
16703         * malloc/mcheck.h: Likewise.
16704         * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
16705         (free, mmap, mmap64, mremap, munmap, dest): Likewise.
16706         * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
16707         * malloc/morecore.c (__default_morecore): Likewise.
16708         * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
16709         * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
16710         (_obstack_allocated_p, obstack_free, _obstack_memory_used)
16711         (print_and_abort): Likewise.
16712         * malloc/obstack.h: Likewise.
16713         * malloc/set-freeres.c (__libc_freeres): Likewise.
16714         * malloc/tst-mallocstate.c (main): Likewise.
16715         * malloc/tst-mtrace.c (main): Likewise.
16716         * malloc/tst-realloc.c (do_test): Likewise.
16717
16718 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
16719
16720         [BZ #16366]
16721         * nscd/netgroupcache.c (do_notfound): New function.
16722         (addgetnetgrentX): Use it.
16723
16724         [BZ # 16365]
16725         * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
16726         NSS_STATUS_NOTFOUND.
16727
16728 2014-01-01  Joseph Myers  <joseph@codesourcery.com>
16729
16730         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
16731         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16732
16733 2014-01-01  Allan McRae  <allan@archlinux.org>
16734
16735         * scripts/update-copyrights: Update configure input file suffix.
16736
16737         * NEWS: Update copyright year.
16738         * catgets/gencat.c: Likewise.
16739         * csu/version.c: Likewise.
16740         * debug/catchsegv.sh: Likewise.
16741         * debug/pcprofiledump.c: Likewise.
16742         * debug/xtrace.sh: Likewise.
16743         * elf/ldconfig.c: Likewise.
16744         * elf/ldd.bash.in: Likewise.
16745         * elf/pldd.c: Likewise.
16746         * elf/sotruss.ksh: Likewise.
16747         * elf/sprof.c: Likewise.
16748         * iconv/iconv_prog.c: Likewise.
16749         * iconv/iconvconfig.c: Likewise.
16750         * locale/programs/locale.c: Likewise.
16751         * locale/programs/localedef.c: Likewise.
16752         * login/programs/pt_chown.c: Likewise.
16753         * malloc/memusage.sh: Likewise.
16754         * malloc/memusagestat.c: Likewise.
16755         * malloc/mtrace.pl: Likewise.
16756         * manual/libc.texinfo: Likewise.
16757         * nscd/nscd.c: Likewise.
16758         * nss/getent.c: Likewise.
16759         * nss/makedb.c: Likewise.
16760         * posix/getconf.c: Likewise.
16761         * scripts/test-installation.pl: Likewise.
16762
16763         * All files with FSF copyright notices: Update copyright dates
16764         using scripts/update-copyrights.
16765         * intl/plural.c: Regenerated.
16766         * locale/programs/charmap-kw.h: Likewise.
16767         * locale/programs/locfile-kw.h: Likewise.
16768
16769 2013-12-31  Mike Frysinger  <vapier@gentoo.org>
16770
16771         * sysdeps/unix/sysv/linux/configure: Regenerated.
16772         * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
16773         the linux/fanotify.h header.
16774         * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
16775         HAVE_LINUX_FANOTIFY_H is defined.
16776
16777 2013-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
16778
16779         * benchtests/cos-inputs: New inputs.
16780         * benchtests/sin-inputs: Likewise.
16781
16782         * benchtests/atan-inputs: New inputs. Fix name of multiple
16783         precision fallback inputs.
16784
16785         * benchtests/atanh-inputs: New inputs.
16786         * benchtests/tanh-inputs: Likewise.
16787
16788         * benchtests/acosh-inputs: New inputs.
16789         * benchtests/asinh-inputs: Likewise.
16790
16791         * benchtests/cosh-inputs: New inputs.
16792         * benchtests/sinh-inputs: Likewise.
16793
16794         * benchtests/acos-inputs: Add more inputs.
16795         * benchtests/asin-inputs: Likewise.
16796
16797 2013-12-30  Ville Skytta  <ville.skytta@iki.fi>
16798
16799         [BZ #16375]
16800         * manual/arith.texi: Fix spelling.
16801         * manual/charset.texi: Likewise.
16802         * manual/errno.texi: Likewise.
16803         * manual/filesys.texi: Likewise.
16804         * manual/lang.texi: Likewise.
16805         * manual/llio.texi: Likewise.
16806         * manual/locale.texi: Likewise.
16807         * manual/message.texi: Likewise.
16808         * manual/resource.texi: Likewise.
16809         * manual/search.texi: Likewise.
16810         * manual/setjmp.texi: Likewise.
16811         * manual/stdio.texi: Likewise.
16812         * manual/string.texi: Likewise.
16813         * manual/sysinfo.texi: Likewise.
16814         * manual/time.texi: Likewise.
16815
16816 2013-12-27  Carlos O'Donell  <carlos@redhat.com>
16817
16818         * po/sl.po: New file.
16819
16820 2013-12-27  Mike Frysinger  <vapier@gentoo.org>
16821
16822         * .gitignore: Add core/.gdbinit/.gdb_history.
16823
16824 2013-12-27  Allan McRae  <allan@archlinux.org>
16825
16826         [BZ #16369]
16827         * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
16828         Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
16829
16830 2013-12-24  Brooks Moses  <bmoses@google.com>
16831
16832         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
16833         all compilers that claim C++98 compliance, not just GCC.
16834         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
16835         Likewise.
16836
16837 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
16838
16839         * NEWS: Restore accidentally deleted bug-fix entries.
16840
16841 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
16842             Ondřej Bílka  <neleai@seznam.cz>
16843
16844         [BZ #15073]
16845         * malloc/malloc.c (_int_free): Perform sanity check only if we
16846         have_lock.
16847
16848 2013-12-23  Ondřej Bílka  <neleai@seznam.cz>
16849
16850         [BZ #12986]
16851         * manual/stdio.texi (String Input Conversions): Clarify that character
16852         classes are not supported.
16853
16854 2013-12-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16855
16856         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16857
16858 2013-12-22  Joseph Myers  <joseph@codesourcery.com>
16859
16860         [BZ #16337]
16861         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
16862         Calculate results for small negative arguments directly rather
16863         than using reflection formula with special underflow handling.
16864
16865         * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
16866         * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
16867         sysdeps/unix/bsd/bsd4.4/syscalls.list.
16868         (fchflags): Likewise.
16869         (revoke): Likewise.
16870         (setlogin): Likewise.
16871         (sigaltstack): Likewise.
16872         (wait4): Likewise.
16873         (sigblock): Remove.
16874         (sigsetmask): Likewise.
16875         (wait3): Likewise.
16876         (waitpid): Likewise.
16877         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
16878         * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
16879         file.
16880         * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
16881         * sysdeps/unix/bsd/Makefile: ... here.
16882         * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
16883         * sysdeps/unix/bsd/Versions: ... here.
16884         * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
16885         * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
16886         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
16887         * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
16888         * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
16889         * sysdeps/unix/bsd/sigblock.c: ... here.
16890         * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
16891         * sysdeps/unix/bsd/sigsetmask.c: ... here.
16892         * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
16893         * sysdeps/unix/bsd/sigvec.c: ... here.
16894         * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
16895         * sysdeps/unix/bsd/tcdrain.c: ... here.
16896         * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
16897         * sysdeps/unix/bsd/tcgetattr.c: ... here.
16898         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
16899         * sysdeps/unix/bsd/tcsetattr.c: ... here.
16900         * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
16901         * sysdeps/unix/bsd/wait.c: ... here.
16902         * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
16903         * sysdeps/unix/bsd/wait3.c: ... here.
16904         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
16905         * sysdeps/unix/bsd/waitpid.c: ... here.
16906
16907 2013-12-21  Joseph Myers  <joseph@codesourcery.com>
16908
16909         [BZ #16356]
16910         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
16911         round-to-nearest for [!USE_AS_EXPM1L].
16912         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
16913         * math/auto-libm-test-in: Do not expect cosh tests to fail.  Add
16914         more tests of exp and exp10.  Expect some exp10 tests to miss
16915         exceptions or fail in directed rounding modes.
16916         * math/auto-libm-test-out: Regenerated.
16917         * math/libm-test.inc (exp10_tonearest_test_data): New array.
16918         (exp10_test_tonearest): New function.
16919         (exp10_towardzero_test_data): New array.
16920         (exp10_test_towardzero): New function.
16921         (exp10_downward_test_data): New array.
16922         (exp10_test_downward): New function.
16923         (exp10_upward_test_data): New array.
16924         (exp10_test_upward): New function.
16925         (main): Call the new functions.
16926         * sysdeps/i386/fpu/libm-test-ulps: Update.
16927         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16928
16929 2013-12-20  Joseph Myers  <joseph@codesourcery.com>
16930
16931         * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
16932         asinh, atan, atan2, atanh, cbrt, cos and cosh.
16933         * math/auto-libm-test-out: Regenerated.
16934         * math/libm-test.inc (acosh_test_data): Add more tests.
16935         (atanh_test_data): Likewise.
16936         (ceil_test_data): Likewise.
16937         (copysign_test_data): Likewise.
16938         * sysdeps/i386/fpu/libm-test-ulps: Update.
16939         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16940
16941         * timezone/checktab.awk: Update from tzcode 2013i.
16942         * timezone/private.h: Likewise.
16943         * timezone/scheck.c: Likewise.
16944         * timezone/tzfile.h: Likewise.
16945         * timezone/tzselect.ksh: Likewise.
16946         * timezone/zdump.c: Likewise.
16947         * timezone/zic.c: Likewise.
16948
16949         * math/auto-libm-test-in: Add tests of cpow.
16950         * math/auto-libm-test-out: Regenerated.
16951         * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
16952         * math/gen-auto-libm-tests.c (func_calc_method): Add value
16953         mpc_cc_c.
16954         (func_calc_desc): Add mpc_cc_c union field.
16955         (test_functions): Add cpow.
16956         (special_fill_2pi): New function.
16957         (special_real_inputs): Add 2pi.
16958         (calc_generic_results): Handle mpc_cc_c.
16959         * sysdeps/i386/fpu/libm-test-ulps: Update.
16960         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16961
16962         * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
16963         csqrt, ctan and ctanh.
16964         * math/auto-libm-test-out: Regenerated.
16965         * math/libm-test.inc (TEST_COND_x86_64): New macro.
16966         (TEST_COND_x86): Likewise.
16967         (ccos_test_data): Use AUTO_TESTS_c_c.
16968         (ccosh_test_data): Likewise.
16969         (cexp_test_data): Likewise.
16970         (clog_test_data): Likewise.
16971         (csqrt_test_data): Likewise.
16972         (ctan_test_data): Likewise.
16973         (ctan_tonearest_test_data): Likewise.
16974         (ctan_towardzero_test_data): Likewise.
16975         (ctan_downward_test_data): Likewise.
16976         (ctan_upward_test_data): Likewise.
16977         (ctanh_test_data): Likewise.
16978         (ctanh_tonearest_test_data): Likewise.
16979         (ctanh_towardzero_test_data): Likewise.
16980         (ctanh_downward_test_data): Likewise.
16981         (ctanh_upward_test_data): Likewise.
16982         * math/gen-auto-libm-tests.c (func_calc_method): Add value
16983         mpc_c_c.
16984         (func_calc_desc): Add mpc_c_c union field.
16985         (FUNC_mpc_c_c): New macro.
16986         (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
16987         ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
16988         ctanh.
16989         (special_fill_min_subnorm_p120): New function.
16990         (special_real_inputs): Add min_subnorm_p120.
16991         (calc_generic_results): Handle mpc_c_c.
16992         * sysdeps/i386/fpu/libm-test-ulps: Update.
16993         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16994
16995 2013-12-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
16996
16997         * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
16998         (do_sin_slow): New functions.
16999         (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
17000         (cslow2, csloww1, csloww2): Use the new functions.
17001
17002         * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
17003         Use M to change sign of result instead of X.  Assume X is
17004         positive.
17005         (csloww1): Likewise.
17006         (__sin): Adjust.
17007         (__cos): Adjust.
17008
17009         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
17010         arguments A and DA.
17011         (__sin): Adjust.
17012         (__cos): Likewise.
17013
17014         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
17015         (__cos): Likewise.
17016         (sloww1): Don't adjust sign of DX.
17017         (csloww1): Likewise.
17018         (sloww2): Use X directly and don't adjust sign of DX.
17019         (csloww2): Likewise.
17020
17021 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17022
17023         * math/auto-libm-test-in: Add tests of cabs and carg.
17024         * math/auto-libm-test-out: Regenerated.
17025         * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
17026         (carg_test_data): Likewise.
17027         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17028         mpc_c_f.
17029         (func_calc_desc): Add mpc_c_f union field.
17030         (test_functions): Add cabs and carg.
17031         (calc_generic_results): Handle mpc_c_f.
17032
17033         * sysdeps/powerpc/powerpc32/libgcc-compat.S
17034         [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
17035         as a macro and a compat symbol.
17036         [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
17037         [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
17038         [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
17039         [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
17040         [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
17041         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
17042         not use .hidden.
17043         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
17044         Likewise.
17045         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
17046         Likewise.
17047         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
17048         Likewise.
17049         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
17050         Likewise.
17051         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
17052         Likewise.
17053         * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
17054         __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
17055         from GLIBC_2.3.2.
17056
17057 2013-12-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17058
17059         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17060
17061 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17062
17063         * manual/texinfo.tex: Update to version 2013-11-26.10 with
17064         trailing whitespace removed.
17065         * scripts/config.guess: Update to version 2013-11-29.
17066         * scripts/config.sub: Update to version 2013-10-01.
17067
17068         * math/auto-libm-test-in: Add tests of sincos.
17069         * math/auto-libm-test-out: Regenerated.
17070         * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
17071         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17072         mpfr_f_11.
17073         (func_calc_desc): Add mpfr_f_11 union field.
17074         (test_functions): Add sincos.
17075         (calc_generic_results): Handle mpfr_f_11.
17076         * sysdeps/i386/fpu/libm-test-ulps: Update.
17077         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17078
17079 2013-12-19  Andreas Schwab  <schwab@suse.de>
17080
17081         * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
17082         CALL_MCOUNT.
17083         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
17084         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
17085         [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
17086
17087 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17088
17089         * math/gen-libm-test.pl (%beautify): Remove M_* constants.
17090         * sysdeps/i386/fpu/libm-test-ulps: Update.
17091         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17092
17093         [BZ #16293]
17094         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
17095         round-to-nearest mode when using frndint.
17096         * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
17097         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
17098         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
17099         Likewise.
17100         * math/auto-libm-test-in: Add more tests of expm1.  Do not expect
17101         sinh test to fail.
17102         * math/auto-libm-test-out: Regenerated.
17103         * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
17104         (TEST_COND_x86): Likewise.
17105         (expm1_tonearest_test_data): New array.
17106         (expm1_test_tonearest): New function.
17107         (expm1_towardzero_test_data): New array.
17108         (expm1_test_towardzero): New function.
17109         (expm1_downward_test_data): New array.
17110         (expm1_test_downward): New function.
17111         (expm1_upward_test_data): New array.
17112         (expm1_test_upward): New function.
17113         (main): Run the new test functions.
17114         * sysdeps/i386/fpu/libm-test-ulps: Update.
17115         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17116
17117         * include/features.h: Update comment documenting feature test
17118         macros.  Mention _DEFAULT_SOURCE in comment.
17119         [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
17120         [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
17121         _BSD_SOURCE and _SVID_SOURCE.
17122         [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
17123         !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
17124         !_SVID_SOURCE]: Likewise.
17125         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17126         (__USE_POSIX_IMPLICITLY): Define.
17127         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17128         (_POSIX_SOURCE): Undefine and redefine.
17129         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17130         (_POSIX_C_SOURCE): Likewise.
17131         * manual/creature.texi (_DEFAULT_SOURCE): Document.
17132         (Feature Test Macros): Update documentation of default features.
17133
17134 2013-12-19  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
17135
17136         * benchtests/Makefile: Add bench-strtok.
17137         * benchtests/bench-strtok.c: New file: strtok benchtest.
17138
17139 2013-12-19  Allan McRae  <allan@archlinux.org>
17140
17141         * manual/install.texi: Suppress menu for plain text output.
17142         * INSTALL: Regenerated.
17143
17144 2013-12-18  Brooks Moses  <bmoses@google.com>
17145
17146         [BZ #15846]
17147         * misc/getauxval.c: Include errno.h.
17148         (__getauxval): Set errno to ENOENT if the requested type is not
17149         found.
17150         * misc/sys/auxv.h (getauxval): Document that it may set errno;
17151         don't declare with __attribute_const__.
17152         * elf/tst-auxv.c: Add tests for errno and type-not-found case.
17153         * manual/startup.texi: Document that getauxval sets errno.
17154
17155 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
17156
17157         * math/auto-libm-test-in: Add tests of jn and yn.
17158         * math/auto-libm-test-out: Regenerated.
17159         * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
17160         (yn_test_data): Likewise.
17161         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17162         mpfr_if_f.
17163         (func_calc_desc): Add mpfr_if_f union field.
17164         (FUNC_mpfr_if_f): New macro.
17165         (test_functions): Add jn and yn.
17166         (calc_generic_results): Assert type of second input for
17167         mpfr_ff_f.  Handle mpfr_if_f.
17168         (output_for_one_input_case): Disable all checking for arguments
17169         fitting floating-point types in case of an integer argument.
17170         * sysdeps/i386/fpu/libm-test-ulps: Update.
17171         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17172
17173         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
17174         Don't expect fegetround reference in libm.so.
17175
17176 2013-12-17  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
17177
17178         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
17179         $(config-cflags-nofma).
17180
17181 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
17182
17183         * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
17184         * math/auto-libm-test-out: Regenerated.
17185
17186         [BZ #16338]
17187         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
17188         to determine exponent and adjust argument to have exponent of -1.
17189         * math/auto-libm-test-in: Add more tests of log, log10, log1p and
17190         log2.
17191         * math/auto-libm-test-out: Regenerated.
17192         * sysdeps/i386/fpu/libm-test-ulps: Update.
17193         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17194
17195 2013-12-18  Ondřej Bílka  <neleai@seznam.cz>
17196
17197         * manual/probes.texi: Remove cases when per-thread arenas are
17198         disabled.
17199
17200 2013-12-18  Andreas Schwab  <schwab@suse.de>
17201
17202         * sysdeps/i386/i686/multiarch/strstr.c: Remove.
17203         * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
17204         * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
17205         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
17206         * sysdeps/i386/i686/multiarch/Makefile: Update.
17207         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
17208
17209 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17210
17211         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
17212         * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
17213
17214 2013-12-17  Paul Eggert  <eggert@cs.ucla.edu>
17215
17216         [BZ #15968]
17217         Support TZ transition times < 00:00:00.
17218         This is needed for version-3 tz-format files; it supports time
17219         stamps past 2037 for America/Godthab (the only entry in the tz
17220         database for which this change is relevant).
17221         * manual/time.texi (TZ Variable): Document transition times
17222         from -167:59:59 through -00:00:01.
17223         * time/tzset.c (tz_rule): Time of day is now signed.
17224         (__tzset_parse_tz): Parse negative time of day.
17225
17226         Document TZ transition times >= 25:00:00.
17227         * manual/time.texi (TZ Variable): Document transition times from
17228         25:00:00 through 167:59:59.  These are already supported, and this
17229         support will help with version-3 tz-format files.
17230
17231         * manual/time.texi (TZ Variable): Modernize North America example
17232         to reflect current (i.e., 2007-and-later) daylight saving rules.
17233
17234         * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
17235
17236 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17237
17238         * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
17239         * sysdeps/unix/bsd/bits/stat.h: Likewise.
17240         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
17241         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
17242         * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
17243         * sysdeps/unix/bsd/bsdstat.h: Likewise.
17244         * sysdeps/unix/bsd/clock.c: Likewise.
17245         * sysdeps/unix/bsd/i386/vfork.S: Likewise.
17246         * sysdeps/unix/bsd/i386/wait3.S: Likewise.
17247         * sysdeps/unix/bsd/init-posix.c: Likewise.
17248         * sysdeps/unix/bsd/poll.c: Likewise.
17249         * sysdeps/unix/bsd/ptsname.c: Likewise.
17250         * sysdeps/unix/bsd/seekdir.c: Likewise.
17251         * sysdeps/unix/bsd/setegid.c: Likewise.
17252         * sysdeps/unix/bsd/seteuid.c: Likewise.
17253         * sysdeps/unix/bsd/setgid.c: Likewise.
17254         * sysdeps/unix/bsd/setrgid.c: Likewise.
17255         * sysdeps/unix/bsd/setruid.c: Likewise.
17256         * sysdeps/unix/bsd/setsid.c: Likewise.
17257         * sysdeps/unix/bsd/setuid.c: Likewise.
17258         * sysdeps/unix/bsd/sigaction.c: Likewise.
17259         * sysdeps/unix/bsd/sigprocmask.c: Likewise.
17260         * sysdeps/unix/bsd/sigsuspend.c: Likewise.
17261         * sysdeps/unix/bsd/sys/reboot.h: Likewise.
17262         * sysdeps/unix/bsd/telldir.c: Likewise.
17263         * sysdeps/unix/bsd/times.c: Likewise.
17264         * sysdeps/unix/bsd/usleep.c: Likewise.
17265
17266         * misc/Makefile (install-lib): Remove libbsd-compat.a.
17267         ($(objpfx)libbsd-compat.a): Remove rule.
17268
17269         * include/features.h (__FAVOR_BSD): Do not define.
17270         * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
17271         features conflicting with POSIX.
17272         (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
17273         (_BSD_SOURCE): Remove description of not being a subset of other
17274         feature test macros.
17275         * manual/job.texi (getpgrp): Do not document BSD version.
17276         (getpgid): Do not document by reference to BSD getpgrp.
17277         * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
17278         * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
17279         * signal/signal.h [__FAVOR_BSD]: Likewise.
17280         * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
17281         instead of making contents conditional on [__FAVOR_BSD].
17282         * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
17283
17284 2013-12-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17285
17286         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17287
17288 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17289
17290         [BZ #16314]
17291         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
17292         values below 2**-450, not 2**-500.
17293         * math/auto-libm-test-in: Don't allow spurious underflow from
17294         hypot.
17295         * math/auto-libm-test-out: Regenerated.
17296
17297         [BZ #16316]
17298         [BZ #16330]
17299         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
17300         values of ha and hb and sort them after adjusting subnormal
17301         arguments.
17302         * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
17303         Likewise.
17304         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
17305         values of ea and eb and sort them after adjusting subnormal
17306         arguments.
17307         * math/auto-libm-test-in: Do not expect some hypot tests of
17308         subnormals to fail.  Add more hypot tests.
17309         * math/auto-libm-test-out: Regenerated.
17310
17311 2013-12-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17312
17313         [BZ #13304]
17314         * sysdeps/sh/s_fma.c: New file.
17315         * sysdeps/sh/s_fmaf.c: New file.
17316         * sysdeps/sh/soft-fp/sfp-machine.h: New file.  Based on arm
17317         version.
17318         * sysdeps/sh/Implies: Add sh/soft-fp.
17319
17320 2013-12-16  Roland McGrath  <roland@hack.frob.com>
17321
17322         * elf/dl-error.c (struct catch): Add new member `errcode'.  Add a
17323         level of indirection to members `objname', `errstring', `malloced'.
17324         (_dl_signal_error): Store through pointers in *LCATCH rather modifying
17325         *LCATCH itself.  Set *LCATCH->errcode to ERRCODE rather than passing
17326         it as the __longjmp argument (just pass 1 instead).
17327         (_dl_catch_error): Initialize C with argument pointers and address of
17328         volatile local ERRCODE rather than copying values out of C at return.
17329
17330 2013-12-16  Joseph Myers  <joseph@codesourcery.com>
17331
17332         * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
17333         * math/auto-libm-test-out: Regenerated.
17334         * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
17335         (hypot_test_data): Likewise.
17336         (pow_test_data): Likewise.
17337         (pow_tonearest_test_data): Likewise.
17338         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17339         mpfr_ff_f.
17340         (func_calc_desc): Add mpfr_ff_f union field.
17341         (FUNC_mpfr_ff_f): New macro.
17342         (test_functions): Add atan2, hypot and pow.
17343         (special_fill_min): New function.
17344         (special_fill_minus_min): Likewise.
17345         (special_fill_min_subnorm): Likewise.
17346         (special_fill_minus_min_subnorm): Likewise.
17347         (special_real_inputs): Add min, -min, min_subnorm and
17348         -min_subnorm.
17349         (calc_generic_results): Handle mpfr_ff_f.
17350         * sysdeps/i386/fpu/libm-test-ulps: Update.
17351         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17352
17353 2013-12-16  Will Newton  <will.newton@linaro.org>
17354
17355         * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
17356         (Aligned Memory Blocks): Add documentation for aligned_alloc
17357         and suggest it as an alternative to posix_memalign.
17358         (Hooks for Malloc): Document __memalign_hook is also called
17359         for aligned_alloc.  (Summary of Malloc): Add summary for
17360         aligned alloc.  Document __memalign_hook is also called
17361         for aligned_alloc.
17362
17363 2013-12-16  Will Newton  <will.newton@linaro.org>
17364
17365         * manual/memory.texi (Malloc Examples): Clarify default
17366         alignment documentation.  Suggest posix_memalign rather
17367         than memalign or valloc.
17368         (Aligned Memory Blocks): Remove suggestion to use memalign
17369         or valloc.  Remove obsolete comment about BSD.
17370         Document memalign errno values and mark the function obsolete.
17371         Document posix_memalign returned error codes.  Mark valloc
17372         as obsolete.  (Hooks for Malloc): __memalign_hook is also
17373         called for posix_memalign and valloc.
17374         (Summary of Malloc): Add posix_memalign to function summary.
17375         __memalign_hook is also called for posix_memalign and valloc.
17376
17377 2013-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
17378
17379         * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
17380         TAYLOR_SIN.
17381         (__sin): Adjust.
17382         (__cos): Likewise.
17383         (sloww): Use mynumber union.  Expand ternary operator into
17384         if-else statements.
17385         (cslow): use mynumber union.
17386
17387 2013-12-16  Allan McRae  <allan@archlinux.org>
17388
17389         * configure.ac: Set AUTOCONF when maintainer-mode is not used.
17390         * configure: Regenerated.
17391
17392         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
17393
17394         [BZ #14120]
17395         * configure.ac: Added --enable-maintainer-mode. Check for
17396         autoconf when enabled.
17397         * configure: Regenerated.
17398
17399         * nscd/nscd.service: New file.
17400         * nscd/nscd.tmpfiles: New file.
17401
17402 2013-12-14  Ondřej Bílka  <neleai@seznam.cz>
17403
17404         [BZ #12100]
17405         * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
17406         * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
17407         * sysdeps/x86_64/multiarch/strstr.c: ... here.
17408         (strstr): Add __strstr_sse2_unaligned ifunc.
17409         * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
17410         * sysdeps/x86_64/multiarch/strcasestr.c ... here.
17411         (strcasestr): Remove __strcasestr_sse42 ifunc.
17412         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
17413         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
17414         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
17415
17416 2013-12-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17417
17418         * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
17419         * sysdeps/sh/bits/fenv.h: ... here.
17420         * sysdeps/sh/sh4/fpu/bits: Remove directory.
17421
17422 2013-12-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17423
17424         * NEWS: Mention ppc64 STT_GNU_IFUNC support.
17425
17426         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
17427         hypotf multiarch implementations.
17428         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
17429         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
17430         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
17431         multiarch hypot for PPC64.
17432         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
17433         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
17434         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
17435         multiarch hypotf for PPC64.
17436
17437         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
17438         modff multiarch implementations.
17439         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
17440         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
17441         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
17442         multiarch modf for PPC64.
17443         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
17444         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
17445         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
17446         multiarch modff for PPC64.
17447
17448         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
17449         and logl multiarch implementations.
17450         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
17451         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
17452         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
17453         multiarch logb for PPC64.
17454         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
17455         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
17456         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
17457         multiarch logb for PPC64.
17458         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
17459         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
17460         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
17461         multiarch logb for PPC64.
17462
17463         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
17464         isinff multiarch implementation.
17465         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
17466         file.
17467         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
17468         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
17469         multiarch isinf for PPC64.
17470         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
17471         file.
17472         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
17473         multiarch isinff for PPC64.
17474
17475         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
17476         finitef multiarch implementation.
17477         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
17478         file.
17479         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
17480         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
17481         multiarch finite for PPC64.
17482         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
17483         file.
17484         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
17485         multiarch finitef for PPC64.
17486
17487         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
17488         lrint multiarch implementation.
17489         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
17490         file.
17491         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
17492         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
17493         multiarch llrint for PPC64.
17494         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
17495         multiarch lrint for PPC64.
17496
17497         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
17498         copysignf multiarch implementation.
17499         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
17500         file.
17501         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
17502         file.
17503         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
17504         multiarch copysign for PPC64.
17505         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
17506         multiarch copysignf for PPC64.
17507
17508         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
17509         multiarch implementation.
17510         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
17511         file.
17512         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
17513         file.
17514         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
17515         file.
17516         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
17517         file.
17518         multiarch llround for PPC64.
17519         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
17520         multiarch trunc for PPC64.
17521         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
17522         multiarch truncf for PPC64.
17523
17524         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
17525         multiarch implementation.
17526         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
17527         file.
17528         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
17529         file.
17530         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
17531         file.
17532         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
17533         file.
17534         multiarch llround for PPC64.
17535         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
17536         multiarch round for PPC64.
17537         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
17538         multiarch roundf for PPC64.
17539
17540         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
17541         multiarch implementation.
17542         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
17543         file.
17544         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
17545         file.
17546         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
17547         file.
17548         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
17549         file.
17550         multiarch llround for PPC64.
17551         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
17552         multiarch floor for PPC64.
17553         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
17554         multiarch floorf for PPC64.
17555
17556         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
17557         multiarch implementation.
17558         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
17559         file.
17560         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
17561         file.
17562         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
17563         file.
17564         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
17565         file.
17566         multiarch llround for PPC64.
17567         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
17568         multiarch ceil for PPC64.
17569         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
17570         multiarch ceilf for PPC64.
17571
17572         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
17573         multiarch implementation.
17574         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
17575         file.
17576         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
17577         file.
17578         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
17579         file.
17580         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
17581         multiarch llround for PPC64.
17582         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
17583         multiarch lround for PPC64.
17584
17585         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
17586         multiarch implementation.
17587         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
17588         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
17589         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
17590         file.
17591         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
17592         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
17593         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
17594         multiarch isnan for PPC64.
17595         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
17596         multiarch isnanf for PPC64.
17597
17598         * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
17599         * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
17600         * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
17601         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
17602         * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
17603         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
17604
17605         * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
17606         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
17607         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
17608         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
17609
17610         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
17611         multiarch implementations.
17612         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17613         (__libc_ifunc_impl_list): Likewise.
17614         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
17615         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
17616         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
17617         multiarch stpcpy for PPC64.
17618
17619         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
17620         multiarch implementations.
17621         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17622         (__libc_ifunc_impl_list): Likewise.
17623         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
17624         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
17625         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
17626         multiarch strcpy for PPC64.
17627
17628         * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
17629         redefine function name.
17630         (_wordcopy_fwd_dest_aligned): Likewise.
17631         (_wordcopy_bwd_aligned): Likewise.
17632         (_wordcopy_bwd_dest_aligned): Likewise.
17633         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
17634         multiarch implementations.
17635         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17636         (__libc_ifunc_impl_list): Likewise.
17637         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
17638         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
17639         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
17640         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
17641         multiarch wcscpy for PPC64.
17642
17643         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
17644         multiarch implementations.
17645         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17646         (__libc_ifunc_impl_list): Likewise.
17647         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
17648         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
17649         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
17650         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
17651         multiarch wcscpy for PPC64.
17652
17653         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
17654         multiarch implementations.
17655         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17656         (__libc_ifunc_impl_list): Likewise.
17657         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
17658         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
17659         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
17660         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
17661         multiarch wcsrchr for PPC64.
17662
17663         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
17664         multiarch implementations.
17665         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17666         (__libc_ifunc_impl_list): Likewise.
17667         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
17668         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
17669         * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
17670         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
17671         multiarch wcschr for PPC64.
17672
17673         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
17674         multiarch implementations.
17675         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17676         (__libc_ifunc_impl_list): Likewise.
17677         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
17678         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
17679         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
17680         multiarch strchrnul for PPC64.
17681
17682         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
17683         implementations.
17684         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17685         (__libc_ifunc_impl_list): Likewise.
17686         * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
17687         * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
17688         * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
17689         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
17690         strchr for PPC64.
17691
17692         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
17693         implementations.
17694         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17695         (__libc_ifunc_impl_list): Likewise.
17696         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
17697         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
17698         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
17699         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
17700         strncmp for PPC64.
17701
17702         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
17703         multiarch implementations.
17704         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17705         (__libc_ifunc_impl_list): Likewise.
17706         * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
17707         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
17708         strncasecmp for PPC64.
17709         * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
17710         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
17711         multiarch strncasecmp_l for PPC64.
17712
17713         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
17714         multiarch implementations.
17715         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
17716         (__libc_ifunc_impl_list): Likewise.
17717         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
17718         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
17719         multiarch strcasecmp for PPC64.
17720         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
17721         file.
17722         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
17723         multiarch strcasecmp_l for PPC64.
17724
17725         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
17726         implementations.
17727         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17728         (__libc_ifunc_impl_list): Likewise.
17729         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
17730         * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
17731         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
17732         strnlen for PPC64.
17733
17734         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
17735         implementations.
17736         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17737         (__libc_ifunc_impl_list): Likewise.
17738         * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
17739         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
17740         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
17741         strlen for PPC64.
17742
17743         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
17744         implementations.
17745         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17746         (__libc_ifunc_impl_list): Likewise.
17747         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
17748         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
17749         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
17750         rawmemrchr for PPC64.
17751
17752         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
17753         implementation.
17754         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17755         (__libc_ifunc_impl_list): Likewise.
17756         * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
17757         * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
17758         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
17759         memrchr for PPC64.
17760
17761         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
17762         implementation.
17763         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17764         (__libc_ifunc_impl_list): Likewise.
17765         * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
17766         * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
17767         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
17768         memchr for PPC64.
17769
17770         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
17771         implementation.
17772         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17773         (__libc_ifunc_impl_list): Likewise.
17774         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
17775         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
17776         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
17777         mempcpy for PPC64.
17778
17779         * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
17780         avoid cretion of __bzero symbol.
17781         * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
17782         Likewise.
17783         * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
17784         Likewise.
17785         * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
17786         Likewise.
17787         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
17788         multiarch implementations.
17789         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17790         (__libc_ifunc_impl_list): Likewise.
17791         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
17792         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
17793         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
17794         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
17795         bzero for PPC32.
17796         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
17797         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
17798         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
17799         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
17800         * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
17801         memset for PPC64.
17802         * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
17803
17804         * string/memcmp.c (memcmp): Using macro to redefine symbol name.
17805         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
17806         implementations.
17807         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17808         (__libc_ifunc_impl_list): Likewise.
17809         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
17810         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
17811         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
17812         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
17813         memcmp for PPC64.
17814
17815         * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
17816         multiarch for POWER/PPC64.
17817         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
17818         * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
17819         * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
17820         * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
17821         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
17822         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
17823         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
17824         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
17825         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
17826         memcpy for PPC64.
17827
17828         * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
17829         * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
17830         * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
17831         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
17832         * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
17833         * sysdeps/powerpc/powerpc64/power5/Implies: New File.
17834         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
17835         * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
17836         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
17837         * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
17838         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
17839         * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
17840         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
17841         * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
17842         * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
17843         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
17844         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
17845         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
17846         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
17847         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
17848         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
17849         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
17850
17851 2013-12-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17852
17853         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
17854
17855 2013-12-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
17856
17857         * benchtests/Makefile (bench): Add exp2 and log2.
17858         (LDLIBS-bench-exp2): Add -lm.
17859         (LDLIBS-bench-log2): Likewise.
17860         * benchtests/exp2-inputs: New inputs file.
17861         * benchtests/log2-inputs: New inputs file.
17862         * benchtests/log-inputs: Add new inputs.
17863         * benchtests/tan-inputs: Likewise.
17864
17865 2013-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17866
17867         * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
17868         definition...
17869         (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
17870         (csloww2): ... from here.
17871
17872         * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
17873         instead of structures.
17874         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
17875         (POLYNOMIAL): Likewise.
17876         (TAYLOR_SLOW): Likewise.
17877         (__sin): Likewise.
17878         (__cos): Likewise.
17879         (slow1): Likewise.
17880         (slow2): Likewise.
17881         (sloww): Likewise.
17882         (sloww1); Likewise.
17883         (sloww2): Likewise.
17884         (bsloww1): Likewise.
17885         (bsloww2): Likewise.
17886         (cslow2): Likewise.
17887         (csloww): Likewise.
17888         (csloww1): Likewise.
17889         (csloww2): Likewise.
17890
17891 2013-12-10  Ondřej Bílka  <neleai@seznam.cz>
17892
17893         * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
17894         (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
17895         Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
17896         * malloc/hooks.c (realloc_check): Likewise.
17897
17898         * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
17899         * malloc/arena.c: Remove PER_THREAD conditional.
17900         [!PER_THREAD]: Remove code.
17901         (ptmalloc_unlock_all2): Likewise.
17902         (ptmalloc_init): Likewise.
17903         (_int_new_arena): Likewise.
17904         (arena_get2): Likewise.
17905         * malloc/hooks.c (__malloc_get_state): Likewise.
17906         (__malloc_set_state): Likewise.
17907         * malloc/malloc.c: Likewise.
17908         (struct malloc_state): Likewise.
17909         (struct malloc_par): Likewise.
17910         (__libc_realloc): Likewise.
17911         (__libc_mallopt): Likewise.
17912
17913 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17914
17915         * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
17916
17917 2013-12-09  Ondřej Bílka  <neleai@seznam.cz>
17918
17919         * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
17920         macro to a function.  Check for zero perturb_byte.
17921         (_int_malloc, _int_free): Remove zero perturb_byte checks.
17922
17923         * malloc/malloc.c: (force_reg): Remove.
17924         (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
17925         (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
17926         force_reg by atomic_forced_read.
17927         * malloc/arena.c (ptmalloc_init): Likewise.
17928         * malloc/hooks.c (top_check): Likewise.
17929
17930 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17931
17932         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17933
17934 2013-12-09  Markus Trippelsdorf  <markus@trippelsdorf.de>
17935
17936         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17937
17938 2013-12-08  Joseph Myers  <joseph@codesourcery.com>
17939
17940         * math/auto-libm-test-in: Add tests of lgamma.
17941         * math/auto-libm-test-out: Regenerated.
17942         * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
17943         (M_LOG_2_SQRT_PIl): Likewise.
17944         (lgamma_test_data): Use AUTO_TESTS_f_f1.
17945         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17946         mpfr_f_f1.
17947         (func_calc_desc): Add mpfr_f_f1 union field.
17948         (ARGS1): New macro.
17949         (ARGS2): Likewise.
17950         (ARGS3): Likewise.
17951         (ARGS4): Likewise.
17952         (RET1): Likewise.
17953         (RET2): Likewise.
17954         (CALC): Likewise.
17955         (FUNC): Likewise.
17956         (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
17957         (test_functions): Add lgamma.
17958         (calc_generic_results): Handle mpfr_f_f1.
17959         * sysdeps/i386/fpu/libm-test-ulps: Update.
17960         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17961
17962 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17963
17964         * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
17965         __mpn_add_n for PowerPC64/POWER7.
17966         * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
17967         __mpn_sub_n for PowerPC64/POWER7.
17968
17969         * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
17970         __mpn_addmul_1 for PowerPC64.
17971         * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
17972         __mpn_submul_1 for PowerPC64.
17973         * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
17974         for PowerPC64.
17975         * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
17976         for PowerPC64.
17977
17978 2013-12-06  Fernando J. V. da Silva  <fernandojvdasilva@gmail.com>
17979
17980         [BZ #15089]
17981         * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
17982
17983 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17984
17985         * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
17986
17987         * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
17988         add multiarch folders.
17989         * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
17990         * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
17991         * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
17992         * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
17993         * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
17994         * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
17995         * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
17996         * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
17997         * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
17998         * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
17999         * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
18000         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
18001         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
18002         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
18003         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
18004         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
18005         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
18006
18007         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
18008         __ieee754_hypot and __ieee754_hypotf multiarch implementations.
18009         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
18010         New file.
18011         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
18012         New file.
18013         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
18014         multiarch __ieee754_hypot for PowerPC32.
18015         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
18016         New file.
18017         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
18018         New file.
18019         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
18020         multiarch __ieee754_hypotf for PowerPC32.
18021
18022         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
18023         long_double_symbol only if __logbl is defined.
18024         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
18025         * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
18026         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
18027         * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
18028         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
18029         * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
18030         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
18031         path for implementation.
18032         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
18033         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
18034         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
18035         logb, and logbl multiarch implementations for PowerPC32.
18036         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
18037         file.
18038         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
18039         file.
18040         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
18041         multiarch logb for PowerPC32.
18042         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
18043         file.
18044         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
18045         file.
18046         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
18047         multiarch logbf for PowerPC32.
18048         * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
18049         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
18050         file.
18051         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
18052         multiarch logbl implementation for PowerPC32.
18053
18054         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
18055         and modff multiarch implementations.
18056         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
18057         New file.
18058         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
18059         New file.
18060         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
18061         multiarch modf for PowerPC32.
18062         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
18063         New file.
18064         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
18065         New file.
18066         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
18067         multiarch modff for PowerPC32.
18068
18069         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
18070         and lrintf multiarch implementations.
18071         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
18072         New file.
18073         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
18074         New file.
18075         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
18076         multiarch lrint for PowerPC32.
18077         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
18078         file: multiarch lrintf for PowerPC32.
18079
18080         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
18081         and lroundf multiarch implementations.
18082         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
18083         New file.
18084         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
18085         New file.
18086         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
18087         New file.
18088         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
18089         multiarch lround for PowerPC32.
18090         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
18091         file: multiarch lroundf for PowerPC32.
18092
18093         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
18094         copysign and copysignf multiarch implementations.
18095         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
18096         New file.
18097         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
18098         New file.
18099         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
18100         file: multiarch copysign for PowerPC32.
18101         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
18102         file: multiarch copysignf for PowerPC32.
18103
18104         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
18105         and truncf multiarch implementations.
18106         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
18107         New file.
18108         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
18109         file.
18110         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
18111         multiarch trunc for PowerPC32.
18112         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
18113         New file.
18114         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
18115         New file.
18116         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
18117         multiarch truncf for PowerPC32.
18118
18119         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
18120         and roundf multiarch implementations.
18121         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
18122         New file.
18123         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
18124         file.
18125         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
18126         multiarch round for PowerPC32.
18127         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
18128         New file.
18129         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
18130         New file.
18131         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
18132         multiarch roundf for PowerPC32.
18133
18134         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
18135         and floorf multiarch implementations.
18136         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
18137         New file.
18138         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
18139         file.
18140         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
18141         multiarch floor for PowerPC32.
18142         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
18143         New file.
18144         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
18145         New file.
18146         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
18147         multiarch floorf for PowerPC32.
18148
18149         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
18150         and ceilf multiarch implementations.
18151         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
18152         New file.
18153         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
18154         file.
18155         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
18156         multiarch ceil for PowerPC32.
18157         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
18158         New file.
18159         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
18160         file.
18161         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
18162         multiarch ceilf for PowerPC32.
18163
18164         * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
18165         is defined.
18166         * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
18167         FINITEF is defined.
18168         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
18169         and finitef multiarch implementations.
18170         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
18171         New file.
18172         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
18173         file.
18174         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
18175         multiarch finite for PowerPC32.
18176         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
18177         New file.
18178         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
18179         file: multiarch finitef for PowerPC32.
18180
18181         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
18182         and isinff multiarch implementations.
18183         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
18184         file.
18185         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
18186         file.
18187         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
18188         multiarch isinf for PowerPC32.
18189         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
18190         New file.
18191         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
18192         multiarch isinff for PowerPC32.
18193
18194         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
18195         alias when __isnan is defined.
18196         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
18197         and isnanf multiarch implementations.
18198         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
18199         file.
18200         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
18201         file.
18202         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
18203         file.
18204         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
18205         file.
18206         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
18207         multiarch isnan for PowerPC32.
18208         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
18209         New file.
18210         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
18211         New file.
18212         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
18213         multiarch isnanf for PowerPC32.
18214
18215         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
18216         and sqrtf multiarch implementations.
18217         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
18218         file.
18219         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
18220         file.
18221         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
18222         multiarch sqrt for PowerPC32.
18223         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
18224         file.
18225         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
18226         file.
18227         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
18228         multiarch sqrtf for PowerPC32.
18229
18230         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
18231         and llroundf multiarch implementations.
18232         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
18233         New file.
18234         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
18235         New file.
18236         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
18237         New file.
18238         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
18239         file: multiarch llround for PowerPC32.
18240         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
18241         file: multiarch llroundf for PowerPC32.
18242
18243         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
18244         multiarch PowerPC32 fpu implementations.
18245         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
18246         New file.
18247         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
18248         New file.
18249         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
18250         multiarch llrint for PowerPC32.
18251         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
18252         New file.
18253         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
18254         New file.
18255         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
18256         file.
18257
18258         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
18259
18260         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
18261         file.
18262         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
18263         file.
18264         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
18265         file.
18266         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
18267         multiarch wordcopy for PPC32.
18268         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
18269         wordcopy objects.
18270         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18271         (__libc_ifunc_impl_list): Likewise.
18272         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
18273         * sysdeps/powerpc/power4/wordcopy.c: ... to here.
18274         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
18275         * sysdeps/powerpc/power6/wordcopy.c: ... to here.
18276         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
18277         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
18278
18279         * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
18280         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
18281         file.
18282         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
18283         file.
18284         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
18285         file.
18286         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
18287         multiarch wcscpy for PPC32.
18288         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
18289         multiarch objects.
18290         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18291         (__libc_ifunc_impl_list): Likewise.
18292         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
18293         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
18294         * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
18295         sysdeps/powerpc/power6/wcscpy.c.
18296
18297         * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
18298         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
18299         file.
18300         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
18301         file.
18302         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
18303         file.
18304         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
18305         multiarch wcsrchr for PPC32.
18306         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
18307         multiarch objects.
18308         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18309         (__libc_ifunc_impl_list): Likewise.
18310         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
18311         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
18312         * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
18313         sysdeps/powerpc/power6/wcsrchr.c.
18314
18315         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
18316         file.
18317         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
18318         file.
18319         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
18320         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
18321         multiarch wcschr for PPc32.
18322         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
18323         multiarch objects.
18324         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18325         (__libc_ifunc_impl_list): Likewise.
18326         * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
18327         * sysdeps/powerpc/power6/wcschr.c: ... to here.
18328         * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
18329         sysdeps/powerpc/power6/wcschr.c.
18330
18331         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
18332         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
18333         file.
18334         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
18335         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
18336         file: multiarch strchr for PPC32.
18337         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
18338         multiarch objects.
18339         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18340         (__libc_ifunc_impl_list): Likewise.
18341
18342         * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
18343         name.
18344         * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
18345         file.
18346         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
18347         file.
18348         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
18349         multiarch strchrnul for PPC32.
18350         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
18351         multiarch objects.
18352         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18353         (__libc_ifunc_impl_list): Likewise.
18354
18355         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
18356         file.
18357         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
18358         multiarch strncasecmp for PPC32.
18359         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
18360         file.
18361         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
18362         multiarch strncasecmp_l for PPC32.
18363         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
18364         strncasecmp multiarch objects.
18365         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18366         (__libc_ifunc_impl_list): Likewise.
18367
18368         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
18369         file.
18370         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
18371         multiarch strncasecmp for PPC32.
18372         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
18373         New file.
18374         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
18375         multiarch strcasecmp_l for PPC32.
18376         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
18377         multiarch objects.
18378         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18379         (__libc_ifunc_impl_list): Likewise.
18380
18381         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
18382         file.
18383         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
18384         file.
18385         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
18386         multiarch strncmp for PPC32.
18387         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
18388         multiarch objects.
18389         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18390         (__libc_ifunc_impl_list): Likewise.
18391
18392         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
18393         * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
18394         file.
18395         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
18396         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
18397         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
18398         multiarch objects.
18399         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18400         (__libc_ifunc_impl_list): Likewise.
18401
18402         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
18403         file.
18404         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
18405         file.
18406         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
18407         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
18408         multiarch objects.
18409         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18410         (__libc_ifunc_impl_list): Likewise.
18411
18412         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
18413         file.
18414         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
18415         file.
18416         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
18417         multiarch rawmemchr for PPC32.
18418         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
18419         multiarch objects.
18420         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18421         (__libc_ifunc_impl_list): Likewise.
18422
18423         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
18424         file.
18425         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
18426         file.
18427         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
18428         file: memrchr multiarch for PPC32.
18429         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
18430         multiarch objects.
18431         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18432         (__libc_ifunc_impl_list): Likewise.
18433
18434         * string/memchr.c (__memchr): Using macro to redefine symbol name.
18435         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
18436         file.
18437         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
18438         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
18439         multiarch memchr for PPC32.
18440         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
18441         multiarch objects.
18442         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18443         (__libc_ifunc_impl_list): Likewise.
18444
18445         * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
18446         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
18447         file.
18448         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
18449         file.
18450         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
18451         file: multiarch mempcpy for PPC32.
18452         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
18453         multiarch objects.
18454         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18455         (__libc_ifunc_impl_list): Likewise.
18456
18457         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
18458         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
18459         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
18460         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
18461         multiarch bzero for PPC32.
18462         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
18463         file.
18464         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
18465         file.
18466         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
18467         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
18468         file: multiarch memset for PPC32.
18469         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
18470         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
18471         memset multiarch objects.
18472         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18473         (__libc_ifunc_impl_list): Likewise.
18474
18475         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
18476         file.
18477         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
18478         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
18479         memcmp for PPC32.
18480         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
18481         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
18482         multiarch objects.
18483         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18484         (__libc_ifunc_impl_list): Likewise.
18485
18486         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
18487         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
18488         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
18489         file.
18490         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
18491         file.
18492         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
18493         file.
18494         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
18495         multiarch memcpy for PPC32.
18496         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
18497         multiarch objects.
18498         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18499         (__libc_ifunc_impl_list): Likewise.
18500
18501         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
18502         support multiarch for POWER/PPC32.
18503         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
18504         Likewise.
18505         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
18506         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
18507         Implies file to make multiarch folder appers before the fpu and
18508         default folder for power4 configuration.
18509
18510 2013-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
18511
18512         * scripts/bench.pl: Append volatile keyword to type.
18513
18514 2013-12-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18515
18516         * sysdeps/sh/sotruss-lib.c: New file.
18517         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
18518
18519 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18520
18521         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18522
18523 2013-12-05  Joseph Myers  <joseph@codesourcery.com>
18524
18525         [BZ #6810]
18526         * math/w_tgamma.c: Include <errno.h>.
18527         (__tgamma): Use __glibc_unlikely.  Set errno on underflow to 0.
18528         * math/w_tgammaf.c: Include <errno.h>.
18529         (__tgammaf): Use __glibc_unlikely.  Set errno on underflow to 0.
18530         * math/w_tgammal.c: Include <errno.h>.
18531         (__tgammal): Use __glibc_unlikely.  Set errno on underflow to 0.
18532         * math/auto-libm-test-in: Do not allow missing errno on tgamma
18533         underflow.  Add more tgamma tests.
18534         * math/auto-libm-test-out: Regenerated.
18535         * sysdeps/i386/fpu/libm-test-ulps: Update.
18536         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18537
18538         * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
18539         sin, sinh, tan, tanh, tgamma, y0 and y1.
18540         * math/auto-libm-test-out: Regenerated.
18541         * math/libm-test.inc (TEST_COND_x86_64): New macro.
18542         (TEST_COND_x86): Likewise.
18543         (M_E2l): Remove macro.
18544         (M_E3l): Likewise.
18545         (M_2_SQRT_PIl): Likewise.
18546         (M_SQRT_PIl): Likewise.
18547         (M_1_DIV_El): Likewise.
18548         (log_test_data): Use AUTO_TESTS_f_f.
18549         (log10_test_data): Likewise.
18550         (log1p_test_data): Likewise.
18551         (log2_test_data): Likewise.
18552         (sin_test_data): Likewise.
18553         (sin_tonearest_test_data): Likewise.
18554         (sin_towardzero_test_data): Likewise.
18555         (sin_downward_test_data): Likewise.
18556         (sin_upward_test_data): Likewise.
18557         (sinh_test_data): Likewise.
18558         (sinh_tonearest_test_data): Likewise.
18559         (sinh_towardzero_test_data): Likewise.
18560         (sinh_downward_test_data): Likewise.
18561         (sinh_upward_test_data): Likewise.
18562         (tan_test_data): Likewise.
18563         (tan_tonearest_test_data): Likewise.
18564         (tan_towardzero_test_data): Likewise.
18565         (tan_downward_test_data): Likewise.
18566         (tan_upward_test_data): Likewise.
18567         (tanh_test_data): Likewise.
18568         (tgamma_test_data): Likewise.
18569         (y0_test_data): Likewise.
18570         (y1_test_data): Likewise.
18571         * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
18572         (special_real_inputs): Add pi/4.
18573         * sysdeps/i386/fpu/libm-test-ulps: Update.
18574         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18575
18576 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18577
18578         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
18579         "longjmp_target" static probes.
18580         (__longjmp): Rename to __longjmp_symbol.
18581         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
18582         * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
18583         on which longjmp to generate.
18584         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
18585         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
18586         probe.
18587         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18588         (__sigjmp_save): Rename to __sigjmp_save_symbol.
18589         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
18590         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
18591         and __sigjmp_save_symbol based on which sigsetjmp to generated.
18592         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
18593         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
18594         __longjmp_symbol based on which __longjmp to generate.
18595         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
18596         probe.
18597         (setjmp): Rename to setjmp_symbol.
18598         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18599         (_setjmp): Rename to _setjmp_symbol.
18600         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18601         * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
18602         _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
18603         which setjmp to generate.
18604         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
18605         "longjmp_target" static probes.
18606
18607 2013-12-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
18608
18609         * benchtests/README: Add note about output arguments.
18610         * benchtests/bench-sincos.c: Remove file.
18611         * benchtests/sincos-inputs: New file.
18612         * scripts/bench.pl: Identify output arguments and define
18613         static variables for them.
18614
18615         * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
18616
18617         [BZ #15941]
18618         * Makefile (INSTALL): Add install-plain.texi as the primary
18619         dependency.
18620         * manual/install-plain.texi: New file.
18621         * manual/install.texi: Include node directive only for
18622         non-plaintext output.
18623
18624 2013-12-04  Joseph Myers  <joseph@codesourcery.com>
18625
18626         * stdlib/longlong.h: Update from GCC.
18627
18628         [BZ #6807]
18629         [BZ #15901]
18630         * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
18631         * math/w_j0f.c (y0f): Likewise.
18632         * math/w_j0l.c (__y0l): Likewise.
18633         * math/w_j1.c (y1): Likewise.
18634         * math/w_j1f.c (y1f): Likewise.
18635         * math/w_j1l.c (__y1l): Likewise
18636         * math/w_jn.c (yn): Likewise.
18637         * math/w_jnf.c (ynf): Likewise.
18638         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
18639         Bessel function pole errors in _POSIX_ mode.  Use NAN as return
18640         value for Bessel function domain errors outside _SVID_ mode.
18641         Adjust sign of return value for yn (negative integer, 0).
18642         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
18643         by zero in return for negative x and set sign appropriately for
18644         negative n.
18645         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
18646         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
18647         * math/libm-test.inc (y0_test_data): Add more tests and adjust
18648         expectations in error cases.
18649         (y1_test_data): Likewise.
18650         (yn_test_data): Likewise.
18651         * sysdeps/i386/fpu/libm-test-ulps: Update.
18652         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18653
18654 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18655
18656         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
18657         "64" to "64-v1".  Add "64-v2".
18658         (abi-64-options): Rename to ...
18659         (abi-64-v1-options): ... this.   Redefine _CALL_ELF.
18660         (abi-64-condition): Rename to ...
18661         (abi-64-v1-condition): ... this.  Add _CALL_ELF check.,
18662         (abi-64-ld-soname): Rename to ...
18663         (abi-64-v1-ld-soname): ... this.
18664         (abi-64-v2-options): Define.
18665         (abi-64-v2-condition): Likewise.
18666         (abi-64-v2-ld-soname): Likewise.
18667         * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
18668         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
18669         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
18670         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
18671         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
18672
18673 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18674             Alan Modra  <amodra@gmail.com>
18675
18676         * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
18677         New versions for use with the ELFv2 ABI.
18678         (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
18679         * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
18680         declaration.
18681         (struct La_ppc64v2_retval): Likewise.
18682         (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
18683         (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
18684         * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
18685         to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
18686         (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
18687         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
18688         Do not save or restore CR.
18689         (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
18690         (_dl_profile_resolve): Do no save or restore CR.  Support extended
18691         return values for ELFv2 ABI.  Fix location of FPR return registers.
18692         * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
18693         updated values for _CALL_ELF == 2.
18694         (La_regs, La_retval, int_retval): Likewise.
18695
18696 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18697
18698         * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
18699         (FRAME_MIN_SIZE_PARM): Likewise.
18700         (FRAME_BACKCHAIN): Likewise.
18701         (FRAME_CR_SAVE): Likewise.
18702         (FRAME_LR_SAVE): Likewise.
18703         (FRAME_TOC_SAVE): Likewise.
18704         (FRAME_PARM_SAVE): Likewise.
18705         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
18706         FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
18707         FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
18708         (call_mcount_parm_offset): New macro.
18709         (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
18710         (PROF): Use symbolic stack frame offsets.
18711         (TAIL_CALL_SYSCALL_ERROR): Likewise.
18712         * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
18713         Redefine in terms of FRAME_MIN_SIZE.
18714         (_dl_runtime_resolve): Use symbolic stack frame offsets.
18715         (_dl_profile_resolve): Likewise.  Update comment.
18716         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
18717         symbols stack frame offsets.
18718         (__sigsetjmp): Likewise.
18719         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
18720         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
18721         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
18722         * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
18723
18724         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
18725         (FRAME_BACKCHAIN): Remove.
18726         (FRAME_CR_SAVE): Likewise.
18727         (FRAME_LR_SAVE): Likewise.
18728         (FRAME_COMPILER_DW): Likewise.
18729         (FRAME_LINKER_DW): Likewise.
18730         (FRAME_TOC_SAVE): Likewise.
18731         (FRAME_PARM_SAVE): Likewise.
18732         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
18733         (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
18734         (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
18735         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
18736         (CHECK_SP): Use symbolic stack frame offsets.
18737         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
18738         zone" instead of caller's parameter save area for temp storage.
18739         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
18740         Likewise.  Also, use symbolic stack frame offsets.
18741         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
18742         stackblock): Redefine for _CALL_ELF == 2 to save parameters into
18743         our own stack frame instead of the caller's.
18744         (__socket): Use symbolic stack frame offsets.
18745
18746 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18747             Alan Modra  <amodra@gmail.com>
18748
18749         * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
18750         Define.
18751         (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
18752         (PPC64_LOCAL_ENTRY_OFFSET): Define.
18753         * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
18754         New function.
18755         (elf_machine_fixup_plt): Call it.
18756         (elf_machine_plt_conflict): Likewise.  Add map, sym_map, and
18757         reloc arguments.
18758         (elf_machine_rela): Update call to elf_machine_plt_conflict.
18759         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
18760         (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
18761         r2 before calling target.
18762
18763 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18764             Alan Modra  <amodra@gmail.com>
18765
18766         * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
18767         (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
18768         versions of macros to support ELFv2 ABI.
18769         (LOCALENTRY): New macro.
18770         (ENTRY, EALIGN): Use it.
18771         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
18772         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
18773         fall through into ENTRY entry point.
18774         * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
18775         Only define if _CALL_ELF != 2.
18776
18777         (elf_machine_matches_host): Verify ABI version matches.
18778         (RTLD_START): Use LOCALENTRY.
18779         (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
18780         (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
18781         (PLT_ENTRY_WORDS): New macro.
18782         (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
18783         (elf_machine_runtime_setup): Support ELFv2 ABI.
18784         (elf_machine_fixup_plt): Likewise.
18785         (elf_machine_plt_conflict): Likewise.
18786         (resolve_ifunc): Likewise.
18787         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
18788         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
18789         Likewise.
18790         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
18791         (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
18792         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
18793         (makecontext): Support ELFv2 ABI.
18794         * elf/elf.h (EF_PPC64_ABI): Define.
18795
18796 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18797
18798         * sysdeps/powerpc/powerpc64/sysdep.h
18799         (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
18800         (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
18801         (ENTRY) [ASSEMBLER]: ... but instead here ...
18802         (EALIGN) [ASSEMBLER]: ... and here.
18803         (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
18804         (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
18805         (ENTRY_2) [!ASSEMBLER]: Use it.
18806         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
18807         ENTRY_2 changes.  Use PPC64_LOAD_FUNCPTR.
18808         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
18809         (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
18810         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
18811         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
18812         Use PPC64_LOAD_FUNCPTR.
18813
18814         * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
18815
18816 2013-12-04  Alan Modra  <amodra@gmail.com>
18817
18818         * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
18819         (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
18820         (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
18821         (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
18822
18823         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
18824         overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
18825         R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
18826         Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
18827         R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
18828         Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
18829
18830 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18831
18832         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
18833         (__makecontext): Fix incorrect CFI when backtracing out of
18834         context created via makecontext.
18835         * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
18836         (__setcontext): Fix incorrect CFI during switch to new context.
18837         (__novec_setcontext): Likewise.
18838
18839 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
18840
18841         [BZ #4772]
18842         * time/strptime_l.c (__strptime_internal): Allow modifiers
18843         in strptime.
18844         * time/tst-strptime.c (day_tests): Add testcase.
18845
18846 2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
18847
18848         * scripts/bench.pl: Skip over blank lines.
18849
18850 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
18851
18852         [BZ #926]
18853         * manual/time.texi (Calendar Time): Clarify what timezone functions
18854         use.
18855
18856 2013-12-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18857
18858         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18859
18860 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
18861
18862         * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
18863         implementation.
18864         * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
18865         * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
18866         * debug/memset_chk.c (__memset_chk): Likewise.
18867         * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
18868         * debug/strncpy_chk.c: Likewise.
18869
18870 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
18871
18872         [BZ #15268]
18873         [BZ #15425]
18874         * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
18875         (__ieee754_exp): For possibly underflowing results, check size of
18876         result and force underflow exception if required.
18877         * math/auto-libm-test-in: Add more tests of exp.
18878         * math/auto-libm-test-out: Regenerated.
18879         * sysdeps/i386/fpu/libm-test-ulps: Update.
18880         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18881
18882         [BZ #16283]
18883         * math/w_exp2.c (__exp2): Handle a zero result as underflow.
18884         * math/w_exp2f.c (__exp2f): Likewise.
18885         * math/w_exp2l.c (__exp2l): Likewise.
18886         * math/auto-libm-test-in: Do not allow missing errno on exp2
18887         underflow.
18888         * math/auto-libm-test-out: Regenerated.
18889
18890 2013-12-03  Ondřej Bílka  <neleai@seznam.cz>
18891
18892         [BZ #16274]
18893         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
18894         handle filename validation.
18895         * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
18896         (do_open): Delete.
18897
18898 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
18899
18900         [BZ #6786]
18901         * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
18902         (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
18903         * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
18904         <float.h>.
18905         (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
18906         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
18907         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18908         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
18909         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18910         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
18911         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18912         * math/auto-libm-test-in: Don't allow missing errno from erfc.
18913         Add more erfc tests.
18914         * math/auto-libm-test-out: Regenerated.
18915         * sysdeps/i386/fpu/libm-test-ulps: Update.
18916         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18917
18918         * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
18919         exp2, expm1, j0 and j1.
18920         * math/auto-libm-test-out: Regenerated.
18921         * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
18922         (erfc_test_data): Likewise.
18923         (exp_test_data): Likewise.
18924         (exp_tonearest_test_data): Likewise.
18925         (exp_towardzero_test_data): Likewise.
18926         (exp_downward_test_data): Likewise.
18927         (exp_upward_test_data): Likewise.
18928         (exp10_test_data): Likewise.
18929         (exp2_test_data): Likewise.
18930         (expm1_test_data): Likewise.
18931         (j0_test_data): Likewise.
18932         (j1_test_data): Likewise.
18933         * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
18934         (input_flag_type): Add flag_xfail_rounding.
18935         (input_flags): Add xfail-rounding.
18936         (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
18937         (output_for_one_input_case): Handle flag_xfail_rounding.
18938         * sysdeps/i386/fpu/libm-test-ulps: Update.
18939         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18940
18941 2013-12-03  Aurelien Jarno  <aurelien@aurel32.net>
18942
18943         [BZ #16289]
18944         * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
18945         division by 0.
18946
18947 2013-12-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
18948
18949         [BZ #16195]
18950         * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
18951         (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
18952         (STAP_PROBE0): New macro.
18953         (STAP_PROBE1): Likewise.
18954         (STAP_PROBE2): Likewise.
18955         (STAP_PROBE3): Likewise.
18956         (STAP_PROBE4): Likewise.
18957
18958 2013-12-02  Ondřej Bílka  <neleai@seznam.cz>
18959
18960         * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
18961
18962 2013-12-02  Steve Ellcey  <sellcey@mips.com>
18963
18964         * benchtests/Makefile (bench): Add sqrt.
18965         (LDLIBS-bench-sqrt): New.
18966         * benchtests/sqrt-input: New.
18967
18968 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
18969
18970         * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
18971         (GAIH_EAI): Likewise.
18972         (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
18973         (gaih_inet): Likewise.
18974         (getaddrinfo): Don't use GAIH_EAI.
18975
18976         * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
18977         (struct gaih): Remove definition.
18978
18979 2013-12-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
18980
18981         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
18982         Use HERRNOP directly.
18983
18984 2013-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18985
18986         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18987
18988 2013-11-30  Joseph Myers  <joseph@codesourcery.com>
18989
18990         * math/gen-auto-libm-tests.c (test_functions): Add more
18991         single-argument functions.
18992         (special_fill_pi_2): New function.
18993         (special_fill_minus_pi_2): Likewise.
18994         (special_fill_pi_6): Likewise.
18995         (special_fill_minus_pi_6): Likewise.
18996         (special_fill_pi_3): Likewise.
18997         (special_fill_2pi_3): Likewise.
18998         (special_fill_e): Likewise.
18999         (special_fill_1_e): Likewise.
19000         (special_fill_e_minus_1): Likewise.
19001         (special_real_inputs): Add more special inputs.
19002         (output_for_one_input_case): Do not require ERANGE on underflow to
19003         zero if round-to-nearest result does not underflow to zero, unless
19004         exact results required.
19005         * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
19006         atan, atanh, cbrt, cos and cosh.
19007         * math/auto-libm-test-out: Regenerated.
19008         * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
19009         (acos_tonearest_test_data): Likewise.
19010         (acos_towardzero_test_data): Likewise.
19011         (acos_downward_test_data): Likewise.
19012         (acos_upward_test_data): Likewise.
19013         (acosh_test_data): Likewise.
19014         (asin_test_data): Likewise.
19015         (asin_tonearest_test_data): Likewise.
19016         (asin_towardzero_test_data): Likewise.
19017         (asin_upward_test_data): Likewise.
19018         (asinh_test_data): Likewise.
19019         (atan_test_data): Likewise.
19020         (atanh_test_data): Likewise.
19021         (cbrt_test_data): Likewise.
19022         (cos_test_data): Likewise.
19023         (cos_tonearest_test_data): Likewise.
19024         (cos_towardzero_test_data): Likewise.
19025         (cos_downward_test_data): Likewise.
19026         (cos_upward_test_data): Likewise.
19027         (cosh_test_data): Likewise.
19028         (cosh_tonearest_test_data): Likewise.
19029         (cosh_towardzero_test_data): Likewise.
19030         (cosh_downward_test_data): Likewise.
19031         (cosh_upward_test_data): Likewise.
19032         * sysdeps/i386/fpu/libm-test-ulps: Update.
19033         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19034
19035 2013-11-29  Joseph Myers  <joseph@codesourcery.com>
19036
19037         [BZ #6787]
19038         * math/w_exp10.c (__exp10): Handle a zero result as underflow.
19039         * math/w_exp10f.c (__exp10f): Likewise.
19040         * math/w_exp10l.c (__exp10l): Likewise.
19041         * math/libm-test.inc (exp10_test_data): Add more tests and expect
19042         errno settings in existing tests.
19043
19044         [BZ #14032]
19045         * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
19046         precision control set to double precision.
19047         * sysdeps/i386/fpu/w_sqrt.c: New file.
19048         * math/auto-libm-test-in: Add more tests.
19049         * math/auto-libm-test-out: Update.
19050
19051         * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
19052         (sqrt_test_tonearest): New function.
19053         (sqrt_towardzero_test_data): New variable.
19054         (sqrt_test_towardzero): New function.
19055         (sqrt_downward_test_data): New variable.
19056         (sqrt_test_downward): New function.
19057         (sqrt_upward_test_data): New variable.
19058         (sqrt_test_upward): New function.
19059         (main): Call the new functions.
19060
19061         * math/gen-auto-libm-tests.c: New file.
19062         * math/auto-libm-test-in: Likewise.
19063         * math/auto-libm-test-out: New generated file.
19064         * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
19065         variables.
19066         (%beautify): Add generated representations of zero.
19067         (top level): Set $auto_input and call parse_auto_input.
19068         (beautify): Remove trailing "f" from hex float constants.
19069         (parse_args): Handle XFAIL_TEST.
19070         (convert_condition): New function.
19071         (or_value): Likewise.
19072         (or_cond_value): Likewise.
19073         (generate_testfile): Handle AUTO_TESTS_* lines.
19074         (parse_auto_input): New function.
19075         * math/libm-test.inc (XFAIL_TEST): New macro.
19076         (ERRNO_UNCHANGED): Update value.
19077         (ERRNO_EDOM): Likewise.
19078         (ERRNO_ERANGE): Likewise.
19079         (IGNORE_RESULT): Likewise.
19080         (TEST_COND_flt_32): New macro.
19081         (TEST_COND_dbl_64): Likewise.
19082         (TEST_COND_ldbl_96_intel): Likewise.
19083         (TEST_COND_ldbl_96_m68k): Likewise.
19084         (TEST_COND_ldbl_128): Likewise.
19085         (TEST_COND_ldbl_128ibm): Likewise.
19086         (TEST_COND_long32): Likewise.
19087         (TEST_COND_long64): Likewise.
19088         (TEST_COND_before_rounding): Likewise.
19089         (TEST_COND_after_rounding): Likewise.
19090         (enable_test): Handle XFAIL_TEST flag.
19091         (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
19092         with finite results.
19093         * math/Makefile ($(objpfx)libm-test.stmp): Depend on
19094         auto-libm-test-out.
19095
19096 2013-11-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
19097             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
19098
19099         [BZ #16214]
19100         * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
19101         __tls_get_addr_internal instead of __tls_get_offset in order to
19102         avoid GOT pointer dependency.  Make rtld export
19103         __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
19104         __tls_get_addr since we are a __tls_get_offset platform.
19105         * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
19106         GOT pointer being set up before.
19107         * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
19108
19109 2013-11-28  Joseph Myers  <joseph@codesourcery.com>
19110
19111         * manual/math.texi (Errors in Math Functions): Document accuracy
19112         goals.
19113
19114         [BZ #15004]
19115         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
19116         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
19117         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
19118         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
19119         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
19120         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
19121         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
19122         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
19123         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
19124         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
19125         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
19126         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
19127         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
19128         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
19129         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
19130         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
19131
19132         * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
19133         * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
19134         * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
19135         * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
19136         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
19137         Likewise.
19138         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
19139         Likewise.
19140         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
19141         Likewise.
19142         * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
19143         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
19144         (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
19145         atomic-feupdateenv and flt-rounds.
19146         * sysdeps/powerpc/nofpu/Versions (libc): Add
19147         __atomic_feholdexcept, __atomic_feclearexcept,
19148         __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
19149         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
19150         (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
19151         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
19152         (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
19153         here.
19154         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
19155         Update.
19156
19157         * manual/arith.texi (FP Exceptions): Document that exceptions may
19158         not be raised when matherr is used.
19159         (Math Error Reporting): Document overflow in directed rounding
19160         modes.  Document that errno may not be set when finite values are
19161         returned on overflow.  Document intent to set errno on underflow
19162         only for underflow to zero.
19163
19164         [BZ #16271]
19165         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
19166         round-to-nearest then adjust result for other rounding modes.
19167         * include/fenv.h (fegetround): Use libm_hidden_proto.
19168         * math/fegetround.c (fegetround): Use libm_hidden_def.
19169         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
19170         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
19171         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
19172         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
19173         Likewise.
19174         * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
19175         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
19176         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
19177         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
19178
19179 2013-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
19180
19181         [BZ #16077]
19182         * nss/Versions (libnss_files): Add
19183         _nss_files_gethostbyname3_r.
19184         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
19185         New function.
19186         (HOST_DB_LOOKUP): Remove macro.
19187         (_nss_files_gethostbyname_r): Implement function without the
19188         HOST_DB_LOOKUP macro.
19189         (_nss_files_gethostbyname2_r): Likewise.
19190
19191 2013-11-28  Ondřej Bílka  <neleai@seznam.cz>
19192
19193         * malloc/malloc.c (__libc_calloc): Make memset a tail call.
19194
19195 2013-11-26  Uros Bizjak  <ubizjak@gmail.com>
19196
19197         * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
19198         _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
19199         warning.
19200
19201 2013-11-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19202
19203         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
19204         __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
19205         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
19206         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
19207         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
19208         __fe_nomask_env_priv and attribute_hidden.
19209         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
19210         (libc_feupdateenv_test_ppc): Likewise.
19211         (libc_feresetround_ppc): Likewise.
19212         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19213         (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
19214         compat_symbol macro.
19215         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19216         (__fe_nomask_env): Likewise.
19217         * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
19218
19219 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19220
19221         * string/Makefile: Remove ifunc tests.
19222         * string/test-string.h: Define TEST_IFUNC.
19223         * string/test-bcopy-ifunc.c: Remove.
19224         * string/test-bzero-ifunc.c: Likewise.
19225         * string/test-memccpy-ifunc.c: Likewise.
19226         * string/test-memchr-ifunc.c: Likewise.
19227         * string/test-memcmp-ifunc.c: Likewise.
19228         * string/test-memcpy-ifunc.c: Likewise.
19229         * string/test-memmem-ifunc.c: Likewise.
19230         * string/test-memmove-ifunc.c: Likewise.
19231         * string/test-mempcpy-ifunc.c: Likewise.
19232         * string/test-memrchr-ifunc.c: Likewise.
19233         * string/test-memset-ifunc.c: Likewise.
19234         * string/test-rawmemchr-ifunc.c: Likewise.
19235         * string/test-stpcpy-ifunc.c: Likewise.
19236         * string/test-stpncpy-ifunc.c: Likewise.
19237         * string/test-strcasecmp-ifunc.c: Likewise.
19238         * string/test-strcasestr-ifunc.c: Likewise.
19239         * string/test-strcat-ifunc.c: Likewise.
19240         * string/test-strchr-ifunc.c: Likewise.
19241         * string/test-strchrnul-ifunc.c: Likewise.
19242         * string/test-strcmp-ifunc.c: Likewise.
19243         * string/test-strcpy-ifunc.c: Likewise.
19244         * string/test-strcspn-ifunc.c: Likewise.
19245         * string/test-strlen-ifunc.c: Likewise.
19246         * string/test-strncasecmp-ifunc.c: Likewise.
19247         * string/test-strncat-ifunc.c: Likewise.
19248         * string/test-strncmp-ifunc.c: Likewise.
19249         * string/test-strncpy-ifunc.c: Likewise.
19250         * string/test-strnlen-ifunc.c: Likewise.
19251         * string/test-strpbrk-ifunc.c: Likewise.
19252         * string/test-strrchr-ifunc.c: Likewise.
19253         * string/test-strspn-ifunc.c: Likewise.
19254         * string/test-strstr-ifunc.c: Likewise.
19255
19256 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19257
19258         * benchtests/Makefile: Remove ifunc tests.
19259         * benchtests/bench-string.h: Define TEST_IFUNC.
19260         * benchtests/bench-bcopy-ifunc.c: Remove.
19261         * benchtests/bench-bzero-ifunc.c: Likewise.
19262         * benchtests/bench-memccpy-ifunc.c: Likewise.
19263         * benchtests/bench-memchr-ifunc.c: Likewise.
19264         * benchtests/bench-memcmp-ifunc.c: Likewise.
19265         * benchtests/bench-memcpy-ifunc.c: Likewise.
19266         * benchtests/bench-memmem-ifunc.c: Likewise.
19267         * benchtests/bench-memmove-ifunc.c: Likewise.
19268         * benchtests/bench-mempcpy-ifunc.c: Likewise.
19269         * benchtests/bench-memrchr-ifunc.c: Likewise.
19270         * benchtests/bench-memset-ifunc.c: Likewise.
19271         * benchtests/bench-rawmemchr-ifunc.c: Likewise.
19272         * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
19273         * benchtests/bench-stpcpy-ifunc.c: Likewise.
19274         * benchtests/bench-stpncpy-ifunc.c: Likewise.
19275         * benchtests/bench-strcasecmp-ifunc.c: Likewise.
19276         * benchtests/bench-strcasestr-ifunc.c: Likewise.
19277         * benchtests/bench-strcat-ifunc.c: Likewise.
19278         * benchtests/bench-strchr-ifunc.c: Likewise.
19279         * benchtests/bench-strchrnul-ifunc.c: Likewise.
19280         * benchtests/bench-strcmp-ifunc.c: Likewise.
19281         * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
19282         * benchtests/bench-strcpy-ifunc.c: Likewise.
19283         * benchtests/bench-strcspn-ifunc.c: Likewise.
19284         * benchtests/bench-strlen-ifunc.c: Likewise.
19285         * benchtests/bench-strncasecmp-ifunc.c: Likewise.
19286         * benchtests/bench-strncat-ifunc.c: Likewise.
19287         * benchtests/bench-strncmp-ifunc.c: Likewise.
19288         * benchtests/bench-strncpy-ifunc.c: Likewise.
19289         * benchtests/bench-strnlen-ifunc.c: Likewise.
19290         * benchtests/bench-strpbrk-ifunc.c: Likewise.
19291         * benchtests/bench-strrchr-ifunc.c: Likewise.
19292         * benchtests/bench-strsep-ifunc.c: Likewise.
19293         * benchtests/bench-strspn-ifunc.c: Likewise.
19294         * benchtests/bench-strstr-ifunc.c: Likewise.
19295
19296 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19297
19298         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
19299
19300 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19301
19302         * resolv/netdb.h: Use __glibc_reserved instead __unused.
19303         * rt/aio.h: Likewise.
19304         * sysdeps/gnu/bits/utmp.h: Likewise.
19305         * sysdeps/gnu/bits/utmpx.h: Likewise.
19306         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
19307         * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
19308         * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
19309         * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
19310         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
19311         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
19312         * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
19313         * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
19314         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
19315         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
19316         * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
19317         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
19318         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
19319         * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
19320         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
19321         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
19322         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
19323         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
19324         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
19325         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
19326         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
19327         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
19328         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
19329         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
19330         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
19331         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
19332         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
19333         * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
19334         * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
19335         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
19336         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
19337         * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
19338         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
19339         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
19340         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
19341         * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
19342         * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
19343         * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
19344         * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
19345         * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
19346         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
19347         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
19348
19349 2013-11-25  Carlos O'Donell  <carlos@redhat.com>
19350
19351         [BZ #16245]
19352         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
19353         Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
19354
19355 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
19356
19357         * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
19358         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
19359         Likewise.
19360
19361 2013-11-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19362
19363         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
19364         SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
19365         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
19366         (__fesetround): Remove define.
19367         * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
19368         rounding and exceptions handling.
19369         * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
19370         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
19371         (__fe_nomask_env): Likewise.
19372         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
19373         __fegetround instead of fegetround.
19374         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
19375         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
19376
19377 2013-11-21  Roland McGrath  <roland@hack.frob.com>
19378
19379         * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
19380         it's there.
19381
19382         * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
19383
19384 2013-11-21  Meador Inge  <meadori@codesourcery.com>
19385
19386         [BZ #11157]
19387         * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
19388         (encrypt_r): Likewise.
19389         * malloc/obstack.h (obstack_free): Likewise.
19390         * posix/unistd.h (encrypt): Likewise.
19391
19392 2013-11-21  Guy Martin  <gmsoft@tuxicoman.be>
19393
19394         * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
19395         DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
19396         DL_CALL_DT_FINI() that call the functions directly.
19397         * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
19398         * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
19399         * elf/dl-fini.c: Likewise.
19400
19401 2013-11-20  Ondřej Bílka  <neleai@seznam.cz>
19402
19403         * malloc/hooks.c (memalign_check): Add alignment rounding.
19404         * malloc/malloc.c (_mid_memalign): New function.
19405         (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
19406         Implement by calling _mid_memalign.
19407         * manual/probes.texi (Memory Allocation Probes): Remove
19408         memory_valloc_retry and memory_pvalloc_retry.
19409
19410 2013-11-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
19411
19412         * locale/programs/locarchive.c (open_archive): Add const
19413         qualifier to ARCHIVEFNAME and copy default fname to
19414         DEFAULT_FNAME.
19415
19416         [BZ #15601]
19417         * libio/tst-widetext.input: Rename Oriya to Odia.
19418         * locale/iso-639.def: Likewise.
19419
19420         * manual/probes.texi (Mathematical Function Probes): Add
19421         documentation for sin, cos, asin and acos probes.
19422         * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
19423         (__sin32): Add slowasin probe.
19424         (__cos32): Add slowacos probe.
19425         (__mpsin): Add slowsin probe.
19426         (__mpcos): Add slowcos probe.
19427
19428 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
19429
19430         [BZ #15483]
19431         * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
19432         thread-local __sim_exceptions_thread and global
19433         __sim_exceptions_global.
19434         (__sim_disabled_exceptions): Change to thread-local
19435         __sim_disabled_exceptions_thread and global
19436         __sim_disabled_exceptions_global.
19437         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
19438         and global __sim_round_mode_global.
19439         (__simulate_exceptions): Use thread-local floating-point state and
19440         set global state from it as needed.
19441         * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
19442         __sim_exceptions_thread, __sim_disabled_exceptions_thread and
19443         __sim_round_mode_thread.
19444         * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
19445         (__sim_exceptions): Change to thread-local __sim_exceptions_thread
19446         and global __sim_exceptions_global.
19447         (__sim_disabled_exceptions): Change to thread-local
19448         __sim_disabled_exceptions_thread and global
19449         __sim_disabled_exceptions_global.
19450         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
19451         and global __sim_round_mode_global.
19452         [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
19453         (SIM_SET_GLOBAL): Likewise.
19454         * sysdeps/powerpc/soft-fp/sfp-machine.h
19455         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
19456         __sim_round_mode_thread.
19457         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
19458         __sim_disabled_exceptions_thread.
19459         (__sim_exceptions): Change to __sim_exceptions_thread.
19460         (__sim_disabled_exceptions): Change to
19461         __sim_disabled_exceptions_thread.
19462         (__sim_round_mode): Change to __sim_round_mode_thread.
19463         * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
19464         thread-local floating-point state and set global state from it as
19465         needed.
19466         * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
19467         * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
19468         (__sim_disabled_exceptions): Remove extern declaration.
19469         (feenableexcept): Use thread-local floating-point state and set
19470         global state from it as needed.
19471         * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
19472         extern declaration.
19473         (__sim_disabled_exceptions): Likewise.
19474         (__sim_round_mode): Likewise.
19475         (__fegetenv): Use thread-local floating-point state.
19476         * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
19477         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
19478         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
19479         floating-point state and set global state from it as needed.
19480         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
19481         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
19482         * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
19483         Likewise.
19484         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
19485         * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
19486         Likewise.
19487         sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
19488         * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
19489         Use __sim_round_mode_thread.
19490         * math/test-fenv-tls.c: New file.
19491         * math/Makefile (tests): Add test-fenv-tls.
19492         ($(objpfx)test-fenv-tls): Depend on
19493         $(common-objpfx)nptl/libpthread.so.
19494
19495 2013-11-19  Andreas Schwab  <schwab@suse.de>
19496
19497         * locale/programs/locale.c (show_info): Decode wordarray elements.
19498         * locale/categories.def (LC_MONETARY): Add element for
19499         _NL_MONETARY_CRNCYSTR.
19500         * locale/C-monetary.c (conversion_rate): New variable.
19501         (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
19502         element.
19503
19504 2013-11-18  Chris Metcalf  <cmetcalf@tilera.com>
19505
19506         * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
19507         Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
19508
19509 2013-11-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
19510
19511         * elf/Makefile (tst-auxv): New test.
19512         * elf/tst-auxv.c: New
19513         * elf/rtld.c (dl_main): Adjust AT_EXECFN
19514
19515 2013-11-18  Joseph Myers  <joseph@codesourcery.com>
19516
19517         * include/libc-symbols.h (__hidden_proto): Add argument "thread".
19518         (hidden_proto): Caller changed.
19519         (hidden_tls_proto): New macro.
19520         (libc_hidden_tls_proto): Likewise.
19521         (rtld_hidden_tls_proto): Likewise.
19522         (libm_hidden_tls_proto): Likewise.
19523         (libresolv_hidden_tls_proto): Likewise.
19524         (librt_hidden_tls_proto): Likewise.
19525         (libdl_hidden_tls_proto): Likewise.
19526         (libnss_files_hidden_tls_proto): Likewise.
19527         (libnsl_hidden_tls_proto): Likewise.
19528         (libnss_nisplus_hidden_tls_proto): Likewise.
19529         (libutil_hidden_tls_proto): Likewise.
19530
19531 2013-11-18  Ondřej Bílka  <neleai@seznam.cz>
19532
19533         [BZ #10253]
19534         * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
19535         (decompose_rpath): Defer expansion to fillin_rpath.
19536         (_dl_init_paths): Pass linkmap to fillin_rpath.
19537
19538 2013-11-18  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
19539
19540         * benchtests/Makefile: Add strsep.
19541         * benchtests/bench-strsep.c: New file: strsep benchtest.
19542         * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
19543
19544 2013-11-18  Andreas Schwab  <schwab@suse.de>
19545
19546         * locale/programs/locale.c (show_info) [case byte]: Check for
19547         '\377' instead of '\177'.
19548         * locale/C-monetary.c (not_available): Always use "\377".
19549         * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
19550         unspecified p_sign_posn and n_sign_posn.  Check for '\377' to
19551         detect unavailable sign_posn locale elements.
19552         * locale/localeconv.c (__localeconv): For grouping and
19553         mon_grouping handle "\177" and "\377" like no grouping.
19554         (INT_ELEM): New macro.  Use it to set all numeric members.
19555         * locale/programs/ld-monetary.c (monetary_read)
19556         <tok_mon_grouping>: Normalize single -1 to the empty string.
19557         * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
19558         Likewise.
19559
19560 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
19561
19562         [BZ #16055]
19563         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
19564         when we match (nil).
19565         * stdio-common/tst-sscanf.c (struct test): Add testcase.
19566
19567 2013-11-16  Joseph Myers  <joseph@codesourcery.com>
19568
19569         * math/libm-test.inc (TEST_NAN_SIGN): New macro.
19570         (NO_TEST_INLINE): Update value.
19571         (ERRNO_UNCHANGED): Likewise.
19572         (ERRNO_EDOM): Likewise.
19573         (ERRNO_ERANGE): Likewise.
19574         (IGNORE_RESULT): Likewise.
19575         (check_float_internal): Check signs of NaN results if
19576         TEST_NAN_SIGN used.
19577         (check_complex): Pass TEST_NAN_SIGN flag through to second
19578         check_float_internal call.
19579         (copysign_test_data): Add tests with quiet NaNs as second
19580         argument.  Use TEST_NAN_SIGN.
19581         (fabs_test_data): Add test of negative quiet NaN argument.  Use
19582         TEST_NAN_SIGN.
19583         (signbit_test_data): Add tests of quiet NaN argument.
19584         * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
19585
19586         * math/gen-libm-test.pl (show_exceptions): Take extra argument
19587         $ignore_result.
19588         (parse_args): Handle function results specified as IGNORE.
19589         * math/libm-test.inc (IGNORE_RESULT): New macro.
19590         (check_float_internal): Do not check numerical result if flag
19591         IGNORE_RESULT set.
19592         (check_complex): Pass through IGNORE_RESULT to second
19593         check_float_internal call.
19594         (check_int): Do not check numerical result if flag IGNORE_RESULT
19595         set.
19596         (check_long): Likewise.
19597         (check_bool): Likewise.
19598         (check_longlong): Likewise.
19599         (lrint_test_data): Add tests of infinite and NaN arguments.
19600         (lrint_tonearest_test_data): Likewise.
19601         (lrint_towardzero_test_data): Likewise.
19602         (lrint_downward_test_data): Likewise.
19603         (lrint_upward_test_data): Likewise.
19604         (llrint_test_data): Likewise.
19605         (llrint_tonearest_test_data): Likewise.
19606         (llrint_towardzero_test_data): Likewise.
19607         (llrint_downward_test_data): Likewise.
19608         (llrint_upward_test_data): Likewise.
19609         (lround_test_data): Likewise.
19610         (llround_test_data): Likewise.
19611
19612         * math/libm-test.inc (NO_TEST_INLINE): New macro.
19613         (ERRNO_UNCHANGED): Update value.
19614         (ERRNO_EDOM): Likewise.
19615         (ERRNO_ERANGE): Likewise.
19616         (NO_TEST_INLINE_FLOAT): New macro.
19617         (NO_TEST_INLINE_DOUBLE): Likewise.
19618         (enable_test): New function.
19619         (RUN_TEST_f_f): Check enable_test before running test.
19620         (RUN_TEST_2_f): Likewise.
19621         (RUN_TEST_fff_f): Likewise.
19622         (RUN_TEST_c_f): Likewise.
19623         (RUN_TEST_f_f1): Likewise.
19624         (RUN_TEST_fF_f1): Likewise.
19625         (RUN_TEST_fI_f1): Likewise.
19626         (RUN_TEST_ffI_f1): Likewise.
19627         (RUN_TEST_c_c): Likewise.
19628         (RUN_TEST_cc_c): Likewise.
19629         (RUN_TEST_f_i): Likewise.
19630         (RUN_TEST_f_i_tg): Likewise.
19631         (RUN_TEST_ff_i_tg): Likewise.
19632         (RUN_TEST_f_b): Likewise.
19633         (RUN_TEST_f_b_tg): Likewise.
19634         (RUN_TEST_f_l): Likewise.
19635         (RUN_TEST_f_L): Likewise.
19636         (RUN_TEST_fFF_11): Likewise.
19637         (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
19638         conditionals.
19639         (cosh_test_data): Likewise.
19640         (exp_test_data): Likewise.
19641         (expm1_test_data): Likewise.
19642         (hypot_test_data): Likewise.
19643         (pow_test_data): Likewise.
19644         (sinh_test_data): Likewise.
19645         (tanh_test_data): Likewise.
19646         * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
19647         flags argument.
19648
19649         * libm-test.inc (acos_test_data): Disallow inexact exceptions for
19650         tests with quiet NaN input and output.
19651         (acosh_test_data): Likewise.
19652         (asin_test_data): Likewise.
19653         (asinh_test_data): Likewise.
19654         (atan_test_data): Likewise.
19655         (atanh_test_data): Likewise.
19656         (atan2_test_data): Likewise.
19657         (cbrt_test_data): Likewise.
19658         (cos_test_data): Likewise.
19659         (cosh_test_data): Likewise.
19660         (erf_test_data): Likewise.
19661         (erfc_test_data): Likewise.
19662         (exp_test_data): Likewise.
19663         (exp10_test_data): Likewise.
19664         (exp2_test_data): Likewise.
19665         (expm1_test_data): Likewise.
19666         (hypot_test_data): Likewise.
19667         (j0_test_data): Likewise.
19668         (j1_test_data): Likewise.
19669         (jn_test_data): Likewise.
19670         (lgamma_test_data): Likewise.
19671         (log_test_data): Likewise.
19672         (log10_test_data): Likewise.
19673         (log1p_test_data): Likewise.
19674         (log2_test_data): Likewise.
19675         (pow_test_data): Likewise.
19676         (scalb_test_data): Likewise.
19677         (sin_test_data): Likewise.
19678         (sincos_test_data): Likewise.
19679         (sinh_test_data): Likewise.
19680         (tan_test_data): Likewise.
19681         (tanh_test_data): Likewise.
19682         (tgamma_test_data): Likewise.
19683         (y0_test_data): Likewise.
19684         (y1_test_data): Likewise.
19685         (yn_test_data): Likewise.
19686
19687         [BZ #16167]
19688         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
19689         argument being NaN and avoid computations with second argument in
19690         that case.
19691         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
19692         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
19693         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
19694
19695 2013-11-15  Arun Kumar Pyasi <arun@chitwanix.com>
19696
19697         * locale/iso-639.def: Add Chitwani Tharu (the).
19698
19699 2013-11-14  Andreas Schwab  <schwab@suse.de>
19700
19701         * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
19702         word instead of empty string.
19703
19704 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19705
19706         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19707         (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
19708         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19709         (__fe_nomask_env): Likewise.
19710
19711 2013-11-13  Steve Ellcey  <sellcey@mips.com>
19712
19713         * benchtests/bench-timing.h: Include time.h.
19714
19715 2013-11-13  H.J. Lu  <hongjiu.lu@intel.com>
19716
19717         [BZ #15997]
19718         * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
19719         to 3.4.0 for x32.
19720         * sysdeps/unix/sysv/linux/configure: Regenerated.
19721
19722 2013-11-13  Joseph Myers  <joseph@codesourcery.com>
19723
19724         [BZ #16151]
19725         * stdlib/strtod_l.c (round_and_return): Do not consider
19726         retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
19727         exponent one less than half the least subnormal exponent.
19728         * stdlib/test-strtod-round-data: Add more tests.
19729         * stdlib/tst-strtod-round.c (tests): Regenerated.
19730
19731 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19732
19733         [BZ #14143]
19734         * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
19735         (__fe_mask_env): Likewise.
19736         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
19737         libm_hidden_proto and add function prototype.
19738         (__fe_mask_env): Add function prototype.
19739         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19740         (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
19741         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
19742         (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
19743         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19744         (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
19745
19746 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
19747
19748         * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
19749         set reference_name to "" to avoid passing NULL to DSO_FILENAME.
19750
19751 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
19752
19753         * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
19754         of htab_find_slot().
19755
19756 2013-11-11  David S. Miller  <davem@davemloft.net>
19757
19758         [BZ #16150]
19759         * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
19760         symbol in the non-vis3 case in static builds.
19761         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
19762         * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
19763         * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
19764         * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
19765
19766 2013-11-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
19767
19768         [BZ #387]
19769         * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
19770         it is empty.
19771
19772 2013-11-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19773
19774         * benchtests/Makefile: Add bench-strtod.
19775         * benchtests/bench-strtod.c: New file: strtod benchtest
19776
19777 2013-11-11  Andreas Schwab  <schwab@suse.de>
19778
19779         [BZ #16153]
19780         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
19781         terminating NUL in key length.
19782
19783 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19784
19785         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
19786         Add artificial ODP entry for vDSO symbol for PPC64.
19787         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
19788         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
19789
19790 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
19791
19792         [BZ #15374]
19793         * nss/getent.c (services_keys): Recognize services starting with digit.
19794
19795 2013-11-06  David S. Miller  <davem@davemloft.net>
19796
19797         [BZ #15985]
19798         * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
19799         on pre-v9 cpus, use a fnegs+fmovs sequence instead.
19800
19801 2013-11-06  Will Newton  <will.newton@linaro.org>
19802
19803         * manual/memory.texi (Malloc Examples): Remove register
19804         keyword from examples.
19805
19806 2013-11-04  Chris Leonard  <cjl@sugarlabs.org>
19807
19808         * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
19809
19810 2013-11-04  Joseph Myers  <joseph@codesourcery.com>
19811
19812         [BZ #6981]
19813         * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
19814         depending on [__GCC_IEC_559 > 0].
19815         [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
19816         depending on [__GCC_IEC_559_COMPLEX > 0].
19817
19818 2013-11-03  Chris Leonard  <cjl@sugarlabs.org>
19819
19820         * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
19821         to iso-639.def.
19822
19823 2013-11-03  Ondřej Bílka  <neleai@seznam.cz>
19824
19825         * elf/rtld.c: Remove unused NONTLS_INIT_TP.
19826
19827 2013-11-01  Ondřej Bílka  <neleai@seznam.cz>
19828
19829         [BZ #16112]
19830         * malloc/malloc (malloc_info): Do not handle first bin as
19831         special case.
19832
19833 2013-11-01  Chris Leonard  <cjl@sugarlabs.org>
19834
19835         * locale/iso-639.def: Add Central Nahuatl (nhn).
19836
19837 2013-11-01  Bruno Haible  <bruno@clisp.org>
19838
19839         [BZ #7003]
19840         * manual/math.texi (BSD Random): Specify range upper bound as
19841         in POSIX.
19842
19843 2013-10-31  Chris Leonard  <cjl@sugarlabs.org>
19844
19845         * locale/iso-639.def: Add Meadow Mari (mhr).
19846
19847 2013-10-31  Ondřej Bílka  <neleai@seznam.cz>
19848
19849         [BZ #14752], [BZ #15763]
19850         * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
19851         Validate name.
19852         * rt/tst_shm.c: Add test for escaping directory.
19853
19854 2013-10-31  Andreas Schwab  <schwab@suse.de>
19855
19856         [BZ #15917]
19857         * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
19858         followed by 'x' as part of digit sequence.
19859         * stdio-common/tst-sscanf.c (double_tests2): New tests.
19860
19861 2013-10-31  Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
19862
19863         [BZ #16037]
19864         * configure.ac: allow GNU Make 4.0 and greater.
19865         * configure: Regenerated.
19866
19867 2013-10-30  Will Newton  <will.newton@linaro.org>
19868
19869         [BZ #16038]
19870         * malloc/hooks.c (memalign_check): Limit alignment to the
19871         maximum representable power of two.
19872         * malloc/malloc.c (__libc_memalign): Likewise.
19873         * malloc/tst-memalign.c (do_test): Add test for very
19874         large alignment values.
19875         * malloc/tst-posix_memalign.c (do_test): Likewise.
19876
19877 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
19878
19879         [BZ #11087]
19880         * malloc/malloc.c (sysmalloc): Compute statistics atomically.
19881         (munmap_chunk): Likewise.
19882         (mremap_chunk): Likewise.
19883
19884 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
19885
19886         [BZ #15799]
19887         * stdlib/div.c (div): Remove obsolete code.
19888         * stdlib/ldiv.c (ldiv): Likewise.
19889         * stdlib/lldiv.c (lldiv): Likewise.
19890
19891 2013-10-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
19892
19893         [BZ #16071]
19894         * nss/nss_files/files-XXX.c (get_contents_ret): New
19895         enumerator.
19896         (get_contents): New function.
19897         (internal_getent): Use it.  Expand size of LINEBUFLEN.
19898
19899 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
19900
19901         * configure.in: Moved to ...
19902         * configure.ac: ... here. Change reference to configure.in
19903         to configure.ac.
19904         * sysdeps/arm/preconfigure.ac: ... here.
19905         configure.in to configure.ac.
19906         * sysdeps/gnu/configure.in: Moved to ...
19907         * sysdeps/gnu/configure.ac: ... here.
19908         * sysdeps/i386/configure.in: Moved to ...
19909         * sysdeps/i386/configure.ac: ... here.
19910         * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
19911         * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
19912         * sysdeps/mach/configure.in: Moved to ...
19913         * sysdeps/mach/configure.ac: ... here.
19914         * sysdeps/mach/hurd/configure.in: Moved to ...
19915         * sysdeps/mach/hurd/configure.ac: ... here.
19916         * sysdeps/powerpc/configure.in: Moved to ...
19917         * sysdeps/powerpc/configure.ac: ... here.
19918         * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
19919         * sysdeps/powerpc/powerpc32/configure.ac: ... here.
19920         * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
19921         * sysdeps/powerpc/powerpc64/configure.ac: ... here.
19922         * sysdeps/s390/s390-32/configure.in: Moved to ...
19923         * sysdeps/s390/s390-32/configure.ac: ... here.
19924         * sysdeps/s390/s390-64/configure.in: Moved to ...
19925         * sysdeps/s390/s390-64/configure.ac: ... here.
19926         * sysdeps/sh/configure.in: Moved to ...
19927         * sysdeps/sh/configure.ac: ... here.
19928         * sysdeps/sparc/configure.in: Moved to ...
19929         * sysdeps/sparc/configure.ac: ... here.
19930         * sysdeps/unix/sysv/linux/configure.in: Moved to ...
19931         * sysdeps/unix/sysv/linux/configure.ac: ... here.
19932         * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
19933         * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
19934         * sysdeps/x86_64/configure.in: Moved to ...
19935         * sysdeps/x86_64/configure.ac: ... here.
19936         * sysdeps/x86_64/preconfigure.in: Moved to ...
19937         * sysdeps/x86_64/preconfigure.ac: ... here.
19938         * aclocal.m4: Change reference to configure.in to configure.ac.
19939         * config.h.in: Likewise.
19940         * manual/install.texi: Likewise.
19941         * manual/maint.texi: Likewise.
19942         * Makefile: Likewise.
19943         * malloc/Makefile: Likewise.
19944         * nscd/Makefile: Likewise.
19945         * Makeconfig: Change reference to configure.in and
19946         preconfigure.in to configure.ac and preconfigure.ac
19947         respectively.
19948         * INSTALL: Regenerated.
19949         * configure: Likewise.
19950         * sysdeps/gnu/configure: Likewise.
19951         * sysdeps/i386/configure: Likewise.
19952         * sysdeps/ieee754/ldbl-opt/configure: Likewise.
19953         * sysdeps/mach/configure: Likewise.
19954         * sysdeps/mach/hurd/configure: Likewise.
19955         * sysdeps/powerpc/configure: Likewise.
19956         * sysdeps/powerpc/powerpc32/configure: Likewise.
19957         * sysdeps/powerpc/powerpc64/configure: Likewise.
19958         * sysdeps/s390/s390-32/configure: Likewise.
19959         * sysdeps/s390/s390-64/configure: Likewise.
19960         * sysdeps/sh/configure: Likewise.
19961         * sysdeps/sparc/configure: Likewise.
19962         * sysdeps/unix/sysv/linux/configure: Likewise.
19963         * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
19964         * sysdeps/x86_64/configure: Likewise.
19965         * sysdeps/x86_64/preconfigure: Likewise.
19966
19967 2013-10-29  Andreas Schwab  <schwab@suse.de>
19968
19969         * stdio-common/Makefile (tst-swscanf-ENV): Define.
19970
19971 2013-10-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
19972
19973         * benchtests/pow-inputs: Add new inputs.
19974
19975         * benchtests/exp-inputs: Add new inputs.
19976
19977         * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
19978         conditional check for return value.
19979         (__cos32): Likewise.
19980
19981 2013-10-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19982
19983         * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
19984         to provide a boost for large inputs with word alignment.
19985         * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
19986         implementation based on optimized PPC64 strcpy.
19987         * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
19988         strcpy for PPC64/POWER7 based on both doubleword and word load/store.
19989         * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
19990         stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
19991
19992 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
19993
19994         [BZ #2801]
19995         * manual/socket.texi (Host Names): Fix gethostbyname_r example.
19996
19997 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
19998
19999         [BZ #14876]
20000         * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
20001         * time/tst-strptime.c (day_tests): Add testcase.
20002
20003 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
20004
20005         [BZ #14029]
20006         * manual/pattern.texi: Acknowledge that fnmatch can fail.
20007
20008 2013-10-25  Fabrice Bauzac  <fbauzac@debian71.nce.amadeus.net>
20009
20010         [BZ #16074]
20011         * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
20012         MAP_FAILED on error.
20013
20014 2013-10-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
20015
20016         [BZ #16072]
20017         * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
20018         heap for large requests.
20019
20020 2013-10-25  Aurelien Jarno  <aurelien@aurel32.net>
20021
20022         [BZ #9954]
20023         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
20024         result if the result has no associated interface.
20025         * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
20026         interface for all 127.X.Y.Z addresses.
20027
20028 2013-10-24  Chris Leonard  <cjl@sugarlabs.org>
20029
20030         * locale/iso-639.def: Add Ligurian (lij)
20031
20032 2013-10-21  Ondřej Bílka  <neleai@seznam.cz>
20033
20034         [BZ #15825]
20035         * sunrpc/rpc_main.c: Document rpcgen -5.
20036
20037 2013-10-19  Michael Stahl  <mstahl@redhat.com>
20038
20039         * elf/rtld.c (do_preload): Print the reason why preloading failed.
20040
20041 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
20042
20043         [BZ #10278]
20044         * posix/glob.c: Match only directories when trailing slash is present.
20045         * posix/tst-gnuglob.c (my_opendir): Do not open files.
20046         (main): Add testcase.
20047
20048 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
20049
20050         [BZ #15670]
20051         * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
20052
20053 2013-10-18  Carlos O'Donell  <carlos@redhat.com>
20054
20055         * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
20056         AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
20057         AUTH_DES and cindex for FIPS 140-2.
20058         (DES Encryption): Add cindex FIPS 46-3.
20059
20060         * locale/locarchive.h (struct locarhandle): Add fname.
20061         * locale/programs/localedef.c (main): Pass ARGV[remaining]
20062         if an optional argument was specified to --list-archive,
20063         otherwise NULL.
20064         * locale/programs/locarchive.c (show_archive_content): Take new
20065         argument fname and pass it via ah.fname to open_archive.
20066         * locale/programs/localedef.h: Update decl.
20067         (open_archive): If AH->fname is non-null, open that file
20068         rather than the default file name, and don't ignore ENOENT.
20069         (create_archive): Set AH.fname to NULL.
20070         (delete_locales_from_archive): Likewise.
20071         (add_locales_to_archive): Likewise.
20072         * locale/programs/locfile.c (write_all_categories): Likewise.
20073
20074 2013-10-18  Joseph Myers  <joseph@codesourcery.com>
20075             Aldy Hernandez  <aldyh@redhat.com>
20076
20077         * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
20078         * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
20079         * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
20080         * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
20081         * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
20082         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
20083         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
20084         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
20085         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
20086         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
20087         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
20088         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
20089         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
20090         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
20091         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
20092         Likewise.
20093         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
20094         Likewise.
20095         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
20096         Likewise.
20097         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
20098         Likewise.
20099         * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
20100         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
20101         Likewise.
20102         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
20103         * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
20104         * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
20105         * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
20106         Likewise.
20107         * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
20108         * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
20109         * sysdeps/powerpc/preconfigure: Likewise.
20110         * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
20111         Likewise.
20112         * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
20113         Replace contents of file by #include of <fenv_libc.h>.
20114         * sysdeps/powerpc/soft-fp/sfp-machine.h
20115         [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
20116         and <sys/prctl.h>.
20117         [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
20118         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
20119         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
20120         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
20121         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
20122         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
20123         [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
20124         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
20125         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
20126         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
20127         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
20128         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
20129         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
20130         Allow copysignl PLT reference to be missing.
20131
20132 2013-10-18  Richard Sandiford  <richard@codesourcery.com>
20133             Joseph Myers  <joseph@codesourcery.com
20134
20135         [BZ #15948]
20136         * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
20137         single character.
20138         (add_to_tablewc): Assert sequence of wide characters is nonempty.
20139
20140 2013-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
20141
20142         * elf/tst-tls-dlinfo.c: Don't include tls.h.
20143         * elf/tst-tls1.c: Likewise.
20144         * elf/tst-tls10.h: Likewise.
20145         * elf/tst-tls14.c: Likewise.
20146         * elf/tst-tls2.c: Likewise.
20147         * elf/tst-tls3.c: Likewise.
20148         * elf/tst-tls4.c: Likewise.
20149         * elf/tst-tls5.c: Likewise.
20150         * elf/tst-tls6.c: Likewise.
20151         * elf/tst-tls7.c: Likewise.
20152         * elf/tst-tls8.c: Likewise.
20153         * elf/tst-tls9.c: Likewise.
20154         * elf/tst-tlsmod1.c: Likewise.
20155         * elf/tst-tlsmod13.c: Likewise.
20156         * elf/tst-tlsmod13a.c: Likewise.
20157         * elf/tst-tlsmod14a.c: Likewise.
20158         * elf/tst-tlsmod16a.c: Likewise.
20159         * elf/tst-tlsmod16b.c: Likewise.
20160         * elf/tst-tlsmod2.c: Likewise.
20161         * elf/tst-tlsmod3.c: Likewise.
20162         * elf/tst-tlsmod4.c: Likewise.
20163         * elf/tst-tlsmod5.c: Likewise.
20164         * elf/tst-tlsmod6.c: Likewise.
20165
20166 2013-10-18  Ondřej Bílka  <neleai@seznam.cz>
20167
20168         [BZ #12486]
20169         * malloc/malloc.c: remove checks for statistics.
20170
20171 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
20172
20173         [BZ #15277]
20174         * inet/inet_net.c (inet_network): Detect additional invalid strings.
20175         * inet/tst-network.c: Add testcase.
20176
20177 2013-10-17  Andreas Schwab  <schwab@suse.de>
20178
20179         [BZ #15218]
20180         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
20181         to determine canonical name.
20182
20183 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
20184
20185         * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
20186         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
20187         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
20188         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
20189         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
20190         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
20191         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
20192         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
20193         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
20194         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
20195         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
20196         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
20197         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
20198         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
20199         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
20200         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
20201         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
20202         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
20203         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
20204         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
20205         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
20206         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
20207         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
20208         * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
20209         * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
20210         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
20211         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
20212         * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
20213         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
20214         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
20215         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
20216         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
20217         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
20218         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
20219         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
20220         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
20221         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
20222         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
20223         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
20224         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
20225         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
20226         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
20227         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
20228         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
20229         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
20230         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
20231         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
20232         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
20233         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
20234         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
20235         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
20236         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
20237         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
20238         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
20239         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
20240         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
20241         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
20242         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
20243
20244 2013-10-17  Joseph Myers  <joseph@codesourcery.com>
20245
20246         [BZ #16041]
20247         * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
20248         make result into a quiet NaN.
20249
20250 2013-10-16  Joseph Myers  <joseph@codesourcery.com>
20251
20252         * soft-fp/adddf3.c: Fix horizontal whitespace.
20253         * soft-fp/addsf3.c: Likewise.
20254         * soft-fp/addtf3.c: Likewise.
20255         * soft-fp/divdf3.c: Likewise.
20256         * soft-fp/divsf3.c: Likewise.
20257         * soft-fp/divtf3.c: Likewise.
20258         * soft-fp/double.h: Likewise.
20259         * soft-fp/eqdf2.c: Likewise.
20260         * soft-fp/eqsf2.c: Likewise.
20261         * soft-fp/eqtf2.c: Likewise.
20262         * soft-fp/extenddftf2.c: Likewise.
20263         * soft-fp/extended.h: Likewise.
20264         * soft-fp/extendsfdf2.c: Likewise.
20265         * soft-fp/extendsftf2.c: Likewise.
20266         * soft-fp/extendxftf2.c: Likewise.
20267         * soft-fp/fixdfdi.c: Likewise.
20268         * soft-fp/fixdfsi.c: Likewise.
20269         * soft-fp/fixdfti.c: Likewise.
20270         * soft-fp/fixsfdi.c: Likewise.
20271         * soft-fp/fixsfsi.c: Likewise.
20272         * soft-fp/fixsfti.c: Likewise.
20273         * soft-fp/fixtfdi.c: Likewise.
20274         * soft-fp/fixtfsi.c: Likewise.
20275         * soft-fp/fixtfti.c: Likewise.
20276         * soft-fp/fixunsdfdi.c: Likewise.
20277         * soft-fp/fixunsdfsi.c: Likewise.
20278         * soft-fp/fixunsdfti.c: Likewise.
20279         * soft-fp/fixunssfdi.c: Likewise.
20280         * soft-fp/fixunssfsi.c: Likewise.
20281         * soft-fp/fixunssfti.c: Likewise.
20282         * soft-fp/fixunstfdi.c: Likewise.
20283         * soft-fp/fixunstfsi.c: Likewise.
20284         * soft-fp/fixunstfti.c: Likewise.
20285         * soft-fp/floatdidf.c: Likewise.
20286         * soft-fp/floatdisf.c: Likewise.
20287         * soft-fp/floatditf.c: Likewise.
20288         * soft-fp/floatsidf.c: Likewise.
20289         * soft-fp/floatsisf.c: Likewise.
20290         * soft-fp/floatsitf.c: Likewise.
20291         * soft-fp/floattidf.c: Likewise.
20292         * soft-fp/floattisf.c: Likewise.
20293         * soft-fp/floattitf.c: Likewise.
20294         * soft-fp/floatundidf.c: Likewise.
20295         * soft-fp/floatundisf.c: Likewise.
20296         * soft-fp/floatunditf.c: Likewise.
20297         * soft-fp/floatunsidf.c: Likewise.
20298         * soft-fp/floatunsisf.c: Likewise.
20299         * soft-fp/floatunsitf.c: Likewise.
20300         * soft-fp/floatuntidf.c: Likewise.
20301         * soft-fp/floatuntisf.c: Likewise.
20302         * soft-fp/floatuntitf.c: Likewise.
20303         * soft-fp/fmadf4.c: Likewise.
20304         * soft-fp/fmasf4.c: Likewise.
20305         * soft-fp/fmatf4.c: Likewise.
20306         * soft-fp/gedf2.c: Likewise.
20307         * soft-fp/gesf2.c: Likewise.
20308         * soft-fp/getf2.c: Likewise.
20309         * soft-fp/ledf2.c: Likewise.
20310         * soft-fp/lesf2.c: Likewise.
20311         * soft-fp/letf2.c: Likewise.
20312         * soft-fp/muldf3.c: Likewise.
20313         * soft-fp/mulsf3.c: Likewise.
20314         * soft-fp/multf3.c: Likewise.
20315         * soft-fp/negdf2.c: Likewise.
20316         * soft-fp/negsf2.c: Likewise.
20317         * soft-fp/negtf2.c: Likewise.
20318         * soft-fp/op-1.h: Likewise.
20319         * soft-fp/op-2.h: Likewise.
20320         * soft-fp/op-4.h: Likewise.
20321         * soft-fp/op-8.h: Likewise.
20322         * soft-fp/op-common.h: Likewise.
20323         * soft-fp/quad.h: Likewise.
20324         * soft-fp/single.h: Likewise.
20325         * soft-fp/soft-fp.h: Likewise.
20326         * soft-fp/sqrtdf2.c: Likewise.
20327         * soft-fp/sqrtsf2.c: Likewise.
20328         * soft-fp/sqrttf2.c: Likewise.
20329         * soft-fp/subdf3.c: Likewise.
20330         * soft-fp/subsf3.c: Likewise.
20331         * soft-fp/subtf3.c: Likewise.
20332         * soft-fp/truncdfsf2.c: Likewise.
20333         * soft-fp/trunctfdf2.c: Likewise.
20334         * soft-fp/trunctfsf2.c: Likewise.
20335         * soft-fp/trunctfxf2.c: Likewise.
20336         * soft-fp/unorddf2.c: Likewise.
20337         * soft-fp/unordsf2.c: Likewise.
20338         * soft-fp/unordtf2.c: Likewise.
20339
20340 2013-10-15  Joseph Myers  <joseph@codesourcery.com>
20341
20342         * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
20343         * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
20344
20345 2013-10-15   Ondřej Bílka  <neleai@seznam.cz>
20346
20347         * elf/dl-libc.c: Clear initfini list after freeing.
20348
20349 2013-10-14  Joseph Myers  <joseph@codesourcery.com>
20350
20351         * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
20352         * soft-fp/addsf3.c: Likewise.
20353         * soft-fp/addtf3.c: Likewise.
20354         * soft-fp/divdf3.c: Likewise.
20355         * soft-fp/divsf3.c: Likewise.
20356         * soft-fp/divtf3.c: Likewise.
20357         * soft-fp/double.h: Likewise.
20358         * soft-fp/eqdf2.c: Likewise.
20359         * soft-fp/eqsf2.c: Likewise.
20360         * soft-fp/eqtf2.c: Likewise.
20361         * soft-fp/extenddftf2.c: Likewise.
20362         * soft-fp/extended.h: Likewise.
20363         * soft-fp/extendsfdf2.c: Likewise.
20364         * soft-fp/extendsftf2.c: Likewise.
20365         * soft-fp/extendxftf2.c: Likewise.
20366         * soft-fp/fixdfdi.c: Likewise.
20367         * soft-fp/fixdfsi.c: Likewise.
20368         * soft-fp/fixdfti.c: Likewise.
20369         * soft-fp/fixsfdi.c: Likewise.
20370         * soft-fp/fixsfsi.c: Likewise.
20371         * soft-fp/fixsfti.c: Likewise.
20372         * soft-fp/fixtfdi.c: Likewise.
20373         * soft-fp/fixtfsi.c: Likewise.
20374         * soft-fp/fixtfti.c: Likewise.
20375         * soft-fp/fixunsdfdi.c: Likewise.
20376         * soft-fp/fixunsdfsi.c: Likewise.
20377         * soft-fp/fixunsdfti.c: Likewise.
20378         * soft-fp/fixunssfdi.c: Likewise.
20379         * soft-fp/fixunssfsi.c: Likewise.
20380         * soft-fp/fixunssfti.c: Likewise.
20381         * soft-fp/fixunstfdi.c: Likewise.
20382         * soft-fp/fixunstfsi.c: Likewise.
20383         * soft-fp/fixunstfti.c: Likewise.
20384         * soft-fp/floatdidf.c: Likewise.
20385         * soft-fp/floatdisf.c: Likewise.
20386         * soft-fp/floatditf.c: Likewise.
20387         * soft-fp/floatsidf.c: Likewise.
20388         * soft-fp/floatsisf.c: Likewise.
20389         * soft-fp/floatsitf.c: Likewise.
20390         * soft-fp/floattidf.c: Likewise.
20391         * soft-fp/floattisf.c: Likewise.
20392         * soft-fp/floattitf.c: Likewise.
20393         * soft-fp/floatundidf.c: Likewise.
20394         * soft-fp/floatundisf.c: Likewise.
20395         * soft-fp/floatunsidf.c: Likewise.
20396         * soft-fp/floatunsisf.c: Likewise.
20397         * soft-fp/floatuntidf.c: Likewise.
20398         * soft-fp/floatuntisf.c: Likewise.
20399         * soft-fp/floatuntitf.c: Likewise.
20400         * soft-fp/fmadf4.c: Likewise.
20401         * soft-fp/fmasf4.c: Likewise.
20402         * soft-fp/fmatf4.c: Likewise.
20403         * soft-fp/gedf2.c: Likewise.
20404         * soft-fp/gesf2.c: Likewise.
20405         * soft-fp/getf2.c: Likewise.
20406         * soft-fp/ledf2.c: Likewise.
20407         * soft-fp/lesf2.c: Likewise.
20408         * soft-fp/letf2.c: Likewise.
20409         * soft-fp/muldf3.c: Likewise.
20410         * soft-fp/mulsf3.c: Likewise.
20411         * soft-fp/multf3.c: Likewise.
20412         * soft-fp/negdf2.c: Likewise.
20413         * soft-fp/negsf2.c: Likewise.
20414         * soft-fp/negtf2.c: Likewise.
20415         * soft-fp/op-1.h: Likewise.
20416         * soft-fp/op-2.h: Likewise.
20417         * soft-fp/op-4.h: Likewise.
20418         * soft-fp/op-8.h: Likewise.
20419         * soft-fp/op-common.h: Likewise.
20420         * soft-fp/quad.h: Likewise.
20421         * soft-fp/single.h: Likewise.
20422         * soft-fp/soft-fp.h: Likewise.
20423         * soft-fp/sqrtdf2.c: Likewise.
20424         * soft-fp/sqrtsf2.c: Likewise.
20425         * soft-fp/sqrttf2.c: Likewise.
20426         * soft-fp/subdf3.c: Likewise.
20427         * soft-fp/subsf3.c: Likewise.
20428         * soft-fp/subtf3.c: Likewise.
20429         * soft-fp/truncdfsf2.c: Likewise.
20430         * soft-fp/trunctfdf2.c: Likewise.
20431         * soft-fp/trunctfsf2.c: Likewise.
20432         * soft-fp/trunctfxf2.c: Likewise.
20433         * soft-fp/unorddf2.c: Likewise.
20434         * soft-fp/unordsf2.c: Likewise.
20435         * soft-fp/unordtf2.c: Likewise.
20436
20437 2013-10-14   Ondřej Bílka  <neleai@seznam.cz>
20438
20439         [BZ #15672]
20440         * misc/error.c (error_tail): Fix possible buffer overflow.
20441
20442 2013-10-14  Aurelien Jarno  <aurelien@aurel32.net>
20443
20444         [BZ #13028]
20445         * res_send.c(__libc_res_nsend): Correctly copy the nameserver
20446         address.
20447
20448 2013-10-14  P. J. McDermott  <pj@pehjota.net>
20449
20450         [BZ #832]
20451         * elf/ldd.bash.in (try_trace): New function.  Delete previous code
20452         testing pipefail option.
20453
20454 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
20455
20456         * soft-fp/double.h: Indent preprocessor directives inside #if.
20457         * soft-fp/extended.h: Likewise.
20458         * soft-fp/op-2.h: Likewise.
20459         * soft-fp/op-4.h: Likewise.
20460         * soft-fp/op-common.h: Likewise.
20461         * soft-fp/quad.h: Likewise.
20462         * soft-fp/single.h: Likewise.
20463         * soft-fp/soft-fp.h: Likewise.
20464
20465 2013-10-12   Yuri Chornoivan <yurchor@ukr.net>
20466
20467         * iconv/iconv_prog.c: Fix typos.
20468         * stdio-common/psiginfo-data.h: Likewise.
20469
20470 2013-10-12   Reuben Thomas <rrt@sc3d.org>
20471
20472         [BZ #15764]
20473         * locale/setlocale.c: Fix typo.
20474
20475 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
20476
20477         [BZ #16036]
20478         * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
20479         signaling NaN arguments.
20480         * soft-fp/unordsf2.c (__unordsf2): Likewise.
20481         * soft-fp/unordtf2.c (__unordtf2): Likewise.
20482
20483         [BZ #14910]
20484         * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
20485         unordered operands.
20486         * soft-fp/gesf2.c (__gesf2): Likewise.
20487         * soft-fp/getf2.c (__getf2): Likewise.
20488         * soft-fp/ledf2.c (__ledf2): Likewise.
20489         * soft-fp/lesf2.c (__lesf2): Likewise.
20490         * soft-fp/letf2.c (__letf2): Likewise.
20491
20492         * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
20493         * soft-fp/eqsf2.c (__eqsf2): Likewise.
20494         * soft-fp/eqtf2.c (__eqtf2): Likewise.
20495         * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
20496         * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
20497         * soft-fp/fixdfti.c (__fixdfti): Likewise.
20498         * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
20499         * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
20500         * soft-fp/fixsfti.c (__fixsfti): Likewise.
20501         * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
20502         * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
20503         * soft-fp/fixtfti.c (__fixtfti): Likewise.
20504         * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
20505         * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
20506         * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
20507         * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
20508         * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
20509         * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
20510         * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
20511         * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
20512         * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
20513         * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
20514         * soft-fp/floatdisf.c (__floatdisf): Likewise.
20515         * soft-fp/floatsisf.c (__floatsisf): Likewise.
20516         * soft-fp/floattidf.c (__floattidf): Likewise.
20517         * soft-fp/floattisf.c (__floattisf): Likewise.
20518         * soft-fp/floattitf.c (__floattitf): Likewise.
20519         * soft-fp/floatundidf.c (__floatundidf): Likewise.
20520         * soft-fp/floatundisf.c (__floatundisf): Likewise.
20521         * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
20522         * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
20523         * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
20524         * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
20525         * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
20526         * soft-fp/gesf2.c (__gesf2): Likewise.
20527         * soft-fp/getf2.c (__getf2): Likewise.
20528         * soft-fp/ledf2.c (__ledf2): Likewise.
20529         * soft-fp/lesf2.c (__lesf2): Likewise.
20530         * soft-fp/letf2.c (__letf2): Likewise.
20531
20532         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
20533         Undefine and redefine.
20534         [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
20535         [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
20536         [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
20537         * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
20538         (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20539         * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
20540         (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20541         * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
20542         (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20543         * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
20544         (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20545         * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
20546         (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20547         * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
20548         (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20549
20550         [BZ #16032]
20551         * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
20552         without decrementing exponent if mantissa >= that for the
20553         denominator, not >.
20554         (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
20555         denominator, not >.  Decrement exponent in < case instead of
20556         incrementing in >= case.
20557         * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
20558         without decrementing exponent if mantissa >= that for the
20559         denominator, not >.
20560
20561         * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
20562         computing saturated result for unsigned overflow.
20563
20564 2013-10-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
20565             Jeff Law  <law@redhat.com>
20566
20567         * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
20568         (atan2Mp): Add systemtap probe marker.
20569         * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
20570         (__ieee754_log): Add systemtap probe marker.
20571         * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
20572         (atanMp): Add systemtap probe marker.
20573         * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
20574         (tanMp): Add systemtap probe marker.
20575         * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
20576         (__slowexp): Add systemtap probe marker.
20577         * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
20578         (__slowpow): Add systemtap probe marker.
20579         * manual/probes.texi: Document probes.
20580
20581 2013-10-11  Eric Biggers  <ebiggers3@gmail.com>
20582
20583         [BZ #15362]
20584         * libio/fileops.c (_IO_new_file_write): Return count of bytes
20585         written.
20586         (_IO_new_file_xsputn): Don't return EOF if nothing has been
20587         written.
20588         * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
20589         written to buffer but not flushed.
20590         * libio/iofwrite_u.c:  Likewise.
20591         * libio/iopadn.c:  Return bytes returned even if EOF was
20592         encountered.
20593         * libio/iowpadn.c:  Likewise.
20594         * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
20595         if _IO_padn does not write the whole buffer.
20596         [!COMPILE_WPRINTF] (PAD): Likewise.
20597
20598 2013-10-10  David S. Miller  <davem@davemloft.net>
20599
20600         * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
20601         directory block.
20602
20603 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
20604
20605         * soft-fp/extendxftf2.c: Use copyright year range.  Use URL
20606         instead of FSF address.
20607         * soft-fp/fixdfti.c: Likewise.
20608         * soft-fp/fixsfti.c: Likewise.
20609         * soft-fp/fixtfti.c: Likewise.
20610         * soft-fp/fixunsdfti.c: Likewise.
20611         * soft-fp/fixunssfti.c: Likewise.
20612         * soft-fp/fixunstfti.c: Likewise.
20613         * soft-fp/floattidf.c: Likewise.
20614         * soft-fp/floattisf.c: Likewise.
20615         * soft-fp/floattitf.c: Likewise.
20616         * soft-fp/floatuntidf.c: Likewise.
20617         * soft-fp/floatuntisf.c: Likewise.
20618         * soft-fp/floatuntitf.c: Likewise.
20619         * soft-fp/trunctfxf2.c: Likewise.
20620
20621         * soft-fp/extendxftf2.c: New file.  Copied from libgcc.
20622         * soft-fp/fixdfti.c: Likewise.
20623         * soft-fp/fixsfti.c: Likewise.
20624         * soft-fp/fixtfti.c: Likewise.
20625         * soft-fp/fixunsdfti.c: Likewise.
20626         * soft-fp/fixunssfti.c: Likewise.
20627         * soft-fp/fixunstfti.c: Likewise.
20628         * soft-fp/floattidf.c: Likewise.
20629         * soft-fp/floattisf.c: Likewise.
20630         * soft-fp/floattitf.c: Likewise.
20631         * soft-fp/floatuntidf.c: Likewise.
20632         * soft-fp/floatuntisf.c: Likewise.
20633         * soft-fp/floatuntitf.c: Likewise.
20634         * soft-fp/trunctfxf2.c: Likewise.
20635
20636 2013-10-10  David S. Miller  <davem@davemloft.net>
20637
20638         * sysdeps/sparc/fpu/libm-test-ulps: Update.
20639
20640 2013-10-10  Joseph Myers  <joseph@codsourcery.com>
20641
20642         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
20643         (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
20644         [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
20645         [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
20646         [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
20647         [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
20648         [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
20649
20650         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
20651         for NaNs before doing comparisons on argument.
20652         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
20653         Likewise.
20654
20655 2013-10-10  Will Newton  <will.newton@linaro.org>
20656
20657         * malloc/hooks.c (memalign_check): Ensure the value of bytes
20658         passed to _int_memalign does not overflow.
20659
20660 2013-10-10  Torvald Riegel  <triegel@redhat.com>
20661
20662         * scripts/bench.pl: Add include-sources directive.
20663         * benchtests/README: Update documentation.
20664
20665 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
20666
20667         * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
20668         * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
20669         instead of FP_INIT_ROUNDMODE.
20670         * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
20671         * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
20672
20673         [BZ #16034]
20674         * soft-fp/op-common.h (_FP_NEG): Document input as raw.  Do not
20675         copy class of input value.
20676         * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing.  Do
20677         not handle exceptions.
20678         * soft-fp/negsf2.c (__negsf2): Likewise.
20679         * soft-fp/negtf2.c (__negtf2): Likewise.
20680         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
20681
20682 2013-10-09  Joseph Myers  <joseph@codesourcery.com>
20683
20684         * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
20685         semicolon.  From Linux kernel.
20686
20687 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
20688
20689         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
20690
20691 2013-10-08  Yogesh Chaudhari  <mr.yogesh@gmail.com>
20692
20693         [BZ #156]
20694         * manual/socket.texi: Added statement about buffer
20695         for gethostbyname2_r.
20696
20697 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
20698
20699         * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
20700         Use .p2align directive instead, throughout.
20701         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
20702         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
20703         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
20704         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
20705         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
20706         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
20707         * sysdeps/x86_64/strchr.S: Likewise.
20708         * sysdeps/x86_64/strrchr.S: Likewise.
20709
20710 2013-10-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
20711
20712         * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
20713
20714         * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
20715
20716         * sysdeps/generic/math_private.h (__mpsin1): Remove
20717         declaration.
20718         (__mpcos1): Likewise.
20719         (__mpsin): New argument __range_reduce.
20720         (__mpcos): Likewise.
20721         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
20722         (slow): Use __mpsin and __mpcos.
20723         (slow1): Likewise.
20724         (slow2): Likewise.
20725         (sloww): Likewise.
20726         (sloww1): Likewise.
20727         (sloww2): Likewise.
20728         (bsloww): Likewise.
20729         (bsloww1): Likewise.
20730         (bsloww2): Likewise.
20731         (cslow2): Likewise.
20732         (csloww): Likewise.
20733         (csloww1): Likewise.
20734         (csloww2): Likewise.
20735         * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
20736         range_reduce.  Merge in __mpsin1.
20737         (__mpcos): Likewise.
20738         (__mpsin1): Remove.
20739         (__mpcos1): Likewise.
20740
20741 2013-10-07  Joseph Myers  <joseph@codesourcery.com>
20742
20743         * locale/loadlocale.c (_nl_intern_locale_data): Use
20744         LOCFILE_ALIGNED_P.
20745         * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
20746         LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
20747         * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
20748         obstack data is appropriately aligned.
20749         (obstack_int32_grow_fast): Likewise.
20750         * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
20751         * locale/programs/locfile.c (add_locale_uint32): Likewise.
20752         (add_locale_uint32_array): Likewise.
20753
20754 2013-10-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
20755
20756         * benchtests/Makefile: Remove ARGLIST and RET variables.
20757         ($(objpfx)bench-%.c): Pass only function name to the script.
20758         * benchtests/README: Update documentation.
20759         * benchtests/acos-inputs: Add new directives.
20760         * benchtests/acosh-inputs: Likewise.
20761         * benchtests/asin-inputs: Likewise.
20762         * benchtests/asinh-inputs: Likewise.
20763         * benchtests/atan-inputs: Likewise.
20764         * benchtests/atanh-inputs: Likewise.
20765         * benchtests/cos-inputs: Likewise.
20766         * benchtests/cosh-inputs: Likewise.
20767         * benchtests/exp-inputs: Likewise.
20768         * benchtests/log-inputs: Likewise.
20769         * benchtests/pow-inputs: Likewise.
20770         * benchtests/rint-inputs: Likewise.
20771         * benchtests/sin-inputs: Likewise.
20772         * benchtests/sinh-inputs: Likewise.
20773         * benchtests/tan-inputs: Likewise.
20774         * benchtests/tanh-inputs: Likewise.
20775         * scripts/bench.pl: Add support for new directives.
20776
20777 2013-10-07  Alan Modra  <amodra@gmail.com>
20778
20779         * README: Fix careless merge.
20780
20781 2013-10-05  Alan Modra  <amodra@gmail.com>
20782
20783         * NEWS: Mention powerpc64le support and bugs fixed.
20784         * README: Both big-endian and little-endian powerpc64 supported.
20785
20786 2013-10-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
20787
20788         * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
20789         (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
20790         (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
20791         _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
20792
20793 2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
20794
20795         * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
20796         match prototype.
20797
20798 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
20799
20800         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
20801         Move -mhard-float appending from
20802         ports/sysdeps/powerpc/powerpc32/Makefile.
20803         [$(with-fp) = yes] (ASFLAGS): Likewise.
20804         [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
20805         * sysdeps/powerpc/nofpu: Move directory from
20806         ports/sysdeps/powerpc/nofpu.
20807         * sysdeps/powerpc/soft-fp: Move directory from
20808         ports/sysdeps/powerpc/soft-fp.
20809         * sysdeps/powerpc/powerpc32/405: Move directory from
20810         ports/sysdeps/powerpc/powerpc32/405.
20811         * sysdeps/powerpc/powerpc32/440: Move directory from
20812         ports/sysdeps/powerpc/powerpc32/440.
20813         * sysdeps/powerpc/powerpc32/464: Move directory from
20814         ports/sysdeps/powerpc/powerpc32/464.
20815         * sysdeps/powerpc/powerpc32/476: Move directory from
20816         ports/sysdeps/powerpc/powerpc32/476.
20817         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
20818         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
20819         * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
20820         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
20821         * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
20822         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
20823         * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
20824         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
20825         * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
20826         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
20827         * README: Update for powerpc-*-linux-gnu software floating point
20828         support in libc.
20829
20830         * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
20831         case to powerpc/powerpc32*.
20832         * sysdeps/unix/sysv/linux/configure: Regenerated.
20833
20834         * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
20835         (_FPU_MASK_OM): Define as 0x04.
20836         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
20837         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
20838         0x00c10080.
20839         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
20840         0x0000003c.
20841         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
20842
20843         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
20844         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
20845         getcontext_e500.
20846         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
20847         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
20848         setcontext_e500.
20849         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
20850         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
20851         and setcontext_e500.
20852
20853 2013-10-04  Chris Leonard  <cjl@sugarlabs,.org>
20854
20855         * locale/iso-3166.def: Update iso-1366.def and related occurrences
20856
20857 2013-10-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
20858
20859         * manual/threads.texi (Default Thread Attributes): Fix typo.
20860
20861 2013-10-04  Will Newton  <will.newton@linaro.org>
20862
20863         * malloc/Makefile: Add tst-memalign.
20864         * malloc/tst-memalign.c: New file.
20865
20866         * malloc/tst-posix_memalign.c: Add comments.
20867         (do_test): Add comments and call free on all potentially
20868         allocated pointers. Add space after cast.
20869
20870         * malloc/tst-pvalloc.c: Add comments.
20871         (do_test): Add comments and call free on all potentially
20872         allocated pointers. Remove duplicate check for NULL pointer.
20873         Add space after cast.
20874
20875         * malloc/tst-valloc.c: Add comments.
20876         (do_test): Add comments and call free on all potentially
20877         allocated pointers. Remove duplicate check for NULL pointer.
20878         Add space after cast.
20879
20880 2013-10-04  Alan Modra  <amodra@gmail.com>
20881
20882         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
20883         Use stdint types in rather than __attribute__((mode())).
20884         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
20885
20886 2013-10-04  Alan Modra  <amodra@gmail.com>
20887
20888         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
20889         Correct handling of unaligned relocs for little-endian.
20890         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
20891
20892 2013-10-04  Alan Modra  <amodra@gmail.com>
20893
20894         * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
20895         * configure: Regenerate.
20896         * nptl/shlib-versions: Powerpc*le starts at 2.18.
20897         * shlib-versions: Likewise.
20898
20899 2013-10-04  Alan Modra  <amodra@gmail.com>
20900
20901         * string/tester.c (test_memrchr): Increment reported test cycle.
20902
20903 2013-10-04  Alan Modra  <amodra@gmail.com>
20904
20905         * string/test-memcpy.c (do_one_test): When reporting errors, print
20906         string address and don't overrun end of string.
20907
20908 2013-10-04  Alan Modra  <amodra@gmail.com>
20909
20910         * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
20911         insrdi.  Make better use of reg selection to speed exit slightly.
20912         Schedule entry path a little better.  Remove useless "are we done"
20913         checks on entry to main loop.  Handle wrapping around zero address.
20914         Correct main loop count.  Handle single left-over word from main
20915         loop inline rather than by using loop_small.  Remove extra word
20916         case in loop_small caused by wrong loop count.  Add little-endian
20917         support.
20918         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
20919         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.  Use proper
20920         cache hint.
20921         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
20922         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
20923         support.  Avoid rlwimi.
20924         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
20925
20926 2013-10-04  Alan Modra  <amodra@gmail.com>
20927
20928         * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
20929         insrdi.  Formatting.
20930         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
20931         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
20932         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
20933         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
20934         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
20935         * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
20936
20937 2013-10-04  Alan Modra  <amodra@gmail.com>
20938
20939         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
20940         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
20941         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
20942         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
20943         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
20944         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
20945         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
20946         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
20947         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.  Make better
20948         use of regs.  Use power7 mtocrf.  Tidy function tails.
20949
20950 2013-10-04  Alan Modra  <amodra@gmail.com>
20951
20952         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
20953         Formatting.  Consistently use rXXX register defines or rN defines.
20954         Use early exit labels that avoid restoring unused non-volatile regs.
20955         Make cr field use more consistent with rWORDn compares.  Rename
20956         regs used as shift registers for unaligned loop, using rN defines
20957         for short lifetime/multiple use regs.
20958         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
20959         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.  Exit with
20960         addi 1,1,64 to pop stack frame.  Simplify return value code.
20961         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
20962
20963 2013-10-04  Alan Modra  <amodra@gmail.com>
20964
20965         * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
20966         support.  Correct typos, formatting.  Optimize tail.  Use insrdi
20967         rather than rlwimi.
20968         * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
20969         * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
20970         little-endian support.  Correct typos.
20971         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise.  Use insrdi
20972         rather than rlwimi.
20973         * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define.  Use
20974         in loop and entry code to keep "and." results.
20975         (strchr): Add little-endian support.  Comment.  Move cntlzd
20976         earlier in tail.
20977         * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
20978
20979 2013-10-04  Alan Modra  <amodra@gmail.com>
20980
20981         * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
20982         * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
20983         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
20984         * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
20985
20986 2013-10-04  Alan Modra  <amodra@gmail.com>
20987
20988         * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
20989         (rTMP): Define as r11.
20990         (strcmp): Add little-endian support.  Optimise tail.
20991         * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
20992         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
20993         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
20994         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
20995         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
20996         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
20997         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
20998
20999 2013-10-04  Alan Modra  <amodra@gmail.com>
21000
21001         * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
21002         little-endian support.  Remove unnecessary "are we done" tests.
21003         Handle "s" wrapping around zero and extremely large "size".
21004         Correct main loop count.  Handle single left-over word from main
21005         loop inline rather than by using small_loop.  Correct comments.
21006         Delete "zero" tail, use "end_max" instead.
21007         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
21008
21009 2013-10-04  Alan Modra  <amodra@gmail.com>
21010
21011         * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
21012         support.  Don't branch over align.
21013         * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
21014         * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
21015         support.  Rearrange tmp reg use to suit.  Comment.
21016         * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
21017
21018 2013-10-04  Alan Modra  <amodra@gmail.com>
21019
21020         * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
21021
21022 2013-10-04  Alan Modra  <amodra@gmail.com>
21023
21024         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
21025         conditional form of branch and link when obtaining pc.
21026         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
21027
21028 2013-10-04  Alan Modra  <amodra@gmail.com>
21029
21030         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
21031         HIWORD/LOWORD.
21032         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
21033         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
21034
21035 2013-10-04  Alan Modra  <amodra@gmail.com>
21036
21037         * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
21038         * sysdeps/powerpc/novmx-longjmp.c: Likewise.
21039         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
21040         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
21041         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
21042         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
21043         * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
21044         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
21045         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
21046         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
21047
21048 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21049             Alistair Popple <alistair@ozlabs.au.ibm.com>
21050             Alan Modra <amodra@gmail.com>
21051
21052         [BZ #15723]
21053         * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
21054         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
21055         _dl_hwcap access for little-endian.
21056         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.  Don't
21057         destroy vmx regs when saving unaligned.
21058         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
21059         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save.  Don't
21060         destroy vmx regs when saving unaligned.
21061
21062 2013-10-04  Alan Modra  <amodra@gmail.com>
21063
21064         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
21065         Don't use a union to pack hi/low value.
21066
21067 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21068
21069         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
21070         for little-endian.
21071         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
21072         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
21073         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
21074         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
21075         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
21076
21077 2013-10-04  Alan Modra  <amodra@gmail.com>
21078
21079         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
21080         constants to usual value for .cst8 section, and remove redundant
21081         high address load.
21082         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
21083         constant for 0x1p52.  Load little-endian words of double from
21084         correct stack offsets.
21085
21086 2013-10-04  Alan Modra  <amodra@gmail.com>
21087
21088         * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
21089         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
21090         words of double from correct stack offsets.
21091         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
21092         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
21093         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
21094         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
21095         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
21096         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
21097         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
21098         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
21099         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
21100         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
21101         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
21102         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
21103         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
21104         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
21105         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
21106         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
21107         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
21108
21109 2013-10-04  Alan Modra  <amodra@gmail.com>
21110
21111         * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
21112         64-bit int/double union.
21113         (_FPU_SETCW): Likewise.
21114         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
21115         (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
21116
21117 2013-10-04  Alan Modra  <amodra@gmail.com>
21118
21119         * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
21120         * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
21121
21122 2013-10-04  Alan Modra  <amodra@gmail.com>
21123
21124         * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
21125         use vector int constants.
21126         (__float_and_test24, __float_and8, __float_get_exp): Likewise.
21127
21128 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21129
21130         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
21131         array with long long.
21132         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
21133         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
21134         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
21135         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
21136         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
21137         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
21138         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
21139         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
21140         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
21141         * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
21142         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
21143         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
21144         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
21145
21146 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21147
21148         * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
21149         (__signbit): Likewise.  Correct for little-endian.
21150         (__signbitl): Call __signbit.
21151         (lrint): Correct for little-endian.
21152         (lrintf): Call lrint.
21153
21154 2013-10-04  Alan Modra  <amodra@gmail.com>
21155
21156         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
21157         union 32-bit int array member with 64-bit int array.
21158         (t515, tm256): Double rather than long double.
21159         (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
21160
21161 2013-10-04  Alan Modra  <amodra@gmail.com>
21162
21163         * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
21164         Delete.
21165         (IEEE854_LONG_DOUBLE_BIAS): Delete.
21166         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
21167         version of math_ldbl.h.
21168
21169 2013-10-04  Alan Modra  <amodra@gmail.com>
21170
21171         [BZ #15734], [BZ #15735]
21172         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
21173         all uses of ieee875 long double macros and unions.  Simplify test
21174         for 0.0L.  Correct |x|<|y| and |x|=|y| test.  Use
21175         ldbl_extract_mantissa value for ix,iy exponents.  Properly
21176         normalize after ldbl_extract_mantissa, and don't add hidden bit
21177         already handled.  Don't treat low word of ieee854 mantissa like
21178         low word of IBM long double and mask off bit when testing for
21179         zero.
21180         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
21181         all uses of ieee875 long double macros and unions.  Simplify tests
21182         for 0.0L and inf.  Correct double adjustment of k.  Delete dead code
21183         adjusting ha,hb.  Simplify code setting kld.  Delete two600 and
21184         two1022, instead use their values.  Recognise that tests for large
21185         "a" and small "b" are mutually exclusive.  Rename vars.  Comment.
21186         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
21187         Rewrite all uses of ieee875 long double macros and unions.  Simplify
21188         test for 0.0L and nan.  Correct negation.
21189         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
21190         ieee875 long double macros and unions.  Correct output for large
21191         magnitude x.  Correct absolute value calculation.
21192         (__erfcl): Likewise.
21193         * math/libm-test.inc: Add tests for errors discovered in IBM long
21194         double versions of fmodl, remainderl, erfl and erfcl.
21195
21196 2013-10-04  Alan Modra  <amodra@gmail.com>
21197
21198         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
21199         all uses of ieee854 long double macros and unions.  Simplify tests
21200         for long doubles that are fully specified by the high double.
21201         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
21202         Likewise.
21203         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
21204         Remove dead code too.
21205         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
21206         (__ieee754_ynl): Likewise.
21207         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
21208         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
21209         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
21210         Remove dead code too.
21211         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
21212         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
21213         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
21214         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
21215         Simplify.
21216         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
21217         Simplify.
21218         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
21219         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
21220         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
21221         Comment on variable precision.
21222         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
21223         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
21224         Likewise.
21225         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
21226         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
21227         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
21228         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
21229         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
21230
21231 2013-10-04  Alan Modra  <amodra@gmail.com>
21232
21233         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
21234         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
21235         all uses of ieee854 long double macros and unions.
21236         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
21237         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
21238         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
21239         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
21240         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
21241         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
21242         Likewise.
21243         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
21244         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
21245         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
21246         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
21247         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
21248         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
21249         Simplify sign and nan test too.
21250         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
21251         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
21252         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
21253         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
21254         Likewise.
21255         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
21256         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
21257         Likewise.
21258         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
21259         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
21260         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
21261         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
21262         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
21263         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
21264
21265 2013-10-04  Alan Modra  <amodra@gmail.com>
21266
21267         * stdio-common/printf_size.c (__printf_size): Don't use
21268         union ieee854_long_double in fpnum union.
21269         * stdio-common/printf_fphex.c (__printf_fphex): Likewise.  Use
21270         signbit macro to retrieve sign from long double.
21271         * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
21272         retrieve sign from long double.
21273         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
21274         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
21275         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
21276         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
21277         * math/test-misc.c (main): Don't use union ieee854_long_double.
21278
21279 2013-10-04  Alan Modra  <amodra@gmail.com>
21280
21281         [BZ #15680]
21282         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
21283         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
21284         (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
21285         calculation.  Remove unnecessary test for denormal exponent.
21286         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
21287         Correct handling of denormals.  Avoid undefined shift behaviour.
21288         Correct normalisation of low mantissa when low double is denormal.
21289         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
21290         (ldbl_extract_mantissa): Likewise.  Comment.  Use uint64_t* for hi64.
21291         (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
21292         Correct normalisation of low mantissa.  Test for overflow of high
21293         mantissa and normalise.
21294         (ldbl_nearbyint): Use more readable constant for two52.
21295         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
21296         (__mpn_construct_long_double): Fix test for overflow of high
21297         mantissa and correct normalisation.  Avoid undefined shift.
21298
21299 2013-10-04  Alan Modra  <amodra@gmail.com>
21300
21301         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
21302         (union ibm_extended_long_double): Define as an array of ieee754_double.
21303         (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
21304         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
21305         to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
21306         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
21307         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
21308         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
21309         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
21310         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
21311         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
21312         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
21313         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
21314
21315 2013-10-03  Joseph Myers  <joseph@codesourcery.com>
21316
21317         * locale/programs/locarchive.c (add_locale): Use constant 4096 for
21318         page size instead of calling getpagesize.
21319
21320         * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
21321         (LOCFILE_ALIGN_MASK): Likewise.
21322         (LOCFILE_ALIGN_UP): Likewise.
21323         (LOCFILE_ALIGNED_P): Likewise.
21324         * locale/programs/ld-collate.c (collate_output): Use the new
21325         macros instead of __alignof__ (int32_t).
21326         * locale/weight.h (findidx): Likewise.
21327
21328 2013-10-03  Ondřej Bílka  <neleai@seznam.cz>
21329
21330         [BZ #431]
21331         * manual/string.texi: Fix strncat and wcsncat.
21332
21333 2013-10-03  Brooks Moses  <bmoses@google.com>
21334
21335         [BZ #15915]
21336         * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
21337         * Makerules: ...here, and adjust associated comments.
21338
21339 2013-10-02  Will Newton  <will.newton@linaro.org>
21340
21341         * malloc/Makefile: Add tst-pvalloc.
21342         * malloc/tst-pvalloc.c: New file.
21343
21344 2013-10-02  Will Newton  <will.newton@linaro.org>
21345
21346         * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
21347         improve test coverage.
21348
21349 2013-10-02  Will Newton  <will.newton@linaro.org>
21350
21351         * malloc/Makefile: Add tst-posix_memalign.
21352         * malloc/tst-posix_memalign.c: New file.
21353
21354 2013-10-01  Eric Blake  <eblake@redhat.com>
21355
21356         * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
21357         Use __THROWNL rather than __THROW on static functions.
21358
21359 2013-09-30  Petr Machata  <pmachata@redhat.com>
21360
21361         * elf/elf.h (R_AARCH64_ABS16): New macro.
21362         (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
21363         (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
21364         (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
21365         (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
21366         (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
21367         (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
21368         (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
21369         (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
21370         (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
21371         (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
21372         (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
21373         (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
21374         (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
21375         (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
21376         (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
21377         (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
21378         (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
21379         (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
21380         (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
21381         (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
21382         (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
21383         (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
21384         (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
21385         (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
21386         (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
21387         (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
21388         (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
21389         (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
21390         (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
21391         (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
21392         (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
21393         (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
21394         (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
21395         (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
21396         (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
21397         (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
21398         (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
21399         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
21400         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
21401         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
21402         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
21403         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
21404         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
21405         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
21406         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
21407         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
21408         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
21409         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
21410         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
21411         (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
21412         (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
21413         (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
21414         (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
21415         (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
21416         (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
21417         (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
21418         (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
21419         (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
21420         (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
21421         (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
21422         (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
21423         (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
21424         (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
21425         (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
21426         (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
21427         (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
21428         (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
21429         (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
21430         (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
21431         (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
21432         (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
21433         (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
21434         (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
21435         (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
21436         (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
21437         (R_AARCH64_TLSDESC_OFF_G1): Likewise.
21438         (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
21439         (R_AARCH64_TLSDESC_LDR): Likewise.
21440         (R_AARCH64_TLSDESC_ADD): Likewise.
21441         (R_AARCH64_TLSDESC_CALL): Likewise.
21442
21443 2013-09-30  Andreas Schwab  <schwab@suse.de>
21444
21445         [BZ #15048]
21446         * nscd/aicache.c (addhstaiX): Properly use the cache variable for
21447         the nss database lookup.
21448         * nscd/initgrcache.c (addinitgroupsX): Likewise.
21449         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
21450
21451 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
21452
21453         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
21454
21455 2013-09-28  P. J. McDermott  <pj@pehjota.net>
21456
21457         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
21458         ${Bash-specific parameter/pattern/string} parameter expansion.
21459         * sysdeps/unix/make-syscalls.sh: Likewise.
21460
21461 2013-09-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
21462
21463         * sysdeps/sh/stackguard-macros.h: New file.
21464
21465 2013-09-26  Ondřej Bílka  <neleai@seznam.cz>
21466
21467         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
21468         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
21469         * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
21470         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
21471         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
21472         * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
21473
21474 2013-09-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21475
21476         * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
21477         Fix thread ID register.
21478
21479 2013-09-25  Joseph Myers  <joseph@codesourcery.com>
21480
21481         * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
21482         [POSIX || UNIX98]: Require rather than permitting all symbols from
21483         <time.h>.
21484         [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
21485         element of struct sched_param.
21486         [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
21487         [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
21488         [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
21489         [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
21490         constant.
21491
21492 2013-09-24  Olivier Langlois  <olivier@olivierlanglois.net>
21493
21494         * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
21495         argument calculation.
21496
21497 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
21498
21499         * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
21500         Expect macro.
21501         [POSIX] (pthread_attr_t): Do not require type.
21502         [POSIX] (pthread_cond_t): Likewise.
21503         [POSIX] (pthread_condattr_t): Likewise.
21504         [POSIX] (pthread_key_t): Likewise.
21505         [POSIX] (pthread_mutex_t): Likewise.
21506         [POSIX] (pthread_mutexattr_t): Likewise.
21507         [POSIX] (pthread_once_t): Likewise.
21508         [POSIX] (pthread_t): Likewise.
21509         [POSIX-based standards] (pthread_atfork): Expect function.
21510
21511 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
21512             Richard Sandiford  <richard@codesourcery.com>
21513
21514         * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
21515         (swap_endianness_p): New extern variable.
21516         (set_big_endian): New inline function.
21517         (maybe_swap_uint32): Likewise.
21518         (maybe_swap_uint32_array): Likewise.
21519         (maybe_swap_uint32_obstack): Likewise.
21520         * locale/programs/locfile.c: Include <stdbool.h>.
21521         (swap_endianness_p): New variable.
21522         (add_locale_uint32): Call maybe_swap_uint32.
21523         (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
21524         (write_locale_data): Call maybe_swap_uint32_array.
21525         * locale/programs/ld-collate.c (obstack_int32_grow): Call
21526         maybe_swap_uint32.
21527         (obstack_int32_grow_fast): Likewise.
21528         (output_weightwc): Call maybe_swap_uint32_obstack.
21529         (collate_output): Likewise.
21530         * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
21531         (OPT_LITTLE_ENDIAN): Likewise.
21532         (options): Add --little-endian and --big-endian options.
21533         (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
21534         * locale/programs/locarchive.c: Include "locfile.h".
21535         (GET): New macro.
21536         (SET): Likewise.
21537         (INC): Likewise.
21538         (create_archive): Use the new macros to access fields of
21539         structures directly mapped from or written to locale archives.
21540         (oldlocrecentcmp): Likewise.
21541         (enlarge_archive): Likewise.
21542         (insert_name): Likewise.
21543         (add_alias): Likewise.
21544         (add_locale): Likewise.
21545         (delete_locales_from_archive): Likewise.
21546         (show_archive_content): Likewise.
21547         (add_locale_to_archive): Likewise.  Use maybe_swap_uint32 on
21548         locale data.
21549
21550 2013-09-24  Roland McGrath  <roland@hack.frob.com>
21551
21552         * manual/freemanuals.texi: Updated from (newly) canonical copy at
21553         http://www.gnu.org/doc/freemanuals.texi.
21554         * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
21555
21556 2013-09-24  Will Newton  <will.newton@linaro.org>
21557
21558         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
21559         macro.
21560
21561 2013-09-23  Joseph Myers  <joseph@codesourcery.com>
21562
21563         * locale/hashval.h (compute_hashval): Interpret bytes of key as
21564         unsigned char.
21565
21566 2013-09-23  Maciej W. Rozycki  <macro@codesourcery.com>
21567
21568         * manual/threads.texi (POSIX Threads): Fix a typo.
21569
21570 2013-09-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
21571
21572         [BZ #14547]
21573         * string/tst-strcoll-overflow.c: New test case.
21574         * string/Makefile (xtests): Add tst-strcoll-overflow.
21575         * string/strcoll_l.c (STRCOLL): Skip allocating memory for
21576         cache if string sizes may cause integer overflow.
21577
21578         [BZ #14547]
21579         * string/strcoll_l.c (coll_seq): New members rule, idx,
21580         save_idx and back_us.
21581         (get_next_seq_nocache): New function.
21582         (do_compare_nocache): New function.
21583         (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
21584         when malloc fails.
21585
21586 2013-09-23  Carlos O'Donell  <carlos@redhat.com>
21587
21588         [BZ #15754]
21589         * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
21590         __pointer_chk_guard_local, otherwise __pointer_chk_guard.
21591         * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
21592
21593         [BZ #15754]
21594         * elf/Makefile (tests): Add tst-ptrguard1.
21595         (tests-static): Add tst-ptrguard1-static.
21596         (tst-ptrguard1-ARGS): Define.
21597         (tst-ptrguard1-static-ARGS): Define.
21598         * elf/tst-ptrguard1.c: New file.
21599         * elf/tst-ptrguard1-static.c: New file.
21600         * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
21601         * sysdeps/i386/stackguard-macros.h: Likewise.
21602         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
21603         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
21604         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
21605         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
21606         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
21607         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
21608
21609 2013-09-23  Hector Marco  <hecmargi@upv.es>
21610             Ismael Ripoll  <iripoll@disca.upv.es>
21611             Carlos O'Donell  <carlos@redhat.com>
21612
21613         [BZ #15754]
21614         * sysdeps/generic/stackguard-macros.h: Define
21615         __pointer_chk_guard_local and POINTER_CHK_GUARD.
21616         * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
21617         Define __pointer_chk_guard_local.
21618         (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
21619         Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
21620
21621 2013-09-15  Vinitha Vijayan <vinitha.vijayann@gmail.com>
21622
21623         [BZ #15859]
21624         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
21625
21626 2013-09-20  Andreas Schwab  <schwab@linux-m68k.org>
21627
21628         * include/string.h (__ffs): Declare as hidden.
21629         * string/ffs.c (__ffs): Define as hidden.
21630         * sysdeps/i386/ffs.c (__ffs): Likewise.
21631         * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
21632         * sysdeps/powerpc/ffs.c (__ffs): Likewise.
21633         * sysdeps/s390/ffs.c (__ffs): Likewise.
21634         * sysdeps/x86_64/ffs.c (__ffs): Likewise.
21635
21636 2013-09-20  Alexandre Oliva <aoliva@redhat.com>
21637
21638         * NEWS: Mention malloc probes.
21639
21640         * malloc/arena.c (new_heap): New memory_heap_new probe.
21641         (grow_heap): New memory_heap_more probe.
21642         (shrink_heap): New memory_heap_less probe.
21643         (heap_trim): New memory_heap_free probe.
21644         * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
21645         (systrim): New memory_sbrk_less probe.
21646         * manual/probes.texi: Document them.
21647
21648         * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
21649         * manual/probes.texi: Document it.
21650
21651         * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
21652         (__libc_realloc): Add memory_realloc_retry probe.
21653         (__libc_memalign): Add memory_memalign_retry probe.
21654         (__libc_valloc): Add memory_valloc_retry probe.
21655         (__libc_pvalloc): Add memory_pvalloc_retry probe.
21656         (__libc_calloc): Add memory_calloc_retry probe.
21657         * manual/probes.texi: Document them.
21658
21659         * malloc/arena.c (get_free_list): Add probe
21660         memory_arena_reuse_free_list.
21661         (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
21662         and memory_arena_reuse.
21663         (arena_get2) [!PER_THREAD]: Likewise.
21664         * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
21665         memory_arena_reuse_realloc.
21666         * manual/probes.texi: Document them.
21667
21668         * malloc/malloc.c (__libc_free): Add
21669         memory_mallopt_free_dyn_thresholds probe.
21670         (__libc_mallopt): Add multiple memory_mallopt probes.
21671         * manual/probes.texi: Document them.
21672
21673         * malloc/malloc.c: Include stap-probe.h.
21674         (__libc_mallopt): Add memory_mallopt probe.
21675         * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
21676         * manual/probes.texi: New.
21677         * manual/Makefile (chapters): Add probes.
21678         * manual/threads.texi: Set next node.
21679
21680 2013-09-19  Wei-Lun Chao  <bluebat@member.fsf.org>
21681
21682         [BZ #15963, #13985]
21683         * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
21684         czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
21685         Add `Chinese' to `nan' entry name.
21686
21687 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
21688
21689         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
21690         (POLYNOMIAL): Likewise.
21691         (TAYLOR_SINCOS): Likewise.
21692         (TAYLOR_SLOW): Likewise.
21693         (__sin): Use TAYLOR_SINCOS.
21694         (__cos): Likewise.
21695         (slow): Use TAYLOR_SLOW.
21696         (sloww): Likewise.
21697         (bsloww): Likewise.
21698         (csloww): Likewise.
21699
21700 2013-09-19  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
21701
21702         * stdlib/strtod_l.c: Fix buffer overrun.
21703
21704 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
21705
21706         * benchtests/Makefile (bench): Add sincos.
21707         * benchtests/bench-sincos.c: New file.
21708
21709         * math/libm-test.inc (cos_test_data): New test inputs.
21710         (sin_test_data): Likewise.
21711
21712         * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
21713         macro.
21714         (__sin): Use it.
21715         (__cos): Likewise.
21716         (slow1): Likewise.
21717         (slow2): Likewise.
21718         (sloww1): Likewise.
21719         (sloww2): Likewise.
21720         (bsloww1): Likewise.
21721         (bsloww2): Likewise.
21722         (cslow2): Likewise.
21723         (csloww1): Likewise.
21724         (csloww2): Likewise.
21725
21726         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
21727         function.
21728         (__sin): Use it.
21729         (__cos): Likewise.
21730
21731         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
21732         gotos.
21733         (__cos): Likewise.
21734
21735 2013-09-18  Maciej W. Rozycki  <macro@codesourcery.com>
21736
21737         * config.h.in (HAVE_MIPS_NAN2008): New macro.
21738         * elf/elf.h (EF_MIPS_NAN2008): Likewise.
21739         * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
21740         (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
21741         (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
21742         * elf/cache.c (print_entry): Handle the new cache flags.
21743
21744 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
21745             Aldy Hernandez  <aldyh@redhat.com>
21746
21747         * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
21748         Change condition to [_SOFT_FLOAT].
21749         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
21750         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
21751         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
21752         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
21753         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
21754         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
21755         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
21756         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
21757         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
21758         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
21759         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
21760         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
21761         [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
21762         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
21763         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
21764         [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
21765         declaration.
21766
21767 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
21768
21769         * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
21770         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
21771         (__longjmp): Use LOAD_GP to load saved GPRs.
21772         * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
21773         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
21774         (__sigsetjmp): Use SAVE_GP to save GPRs.
21775
21776         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
21777         Do not append -msoft-float.
21778         [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
21779
21780 2013-09-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
21781
21782         * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
21783
21784 2013-09-17  Joseph Myers  <joseph@codesourcery.com>
21785
21786         [BZ #15966]
21787         * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
21788         (_FPU_GETCW): Use initial "__" on variable and field names but not
21789         on macro parameter name.
21790         [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise.  Use
21791         parentheses around reference to macro parameter.
21792
21793 2013-09-13  Richard Sandiford  <richard@codesourcery.com>
21794
21795         * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
21796         prototype.
21797         (ctype_startup): Use uint32_t in cast and sizeof for
21798         ctype->charnames.
21799
21800 2013-09-11  Jia Liu  <proljc@gmail.com>
21801
21802         * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
21803         __daddr_t_defined.
21804         [__FreeBSD__]: Likewise.
21805
21806 2013-09-11  Ondřej Bílka  <neleai@seznam.cz>
21807
21808         * sysdeps/x86_64/multiarch/ifunc-impl-list.c
21809         (__libc_ifunc_impl_list): Remove: __strchr_sse42.
21810         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
21811         (strchr): Remove __strchr_sse42 ifunc selection.
21812         * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
21813         * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
21814
21815 2013-09-11  Will Newton  <will.newton@linaro.org>
21816
21817         * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
21818         parameter to RES. Remove hardcoded 1000 value.
21819         * benchtests/bench-skeleton.c (main): Pass RES parameter
21820         to TIMING_INIT and multiply result by 1000.
21821
21822 2013-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21823
21824         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21825
21826 2013-09-11  Andreas Schwab  <schwab@suse.de>
21827
21828         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
21829         if not defined.
21830         (O_TMPFILE) [__USE_GNU]: Define.
21831         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
21832         Define.
21833
21834 2013-09-11  Will Newton  <will.newton@linaro.org>
21835
21836         [BZ #15857]
21837         * malloc/malloc.c (__libc_memalign): Check the value of bytes
21838         does not overflow.
21839
21840 2013-09-11  Will Newton  <will.newton@linaro.org>
21841
21842         [BZ #15856]
21843         * malloc/malloc.c (__libc_valloc): Check the value of bytes
21844         does not overflow.
21845
21846 2013-09-11  Will Newton  <will.newton@linaro.org>
21847
21848         [BZ #15855]
21849         * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
21850         does not overflow.
21851
21852 2013-09-10  Ondřej Bílka  <neleai@seznam.cz>
21853
21854         * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
21855         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
21856         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
21857         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
21858         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
21859
21860 2013-09-10  Allan McRae  <allan@archlinux.org>
21861
21862         [BZ #15748]
21863         * manual/arith.texi (Parsing of Floats): Clarify
21864         cross-reference.
21865
21866         [BZ #15849]
21867         * manual/install.texi (Running make install): Mention
21868         --enable-pt-chown.
21869         * INSTALL: Regenerated.
21870
21871 2013-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
21872
21873         * csu/init-first.c (_init): Remove the !SHARED condition around
21874         FPU control word initialization.
21875         * elf/dl-support.c (_dl_fpu_control): New variable.
21876         (_dl_aux_init) <AT_FPUCW>: Initialize it.
21877         * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
21878         (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
21879         * math/test-fpucw-static.c: New file.
21880         * math/test-fpucw-ieee.c: New file.
21881         * math/test-fpucw-ieee-static.c: New file.
21882         * math/Makefile (tests): Add `test-fpucw-ieee' and
21883         `$(tests-static)'.
21884         (tests-static): New variable.
21885         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
21886         dependency to...
21887         [($(build-shared),yes)]
21888         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
21889         ... this.
21890         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
21891         New dependency.
21892
21893 2013-09-09  Allan McRae  <allan@archlinux.org>
21894
21895         [BZ #15939]
21896         * manual/string.texi (Collation Functions): Fix typo in
21897         strcoll example.
21898         Reported by Suren Karapetyan <me@suren.karapetyan.name>.
21899
21900         [BZ #15893]
21901         * stdlib/isomac.c (get_null_defines): Fix memory leak.
21902
21903         [BZ #15892]
21904         * libio/memstream.c (open_memstream): Fix memory leak.
21905         * libio/wmemstream.c (open_wmemstream): Likewise.
21906
21907         [BZ #15895]
21908         * nscd/netgroupcache.c: Fix nesting of ifdefs.
21909
21910 2013-09-09  Will Newton  <will.newton@linaro.org>
21911
21912         * malloc/Makefile: Add tst-realloc to tests.
21913         * malloc/tst-realloc.c: New file.
21914
21915 2013-09-09  Allan McRae  <allan@archlinux.org>
21916
21917         [BZ #15844]
21918         * COPYING: Update from GNU website to fix FSF address.
21919         * COPYING.LIB: Likewise.
21920
21921 2013-09-06  David S. Miller  <davem@davemloft.net>
21922
21923         * po/zh_TW.po: Update Chinese (traditional) translation from
21924         translation project.
21925
21926 2013-09-06  Richard Sandiford  <richard@codesourcery.com>
21927             Joseph Myers  <joseph@codesourcery.com>
21928
21929         * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
21930         "localeinfo.h".
21931         (obstack_chunk_alloc): New macro.
21932         (obstack_chunk_free): Likewise.
21933         (record_offset): New function.
21934         (init_locale_data): Likewise.
21935         (align_locale_data): Likewise.
21936         (add_locale_empty): Likewise.
21937         (add_locale_raw_data): Likewise.
21938         (add_locale_raw_obstack): Likewise.
21939         (add_locale_string): Likewise.
21940         (add_locale_wstring): Likewise.
21941         (add_locale_uint32): Likewise.
21942         (add_locale_uint32_array): Likewise.
21943         (add_locale_char): Likewise.
21944         (start_locale_structure): Likewise.
21945         (end_locale_structure): Likewise.
21946         (start_locale_prelude): Likewise.
21947         (end_locale_prelude): Likewise.
21948         (write_locale_data): Take locale_file structure rather than an
21949         iovec.
21950         * locale/programs/locfile.h: Include "obstack.h".
21951         (struct locale_file): Change to store locale file contents instead
21952         of header.
21953         (init_locale_data): New prototype.
21954         (align_locale_data): Likewise.
21955         (add_locale_empty): Likewise.
21956         (add_locale_raw_data): Likewise.
21957         (add_locale_raw_obstack): Likewise.
21958         (add_locale_string): Likewise.
21959         (add_locale_wstring): Likewise.
21960         (add_locale_uint32): Likewise.
21961         (add_locale_uint32_array): Likewise.
21962         (add_locale_char): Likewise.
21963         (start_locale_structure): Likewise.
21964         (end_locale_structure): Likewise.
21965         (start_locale_prelude): Likewise.
21966         (end_locale_prelude): Likewise.
21967         (write_locale_data): Update prototype.
21968         * locale/programs/3level.h (struct TABLE): Remove result field.
21969         (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
21970         Use new locale_file interface.
21971         [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
21972         (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
21973         * locale/programs/ld-address.c (address_output): Use new
21974         locale_file interface.
21975         * locale/programs/ld-collate.c (NO_FINALIZE): Change to
21976         NO_ADD_LOCALE.
21977         (collate_finish): Don't call collseq_table_finalize.
21978         (collate_output): Use new locale_file interface.
21979         * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
21980         in file.
21981         (NO_FINALIZE): Change to NO_ADD_LOCALE.
21982         (TABLE): Move defines earlier in file.
21983         (ELEMENT): Likewise.
21984         (DEFAULT): Likewise.
21985         (wctrans_table_add): Move macro and inline function earlier in
21986         file.
21987         (struct wctype_table): Move type earlier in file.
21988         (add_locale_wctype_table): New static prototype.
21989         (struct locale_ctype_t): Use logical types instead of struct iovec
21990         pointers for members.
21991         (ctype_output): Use new locale_file interface.
21992         (wctype_table_finalize): Change to add_locale_wctype_table.  Use
21993         new locale_file interface.
21994         (allocate_arrays): Update for use of new locale_file interface.
21995         * locale/programs/ld-identification.c (identification_output): Use
21996         new locale_file interface.
21997         * locale/programs/ld-measurement.c (measurement_output): Likewise.
21998         * locale/programs/ld-messages.c (messages_output): Likewise.
21999         * locale/programs/ld-monetary.c (monetary_output): Likewise.
22000         * locale/programs/ld-name.c (name_output): Likewise.
22001         * locale/programs/ld-numeric.c (numeric_output): Likewise.
22002         * locale/programs/ld-paper.c (paper_output): Likewise.
22003         * locale/programs/ld-telephone.c (telephone_output): Likewise.
22004         * locale/programs/ld-time.c (time_output): Likewise.
22005
22006 2013-09-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22007
22008         * benchtests/Makefile: Add memrchr benchmark.
22009         * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
22010         benchmark as memrchr.
22011         * benchtests/bench-memrchr-ifunc.c: New file.
22012         * benchtests/bench-memrchr.c: New file.
22013
22014 2013-09-06   Will Newton  <will.newton@linaro.org>
22015
22016         * benchtests/Makefile (string-bench): Add memcpy.
22017
22018 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
22019             Cong Wang  <amwang@redhat.com>
22020
22021         [BZ #15850]
22022         * sysdeps/unix/sysv/linux/bits/in.h
22023         [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
22024         * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
22025         before __USE_KERNEL_IPV6_DEFS uses.
22026         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
22027         IPPROTO_BEETPH.
22028         [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
22029         sockaddr_in6, or ipv6_mreq.
22030
22031 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22032
22033         * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
22034         memory access for final bytes in some large inputs.
22035         * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
22036
22037 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22038
22039         * string/test-memrchr.c: New file.
22040         * string/test-memrchr-ifunc.c: New file.
22041         * string/Makefile: Add new memrchr testcase.
22042
22043 2013-09-05  Mike Frysinger  <vapier@gentoo.org>
22044
22045         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
22046         fanotify_init returns EPERM.
22047
22048 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
22049
22050         * conform/conformtest.pl (newtoken): Treat tokens not allowed as
22051         errors.
22052         (top level): Treat second token from macro or constant entries for
22053         allowed headers as allowed.
22054         * include/complex.h: Condition internal declarations on
22055         [!_ISOMAC].
22056         * include/fenv.h: Condition include of <stdbool.h> and internal
22057         declarations on [!_ISOMAC].
22058
22059 2013-09-04  Chris Leonard  <cjl@sugarlabs,.org>
22060
22061         [BZ #15923]
22062         * locale/iso-4217.def: Update iso-1427.def and related occurrences.
22063
22064 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
22065
22066         * configure.in (--enable-versioning): Remove configure option.
22067         (libc_cv_asm_symver_directive): Remove configure test.
22068         (libc_cv_ld_version_script_option): Likewise.
22069         (VERSIONING): Remove variable and AC_SUBST.
22070         (DO_VERSIONING): Remove AC_DEFINE.
22071         * configure: Regenerated.
22072         * config.h.in (DO_VERSIONING): Remove macro.
22073         * Makerules [$(versioning) = yes]: Change conditionals to
22074         [$(build-shared) = yes].
22075         * config.make.in (versioning): Remove variable.
22076         * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
22077         [$(build-shared) = yes].
22078         * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
22079         * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
22080         * elf/Makefile [$(versioning) = yes]: Change conditionals to
22081         [$(build-shared) = yes].
22082         * extra-lib.mk [$(versioning) = yes]: Likewise.
22083         * hurd/Makefile [$(versioning) = yes]: Likewise.
22084         * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
22085         [SHARED].
22086         * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
22087         [SHARED].
22088         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
22089         [SHARED && !NO_HIDDEN].
22090         * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
22091         [SHARED].
22092         [SHARED && DO_VERSIONING]: Likewise..
22093         * libio/Makefile [$(versioning) = yes]: Change conditionals to
22094         [$(build-shared) = yes].
22095         * manual/install.texi (--disable-versioning): Remove
22096         documentation.
22097         * INSTALL: Regenerated.
22098         * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
22099         to [SHARED].
22100         * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
22101         [$(build-shared) = yes].
22102         * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
22103         * sysdeps/i386/i686/multiarch/strstr-c.c
22104         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
22105         [SHARED && !NO_HIDDEN].
22106         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
22107         [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
22108         * sysdeps/powerpc/powerpc32/dl-machine.c
22109         [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
22110         * sysdeps/powerpc/powerpc32/sysdep.h
22111         [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
22112         to [SHARED && PIC && !NO_HIDDEN].
22113         * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
22114         conditional to [SHARED].
22115
22116 2013-09-04   Will Newton  <will.newton@linaro.org>
22117
22118         * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
22119         * benchtests/bench-string.h: Include bench-timing.h instead
22120         of including hp-timing.h directly. (INNER_LOOP_ITERS): New
22121         define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
22122         call to HP_TIMING_DIFF_INIT.
22123         * benchtests/bench-memccpy.c: Use bench-timing.h macros
22124         instead of hp-timing.h macros.
22125         * benchtests/bench-memchr.c: Likewise.
22126         * benchtests/bench-memcmp.c: Likewise.
22127         * benchtests/bench-memcpy.c: Likewise.
22128         * benchtests/bench-memmem.c: Likewise.
22129         * benchtests/bench-memmove.c: Likewise.
22130         * benchtests/bench-memset.c: Likewise.
22131         * benchtests/bench-rawmemchr.c: Likewise.
22132         * benchtests/bench-strcasecmp.c: Likewise.
22133         * benchtests/bench-strcasestr.c: Likewise.
22134         * benchtests/bench-strcat.c: Likewise.
22135         * benchtests/bench-strchr.c: Likewise.
22136         * benchtests/bench-strcmp.c: Likewise.
22137         * benchtests/bench-strcpy.c: Likewise.
22138         * benchtests/bench-strcpy_chk.c: Likewise.
22139         * benchtests/bench-strlen.c: Likewise.
22140         * benchtests/bench-strncasecmp.c: Likewise.
22141         * benchtests/bench-strncat.c: Likewise.
22142         * benchtests/bench-strncmp.c: Likewise.
22143         * benchtests/bench-strncpy.c: Likewise.
22144         * benchtests/bench-strnlen.c: Likewise.
22145         * benchtests/bench-strpbrk.c: Likewise.
22146         * benchtests/bench-strrchr.c: Likewise.
22147         * benchtests/bench-strspn.c: Likewise.
22148         * benchtests/bench-strstr.c: Likewise.
22149
22150 2013-09-04  Will Newton  <will.newton@linaro.org>
22151
22152         * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
22153
22154 2013-09-03  Joseph Myers  <joseph@codesourcery.com>
22155
22156         [BZ #15427]
22157         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
22158         2**-30 instead of 2**-70 as threshold for returning -log(|x|).
22159         * math/libm-test.inc (lgamma_test_data): Add more tests.
22160         * sysdeps/i386/fpu/libm-test-ulps: Update.
22161         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22162
22163 2013-09-03   Ondřej Bílka  <neleai@seznam.cz>
22164
22165         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
22166         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
22167         Add ifunc.
22168         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
22169         Add strcmp-sse2-unaligned
22170         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
22171
22172 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
22173
22174         * Versions.def (libc): Add GLIBC_2.19.
22175
22176 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
22177
22178         * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
22179         * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
22180
22181 2013-09-02  Joseph Myers  <joseph@codesourcery.com>
22182
22183         [BZ #14155]
22184         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
22185         intermediate calculations in recurrence.
22186         (__ieee754_ynf): Likewise.
22187         * math/libm-test.inc (jn_test_data): Do not allow spurious
22188         underflow exception.  Add more tests.
22189         (yn_test_data): Add more tests.
22190         * sysdeps/i386/fpu/libm-test-ulps: Update.
22191         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22192
22193 2013-09-02   Ondřej Bílka  <neleai@seznam.cz>
22194
22195         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
22196
22197 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
22198
22199         * csu/init-first.c: Fix then/than typos.
22200         * locale/programs/ld-collate.c: Likewise.
22201         * locale/programs/linereader.h: Likewise.
22202         * manual/charset.texi: Likewise.
22203         * manual/filesys.texi: Likewise.
22204         * manual/stdio.texi: Likewise.
22205         * manual/string.texi: Likewise.
22206         * stdlib/fmtmsg.c: Likewise.
22207         * sysdeps/i386/stpncpy.S: Likewise.
22208         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
22209         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
22210         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
22211         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
22212
22213 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
22214
22215         * elf/dl-open.c: Fix typos.
22216         * iconvdata/gbbig5.c: Likewise.
22217         * iconvdata/iso-2022-jp.c: Likewise.
22218         * iconv/gconv_int.h: Likewise.
22219         * iconv/loop.c: Likewise.
22220         * nis/rpcsvc/nis.h: Likewise.
22221         * resolv/ns_name.c: Likewise.
22222         * stdio-common/vfscanf.c: Likewise.
22223         * streams/stropts.h: Likewise.
22224         * sunrpc/rpc_thread.c: Likewise.
22225         * sysdeps/i386/strpbrk.S: Likewise.
22226         * sysdeps/ieee754/k_standard.c: Likewise.
22227         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
22228         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
22229         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
22230         * sysdeps/mach/hurd/profil.c: Likewise.
22231         * sysdeps/s390/dl-procinfo.h: Likewise.
22232         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
22233         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
22234         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
22235         * sysdeps/x86_64/dl-trampoline.S: Likewise.
22236         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
22237
22238 2013-08-30  Ondřej Bílka  <neleai@seznam.cz>
22239
22240         * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
22241         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
22242
22243 2013-08-29  Ondřej Bílka  <neleai@seznam.cz>
22244
22245         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
22246         aix specific files.
22247         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
22248         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
22249         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
22250         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
22251         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
22252         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
22253         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
22254         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
22255
22256 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
22257             Roland McGrath  <roland@hack.frob.com>
22258
22259         * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
22260         * sysdeps/mach/hurd/bits/errno.h: Regenerate.
22261
22262 2013-08-29  Samuel Thibault  <samuel.thibault@ens-lyon.org>
22263
22264         * sysdeps/mach/hurd/i386/init-first.c (init1): Use
22265         __executable_start symbol instead of _start.
22266
22267 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
22268
22269         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
22270         (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
22271         Move macros to...
22272         * sysdeps/gnu/ldsodefs.h: ... this new file.
22273
22274         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
22275         (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
22276         instead of ELFOSABI_LINUX.
22277
22278         [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
22279         * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
22280         * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
22281         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
22282         Likewise.
22283         * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
22284         * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
22285         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
22286         Likewise.
22287         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
22288         (ibm_extended_long_double): Add ieee_nan member.
22289         * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
22290         (do_test): New function.
22291
22292         * math/basic-test.c (TEST_CONVERT): New macro, renamed from
22293         TEST_TRUNC.
22294         (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
22295         functions, renamed from truncdfsf_test, trunctfsf_test,
22296         trunctfdf_test.
22297         (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
22298         functions.
22299         (do_test): Run all these.
22300
22301 2013-08-29   Ondřej Bílka  <neleai@seznam.cz>
22302
22303         * argp/argp-help.c: Fix typos.
22304         * argp/argp-parse.c: Likewise.
22305         * debug/backtracesyms.c: Likewise.
22306         * elf/elf.h: Likewise.
22307         * malloc/malloc.c: Likewise.
22308         * nis/nis_print.c: Likewise.
22309         * resolv/res_comp.c: Likewise.
22310         * stdlib/stdlib.h: Likewise.
22311         * sunrpc/clnt_tcp.c: Likewise.
22312         * sunrpc/clnt_udp.c: Likewise.
22313         * sunrpc/clnt_unix.c: Likewise.
22314         * sysdeps/unix/bsd/ptsname.c: Likewise.
22315         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
22316         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
22317         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
22318         Likewise.
22319         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
22320         Likewise.
22321         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
22322         Likewise.
22323         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
22324
22325 2013-08-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
22326
22327         * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
22328         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
22329
22330 2013-08-27  Mike Frysinger  <vapier@gentoo.org>
22331
22332         [BZ #15897]
22333         * dlfcn/Makefile (tests): Add bug-dl-leaf.
22334         (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
22335         ($(objpfx)bug-dl-leaf): New rule.
22336         ($(objpfx)bug-dl-leaf.so): Likewise.
22337         ($(objpfx)bug-dl-leaf.out): Likewise.
22338         ($(objpfx)bug-dl-leaf-lib.so): Likewise.
22339         ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
22340         * dlfcn/bug-dl-leaf.c: New test.
22341         * dlfcn/bug-dl-leaf-lib.c: Likewise.
22342         * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
22343         * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
22344         (dlclose): Likewise.
22345         (dlmopen): Likewise.
22346
22347 2013-08-27  Roland McGrath  <roland@hack.frob.com>
22348
22349         * include/netdb.h [!_ISOMAC]:
22350         Don't include <tls.h>.
22351         (h_errno, __libc_h_errno): Move declaration and macros out of
22352         [_LIBC_REENTRANT].
22353
22354         * include/resolv.h [_RESOLV_H_]:
22355         Don't include <tls.h>.
22356         (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
22357         * resolv/res_libc.c: Don't include <tls.h>.
22358         (_res): Use __attribute__ ((nocommon)) in place of
22359         __attribute__ ((section (".bss"))).
22360
22361         * Makefile ($(common-objpfx)linkobj/libc_pic.a):
22362         If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
22363
22364         * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
22365
22366         * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
22367         only under [SIOCGIFCONF && SIOCGIFNETMASK].
22368
22369         * resolv/res_mkquery.c: Include <sys/time.h>.
22370
22371         * inet/ifreq.c: Moved to ...
22372         * sysdeps/unix/ifreq.c: ... here.
22373         * inet/ifreq.c: New file, true stub version.
22374
22375         * socket/sa_len.c: New file.
22376         * socket/Makefile (aux): Add it.
22377         * sysdeps/unix/sysv/linux/Makefile
22378         [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
22379         * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
22380         and #include <socket/sa_len.c>.
22381         * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
22382         HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
22383
22384         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
22385         * bits/socket.h: ... here.
22386
22387         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
22388         Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
22389         (SOCK_MAX, SOCK_TYPE_MASK): New macros.
22390
22391 2013-08-27  Andreas Schwab  <schwab@suse.de>
22392
22393         [BZ #15736]
22394         * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
22395         * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
22396         (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
22397         * string/test-strcasecmp.c (test_main): Run tests in several
22398         locales.
22399         * string/test-strncasecmp.c (test_main): Likewise.
22400
22401         * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
22402         (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
22403         to __strcasecmp_nonascii and __strncasecmp_nonascii.
22404         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
22405         (__strncasecmp_ssse3) [PIC]: Likewise.
22406
22407 2013-08-26  Roland McGrath  <roland@hack.frob.com>
22408
22409         * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
22410
22411         * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
22412         instead of explicitly declaring xdecrypt.
22413         * nis/nss_nis/nis-publickey.c: Likewise.
22414
22415 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22416
22417         [BZ #15890]
22418         * nscd/aicache.c: Include res_hconf.h.
22419         (addhstaiX): Initialize res_hconf.
22420
22421 2013-08-26  Andreas Schwab  <schwab@suse.de>
22422
22423         * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
22424         ($(objpfx)tst-tls-atexit): Add dependencies here instead.
22425
22426 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22427
22428         * nscd/aicache.c (addhstaiX): Fix indentation.
22429
22430 2013-08-25  Mike Frysinger  <vapier@gentoo.org>
22431
22432         * configure.ac: Quote $build_pt_chown test.
22433         * configure: Regenerated.
22434
22435 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
22436
22437         [BZ #15532]
22438         * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
22439         * math/s_cexpf.c (__cexpf): Likewise.
22440         * math/s_cexpl.c (__cexpl): Likewise.
22441         * math/libm-test.inc (cexp_test_data): Correct expected return
22442         value for NaN + i0.  Add another test.
22443
22444 2013-08-22  David S. Miller  <davem@davemloft.net>
22445
22446         * po/ca.po: Update Catalan translation from translation project.
22447         * po/uk.po: Add Ukrainian translations from translation project.
22448
22449 2013-08-21  Joseph Myers  <joseph@codesourcery.com>
22450
22451         [BZ #15797]
22452         * math/s_fdim.c (__fdim): Check for infinite arguments if result
22453         is infinite, not alongside NaN test.
22454         * math/s_fdimf.c (__fdimf): Likewise.
22455         * math/s_fdiml.c (__fdiml): Likewise.
22456         * math/libm-test.inc (fdim_test_data): Add more tests.  Test that
22457         errno is unchanged.
22458
22459 2013-08-21   Ondřej Bílka  <neleai@seznam.cz>
22460
22461         * argp/argp-help.c: Fix typos.
22462         * crypt/speeds.c: Likewise.
22463         * csu/check_fds.c: Likewise.
22464         * elf/dl-load.c: Likewise.
22465         * elf/dl-open.c: Likewise.
22466         * elf/reldep3.c: Likewise.
22467         * elf/reldep.c: Likewise.
22468         * elf/sprof.c: Likewise.
22469         * iconv/iconv_charmap.c: Likewise.
22470         * iconv/skeleton.c: Likewise.
22471         * iconv/strtab.c: Likewise.
22472         * io/lockf64.c: Likewise.
22473         * libio/libioP.h: Likewise.
22474         * resolv/gai_notify.c: Likewise.
22475         * resolv/ns_name.c: Likewise.
22476         * resolv/ns_samedomain.c: Likewise.
22477         * resolv/res_send.c: Likewise.
22478         * stdlib/random.c: Likewise.
22479         * sunrpc/rpc/xdr.h: Likewise.
22480         * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
22481         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
22482         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
22483         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
22484         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
22485         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
22486         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
22487         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
22488         * sysdeps/mach/hurd/check_fds.c: Likewise.
22489         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
22490         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
22491         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
22492         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
22493         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
22494         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
22495         * sysdeps/pthread/aio_notify.c: Likewise.
22496         * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
22497         * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
22498         * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
22499         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
22500         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
22501
22502 2013-08-21  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22503
22504         * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
22505         version if bit_Slow_SSE4_2 is set.
22506         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
22507         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
22508
22509 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22510
22511         [BZ #15867]
22512         * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
22513         trampoline stack frame information.
22514         * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
22515         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
22516         (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
22517         (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
22518         (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
22519         * sysdeps/unix/sysv/linux/powerpc/init-first.c
22520         (_libc_vdso_platform_setup): Initialize the signal trampolines.
22521         * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
22522         sa_flags value.
22523         * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
22524         interrupting a syscall and set with option SA_SIGINFO.
22525
22526 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
22527
22528         [BZ #15531]
22529         * math/s_cproj.c (__cproj): Only return an infinity if one part of
22530         argument is infinite.
22531         * math/s_cprojf.c (__cprojf): Likewise.
22532         * math/s_cprojl.c (__cprojl): Likewise.
22533         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
22534         * math/libm-test.inc (cproj_test_data): Add more tests.
22535
22536         * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
22537
22538         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
22539         [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
22540         size.  Use __ffs to determine corresponding shift.
22541
22542 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
22543             Roland McGrath  <roland@hack.frob.com>
22544
22545         * Makefile (INSTALL): Remove trailing blank lines from output of
22546         makeinfo.
22547
22548 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22549
22550         * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
22551         Align 32 bit compat elf_greg to 8 bytes.
22552
22553 2013-08-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
22554
22555         * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
22556
22557 2013-08-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
22558
22559         * string/strcoll_l.c (coll_seq): New structure.
22560         (get_next_seq_cached): New function.
22561         (get_next_seq): New function.
22562         (do_compare): New function.
22563         (STRCOLL): Use GNU style definition.  Simplify implementation
22564         by using get_next_seq, get_next_seq_cached and do_compare.
22565
22566 2013-08-16  Florian Weimer  <fweimer@redhat.com>
22567
22568         [BZ #14699]
22569         CVE-2013-4237
22570         * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
22571         member.
22572         * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
22573         member.
22574         * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
22575         * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
22576         Return delayed error code.  Remove GETDENTS_64BIT_ALIGNED
22577         conditional.
22578         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
22579         GETDENTS_64BIT_ALIGNED.
22580         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
22581         * manual/filesys.texi (Reading/Closing Directory): Document
22582         ENAMETOOLONG return value of readdir_r.  Recommend readdir more
22583         strongly.
22584         * manual/conf.texi (Limits for Files): Add portability note to
22585         NAME_MAX, PATH_MAX.
22586         (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
22587
22588 2013-08-13  Andreas Schwab  <schwab@suse.de>
22589
22590         [BZ #15749]
22591         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
22592         of fabs.
22593         * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
22594         LDBL_MAX_EXP >= 16384]: Add tests for it.
22595
22596 2013-08-12  David S. Miller  <davem@davemloft.net>
22597
22598         * version.h (RELEASE): Set to "development".
22599         (VERSION): Set to "2.18.90".
22600         * NEWS: Add 2.19 section.
22601
22602 2013-08-03  David S. Miller  <davem@davemloft.net>
22603
22604         * po/ko.po: Update Korean translation from translation project.
22605
22606 2013-08-01  David S. Miller  <davem@davemloft.net>
22607
22608         * manual/contrib.texi: Update entry for Siddhesh Poyarekar.  Add
22609         entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
22610         Bilka.
22611
22612 2013-07-30  David S. Miller  <davem@davemloft.net>
22613
22614         * po/fr.po: Update French translation from translation project.
22615
22616 2013-07-28  David S. Miller  <davem@davemloft.net>
22617
22618         * po/cs.po: Update Czech translation from translation project.
22619
22620         * po/sv.po: Update Swedish translation from translation project.
22621
22622 2013-07-27  David S. Miller  <davem@davemloft.net>
22623
22624         * po/eo.po: Update Esperanto translation from translation project.
22625
22626         * po/vi.po: Update Vietnamese translation from translation project.
22627
22628         * po/de.po: Update German translation from translation project.
22629
22630 2013-07-26  David S. Miller  <davem@davemloft.net>
22631
22632         * po/bg.po: Update Bulgarian translation from translation project.
22633
22634         * po/nl.po: Update Dutch translation from translation project.
22635         * po/pl.po: Update Polish translation from translation project.
22636         * po/ru.po: Update Russian translation from translation project.
22637
22638 2013-07-24  David S. Miller  <davem@davemloft.net>
22639
22640         * po/libc.pot: Update.
22641
22642 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22643
22644         * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
22645         variable page size.
22646         * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
22647         * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
22648         * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
22649
22650 2013-07-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22651
22652         * sysdeps/s390/fpu/libm-test-ulps: Refresh.
22653
22654 2013-07-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
22655             Andreas Schwab  <schwab@suse.de>
22656             Roland McGrath  <roland@hack.frob.com>
22657             Joseph Myers  <joseph@codesourcery.com>
22658             Carlos O'Donell  <carlos@redhat.com>
22659
22660         [BZ #15755]
22661         * config.h.in: Define HAVE_PT_CHOWN.
22662         * config.make.in (build-pt-chown): New variable.
22663         * configure.in (--enable-pt_chown): New configure option.
22664         * configure: Regenerate.
22665         * login/Makefile: Include Makeconfig.  Build pt_chown only if
22666         build-pt-chown is enabled.
22667         * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
22668         pt_chown to fix pty ownership.
22669         * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
22670         CLOSE_ALL_FDS.
22671         * manual/install.texi (Configuring and compiling): Mention
22672         --enable-pt_chown. Add @findex for grantpt.
22673         * INSTALL: Regenerate.
22674
22675 2013-07-20  David S. Miller  <davem@davemloft.net>
22676
22677         * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
22678         difference between 32-bit and 64-bit.
22679
22680 2013-07-15  Carlos O'Donell  <carlos@redhat.com>
22681
22682         [BZ #15711]
22683         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
22684         Avoid system header dependency with -ffreestanding.
22685         ($(objpfx)bits/syscall%d): Likewise.
22686
22687 2013-07-13  David S. Miller  <davem@davemloft.net>
22688
22689         * math/libm-test.inc (casin_test_data): Annotate more cases of missing
22690         underflows from atanl/atan2l due to bug 15319.
22691         (casinh_test_data): Likewise.
22692
22693 2013-07-07  David S. Miller  <davem@davemloft.net>
22694
22695         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
22696
22697 2013-07-05  Jeroen Albers  <_jeroen_@yahoo.com>
22698
22699         * sysdeps/i386/fpu/libm-test-ulps: Update.
22700         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22701
22702 2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
22703
22704         * configure.in (--enable-lock-elision): Fix message text.
22705         * INSTALL: Regenerate.
22706         * configure: Regenerate.
22707
22708 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22709
22710         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
22711
22712 2013-07-03  Andreas Jaeger  <aj@suse.de>
22713
22714         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
22715         define.
22716         (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
22717         (ptrace_peeksiginfo_args): Add.
22718         (__ptrace_peeksiginfo_flags): Add.
22719         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
22720         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
22721         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
22722
22723 2013-07-03  Allan McRae  <allan@archlinux.org>
22724
22725         * sysdeps/i386/fpu/libm-test-ulps: Update.
22726
22727 2013-07-02  David S. Miller  <davem@davemloft.net>
22728
22729         * sysdeps/sparc/fpu/libm-test-ulps: Update.
22730
22731 2013-07-02  Markus Trippelsdorf  <markus@trippelsdorf.de>
22732
22733         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
22734
22735 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
22736
22737         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
22738         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22739
22740 2013-07-02  Andi Kleen <ak@linux.intel.com>
22741
22742         * config.h.in (ENABLE_LOCK_ELISION): Add.
22743         * configure.in (--enable-lock-elision): Add option.
22744         * manual/install.texi: Document --enable lock elision.
22745         * configure: Regenerate
22746         * INSTALL: Regenerate.
22747
22748 2013-07-02  H.J. Lu  <hongjiu.lu@intel.com>
22749
22750         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
22751         SSE4.2 strcasecmp for libc.a.
22752         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
22753
22754 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
22755
22756         [BZ #13304]
22757         * soft-fp/op-common.h (_FP_FMA): New macro.
22758         * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
22759         (_FP_MUL_MEAT_DW_1_imm): Likewise.  Split out of ...
22760         (_FP_MUL_MEAT_1_imm): ... here.
22761         (_FP_MUL_MEAT_DW_1_wide): New macro.  Split out of ...
22762         (_FP_MUL_MEAT_1_wide): ... here.
22763         (_FP_MUL_MEAT_DW_1_hard): Likewise.  Split out of ...
22764         (_FP_MUL_MEAT_1_hard): ... here.
22765         * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
22766         (_FP_MUL_MEAT_DW_2_wide): Likewise.  Split out of ...
22767         (_FP_MUL_MEAT_2_wide): ... here.
22768         (_FP_MUL_MEAT_DW_2_wide_3mul): New macro.  Split out of ...
22769         (_FP_MUL_MEAT_2_wide_3mul): ... here.
22770         (_FP_MUL_MEAT_DW_2_gmp): New macro.  Split out of ...
22771         (_FP_MUL_MEAT_2_gmp): ... here.
22772         * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
22773         (_FP_MUL_MEAT_DW_4_wide): Likewise.  Split out of ...
22774         (_FP_MUL_MEAT_4_wide): ... here.
22775         (_FP_MUL_MEAT_DW_4_gmp): New macro.  Split out of ...
22776         (_FP_MUL_MEAT_4_gmp): ... here.
22777         * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
22778         (_FP_WFRACBITS_DW_S): Likewise.
22779         (_FP_WFRACXBITS_DW_S): Likewise.
22780         (_FP_HIGHBIT_DW_S): Likewise.
22781         (FP_FMA_S): Likewise.
22782         (_FP_FRAC_HIGH_DW_S): Likewise.
22783         * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
22784         (_FP_WFRACBITS_DW_D): Likewise.
22785         (_FP_WFRACXBITS_DW_D): Likewise.
22786         (_FP_HIGHBIT_DW_D): Likewise.
22787         (FP_FMA_D): Likewise.
22788         (_FP_FRAC_HIGH_DW_D): Likewise.
22789         * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
22790         (_FP_WFRACBITS_DW_E): Likewise.
22791         (_FP_WFRACXBITS_DW_E): Likewise.
22792         (_FP_HIGHBIT_DW_E): Likewise.
22793         (FP_FMA_E): Likewise.
22794         (_FP_FRAC_HIGH_DW_E): Likewise.
22795         * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
22796         (_FP_WFRACBITS_DW_Q): Likewise.
22797         (_FP_WFRACXBITS_DW_Q): Likewise.
22798         (_FP_HIGHBIT_DW_Q): Likewise.
22799         (FP_FMA_Q): Likewise.
22800         (_FP_FRAC_HIGH_DW_Q): Likewise.
22801         * soft-fp/fmasf4.c: New file.
22802         * soft-fp/fmadf4.c: Likewise.
22803         * soft-fp/fmatf4.c: Likewise.
22804
22805 2013-06-28  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22806
22807         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
22808         bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
22809         Silvermont.
22810         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
22811         macro.
22812         (index_Slow_SSE4_2): Likewise.
22813         (index_Prefer_PMINUB_for_stringop): Likewise.
22814         * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
22815         bit_Slow_SSE4_2 is set.
22816         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
22817         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
22818
22819 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22820
22821         * sysdeps/powerpc/Makefile: Add comment about generating an offset to
22822         rtld_global._dl_hwcap2.
22823         * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
22824         POWER8.
22825         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
22826         POWER8 feature descriptions defined in _dl_hwcap2.
22827         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
22828         string handling for POWER8 feature bits.
22829         (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
22830         (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
22831         _dl_powerpc_cap_flags.
22832         (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
22833         * sysdeps/powerpc/rtld-global-offsets.sym
22834         (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
22835         _dl_hwcap2 in the rtld_global_ro structure.
22836
22837 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22838
22839         * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
22840         hardware capabilities in support of AT_HWCAP2.
22841         (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
22842         * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
22843         GLRO(dl_hwcap2).
22844         (_dl_show_auxv): Add support for calling _dl_procinfo to display
22845         AT_HWCAP2.  If a platform doesn't chose to handle displaying AT_HWCAP2
22846         explicitly the unknown a_type display mechanism is used.
22847         * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
22848         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
22849         struct member.
22850         * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
22851         to macro prototype for AT_HWCAP2 support.
22852         * sysdeps/i386/dl-procinfo.h: Likewise.
22853         * sysdeps/s390/dl-procinfo.h: Likewise.
22854         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
22855         macro prototype for AT_HWCAP2 support.  Make WORD unsigned long int
22856         rather than signed int.  Stub in handler for TYPE == AT_HWCAP2 to
22857         return -1 for unknown a_type display fallback.
22858         * sysdeps/sparc/dl-procinfo.h: Likewise.
22859         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
22860         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
22861
22862 2013-06-28  Joseph Myers  <joseph@codesourcery.com>
22863
22864         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
22865         instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
22866
22867 2013-06-28  Pierre Ynard  <linkfanel@yahoo.fr>
22868
22869         [BZ #12492]
22870         * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
22871         mprotect making __stack_prot writable.
22872
22873 2013-06-28  Nathan Froyd  <froydnj@codesourcery.com>
22874             Joseph Myers  <joseph@codesourcery.com>
22875
22876         * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
22877         as being properly aligned.
22878
22879 2013-06-28  Maciej W. Rozycki  <macro@codesourcery.com>
22880
22881         * dlfcn/modstatic5.c: New file.
22882         * dlfcn/tststatic5.c: New file.
22883         * dlfcn/Makefile (tests): Add tststatic5.
22884         (tests-static): Likewise.
22885         (modules-names): Add modstatic5.
22886         (tststatic5-ENV): New variable.
22887         ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
22888
22889         [BZ #15022]
22890         * elf/dl-support.c (_dl_main_map): New variable.
22891         (_dl_ns): Use it to initialize [LM_ID_BASE] element.
22892         (_dl_nns, _dl_load_adds): Set to 1.
22893         (_dl_initial_searchlist): Refer to _dl_main_map.
22894         (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
22895         * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
22896         call to _dl_get_origin.
22897         * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
22898         around call_map.
22899         (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
22900         * dlfcn/modstatic3.c: New file.
22901         * dlfcn/tststatic3.c: New file.
22902         * dlfcn/tststatic4.c: New file.
22903         * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
22904         (tests-static): Likewise.
22905         (modules-names): Add modstatic3.
22906         (tststatic3-ENV, tststatic4-ENV): New variables.
22907         ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
22908         ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
22909
22910 2013-06-26  Joseph Myers  <joseph@codesourcery.com>
22911
22912         * configure.in (CC): Require GCC version 4.4 or later.
22913         * configure: Regenerated.
22914         * manual/install.texi (Tools for Compilation): Update GCC version
22915         requirement.
22916         * INSTALL: Regenerated.
22917
22918 2013-06-26  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22919
22920         [BZ #15674]
22921         * string/test-memcmp.c (check2): New.
22922         (main): Call check2.
22923
22924         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
22925
22926 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
22927
22928         [BZ #15022]
22929         * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
22930         over to...
22931         (dl_open_worker) [!SHARED]: ... here.
22932
22933 2013-06-26  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22934
22935         * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
22936
22937 2013-06-25  Richard Henderson  <rth@redhat.com>
22938
22939         * locale/programs/locarchive.c: Include <libc-internal.h>
22940
22941 2013-06-25  Joseph Myers  <joseph@codesourcery.com>
22942
22943         * manual/texinfo.tex: Update to version 2013-06-21.17, with
22944         trailing whitespace removed.
22945
22946 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
22947
22948         [BZ #10283]
22949         * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
22950         * locale/programs/locarchive.c: Include libc-mmap.h.
22951         (prepare_address_space): Take two new outputs (the mmap base and len).
22952         Align p to MAP_FIXED_ALIGNMENT.  Set mmap base and len to the right
22953         values.
22954         (create_archive): Declare new mmap base and len values for
22955         prepare_address_space, and store the result in ah.
22956         (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
22957         (enlarge_archive): If ah->mmap_base is not NULL, use that and
22958         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
22959         Declare new mmap base and len values for
22960         prepare_address_space, and store the result in new_ah.
22961         (open_archive): Declare new mmap base and len values for
22962         prepare_address_space, and store the result in ah.
22963         (close_archive): If ah->mmap_base is not NULL, use that and
22964         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
22965         * sysdeps/generic/libc-mmap.h: New file.
22966
22967 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
22968
22969         * include/libc-internal.h (ALIGN_DOWN): New helper macro.
22970         (ALIGN_UP): Likewise.
22971         (PTR_ALIGN_DOWN): Likewise.
22972         (PTR_ALIGN_UP): Likewise.
22973
22974 2013-06-24  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22975
22976         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
22977         entry mapped to PPC_PLATFORM_POWER8.
22978         * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
22979         POWER8.
22980         (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
22981         (_dl_string_platform): Add case for exporting platform position for
22982         POWER8.
22983         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
22984         search path to sysdeps/powerpc/powerpc32/power8 directory.
22985         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
22986         search path to sysdeps/powerpc/powerpc64/power8 directory.
22987         * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
22988         power7 directories.
22989         * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
22990         power7 directories.
22991
22992 2013-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
22993
22994         * INSTALL: Regenerate.
22995
22996         * nscd/connections.c (nscd_init): Fix comment.
22997
22998 2013-06-22  Joseph Myers  <joseph@codesourcery.com>
22999
23000         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
23001
23002         [BZ #15667]
23003         * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
23004         to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
23005
23006 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
23007
23008         * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
23009         DL_DST_REQ_STATIC.
23010         (DL_DST_REQ_STATIC): Remove macro.
23011
23012 2013-06-21  Joseph Myers  <joseph@codesourcery.com>
23013
23014         [BZ #7006]
23015         * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
23016         with a shift of 0 bits.
23017
23018 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
23019
23020         * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
23021         $(tststatic-ENV).
23022
23023 2013-06-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
23024
23025         [BZ #15655]
23026         * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
23027
23028 2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23029
23030         * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
23031         * configure.in (libc_cv_cc_loop_to_function): Check if compiler
23032         accepts -fno-tree-loop-distribute-patterns.
23033         * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
23034         * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
23035         recursive call.
23036         * string/memset.c (memset): Likewise.
23037         * string/test-memmove.c (simple_memmove): Disable loop transformation
23038         to library calls.
23039         * string/test-memset.c (simple_memset): Likewise.
23040         * benchtests/bench-memmove.c (simple_memmove): Likewise.
23041         * benchtests/bench-memset.c (simple_memset): Likewise.
23042         * configure: Regenerated.
23043
23044 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
23045
23046         * math/test-misc.c (main): Ignore fesetround failure when failures
23047         of subsequent rounding tests would be ignored.
23048
23049         [BZ #15654]
23050         * math/fedisblxcpt.c (fedisableexcept): Return 0.
23051         * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
23052         * math/fegetenv.c (__fegetenv): Return 0.
23053         * math/fegetexcept.c (fegetexcept): Return 0.
23054         * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
23055         FE_TONEAREST.
23056         * math/feholdexcpt.c (feholdexcept): Return 0.
23057         * math/fesetenv.c (__fesetenv): Return 0.
23058         * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
23059         argument FE_TONEAREST.
23060         * math/feupdateenv.c (__feupdateenv): Return 0.
23061         * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
23062
23063 2013-06-18  Roland McGrath  <roland@hack.frob.com>
23064
23065         * elf/rtld-Rules (rtld-compile-command.S): New variable.
23066         (rtld-compile-command.s, rtld-compile-command.c): New variables.
23067         ($(objpfx)rtld-%.os rules): Use them.
23068
23069 2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23070
23071         * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
23072         fields.
23073
23074 2013-06-17  Roland McGrath  <roland@hack.frob.com>
23075
23076         * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
23077         length of target pattern, then descending length of dependency pattern.
23078         * configure.in (AWK): Require gawk 3.1.2 or newer.
23079         * manual/install.texi (Tools for Compilation): Say that we do.
23080         * configure: Regenerated.
23081
23082         * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
23083         ($(common-objpfx)sysd-rules): Replace shell logic with running ...
23084         * scripts/sysd-rules.awk: ... this new script.
23085         * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
23086         than a glob-style pattern.
23087
23088 2013-06-17  Joseph Myers  <joseph@codesourcery.com>
23089
23090         * math/test-misc.c (main): Do not treat incorrectly rounded
23091         conversions as failure unless ROUNDING_TESTS passes.
23092
23093 2013-06-15  Joseph Myers  <joseph@codesourcery.com>
23094
23095         [BZ #15631]
23096         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
23097         restore exception state around main square root computation, then
23098         check for inexactness explicitly.
23099
23100         * math/libm-test.inc (fma_test_data): Add another test.
23101
23102 2013-06-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
23103
23104         * manual/threads.texi (Non-POSIX Extensions): New document
23105         node.  Document pthread_getattr_default_np and
23106         pthread_setattr_default_np.
23107
23108         * Versions.def (libpthread): Add GLIBC_2.18.
23109         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
23110         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
23111         Likewise.
23112         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
23113         Likewise.
23114         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
23115         Likewise.
23116         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
23117         Likewise.
23118         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
23119         Likewise.
23120         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
23121         Likewise.
23122         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
23123         Likewise.
23124         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
23125         Likewise.
23126         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
23127         Likewise.
23128
23129 2013-06-14  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
23130
23131         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
23132         Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
23133
23134 2013-06-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
23135             H.J. Lu  <hjl.tools@gmail.com>
23136
23137         [BZ #15627]
23138         * sysdeps/x86_64/rtld-memset.c: Remove file.
23139         * sysdeps/x86_64/rtld-memset.S: New file.
23140
23141 2013-06-14  Joseph Myers  <joseph@codesourcery.com>
23142
23143         * stdlib/tst-strtod-round.c: Include <math-tests.h>.
23144         (test_in_one_mode): Take arguments for whether the rounding mode
23145         is supported for each floating-point type.
23146         (do_test): Pass new arguments to test_in_one_mode using
23147         ROUNDING_TESTS.
23148
23149 2013-06-13  Roland McGrath  <roland@hack.frob.com>
23150
23151         * posix/tst-waitid.c (do_test): Distinguish different instances of
23152         stopped/continued in CHECK_SIGCHLD uses.  Insert a delay between
23153         sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
23154         before entering the kernel for waitpid.
23155
23156 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
23157
23158         * NEWS: Fix note on clock function precision.  Text by Roland
23159         McGrath.
23160
23161 2013-06-13  Roland McGrath  <roland@hack.frob.com>
23162
23163         * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
23164         it into place only when and if the sanity check passes.
23165
23166 2013-06-13  Joseph Myers  <joseph@codesourcery.com>
23167
23168         * stdlib/gen-tst-strtod-round.c (round_str): Always generate
23169         output for whether conversion result is exact.  Take argument
23170         indicating whether type is IBM long double.
23171         (round_for_all): Change need_exact field to ibm_ld.
23172         * stdlib/tst-strtod-round.c (struct exactness): New type.
23173         (struct test): Change bool ld_ok field to struct exactness exact.
23174         (TEST): Update all definitions for change to field.
23175         (tests): Regenerate array contents.
23176         (test_in_one_mode): Take pointer to new field instead of old ld_ok
23177         field value.  Check for IBM long double here.
23178         (do_test): Update calls to test_in_one_mode.
23179
23180 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
23181
23182         [BZ #12515]
23183         * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
23184         CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
23185
23186 2013-06-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23187
23188         [BZ #15605]
23189         * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
23190         generated by the compiler on loop optimizations.
23191         * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
23192         general definitions.
23193
23194 2013-06-12  Joseph Myers  <joseph@codesourcery.com>
23195
23196         * math/bug-nextafter.c: Include <math-tests.h>.
23197         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23198         the relevant type.
23199         * math/bug-nexttoward.c: Include <math-tests.h>.
23200         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23201         the relevant type.
23202         * math/test-misc.c: Include <math-tests.h>.
23203         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23204         the relevant type.
23205
23206 2013-06-12  Andreas Jaeger  <aj@suse.de>
23207
23208         * po/ia.po: Update Interlingua translation from translation
23209         project.
23210
23211 2013-06-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
23212
23213         * include/fenv.h: Include stdbool.h.
23214         (struct rm_ctx): New structure.
23215         * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
23216         Define macro.
23217         (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
23218         (SET_RESTORE_ROUNDF): Likewise.
23219         (SET_RESTORE_ROUNDL): Likewise.
23220         (SET_RESTORE_ROUND_NOEX): Likewise.
23221         (SET_RESTORE_ROUND_NOEXF): Likewise.
23222         (SET_RESTORE_ROUND_NOEXL): Likewise.
23223         (SET_RESTORE_ROUND_53BIT): Likewise.
23224         [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
23225         (libc_feresetround_noexf_ctx): Likewise.
23226         (libc_feresetround_noexl_ctx): Likewise.
23227         (libc_feholdsetround_53bit_ctx): Likewise.
23228         (libc_feresetround_53bit_ctx): Likewise.
23229         * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
23230         (libc_feholdexcept_setround_sse_ctx): New function.
23231         (libc_fesetenv_sse_ctx): Likewise.
23232         (libc_feupdateenv_sse_ctx): Likewise.
23233         (libc_feholdexcept_setround_387_prec_ctx): Likewise.
23234         (libc_feholdexcept_setround_387_ctx): Likewise.
23235         (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
23236         (libc_feholdsetround_387_prec_ctx): Likewise.
23237         (libc_feholdsetround_387_ctx): Likewise.
23238         (libc_feholdsetround_387_53bit_ctx): Likewise.
23239         (libc_feholdsetround_sse_ctx): Likewise.
23240         (libc_feresetround_sse_ctx): Likewise.
23241         (libc_feresetround_387_ctx): Likewise.
23242         (libc_feupdateenv_387_ctx): Likewise.
23243         (libc_feholdexcept_setroundf_ctx): Define macro.
23244         (libc_fesetenvf_ctx): Likewise.
23245         (libc_feupdateenvf_ctx): Likewise.
23246         (libc_feholdsetroundf_ctx): Likewise.
23247         (libc_feresetroundf_ctx): Likewise.
23248         (libc_feholdexcept_setround_ctx): Likewise.
23249         (libc_fesetenv_ctx): Likewise.
23250         (libc_feupdateenv_ctx): Likewise.
23251         (libc_feholdsetround_ctx): Likewise.
23252         (libc_feresetround_ctx): Likewise.
23253         (libc_feholdexcept_setroundl_ctx): Likewise.
23254         (libc_feupdateenvl_ctx): Likewise.
23255         (libc_feholdsetroundl_ctx): Likewise.
23256         (libc_feresetroundl_ctx): Likewise.
23257         [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
23258         (libc_feresetround_53bit_ctx): Likewise.
23259
23260 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23261
23262         * locale/iso-639.def: Convert to UTF-8.
23263
23264 2013-06-11  Joseph Myers  <joseph@codesourcery.com>
23265
23266         * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
23267         (EXCEPTION_TESTS_double): Likewise.
23268         (EXCEPTION_TESTS_long_double): Likewise.
23269         (EXCEPTION_TESTS): Likewise.
23270         * math/libm-test.inc (test_exceptions): Only test exceptions if
23271         EXCEPTION_TESTS (FLOAT).
23272
23273 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23274
23275         * benchtests/Makefile (string-bench): Add strcpy_chk and
23276         stpcpy_chk.
23277         * benchtests/bench-stpcpy_chk-ifunc.c: New file.
23278         * benchtests/bench-stpcpy_chk.c: New file.
23279         * benchtests/bench-strcpy_chk-ifunc.c: New file.
23280         * benchtests/bench-strcpy_chk.c: New file.
23281         * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
23282         code.
23283         (do_test): Likewise.
23284
23285 2013-06-11  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
23286
23287         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
23288         ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
23289         * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
23290         with tabs where appropriate.
23291         [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
23292         dl-procinfo.h.
23293         [PPC_PLATFORM_PPC440]: Likewise.
23294         [PPC_PLATFORM_PPC464]: Likewise.
23295         [PPC_PLATFORM_PPC476]: Likewise.
23296         (_dl_string_platform): Add support for detecting ppc405, ppc440,
23297         ppc464, and ppc476 platform strings merging from ports/
23298         dl-procinfo.h.
23299
23300 2013-06-11  Andreas Schwab  <schwab@suse.de>
23301
23302         [BZ #14991]
23303         * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
23304         (from_ucs4_idx): Regenerate.
23305         (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
23306         (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
23307         (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
23308         (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
23309         (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
23310         (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
23311         (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
23312         (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
23313         from FROM_LOOP and TO_LOOP specific macros.
23314         (BODY): Handle combining characters.
23315         * iconvdata/BIG5HKSCS.irreversible: Update.
23316         * iconvdata/BIG5HKSCS.precomposed: New file.
23317         * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
23318         characters.
23319         * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
23320
23321 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23322
23323         * include/sys/time.h: Fix indentation and add copyright header.
23324
23325         * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
23326         (do_test): Likewise.
23327         * string/test-memchr.c (do_one_test): Likewise.
23328         (do_test): Likewise.
23329         * string/test-memcmp.c (do_one_test): Likewise.
23330         (do_test): Likewise.
23331         * string/test-memcpy.c (do_one_test): Likewise.
23332         (do_test): Likewise.
23333         * string/test-memmem.c (do_one_test): Likewise.
23334         (do_test): Likewise.
23335         (do_random_tests): Likewise.
23336         * string/test-memmove.c (do_one_test): Likewise.
23337         (do_test): Likewise.
23338         * string/test-memset.c (do_one_test): Likewise.
23339         (do_test): Likewise.
23340         * string/test-rawmemchr.c (do_one_test): Likewise.
23341         (do_test): Likewise.
23342         * string/test-strcasecmp.c (do_one_test): Likewise.
23343         (do_test): Likewise.
23344         * string/test-strcasestr.c (do_one_test): Likewise.
23345         (do_test): Likewise.
23346         * string/test-strcat.c (do_one_test): Likewise.
23347         (do_test): Likewise.
23348         * string/test-strchr.c (do_one_test): Likewise.
23349         (do_test): Likewise.
23350         * string/test-strcmp.c (do_one_test): Likewise.
23351         (do_test): Likewise.
23352         * string/test-strcpy.c (do_one_test): Likewise.
23353         (do_test): Likewise.
23354         * string/test-string.h: Likewise.
23355         (test_init): Likewise.
23356         * string/test-strlen.c (do_one_test): Likewise.
23357         (do_test): Likewise.
23358         * string/test-strncasecmp.c (do_one_test): Likewise.
23359         (do_test): Likewise.
23360         * string/test-strncat.c (do_one_test): Likewise.
23361         (do_test): Likewise.
23362         * string/test-strncmp.c (do_one_test): Likewise.
23363         (do_test_limit): Likewise.
23364         (do_test): Likewise.
23365         * string/test-strncpy.c (do_one_test): Likewise.
23366         (do_test): Likewise.
23367         * string/test-strnlen.c (do_one_test): Likewise.
23368         (do_test): Likewise.
23369         * string/test-strpbrk.c (do_one_test): Likewise.
23370         (do_test): Likewise.
23371         * string/test-strrchr.c (do_one_test): Likewise.
23372         (do_test): Likewise.
23373         * string/test-strspn.c (do_one_test): Likewise.
23374         (do_test): Likewise.
23375         * string/test-strstr.c (do_one_test): Likewise.
23376         (do_test): Likewise.
23377
23378         * benchtests/Makefile (string-bench): Add string benchmarks.
23379         * benchtests/bench-bcopy-ifunc.c: New file.
23380         * benchtests/bench-bcopy.c: New file.
23381         * benchtests/bench-bzero-ifunc.c: New file.
23382         * benchtests/bench-bzero.c: New file.
23383         * benchtests/bench-memccpy-ifunc.c: New file.
23384         * benchtests/bench-memccpy.c: New file.
23385         * benchtests/bench-memchr-ifunc.c: New file.
23386         * benchtests/bench-memchr.c: New file.
23387         * benchtests/bench-memcmp-ifunc.c: New file.
23388         * benchtests/bench-memcmp.c: New file.
23389         * benchtests/bench-memmem-ifunc.c: New file.
23390         * benchtests/bench-memmem.c: New file.
23391         * benchtests/bench-memmove-ifunc.c: New file.
23392         * benchtests/bench-memmove.c: New file.
23393         * benchtests/bench-mempcpy-ifunc.c: New file.
23394         * benchtests/bench-mempcpy.c: New file.
23395         * benchtests/bench-memset-ifunc.c: New file.
23396         * benchtests/bench-memset.c: New file.
23397         * benchtests/bench-rawmemchr-ifunc.c: New file.
23398         * benchtests/bench-rawmemchr.c: New file.
23399         * benchtests/bench-stpcpy-ifunc.c: New file.
23400         * benchtests/bench-stpcpy.c: New file.
23401         * benchtests/bench-stpncpy-ifunc.c: New file.
23402         * benchtests/bench-stpncpy.c: New file.
23403         * benchtests/bench-strcasecmp-ifunc.c: New file.
23404         * benchtests/bench-strcasecmp.c: New file.
23405         * benchtests/bench-strcasestr-ifunc.c: New file.
23406         * benchtests/bench-strcasestr.c: New file.
23407         * benchtests/bench-strcat-ifunc.c: New file.
23408         * benchtests/bench-strcat.c: New file.
23409         * benchtests/bench-strchr-ifunc.c: New file.
23410         * benchtests/bench-strchr.c: New file.
23411         * benchtests/bench-strchrnul-ifunc.c: New file.
23412         * benchtests/bench-strchrnul.c: New file.
23413         * benchtests/bench-strcmp-ifunc.c: New file.
23414         * benchtests/bench-strcmp.c: New file.
23415         * benchtests/bench-strcpy-ifunc.c: New file.
23416         * benchtests/bench-strcpy.c: New file.
23417         * benchtests/bench-strcspn-ifunc.c: New file.
23418         * benchtests/bench-strcspn.c: New file.
23419         * benchtests/bench-strlen-ifunc.c: New file.
23420         * benchtests/bench-strlen.c: New file.
23421         * benchtests/bench-strncasecmp-ifunc.c: New file.
23422         * benchtests/bench-strncasecmp.c: New file.
23423         * benchtests/bench-strncat-ifunc.c: New file.
23424         * benchtests/bench-strncat.c: New file.
23425         * benchtests/bench-strncmp-ifunc.c: New file.
23426         * benchtests/bench-strncmp.c: New file.
23427         * benchtests/bench-strncpy-ifunc.c: New file.
23428         * benchtests/bench-strncpy.c: New file.
23429         * benchtests/bench-strnlen-ifunc.c: New file.
23430         * benchtests/bench-strnlen.c: New file.
23431         * benchtests/bench-strpbrk-ifunc.c: New file.
23432         * benchtests/bench-strpbrk.c: New file.
23433         * benchtests/bench-strrchr-ifunc.c: New file.
23434         * benchtests/bench-strrchr.c: New file.
23435         * benchtests/bench-strspn-ifunc.c: New file.
23436         * benchtests/bench-strspn.c: New file.
23437         * benchtests/bench-strstr-ifunc.c: New file.
23438         * benchtests/bench-strstr.c: New file.
23439
23440         * benchtests/Makefile: Disable parallel execution of targets.
23441         (string-bench): Add memcpy.
23442         (benchset): New variable to store a list of benchmark sets.
23443         (bench-func): Renamed from bench.
23444         (bench-set): New target.
23445         (bench): Depend on bench-func and bench-set.
23446         * benchtests/README: Add section on benchmark sets.
23447         * benchtests/bench-memcpy-ifunc.c: New file.
23448         * benchtests/bench-memcpy.c: New file.
23449         * benchtests/bench-string.h: New file.
23450
23451 2013-06-11  Andreas Schwab  <schwab@suse.de>
23452
23453         [BZ #15577]
23454         * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
23455         * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
23456         values in the triple.
23457         * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
23458         terminator in the group key.
23459
23460 2013-06-11  Andreas Jaeger  <aj@suse.de>
23461
23462         * po/zh_TW.po: Update Chinese (traditional) translation from
23463         translation project.
23464
23465 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23466
23467         * include/time.h (__clock_gettime): Add libc_hidden_proto.
23468         * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
23469         __clock_getcpuclockid.  Add weak_alias and libc_hidden_def.
23470         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
23471         (clock_getcpuclockid): Likewise.
23472         * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
23473         Add weak_alias and libc_hidden_def.
23474         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
23475         * rt/clock_gettime.c (clock_gettime): Rename to
23476         __clock_gettime.  Add weak_alias and libc_hidden_def.
23477         * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
23478         * rt/clock_nanosleep.c (clock_nanosleep): Rename to
23479         __clock_nanosleep.  Add weak_alias and libc_hidden_def.
23480         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
23481         * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
23482         Likewise.
23483         * rt/clock_settime.c (clock_settime): Rename to
23484         __clock_settime.  Add weak_alias and libc_hidden_def.
23485         * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
23486
23487 2013-06-10  Joseph Myers  <joseph@codesourcery.com>
23488
23489         * mach/err_boot.sub: Remove trailing whitespace.
23490         * mach/err_ipc.sub: Likewise.
23491         * mach/err_mach.sub: Likewise.
23492
23493         * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
23494         (ROUNDING_TESTS_double): Likewise.
23495         (ROUNDING_TESTS_long_double): Likewise.
23496         (ROUNDING_TESTS): Likewise.
23497         * math/libm-test.inc: Include <math-tests.h>.
23498         (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
23499         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
23500         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
23501         (IF_ROUND_INIT_FE_UPWARD): Likewise.
23502
23503 2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
23504
23505         * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
23506         of assigning.
23507
23508 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
23509
23510         * sysdeps/gnu/errlist.awk: Do not generate space at end of
23511         otherwise empty TRANS lines.
23512         * sysdeps/gnu/errlist.c: Regenerated.
23513
23514         * catgets/gencat.c (error_print): Use (void) in function
23515         definition.
23516         * crypt/crypt_util.c (__init_des): Likewise.
23517         * crypt/speeds.c (Stop): Likewise.
23518         (main): Likewise.
23519         * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
23520         * inet/ruserpass.c (token): Likewise.
23521         * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
23522         * intl/localealias.c (extend_alias_table): Likewise.
23523         * intl/plural-exp.c (init_germanic_plural): Likewise.
23524         * libio/fcloseall.c (__fcloseall): Likewise.
23525         * libio/genops.c (_IO_flush_all): Likewise.
23526         (_IO_flush_all_linebuffered): Likewise.
23527         (_IO_cleanup): Likewise.
23528         (_IO_iter_begin): Likewise.
23529         (_IO_iter_end): Likewise.
23530         (_IO_list_lock): Likewise.
23531         (_IO_list_unlock): Likewise.
23532         (_IO_list_resetlock): Likewise.
23533         * libio/getchar.c (getchar): Likewise.
23534         * libio/getchar_u.c (getchar_unlocked): Likewise.
23535         * libio/getwchar.c (getwchar): Likewise.
23536         * libio/getwchar_u.c (getwchar_unlocked): Likewise.
23537         * libio/oldstdfiles.c (_IO_check_libio): Likewise.
23538         * login/getpt.c (__getpt): Likewise.
23539         * login/tst-utmp.c (main): Likewise.
23540         * malloc/hooks.c (__malloc_check_init): Likewise.
23541         * malloc/malloc.c (__malloc_stats): Likewise.
23542         * malloc/mtrace.c (tr_break): Likewise.
23543         (mtrace): Likewise.
23544         (muntrace): Likewise.
23545         * misc/fstab.c (endfsent): Likewise.
23546         * misc/getclktck.c (__getclktck): Likewise.
23547         * misc/getdtsz.c (__getdtablesize): Likewise.
23548         * misc/gethostid.c (gethostid): Likewise.
23549         * misc/getpagesize.c (__getpagesize): Likewise.
23550         * misc/getsysstats.c (__get_nprocs_conf): Likewise.
23551         (__get_nprocs): Likewise.
23552         (__get_phys_pages): Likewise.
23553         (__get_avphys_pages): Likewise.
23554         * misc/getttyent.c (getttyent): Likewise.
23555         (setttyent): Likewise.
23556         (endttyent): Likewise.
23557         * misc/getusershell.c (getusershell): Likewise.
23558         (endusershell): Likewise.
23559         (setusershell): Likewise.
23560         (initshells): Likewise.
23561         * misc/hsearch.c (__hdestroy): Likewise.
23562         * misc/sync.c (sync): Likewise.
23563         * misc/syslog.c (closelog_internal): Likewise.
23564         (closelog): Likewise.
23565         * misc/ttyslot.c (ttyslot): Likewise.
23566         * misc/vhangup.c (vhangup): Likewise.
23567         * posix/fork.c (__fork): Likewise.
23568         * posix/getegid.c (__getegid): Likewise.
23569         * posix/geteuid.c (__geteuid): Likewise.
23570         * posix/getgid.c (__getgid): Likewise.
23571         * posix/getpid.c (__getpid): Likewise.
23572         * posix/getppid.c (__getppid): Likewise.
23573         * posix/getuid.c (__getuid): Likewise.
23574         * posix/pause.c (pause): Likewise.
23575         * posix/setpgrp.c (setpgrp): Likewise.
23576         * posix/setsid.c (__setsid): Likewise.
23577         * posix/test-vfork.c (noop): Likewise.
23578         * resolv/gethnamaddr.c (_endhtent): Likewise.
23579         (_gethtent): Likewise.
23580         (ht_endhostent): Likewise.
23581         (gethostent): Likewise.
23582         (dns_service): Likewise.
23583         * stdlib/drand48.c (drand48): Likewise.
23584         * stdlib/lrand48.c (lrand48): Likewise.
23585         * stdlib/mrand48.c (mrand48): Likewise.
23586         * stdlib/rand.c (rand): Likewise.
23587         * stdlib/random.c (__random): Likewise.
23588         * stdlib/setenv.c (clearenv): Likewise.
23589         * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
23590         * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
23591         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
23592         * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
23593         (__get_nprocs): Likewise.
23594         (__get_phys_pages): Likewise.
23595         (__get_avphys_pages): Likewise.
23596         * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
23597         * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
23598         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
23599         * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
23600         * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
23601         * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
23602         * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
23603         * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
23604         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
23605         * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
23606         * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
23607         * sysdeps/mach/hurd/sync.c (sync): Likewise.
23608         * sysdeps/posix/clock.c (clock): Likewise.
23609         * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
23610         * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
23611         * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
23612         * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
23613         * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
23614         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
23615         (__get_nprocs_conf): Likewise.
23616         (__get_phys_pages): Likewise.
23617         (__get_avphys_pages): Likewise.
23618         * time/clock.c (clock): Likewise.
23619         * time/tzset.c (__tzname_max): Likewise.
23620
23621 2013-06-07  Joseph Myers  <joseph@codesourcery.com>
23622
23623         * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
23624         (__bswap_32): Do not use "register".
23625         * crypt/crypt.c (_ufc_doit_r): Likewise.
23626         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
23627         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
23628         * gmon/gmon.c (__monstartup): Likewise.
23629         * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
23630         * hurd/hurdmalloc.c (more_memory): Likewise.
23631         (malloc): Likewise.
23632         (free): Likewise.
23633         (realloc): Likewise.
23634         (malloc_fork_prepare): Likewise.
23635         (malloc_fork_parent): Likewise.
23636         (malloc_fork_child): Likewise.
23637         * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
23638         (_svcauth_des): Likewise.
23639         * inet/inet_lnaof.c (inet_lnaof): Likewise.
23640         * inet/inet_net.c (inet_network): Likewise.
23641         * inet/inet_netof.c (inet_netof): Likewise.
23642         * inet/rcmd.c (__validuser2_sa): Likewise.
23643         * io/fts.c (fts_open): Likewise.
23644         (fts_load): Likewise.
23645         (fts_close): Likewise.
23646         (fts_read): Likewise.
23647         (fts_children): Likewise.
23648         (fts_build): Likewise.
23649         (fts_stat): Likewise.
23650         (fts_sort): Likewise.
23651         (fts_alloc): Likewise.
23652         (fts_lfree): Likewise.
23653         * libio/fileops.c (_IO_new_file_xsputn): Likewise.
23654         (_IO_file_xsgetn): Likewise.
23655         (_IO_file_xsgetn_mmap): Likewise.
23656         * libio/iofopncook.c (_IO_cookie_read): Likewise.
23657         (_IO_cookie_write): Likewise.
23658         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
23659         * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
23660         * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
23661         * malloc/obstack.c (_obstack_begin): Likewise.
23662         (_obstack_begin_1): Likewise.
23663         (_obstack_newchunk): Likewise.
23664         (_obstack_allocated_p): Likewise.
23665         (obstack_free): Likewise.
23666         (_obstack_memory_used): Likewise.
23667         * misc/getttyent.c (getttynam): Likewise.
23668         (getttyent): Likewise.
23669         (skip): Likewise.
23670         (value): Likewise.
23671         * misc/getusershell.c (initshells): Likewise.
23672         * misc/syslog.c (__vsyslog_chk): Likewise.
23673         * misc/ttyslot.c (ttyslot): Likewise.
23674         * nis/nis_hash.c (__nis_hash): Likewise.
23675         * posix/fnmatch_loop.c (FCT): Likewise.
23676         * posix/getconf.c (print_all): Likewise.
23677         (main): Likewise.
23678         * posix/getopt.c (exchange): Likewise.
23679         * posix/glob.c (globfree): Likewise.
23680         (prefix_array): Likewise.
23681         (__glob_pattern_type): Likewise.
23682         * resolv/arpa/nameser.h (NS_GET16): Likewise.
23683         (NS_GET32): Likewise.
23684         (NS_PUT16): Likewise.
23685         (NS_PUT32): Likewise.
23686         * resolv/gethnamaddr.c (getanswer): Likewise.
23687         (gethostbyname2): Likewise.
23688         (gethostbyaddr): Likewise.
23689         (_gethtent): Likewise.
23690         (_gethtbyname2): Likewise.
23691         (_gethtbyaddr): Likewise.
23692         * resolv/ns_print.c (dst_s_get_int16): Likewise.
23693         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
23694         * resolv/res_init.c (__res_vinit): Likewise.
23695         (net_mask): Likewise.
23696         * resolv/res_mkquery.c (outchar): Likewise.
23697         (PRINT): Likewise.
23698         * stdio-common/printf_fp.c (outchar): Likewise.
23699         (PRINT): Likewise.
23700         * stdio-common/printf_fphex.c (outchar): Likewise.
23701         (PRINT): Likewise.
23702         * stdio-common/printf_size.c (outchar): Likewise.
23703         (PRINT): Likewise.
23704         * stdio-common/test_rdwr.c (main): Likewise.
23705         * stdio-common/tfformat.c (matches): Likewise.
23706         * stdio-common/vfprintf.c (outchar): Likewise.
23707         (printf_unknown): Likewise.
23708         (buffered_vfprintf): Likewise.
23709         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
23710         * stdio-common/xbug.c (AppendToBuffer): Likewise.
23711         (ReadFile): Likewise.
23712         * stdlib/qsort.c (SWAP): Likewise.
23713         (_quicksort): Likewise.
23714         * stdlib/setenv.c (__add_to_environ): Likewise.
23715         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
23716         * stdlib/strtol_l.c (__strtol_l): Likewise.
23717         * stdlib/tst-strtod.c (main): Likewise.
23718         * stdlib/tst-strtol.c (main): Likewise.
23719         * stdlib/tst-strtoll.c (main): Likewise.
23720         * string/bits/string2.h (__strcmp_cc): Likewise.
23721         (__strcmp_cg): Likewise.
23722         (__strcspn_c1): Likewise.
23723         (__strcspn_c2): Likewise.
23724         (__strcspn_c3): Likewise.
23725         (__strspn_c1): Likewise.
23726         (__strspn_c2): Likewise.
23727         (__strspn_c3): Likewise.
23728         (__strsep_1c): Likewise.
23729         (__strsep_2c): Likewise.
23730         (__strsep_3c): Likewise.
23731         * string/memccpy.c (__memccpy): Likewise.
23732         * string/stpcpy.c (__stpcpy): Likewise.
23733         * string/strcmp.c (strcmp): Likewise.
23734         * string/strrchr.c (strrchr): Likewise.
23735         * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
23736         Likewise.
23737         * sysdeps/mach/hurd/getcwd.c
23738         (_hurd_canonicalize_directory_name_internal): Likewise.
23739         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
23740         * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
23741         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
23742         * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
23743         Likewise, in both definitions.
23744         * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
23745         definitions.
23746         [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
23747         64] (__bswap_64): Likewise.
23748         * time/test_time.c (main): Likewise.
23749         * time/tzfile.c (__tzfile_read): Likewise.
23750         (__tzfile_compute): Likewise.
23751         * time/tzset.c (__tzset_parse_tz): Likewise.
23752         (tzset_internal): Likewise.
23753         (compute_change): Likewise.
23754         * wcsmbs/wcscat.c (__wcscat): Likewise.
23755         * wcsmbs/wcschr.c (wcschr): Likewise.
23756         * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
23757         * wcsmbs/wcscspn.c (wcscspn): Likewise.
23758         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
23759         * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
23760         * wcsmbs/wcsspn.c (wcsspn): Likewise.
23761         * wcsmbs/wcsstr.c (wcsstr): Likewise.
23762         * wcsmbs/wmemchr.c (wmemchr): Likewise.
23763         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
23764         * wcsmbs/wmemset.c (wmemset): Likewise.
23765
23766 2013-06-06  Joseph Myers  <joseph@codesourcery.com>
23767
23768         * scripts/config.guess: Update to version 2013-05-16.
23769         * scripts/config.sub: Update to version 2013-04-24.
23770         * scripts/install-sh: Update to version 2011-11-20.07.
23771         * scripts/mkinstalldirs: Update to version 2009-04-28.21.
23772         * scripts/move-if-change: Update to version 2012-01-06 07:23.
23773
23774 2013-06-06   Ondřej Bílka  <neleai@seznam.cz>
23775
23776         * debug/fgetws_u_chk.c: Fix leading whitespaces.
23777         * elf/sln.c: Likewise.
23778         * hurd/hurd/ioctl.h: Likewise.
23779         * hurd/hurdmalloc.c: Likewise.
23780         * hurd/xattr.c: Likewise.
23781         * include/shlib-compat.h: Likewise.
23782         * inet/ruserpass.c: Likewise.
23783         * libio/iofgets_u.c: Likewise.
23784         * libio/iofgetws_u.c: Likewise.
23785         * locale/programs/ld-identification.c: Likewise.
23786         * locale/programs/ld-time.c: Likewise.
23787         * mach/msg-destroy.c: Likewise.
23788         * nss/nss_files/files-netgrp.c: Likewise.
23789         * resolv/res_data.c: Likewise.
23790         * soft-fp/op-1.h: Likewise.
23791         * soft-fp/op-2.h: Likewise.
23792         * soft-fp/op-4.h: Likewise.
23793         * soft-fp/op-common.h: Likewise.
23794         * stdio-common/printf_fphex.c: Likewise.
23795         * stdlib/strtod_l.c: Likewise.
23796         * sunrpc/rpc/clnt.h: Likewise.
23797         * sysdeps/generic/framestate.c: Likewise.
23798         * sysdeps/i386/bsd-_setjmp.S: Likewise.
23799         * sysdeps/i386/bsd-setjmp.S: Likewise.
23800         * sysdeps/i386/__longjmp.S: Likewise.
23801         * sysdeps/i386/setjmp.S: Likewise.
23802         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
23803         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
23804         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
23805         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
23806         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
23807         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
23808         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
23809         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
23810         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
23811         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
23812         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
23813         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
23814         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
23815         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
23816         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
23817         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
23818         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
23819         * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
23820         * sysdeps/ieee754/support.c: Likewise.
23821         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
23822         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
23823         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
23824         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
23825         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
23826         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
23827         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
23828         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
23829         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
23830         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
23831         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
23832         * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
23833         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
23834         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
23835         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
23836         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
23837         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
23838         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
23839
23840 2013-06-05  Ondřej Bílka  <neleai@seznam.cz>
23841
23842         * posix/transbug.c: Remove executable mode.
23843
23844 2013-06-05  Joseph Myers  <joseph@codesourcery.com>
23845
23846         * crypt/speeds.c: Remove trailing whitespace.
23847         * dlfcn/default.c: Likewise.
23848         * elf/ifuncdep2.c: Likewise.
23849         * elf/ifuncmain1.c: Likewise.
23850         * elf/ifuncmain1vis.c: Likewise.
23851         * elf/testobj.h: Likewise.
23852         * elf/tst-stackguard1.c: Likewise.
23853         * gmon/sys/gmon.h: Likewise.
23854         * hurd/hurdmsg.c: Likewise.
23855         * hurd/new-fd.c: Likewise.
23856         * hurd/ports-get.c: Likewise.
23857         * iconvdata/ibm1008_420.c: Likewise.
23858         * inet/tst-getni1.c: Likewise.
23859         * inet/tst-getni2.c: Likewise.
23860         * libio/ioungetc.c: Likewise.
23861         * libio/wfiledoalloc.c: Likewise.
23862         * manual/libm-err-tab.pl: Likewise.
23863         * math/w_dremf.c: Likewise.
23864         * misc/ftruncate.c: Likewise.
23865         * posix/bug-glob2.c: Likewise.
23866         * posix/tst-pcre.c: Likewise.
23867         * posix/wait4.c: Likewise.
23868         * resolv/README: Likewise.
23869         * resolv/res_debug.h: Likewise.
23870         * resolv/tst-inet_ntop.c: Likewise.
23871         * setjmp/bug269-setjmp.c: Likewise.
23872         * soft-fp/extended.h: Likewise.
23873         * soft-fp/op-1.h: Likewise.
23874         * soft-fp/op-2.h: Likewise.
23875         * soft-fp/op-4.h: Likewise.
23876         * soft-fp/op-8.h: Likewise.
23877         * soft-fp/testit.c: Likewise.
23878         * stdio-common/bug16.c: Likewise.
23879         * stdlib/random.c: Likewise.
23880         * sunrpc/rpcsvc/rquota.x: Likewise.
23881         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
23882         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
23883         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
23884         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
23885         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
23886         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
23887         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
23888         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
23889         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
23890         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
23891         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
23892         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
23893         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
23894         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
23895         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
23896         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
23897         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
23898         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
23899         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
23900         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
23901         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
23902         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
23903         * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
23904         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
23905         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
23906         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
23907         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
23908         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
23909         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
23910         * sysdeps/ieee754/s_lib_version.c: Likewise.
23911         * sysdeps/mach/hurd/check_fds.c: Likewise.
23912         * sysdeps/mach/hurd/getsockname.c: Likewise.
23913         * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
23914         * sysdeps/mach/hurd/recvfrom.c: Likewise.
23915         * sysdeps/powerpc/bits/link.h: Likewise.
23916         * sysdeps/powerpc/dl-procinfo.c: Likewise.
23917         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
23918         * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
23919         * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
23920         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
23921         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
23922         * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
23923         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
23924         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
23925         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
23926         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
23927         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
23928         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
23929         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
23930         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
23931         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
23932         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
23933         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
23934         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
23935         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
23936         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
23937         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
23938         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
23939         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
23940         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
23941         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
23942         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
23943         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
23944         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
23945         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
23946         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
23947         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
23948         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
23949         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
23950         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
23951         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
23952         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
23953         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
23954         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
23955         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
23956         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
23957         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
23958         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
23959         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
23960         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
23961         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
23962         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
23963         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
23964         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
23965         * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
23966         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
23967         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
23968         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
23969         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
23970         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
23971         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
23972         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
23973         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
23974         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
23975         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
23976         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
23977         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
23978         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
23979         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
23980         * sysdeps/powerpc/sysdep.h: Likewise.
23981         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
23982         * sysdeps/s390/s390-64/sub_n.S: Likewise.
23983         * sysdeps/sh/dl-trampoline.S: Likewise.
23984         * sysdeps/sh/memset.S: Likewise.
23985         * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
23986         * sysdeps/sh/strlen.S: Likewise.
23987         * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
23988         * sysdeps/sparc/sparc32/dotmul.S: Likewise.
23989         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
23990         * sysdeps/sparc/sparc32/rem.S: Likewise.
23991         * sysdeps/sparc/sparc32/sdiv.S: Likewise.
23992         * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
23993         * sysdeps/sparc/sparc32/strchr.S: Likewise.
23994         * sysdeps/sparc/sparc32/udiv.S: Likewise.
23995         * sysdeps/sparc/sparc32/urem.S: Likewise.
23996         * sysdeps/sparc/sparc64/add_n.S: Likewise.
23997         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
23998         * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
23999         * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
24000         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
24001         * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
24002         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
24003         * sysdeps/sparc/sparc64/strncpy.S: Likewise.
24004         * sysdeps/unix/bsd/times.c: Likewise.
24005         * sysdeps/unix/sysv/linux/a.out.h: Likewise.
24006         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
24007         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
24008         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
24009         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
24010         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
24011         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
24012         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
24013         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
24014         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
24015         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
24016         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
24017         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
24018         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
24019         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
24020         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
24021         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
24022         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
24023         * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
24024         * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
24025         * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
24026         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
24027         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
24028         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
24029         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
24030         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
24031         * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
24032         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
24033         * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
24034         * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
24035         * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
24036         * sysdeps/x86_64/strcspn.S: Likewise.
24037
24038 2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24039
24040         * locale/C-translit.h: Revert #include <stdint.h> because this is a
24041         generated file.  Regenerate properly from gen-translit.pl.
24042         * locale/gen-translit.pl: Add #include <stdint.h>.  This generates
24043         locale/C-translit.h.
24044
24045 2013-06-05  Andreas Schwab  <schwab@suse.de>
24046
24047         [BZ #15100]
24048         * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
24049         week as 6 instead of -1.
24050         * time/tst-strptime.c (day_tests): Add test case.
24051
24052 2013-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
24053
24054         * sysdeps/generic/math_private.h
24055         (libc_feholdexcept_setround_53bit): Replace with
24056         libc_feholdsetround_53bit.
24057         (libc_feupdateenv_53bit): Replace with
24058         libc_feresetround_53bit.
24059         (SET_RESTORE_ROUND_53BIT): Adjust.
24060
24061 2013-06-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
24062
24063         * string/test-strchrnul.c: Add copyright header.
24064
24065         * posix/tst-getaddrinfo4.c: Increase test timeout.
24066
24067 2013-06-03  Carlos O'Donell  <carlos@redhat.com>
24068
24069         [BZ #15536]
24070         * math/libm-test.inc (MAX_EXP): Remove
24071         (MIN_EXP): Define.
24072         (ulp): Use MIN_EXP - MANT_DIG.
24073         (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
24074
24075 2013-05-31  Carlos O'Donell  <carlos@redhat.com>
24076
24077         * po/be.po: Revert last change.
24078         * po/zh_CN.po: Likewise.
24079         * po/header.pot: Likewise.
24080
24081 2013-05-31  Joseph Myers  <joseph@codesourcery.com>
24082
24083         * Makefile ($(common-objpfx)linkobj/libc.so): Define
24084         link-libc-deps to empty as target-specific variable.
24085         * Makerules (link-libc-args): New variable.
24086         (libc-for-link): Likewise.
24087         (link-libc-deps): Likewise.
24088         (lib%.so): Depend on $(link-libc-deps).  Link with
24089         $(link-libc-args).
24090         (build-module): Link with $(link-libc-args).
24091         (build-module-asneeded): Likewise.
24092         (build-module-helper-objlist): Filter out $(link-libc-deps) from
24093         list of objects.
24094         ($(common-objpfx)libc.so): Define link-libc-deps to empty as
24095         target-specific variable.
24096         ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
24097         $(link-libc-deps) instead of libc.so and libc_nonshared.a.
24098         * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
24099         libc.
24100         * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
24101         libc and ld.so.
24102         ($(objpfx)libpcprofile.so): Likewise.
24103         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
24104         libc_nonshared.a.
24105         ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
24106         * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
24107         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
24108         $(link-libc-deps).
24109         ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
24110         * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
24111         * login/Makefile ($(objpfx)libutil.so): Likewise.
24112         * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
24113         * math/Makefile ($(objpfx)libm.so): Likewise.
24114         * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
24115         $(objpfx)libnsl.so): Define libc-for-link as target-specific
24116         variable instead of depending directly on libc.
24117         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
24118         ($(objpfx)/libnss_test1.so): Change dependencies on libc to
24119         $(link-libc-deps).
24120         * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
24121         libc.
24122         [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
24123         ($(objpfx)libnss_dns.so): Remove dependencies on libc.
24124         ($(objpfx)libanl.so): Likewise.
24125         * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
24126         ld.so.
24127         * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
24128         $(link-libc-deps).
24129         * sysdeps/i386/fpu/Makefile: Remove file.
24130         * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
24131         ($(objpfx)libm.so): Remove dependency on ld.so.
24132
24133 2013-05-30  Patsy Franklin  <pfrankli@redhat.com>
24134
24135         [BZ # 15553]
24136         * nis/yp_xdr.c (XDRMAXNAME): Define.
24137         (XDRMAXRECORD): Define.
24138         (xdr_domainname): Use XDRMAXNAME.
24139         (xdr_mapname): Likewise.
24140         (xdr_peername): Likewise.
24141         (xdr_keydat): Use XDRMAXRECORD.
24142         (xdr_valdat): Likewise.
24143
24144 2013-05-30  Jeff Law  <law@redhat.com>
24145
24146         [BZ #14256]
24147         * manual/errno.texi (ESTALE): Update to account for more than
24148         just NFS file systems.
24149         * sysdeps/gnu/errlist.c: Regenerated.
24150
24151 2013-05-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
24152
24153         [BZ #15465]
24154         * elf/Makefile (tests): Add tst-null-argv.
24155         (modules-names):  Add tst-null-argv-lib.
24156         ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
24157         (tst-null-argv-ENV): Set environment for tst-null-argv.
24158         * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
24159         (RTLD_PROGNAME): New macro.
24160         * elf/tst-null-argv.c: New test case.
24161         * elf/tst-null-argv-lib.c: Library for test case.
24162         * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
24163         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
24164         * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
24165         * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
24166         * elf/dl-init.c (call_init): Likewise.
24167         (_dl_init): Likewise.
24168         * elf/dl-load.c (print_search_path): Likewise.
24169         (_dl_map_object): Likewise.
24170         * elf/dl-lookup.c (do_lookup_x): Likewise.
24171         (add_dependency): Likewise.
24172         (_dl_lookup_symbol_x): Likewise.
24173         (_dl_debug_bindings): Likewise.
24174         * elf/dl-open.c (_dl_show_scope): Likewise.
24175         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
24176         * elf/dl-version.c (match_symbol): Likewise.
24177         (_dl_check_map_versions): Likewise.
24178         * elf/rtld.c (dl_main): Likewise.
24179         (print_unresolved): Use RTLD_PROGNAME.
24180         (print_missing_version): Likewise.
24181         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
24182         (elf_machine_rela): Likewise.
24183         * sysdeps/powerpc/powerpc32/dl-machine.c
24184         (__process_machine_rela): Likewise.
24185         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
24186         Likewise.
24187         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
24188         Likewise.
24189         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
24190         Likewise.
24191         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
24192         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
24193         Likewise.
24194         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
24195         Likewise.
24196         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
24197
24198 2013-05-28  Carlos O'Donell  <carlos@redhat.com>
24199
24200         * po/be.po: Add descriptive title.
24201         * po/zh_CN.po: Likewise.
24202         * po/header.pot: Likewise.
24203
24204 2013-05-28  Mike Frysinger  <vapier@gentoo.org>
24205
24206         * locale/programs/locarchive.c (create_archive): Inlucde fname in
24207         error message.
24208         (enlarge_archive): Likewise.
24209
24210 2013-05-28  Ben North  <ben@redfrontdoor.org>
24211
24212         * manual/arith.texi (frexp): It is the magnitude of the return
24213         value which lies in [0.5, 1), not the return value itself.
24214
24215 2013-05-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24216
24217         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
24218
24219 2013-05-26  Thomas Schwinge  <thomas@codesourcery.com>
24220
24221         * stdio-common/bug26.c (main): Correct fscanf template.
24222
24223         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
24224         declare _dl_skip_args.
24225
24226         * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
24227         Don't declare.
24228
24229         * manual/platform.texi: Add missing @end deftypefun.
24230
24231 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
24232
24233         [BZ #15529]
24234         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
24235         bit of mantissa of 2^16382.
24236         * math/libm-test.inc (hypot_test_data): Add more tests.
24237
24238         * math/libm-test.inc: Add drem and pow10 to list of tested
24239         functions.
24240         (pow10_test): New function.
24241         (drem_test): Likewise.
24242         (drem_test_tonearest): Likewise.
24243         (drem_test_towardzero): Likewise.
24244         (drem_test_downward): Likewise.
24245         (drem_test_upward): Likewise.
24246         (main): Call the new functions.
24247
24248         * math/libm-test.inc (finite_test_data): Remove.
24249         (finite_test): Run tests from isfinite_test_data.
24250         (gamma_test_data): Remove.
24251         (gamma_test): Run tests from lgamma_test_data.
24252         * sysdeps/i386/fpu/libm-test-ulps: Update.
24253         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24254
24255 2013-05-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24256
24257         * manual/platform.texi: Add PowerPC PPR function set documentation.
24258         * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
24259         implementation.
24260
24261 2013-05-24  Carlos O'Donell  <carlos@redhat.com>
24262
24263         * math/libm-test.inc (MAX_EXP): Define.
24264         (ULPDIFF): Define.
24265         (ulp): New function.
24266         (check_float_internal): Use ULPDIFF.
24267         (cpow_test): Disable failing test.
24268         (check_ulp): Test ulp() implemetnation.
24269         (main): Call check_ulp before starting tests.
24270
24271 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
24272
24273         * math/gen-libm-test.pl (generate_testfile): Do not handle
24274         START_DATA and END_DATA.
24275         * math/libm-test.inc (acos_test_data): Do not use START_DATA and
24276         END_DATA.
24277         (acos_tonearest_test_data): Likewise.
24278         (acos_towardzero_test_data): Likewise.
24279         (acos_downward_test_data): Likewise.
24280         (acos_upward_test_data): Likewise.
24281         (acosh_test_data): Likewise.
24282         (asin_test_data): Likewise.
24283         (asin_tonearest_test_data): Likewise.
24284         (asin_towardzero_test_data): Likewise.
24285         (asin_downward_test_data): Likewise.
24286         (asin_upward_test_data): Likewise.
24287         (asinh_test_data): Likewise.
24288         (atan_test_data): Likewise.
24289         (atanh_test_data): Likewise.
24290         (atan2_test_data): Likewise.
24291         (cabs_test_data): Likewise.
24292         (cacos_test_data): Likewise.
24293         (cacosh_test_data): Likewise.
24294         (carg_test_data): Likewise.
24295         (casin_test_data): Likewise.
24296         (casinh_test_data): Likewise.
24297         (catan_test_data): Likewise.
24298         (catanh_test_data): Likewise.
24299         (cbrt_test_data): Likewise.
24300         (ccos_test_data): Likewise.
24301         (ccosh_test_data): Likewise.
24302         (ceil_test_data): Likewise.
24303         (cexp_test_data): Likewise.
24304         (cimag_test_data): Likewise.
24305         (clog_test_data): Likewise.
24306         (clog10_test_data): Likewise.
24307         (conj_test_data): Likewise.
24308         (copysign_test_data): Likewise.
24309         (cos_test_data): Likewise.
24310         (cos_tonearest_test_data): Likewise.
24311         (cos_towardzero_test_data): Likewise.
24312         (cos_downward_test_data): Likewise.
24313         (cos_upward_test_data): Likewise.
24314         (cosh_test_data): Likewise.
24315         (cosh_tonearest_test_data): Likewise.
24316         (cosh_towardzero_test_data): Likewise.
24317         (cosh_downward_test_data): Likewise.
24318         (cosh_upward_test_data): Likewise.
24319         (cpow_test_data): Likewise.
24320         (cproj_test_data): Likewise.
24321         (creal_test_data): Likewise.
24322         (csin_test_data): Likewise.
24323         (csinh_test_data): Likewise.
24324         (csqrt_test_data): Likewise.
24325         (ctan_test_data): Likewise.
24326         (ctan_tonearest_test_data): Likewise.
24327         (ctan_towardzero_test_data): Likewise.
24328         (ctan_downward_test_data): Likewise.
24329         (ctan_upward_test_data): Likewise.
24330         (ctanh_test_data): Likewise.
24331         (ctanh_tonearest_test_data): Likewise.
24332         (ctanh_towardzero_test_data): Likewise.
24333         (ctanh_downward_test_data): Likewise.
24334         (ctanh_upward_test_data): Likewise.
24335         (erf_test_data): Likewise.
24336         (erfc_test_data): Likewise.
24337         (exp_test_data): Likewise.
24338         (exp_tonearest_test_data): Likewise.
24339         (exp_towardzero_test_data): Likewise.
24340         (exp_downward_test_data): Likewise.
24341         (exp_upward_test_data): Likewise.
24342         (exp10_test_data): Likewise.
24343         (exp2_test_data): Likewise.
24344         (expm1_test_data): Likewise.
24345         (fabs_test_data): Likewise.
24346         (fdim_test_data): Likewise.
24347         (finite_test_data): Likewise.
24348         (floor_test_data): Likewise.
24349         (fma_test_data): Likewise.
24350         (fma_towardzero_test_data): Likewise.
24351         (fma_downward_test_data): Likewise.
24352         (fma_upward_test_data): Likewise.
24353         (fmax_test_data): Likewise.
24354         (fmin_test_data): Likewise.
24355         (fmod_test_data): Likewise.
24356         (fpclassify_test_data): Likewise.
24357         (frexp_test_data): Likewise.
24358         (gamma_test_data): Likewise.
24359         (hypot_test_data): Likewise.
24360         (ilogb_test_data): Likewise.
24361         (isfinite_test_data): Likewise.
24362         (isgreater_test_data): Likewise.
24363         (isgreaterequal_test_data): Likewise.
24364         (isinf_test_data): Likewise.
24365         (isless_test_data): Likewise.
24366         (islessequal_test_data): Likewise.
24367         (islessgreater_test_data): Likewise.
24368         (isnan_test_data): Likewise.
24369         (isnormal_test_data): Likewise.
24370         (issignaling_test_data): Likewise.
24371         (isunordered_test_data): Likewise.
24372         (j0_test_data): Likewise.
24373         (j1_test_data): Likewise.
24374         (jn_test_data): Likewise.
24375         (ldexp_test_data): Likewise.
24376         (lgamma_test_data): Likewise.
24377         (lrint_test_data): Likewise.
24378         (lrint_tonearest_test_data): Likewise.
24379         (lrint_towardzero_test_data): Likewise.
24380         (lrint_downward_test_data): Likewise.
24381         (lrint_upward_test_data): Likewise.
24382         (llrint_test_data): Likewise.
24383         (llrint_tonearest_test_data): Likewise.
24384         (llrint_towardzero_test_data): Likewise.
24385         (llrint_downward_test_data): Likewise.
24386         (llrint_upward_test_data): Likewise.
24387         (log_test_data): Likewise.
24388         (log10_test_data): Likewise.
24389         (log1p_test_data): Likewise.
24390         (log2_test_data): Likewise.
24391         (logb_test_data): Likewise.
24392         (logb_downward_test_data): Likewise.
24393         (lround_test_data): Likewise.
24394         (llround_test_data): Likewise.
24395         (modf_test_data): Likewise.
24396         (nearbyint_test_data): Likewise.
24397         (nextafter_test_data): Likewise.
24398         (nexttoward_test_data): Likewise.
24399         (pow_test_data): Likewise.
24400         (pow_tonearest_test_data): Likewise.
24401         (pow_towardzero_test_data): Likewise.
24402         (pow_downward_test_data): Likewise.
24403         (pow_upward_test_data): Likewise.
24404         (remainder_test_data): Likewise.
24405         (remainder_tonearest_test_data): Likewise.
24406         (remainder_towardzero_test_data): Likewise.
24407         (remainder_downward_test_data): Likewise.
24408         (remainder_upward_test_data): Likewise.
24409         (remquo_test_data): Likewise.
24410         (rint_test_data): Likewise.
24411         (rint_tonearest_test_data): Likewise.
24412         (rint_towardzero_test_data): Likewise.
24413         (rint_downward_test_data): Likewise.
24414         (rint_upward_test_data): Likewise.
24415         (round_test_data): Likewise.
24416         (scalb_test_data): Likewise.
24417         (scalbn_test_data): Likewise.
24418         (scalbln_test_data): Likewise.
24419         (signbit_test_data): Likewise.
24420         (sin_test_data): Likewise.
24421         (sin_tonearest_test_data): Likewise.
24422         (sin_towardzero_test_data): Likewise.
24423         (sin_downward_test_data): Likewise.
24424         (sin_upward_test_data): Likewise.
24425         (sincos_test_data): Likewise.
24426         (sinh_test_data): Likewise.
24427         (sinh_tonearest_test_data): Likewise.
24428         (sinh_towardzero_test_data): Likewise.
24429         (sinh_downward_test_data): Likewise.
24430         (sinh_upward_test_data): Likewise.
24431         (sqrt_test_data): Likewise.
24432         (tan_test_data): Likewise.
24433         (tan_tonearest_test_data): Likewise.
24434         (tan_towardzero_test_data): Likewise.
24435         (tan_downward_test_data): Likewise.
24436         (tan_upward_test_data): Likewise.
24437         (tanh_test_data): Likewise.
24438         (tgamma_test_data): Likewise.
24439         (trunc_test_data): Likewise.
24440         (y0_test_data): Likewise.
24441         (y1_test_data): Likewise.
24442         (yn_test_data): Likewise.
24443         (significand_test_data): Likewise.
24444
24445         * math/gen-libm-test.pl (@functions): Remove variable.
24446         (generate_testfile): Don't handle START and END lines.
24447         * math/libm-test.inc (START): New macro.
24448         (END): Likewise.
24449         (END_COMPLEX): Likewise.
24450         (acos_test): Use END macro without arguments.
24451         (acos_test_tonearest): Likewise.
24452         (acos_test_towardzero): Likewise.
24453         (acos_test_downward): Likewise.
24454         (acos_test_upward): Likewise.
24455         (acosh_test): Likewise.
24456         (asin_test): Likewise.
24457         (asin_test_tonearest): Likewise.
24458         (asin_test_towardzero): Likewise.
24459         (asin_test_downward): Likewise.
24460         (asin_test_upward): Likewise.
24461         (asinh_test): Likewise.
24462         (atan_test): Likewise.
24463         (atanh_test): Likewise.
24464         (atan2_test): Likewise.
24465         (cabs_test): Likewise.
24466         (cacos_test): Use END_COMPLEX macro without arguments.
24467         (cacosh_test): Likewise.
24468         (carg_test): Use END macro without arguments.
24469         (casin_test): Use END_COMPLEX macro without arguments.
24470         (casinh_test): Likewise.
24471         (catan_test): Likewise.
24472         (catanh_test): Likewise.
24473         (cbrt_test): Use END macro without arguments.
24474         (ccos_test): Use END_COMPLEX macro without arguments.
24475         (ccosh_test): Likewise.
24476         (ceil_test): Use END macro without arguments.
24477         (cexp_test): Use END_COMPLEX macro without arguments.
24478         (cimag_test): Use END macro without arguments.
24479         (clog_test): Use END_COMPLEX macro without arguments.
24480         (clog10_test): Likewise.
24481         (conj_test): Likewise.
24482         (copysign_test): Use END macro without arguments.
24483         (cos_test): Likewise.
24484         (cos_test_tonearest): Likewise.
24485         (cos_test_towardzero): Likewise.
24486         (cos_test_downward): Likewise.
24487         (cos_test_upward): Likewise.
24488         (cosh_test): Likewise.
24489         (cosh_test_tonearest): Likewise.
24490         (cosh_test_towardzero): Likewise.
24491         (cosh_test_downward): Likewise.
24492         (cosh_test_upward): Likewise.
24493         (cpow_test): Use END_COMPLEX macro without arguments.
24494         (cproj_test): Likewise.
24495         (creal_test): Use END macro without arguments.
24496         (csin_test): Use END_COMPLEX macro without arguments.
24497         (csinh_test): Likewise.
24498         (csqrt_test): Likewise.
24499         (ctan_test): Likewise.
24500         (ctan_test_tonearest): Likewise.
24501         (ctan_test_towardzero): Likewise.
24502         (ctan_test_downward): Likewise.
24503         (ctan_test_upward): Likewise.
24504         (ctanh_test): Likewise.
24505         (ctanh_test_tonearest): Likewise.
24506         (ctanh_test_towardzero): Likewise.
24507         (ctanh_test_downward): Likewise.
24508         (ctanh_test_upward): Likewise.
24509         (erf_test): Use END macro without arguments.
24510         (erfc_test): Likewise.
24511         (exp_test): Likewise.
24512         (exp_test_tonearest): Likewise.
24513         (exp_test_towardzero): Likewise.
24514         (exp_test_downward): Likewise.
24515         (exp_test_upward): Likewise.
24516         (exp10_test): Likewise.
24517         (exp2_test): Likewise.
24518         (expm1_test): Likewise.
24519         (fabs_test): Likewise.
24520         (fdim_test): Likewise.
24521         (finite_test): Likewise.
24522         (floor_test): Likewise.
24523         (fma_test): Likewise.
24524         (fma_test_towardzero): Likewise.
24525         (fma_test_downward): Likewise.
24526         (fma_test_upward): Likewise.
24527         (fmax_test): Likewise.
24528         (fmin_test): Likewise.
24529         (fmod_test): Likewise.
24530         (fpclassify_test): Likewise.
24531         (frexp_test): Likewise.
24532         (gamma_test): Likewise.
24533         (hypot_test): Likewise.
24534         (ilogb_test): Likewise.
24535         (isfinite_test): Likewise.
24536         (isgreater_test): Likewise.
24537         (isgreaterequal_test): Likewise.
24538         (isinf_test): Likewise.
24539         (isless_test): Likewise.
24540         (islessequal_test): Likewise.
24541         (islessgreater_test): Likewise.
24542         (isnan_test): Likewise.
24543         (isnormal_test): Likewise.
24544         (issignaling_test): Likewise.
24545         (isunordered_test): Likewise.
24546         (j0_test): Likewise.
24547         (j1_test): Likewise.
24548         (jn_test): Likewise.
24549         (ldexp_test): Likewise.
24550         (lgamma_test): Likewise.
24551         (lrint_test): Likewise.
24552         (lrint_test_tonearest): Likewise.
24553         (lrint_test_towardzero): Likewise.
24554         (lrint_test_downward): Likewise.
24555         (lrint_test_upward): Likewise.
24556         (llrint_test): Likewise.
24557         (llrint_test_tonearest): Likewise.
24558         (llrint_test_towardzero): Likewise.
24559         (llrint_test_downward): Likewise.
24560         (llrint_test_upward): Likewise.
24561         (log_test): Likewise.
24562         (log10_test): Likewise.
24563         (log1p_test): Likewise.
24564         (log2_test): Likewise.
24565         (logb_test): Likewise.
24566         (logb_test_downward): Likewise.
24567         (lround_test): Likewise.
24568         (llround_test): Likewise.
24569         (modf_test): Likewise.
24570         (nearbyint_test): Likewise.
24571         (nextafter_test): Likewise.
24572         (nexttoward_test): Likewise.
24573         (pow_test): Likewise.
24574         (pow_test_tonearest): Likewise.
24575         (pow_test_towardzero): Likewise.
24576         (pow_test_downward): Likewise.
24577         (pow_test_upward): Likewise.
24578         (remainder_test): Likewise.
24579         (remainder_test_tonearest): Likewise.
24580         (remainder_test_towardzero): Likewise.
24581         (remainder_test_downward): Likewise.
24582         (remainder_test_upward): Likewise.
24583         (remquo_test): Likewise.
24584         (rint_test): Likewise.
24585         (rint_test_tonearest): Likewise.
24586         (rint_test_towardzero): Likewise.
24587         (rint_test_downward): Likewise.
24588         (rint_test_upward): Likewise.
24589         (round_test): Likewise.
24590         (scalb_test): Likewise.
24591         (scalbn_test): Likewise.
24592         (scalbln_test): Likewise.
24593         (signbit_test): Likewise.
24594         (sin_test): Likewise.
24595         (sin_test_tonearest): Likewise.
24596         (sin_test_towardzero): Likewise.
24597         (sin_test_downward): Likewise.
24598         (sin_test_upward): Likewise.
24599         (sincos_test): Likewise.
24600         (sinh_test): Likewise.
24601         (sinh_test_tonearest): Likewise.
24602         (sinh_test_towardzero): Likewise.
24603         (sinh_test_downward): Likewise.
24604         (sinh_test_upward): Likewise.
24605         (sqrt_test): Likewise.
24606         (tan_test): Likewise.
24607         (tan_test_tonearest): Likewise.
24608         (tan_test_towardzero): Likewise.
24609         (tan_test_downward): Likewise.
24610         (tan_test_upward): Likewise.
24611         (tanh_test): Likewise.
24612         (tgamma_test): Likewise.
24613         (trunc_test): Likewise.
24614         (y0_test): Likewise.
24615         (y1_test): Likewise.
24616         (yn_test): Likewise.
24617         (significand_test): Likewise.
24618
24619 2013-05-24  Ondřej Bílka  <neleai@seznam.cz>
24620
24621         [BZ #15381]
24622         * libio/genops.c (_IO_no_init): Initialize wide struct info.
24623
24624 2013-05-23  Edjunior Machado  <emachado@linux.vnet.ibm.com>
24625
24626         [BZ #14894]
24627         * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
24628         __ppc_mdoio and __ppc_mdoom.
24629         * manual/platform.texi: Document new functions __ppc_yield,
24630         __ppc_mdoio and __ppc_mdoom.
24631
24632 2013-05-22  Carlos O'Donell  <carlos@redhat.com>
24633
24634         * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
24635         (main): Mention "tls" pseudo-hwcap is legacy.
24636         * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
24637
24638 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
24639
24640         * math/gen-libm-test.pl (parse_args): Output only string of
24641         arguments as text for test name, not full call or descriptions of
24642         tests for extra outputs.
24643         (generate_testfile): Do not pass function name to parse_args.
24644         Generate this_func variable from START.
24645         * math/libm-test.inc (struct test_f_f_data): Rename test_name
24646         field to arg_str.
24647         (struct test_ff_f_data): Likewise.
24648         (test_ff_f_data_nexttoward): Likewise.
24649         (struct test_fi_f_data): Likewise.
24650         (struct test_fl_f_data): Likewise.
24651         (struct test_if_f_data): Likewise.
24652         (struct test_fff_f_data): Likewise.
24653         (struct test_c_f_data): Likewise.
24654         (struct test_f_f1_data): Likewise.  Remove field extra_name.
24655         (struct test_fF_f1_data): Likewise.
24656         (struct test_ffI_f1_data): Likewise.
24657         (struct test_c_c_data): Rename test_name field to arg_str.
24658         (struct test_cc_c_data): Likewise.
24659         (struct test_f_i_data): Likewise.
24660         (struct test_ff_i_data): Likewise.
24661         (struct test_f_l_data): Likewise.
24662         (struct test_f_L_data): Likewise.
24663         (struct test_fFF_11_data): Likewise.  Remove fields extra1_name
24664         and extra2_name.
24665         (COMMON_TEST_SETUP): New macro.
24666         (EXTRA_OUTPUT_TEST_SETUP): Likewise.
24667         (COMMON_TEST_CLEANUP): Likewise.
24668         (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
24669         (RUN_TEST_f_f): Take argument string.  Call new setup and cleanup
24670         macros.
24671         (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
24672         (RUN_TEST_2_f): Take argument string.  Call new setup and cleanup
24673         macros.
24674         (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
24675         (RUN_TEST_fff_f): Take argument string.  Call new setup and
24676         cleanup macros.
24677         (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
24678         (RUN_TEST_c_f): Take argument string.  Call new setup and cleanup
24679         macros.
24680         (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
24681         (RUN_TEST_f_f1): Take argument string.  Call new setup and cleanup
24682         macros.
24683         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
24684         (RUN_TEST_fF_f1): Take argument string.  Call new setup and
24685         cleanup macros.
24686         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
24687         (RUN_TEST_fI_f1): Take argument string.  Call new setup and
24688         cleanup macros.
24689         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
24690         (RUN_TEST_ffI_f1): Take argument string.  Call new setup and
24691         cleanup macros.
24692         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
24693         (RUN_TEST_c_c): Take argument string.  Call new setup and cleanup
24694         macros.
24695         (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
24696         (RUN_TEST_cc_c): Take argument string.  Call new setup and cleanup
24697         macros.
24698         (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
24699         (RUN_TEST_f_i): Take argument string.  Call new setup and cleanup
24700         macros.
24701         (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
24702         (RUN_TEST_f_i_tg): Take argument string.  Call new setup and
24703         cleanup macros.
24704         (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
24705         (RUN_TEST_ff_i_tg): Take argument string.  Call new setup and
24706         cleanup macros.
24707         (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
24708         (RUN_TEST_f_b): Take argument string.  Call new setup and cleanup
24709         macros.
24710         (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
24711         (RUN_TEST_f_b_tg): Take argument string.  Call new setup and
24712         cleanup macros.
24713         (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
24714         (RUN_TEST_f_l): Take argument string.  Call new setup and cleanup
24715         macros.
24716         (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
24717         (RUN_TEST_f_L): Take argument string.  Call new setup and cleanup
24718         macros.
24719         (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
24720         (RUN_TEST_fFF_11): Take argument string.  Call new setup and
24721         cleanup macros.
24722         (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
24723
24724 2013-05-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
24725
24726         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
24727         to _sifields.sigfault.
24728         (si_addr_lsb): Define new macro.
24729         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
24730         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
24731         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
24732
24733 2013-05-03  Carlos O'Donell  <carlos at redhat.com>
24734
24735         [BZ #15441]
24736         * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
24737         returns -1.
24738         (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
24739         null return -1.
24740         * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
24741         loading the domain.
24742
24743 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
24744
24745         * math/gen-libm-test.pl (parse_args): Do not include expected
24746         result in test name.
24747         * sysdeps/i386/fpu/libm-test-ulps: Update test names.
24748         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
24749         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
24750         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
24751         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
24752         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24753
24754 2013-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
24755
24756         * benchtests/Makefile: Sort function entries.
24757
24758         * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
24759         tanh, asinh, acosh, atanh.
24760         * benchtests/acos-inputs: New file.
24761         * benchtests/acosh-inputs: New file.
24762         * benchtests/asin-inputs: New file.
24763         * benchtests/asinh-inputs: New file.
24764         * benchtests/atanh-inputs: New file.
24765         * benchtests/cosh-inputs: New file.
24766         * benchtests/log-inputs: New file.
24767         * benchtests/sinh-inputs: New file.
24768         * benchtests/tanh-inputs: New file.
24769
24770 2013-05-21  Dmitry V. Levin  <ldv@altlinux.org>
24771
24772         [BZ #15339]
24773         * posix/tst-getaddrinfo4.c: New test.
24774         * posix/Makefile (tests): Add it.
24775
24776 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
24777
24778         [BZ #15339]
24779         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
24780         when no services were used.
24781         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
24782         Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
24783
24784 2013-05-21  Andreas Schwab  <schwab@suse.de>
24785
24786         [BZ #15014]
24787         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
24788         [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
24789         successful.
24790         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
24791         redundant variable declarations and reallocation of buffer when
24792         parsing as IPv6 address.  Always set NSS status when called from
24793         reentrant functions.  Use NETDB_INTERNAL instead of TRY_AGAIN when
24794         buffer too small.  Correct computation of needed size.
24795         * nss/Makefile (tests): Add test-digits-dots.
24796         * nss/test-digits-dots.c: New test.
24797
24798 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
24799
24800         * benchtests/Makefile: Remove instructions for adding
24801         benchmark tests.
24802         * benchtests/README: New file to explain how to execute and
24803         enhance the benchmark tests.
24804
24805 2013-05-21  Andreas Schwab  <schwab@suse.de>
24806
24807         [BZ #15493]
24808         * setjmp/Makefile (tests): Add tst-sigsetjmp.
24809         * setjmp/tst-sigsetjmp.c: New test.
24810
24811 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
24812
24813         * sysdeps/x86_64/memset.S (memset): New implementation.
24814         (__bzero): Likewise.
24815         (__memset_tail): New function.
24816
24817 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
24818
24819         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
24820         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
24821         __memcpy_sse2_unaligned ifunc selection.
24822         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
24823         Add memcpy-sse2-unaligned.S.
24824         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
24825         Add: __memcpy_sse2_unaligned.
24826
24827 2013-05-19  Joseph Myers  <joseph@codesourcery.com>
24828
24829         [BZ #15490]
24830         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
24831         math_force_eval before restoring floating-point envrionment.
24832         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
24833         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
24834         Likewise.
24835         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
24836         <math_private.h>.
24837         (__nearbyintl): Use math_force_eval before restoring
24838         floating-point environment.
24839         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
24840
24841         * math/gen-libm-test.pl (special_functions): Remove.
24842         (parse_args): Don't handle TEST_extra.  Handle functions with no
24843         return value.
24844         * math/libm-test.inc (struct test_sincos_data): Replace with
24845         struct test_fFF_11_data.
24846         (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
24847         (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
24848         (sincos_test_data): Change element type to struct
24849         test_fFF_11_data.  Use TEST_fFF_11 instead of TEST_extra.
24850         (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
24851         RUN_TEST_LOOP_sincos.
24852         * math/README.libm-test: Don't mention special handling of
24853         individual functions.
24854         * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
24855         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
24856         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
24857         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
24858         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
24859         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24860
24861         * math/gen-libm-test.pl (get_variable): Remove function.
24862         (parse_args): Don't show pointer parameters to call in test
24863         names.  Use "extra output N" in test names for extra outputs
24864         rather than naming variables.
24865
24866 2013-05-18  Joseph Myers  <joseph@codesourcery.com>
24867
24868         [BZ #15488]
24869         * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
24870         __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
24871         * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
24872         double tests.
24873         * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
24874         disable.
24875         (do_test) [NO_LONG_DOUBLE]: Do not disable call to
24876         check_long_double.
24877
24878         * math/gen-libm-test.pl (@tests): Remove variable.
24879         ($count): Likewise.
24880         (new_test): Remove function.
24881         (show_exceptions): New function.
24882         (special_functions): Use show_exceptions instead of new_test.
24883         (parse_args): Likewise.
24884         (generate_testfile): Pass only function name in generated call to
24885         print_max_error or print_complex_max_error.
24886         (get_ulps): Do not handle complex tests specially.
24887         (output_test): Rename to ...
24888         (get_all_ulps_for_test): ... this.  Return a string rather than
24889         printing to a file.  Require ulps to be present.
24890         (output_ulps): Generate arrays rather than #defines.
24891         * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
24892         (struct ulp_data): New type.
24893         (BUILD_COMPLEX_ULP): Remove macro.
24894         (compare_ulp_data): New function.
24895         (find_ulps): Likewise.
24896         (find_test_ulps): Likewise.
24897         (find_function_ulps): Likewise.
24898         (find_complex_function_ulps): Likewise.
24899         (print_max_error): Determine allowed ulps using
24900         find_function_ulps.
24901         (print_complex_max_error): Determine allowed ulps using
24902         find_complex_function_ulps.
24903         (check_float_internal): Determine max ulps using find_test_ulps.
24904         (check_float): Do not take max_ulp parameter.  Update call to
24905         check_float_internal.
24906         (check_complex): Likewise.
24907         (check_int): Do not take max_ulp parameter.
24908         (check_long): Likewise.
24909         (check_bool): Likewise.
24910         (check_longlong): Likewise.
24911         (struct test_f_f_data): Remove max_ulp field.
24912         (struct test_ff_f_data): Likewise.
24913         (struct test_ff_f_data_nexttoward): Likewise.
24914         (struct test_fi_f_data): Likewise.
24915         (struct test_fl_f_data): Likewise.
24916         (struct test_if_f_data): Likewise.
24917         (struct test_fff_f_data): Likewise.
24918         (struct test_c_f_data): Likewise.
24919         (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
24920         (struct test_fF_f1_data): Likewise.
24921         (struct test_ffI_f1_data): Likewise.
24922         (struct test_c_c_data): Remove max_ulp field.
24923         (struct test_cc_c_data): Likewise.
24924         (struct test_f_i_data): Likewise.
24925         (struct test_ff_i_data): Likewise.
24926         (struct test_f_l_data): Likewise.
24927         (struct test_f_L_data): Likewise.
24928         (struct test_sincos_data): Likewise.
24929         (RUN_TEST_f_f): Do not handle ulps.
24930         (RUN_TEST_LOOP_f_f): Likewise.
24931         (RUN_TEST_2_f): Likewise.
24932         (RUN_TEST_LOOP_2_f): Likewise.
24933         (RUN_TEST_fff_f): Likewise.
24934         (RUN_TEST_LOOP_fff_f): Likewise.
24935         (RUN_TEST_c_f): Likewise.
24936         (RUN_TEST_LOOP_c_f): Likewise.
24937         (RUN_TEST_f_f1): Likewise.
24938         (RUN_TEST_LOOP_f_f1): Likewise.
24939         (RUN_TEST_fF_f1): Likewise.
24940         (RUN_TEST_LOOP_fF_f1): Likewise.
24941         (RUN_TEST_fI_f1): Likewise.
24942         (RUN_TEST_LOOP_fI_f1): Likewise.
24943         (RUN_TEST_ffI_f1): Likewise.
24944         (RUN_TEST_LOOP_ffI_f1): Likewise.
24945         (RUN_TEST_c_c): Likewise.
24946         (RUN_TEST_LOOP_c_c): Likewise.
24947         (RUN_TEST_cc_c): Likewise.
24948         (RUN_TEST_LOOP_cc_c): Likewise.
24949         (RUN_TEST_f_i): Likewise.
24950         (RUN_TEST_LOOP_f_i): Likewise.
24951         (RUN_TEST_f_i_tg): Likewise.
24952         (RUN_TEST_LOOP_f_i_tg): Likewise.
24953         (RUN_TEST_ff_i_tg): Likewise.
24954         (RUN_TEST_LOOP_ff_i_tg): Likewise.
24955         (RUN_TEST_f_b): Likewise.
24956         (RUN_TEST_LOOP_f_b): Likewise.
24957         (RUN_TEST_f_b_tg): Likewise.
24958         (RUN_TEST_LOOP_f_b_tg): Likewise.
24959         (RUN_TEST_f_l): Likewise.
24960         (RUN_TEST_LOOP_f_l): Likewise.
24961         (RUN_TEST_f_L): Likewise.
24962         (RUN_TEST_LOOP_f_L): Likewise.
24963         (RUN_TEST_sincos): Likewise.
24964         (RUN_TEST_LOOP_sincos): Likewise.
24965
24966 2013-05-17  Joseph Myers  <joseph@codesourcery.com>
24967
24968         [BZ #15480]
24969         [BZ #15485]
24970         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
24971         main case of finite arguments, set rounding mode to FE_TONEAREST
24972         and discard exceptions.
24973         * math/libm-test.inc (remainder_test_data): Disallow "inexact"
24974         exceptions.
24975         (remainder_tonearest_test_data): New variable.
24976         (remainder_test_tonearest): New function.
24977         (remainder_towardzero_test_data): New variable.
24978         (remainder_test_towardzero): New function.
24979         (remainder_downward_test_data): New variable.
24980         (remainder_test_downward): New function.
24981         (remainder_upward_test_data): New variable.
24982         (remainder_test_upward): New function.
24983         (main): Call the new test functions.
24984
24985         * math/libm-test.inc (struct test_f_f1_data): Remove field
24986         extra_init.
24987         (struct test_fF_f1_data): Likewise.
24988         (struct test_ffI_f1_data): Likewise.
24989         (RUN_TEST_f_f1): Remove argument EXTRA_INIT.  Initialize EXTRA_VAR
24990         based on value of EXTRA_EXPECTED.
24991         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
24992         (RUN_TEST_fF_f1): Remove argument EXTRA_INIT.  Initialize
24993         EXTRA_VAR based on value of EXTRA_EXPECTED.
24994         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
24995         (RUN_TEST_fI_f1): Remove argument EXTRA_INIT.  Initialize
24996         EXTRA_VAR based on value of EXTRA_EXPECTED.
24997         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
24998         (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT.  Initialize
24999         EXTRA_VAR based on value of EXTRA_EXPECTED.
25000         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
25001         * math/gen-libm-test.pl (parse_args): Don't output initializers
25002         for extra output values.
25003
25004         * math/libm-test.inc (check_int): Expect result to be exactly
25005         equal to expected value and do not handle ulps.
25006         (check_long): Likewise.
25007         (check_longlong): Likewise.
25008
25009         * math/libm-test.inc (ceil_test_data): Test for "inexact"
25010         exceptions.
25011         (cimag_test_data): Likewise.
25012         (conj_test_data): Likewise.
25013         (copysign_test_data): Likewise.
25014         (cproj_test_data): Likewise.
25015         (creal_test_data): Likewise.
25016         (fabs_test_data): Likewise.
25017         (fdim_test_data): Likewise.
25018         (finite_test_data): Likewise.
25019         (floor_test_data): Likewise.
25020         (fmax_test_data): Likewise.
25021         (fmin_test_data): Likewise.
25022         (fmod_test_data): Likewise.
25023         (fpclassify_test_data): Likewise.
25024         (frexp_test_data): Likewise.
25025         (ilogb_test_data): Likewise.
25026         (isfinite_test_data): Likewise.
25027         (isgreater_test_data): Likewise.
25028         (isgreaterequal_test_data): Likewise.
25029         (isinf_test_data): Likewise.
25030         (isless_test_data): Likewise.
25031         (islessequal_test_data): Likewise.
25032         (islessgreater_test_data): Likewise.
25033         (isnan_test_data): Likewise.
25034         (isnormal_test_data): Likewise.
25035         (issignaling_test_data): Likewise.
25036         (isunordered_test_data): Likewise.
25037         (ldexp_test_data): Likewise.
25038         (lrint_test_data): Likewise.
25039         (lrint_test_data) [TEST_FLOAT]: Disable one test.
25040         (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
25041         (lrint_tonearest_test_data): Test for "inexact" exceptions.
25042         (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
25043         (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
25044         (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
25045         test input.
25046         (lrint_towardzero_test_data): Test for "inexact" exceptions.
25047         (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
25048         (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
25049         (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
25050         that test input.
25051         (lrint_downward_test_data): Test for "inexact" exceptions.
25052         (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
25053         (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
25054         (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
25055         test input.
25056         (lrint_upward_test_data): Test for "inexact" exceptions.
25057         (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
25058         test input.
25059         (llrint_test_data): Test for "inexact" exceptions.
25060         (llrint_test_data) [TEST_FLOAT]: Disable one test.
25061         (llrint_tonearest_test_data): Test for "inexact" exceptions.
25062         (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
25063         (llrint_towardzero_test_data): Test for "inexact" exceptions.
25064         (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
25065         (llrint_downward_test_data): Test for "inexact" exceptions.
25066         (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
25067         (llrint_upward_test_data): Test for "inexact" exceptions.
25068         (logb_test_data): Likewise.
25069         (logb_downward_test_data): Likewise.
25070         (nextafter_test_data): Likewise.
25071         (nexttoward_test_data): Likewise.
25072         (remainder_test_data): Likewise.
25073         (remquo_test_data): Likewise.
25074         (scalbn_test_data): Likewise.
25075         (scalbln_test_data): Likewise.
25076         (signbit_test_data): Likewise.
25077         (sqrt_test_data): Likewise.
25078         (significand_test_data): Likewise.
25079
25080 2013-05-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
25081
25082         [BZ #15424]
25083         * benchtests/bench-modf.c (struct args): Mark arg0 as
25084         volatile.
25085         * scripts/bench.pl: Mark members of struct args as volatile.
25086
25087 2013-05-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25088
25089         [BZ # 15497]
25090         * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
25091         negative infinity on POWER6 or lower.
25092         * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
25093
25094 2013-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
25095
25096         [BZ #15442]
25097         * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
25098         (_FP_FRAC_SNANP_SEMIRAW): Likewise.
25099         (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
25100         (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
25101         (_FP_SETQNAN): New macro.
25102         (_FP_SETQNAN_SEMIRAW): Likewise.
25103         (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
25104         (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
25105         (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
25106         (FP_EXTEND): Use _FP_FRAC_SNANP.
25107         (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
25108         * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
25109         into account.
25110         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
25111         New macro.
25112         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
25113         Likewise.
25114
25115 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25116
25117         * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
25118         with DIVIDE_BY_ZERO_EXCEPTION.
25119         (gamma_test_data): Likewise.
25120         (lgamma_test_data): Likewise.
25121         (log_test_data): Likewise.
25122         (log10_test_data): Likewise.
25123         (log2_test_data): Likewise.
25124         (tgamma_test_data): Likewise.
25125
25126         * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
25127         (acos_test_tonearest): Likewise.
25128         (acos_test_towardzero): Likewise.
25129         (acos_test_downward): Likewise.
25130         (acos_test_upward): Likewise.
25131         (acosh_test): Likewise.
25132         (asin_test): Likewise.
25133         (asin_test_tonearest): Likewise.
25134         (asin_test_towardzero): Likewise.
25135         (asin_test_downward): Likewise.
25136         (asin_test_upward): Likewise.
25137         (asinh_test): Likewise.
25138         (atan_test): Likewise.
25139         (atanh_test): Likewise.
25140         (atan2_test): Likewise.
25141         (cabs_test): Likewise.
25142         (cacos_test): Likewise.
25143         (cacosh_test): Likewise.
25144         (casin_test): Likewise.
25145         (casinh_test): Likewise.
25146         (catan_test): Likewise.
25147         (catanh_test): Likewise.
25148         (cbrt_test): Likewise.
25149         (ccos_test): Likewise.
25150         (ccosh_test): Likewise.
25151         (cexp_test): Likewise.
25152         (clog_test): Likewise.
25153         (clog10_test): Likewise.
25154         (cos_test): Likewise.
25155         (cos_test_tonearest): Likewise.
25156         (cos_test_towardzero): Likewise.
25157         (cos_test_downward): Likewise.
25158         (cos_test_upward): Likewise.
25159         (cosh_test): Likewise.
25160         (cosh_test_tonearest): Likewise.
25161         (cosh_test_towardzero): Likewise.
25162         (cosh_test_downward): Likewise.
25163         (cosh_test_upward): Likewise.
25164         (cpow_test): Likewise.
25165         (csin_test): Likewise.
25166         (csinh_test): Likewise.
25167         (csqrt_test): Likewise.
25168         (ctan_test): Likewise.
25169         (ctan_test_tonearest): Likewise.
25170         (ctan_test_towardzero): Likewise.
25171         (ctan_test_downward): Likewise.
25172         (ctan_test_upward): Likewise.
25173         (ctanh_test): Likewise.
25174         (ctanh_test_tonearest): Likewise.
25175         (ctanh_test_towardzero): Likewise.
25176         (ctanh_test_downward): Likewise.
25177         (ctanh_test_upward): Likewise.
25178         (erf_test): Likewise.
25179         (erfc_test): Likewise.
25180         (exp_test): Likewise.
25181         (exp_test_tonearest): Likewise.
25182         (exp_test_towardzero): Likewise.
25183         (exp_test_downward): Likewise.
25184         (exp_test_upward): Likewise.
25185         (exp10_test): Likewise.
25186         (exp2_test): Likewise.
25187         (expm1_test): Likewise.
25188         (fmod_test): Likewise.
25189         (gamma_test): Likewise.
25190         (hypot_test): Likewise.
25191         (j0_test): Likewise.
25192         (j1_test): Likewise.
25193         (jn_test): Likewise.
25194         (lgamma_test): Likewise.
25195         (log_test): Likewise.
25196         (log10_test): Likewise.
25197         (log1p_test): Likewise.
25198         (log2_test): Likewise.
25199         (logb_test_downward): Likewise.
25200         (pow_test): Likewise.
25201         (pow_test_tonearest): Likewise.
25202         (pow_test_towardzero): Likewise.
25203         (pow_test_downward): Likewise.
25204         (pow_test_upward): Likewise.
25205         (remainder_test): Likewise.
25206         (remquo_test): Likewise.
25207         (sin_test): Likewise.
25208         (sin_test_tonearest): Likewise.
25209         (sin_test_towardzero): Likewise.
25210         (sin_test_downward): Likewise.
25211         (sin_test_upward): Likewise.
25212         (sincos_test): Likewise.
25213         (sinh_test): Likewise.
25214         (sinh_test_tonearest): Likewise.
25215         (sinh_test_towardzero): Likewise.
25216         (sinh_test_downward): Likewise.
25217         (sinh_test_upward): Likewise.
25218         (sqrt_test): Likewise.
25219         (tan_test): Likewise.
25220         (tan_test_tonearest): Likewise.
25221         (tan_test_towardzero): Likewise.
25222         (tan_test_downward): Likewise.
25223         (tan_test_upward): Likewise.
25224         (tanh_test): Likewise.
25225         (tgamma_test): Likewise.
25226         (y0_test): Likewise.
25227         (y1_test): Likewise.
25228         (yn_test): Likewise.
25229
25230         * math/gen-libm-test.pl (adjust_arg): Remove function.
25231         (special_function): Remove argument $in_func.  Only handle
25232         generating output for tables of tests, not inside functions.
25233         (parse_args): Likewise.
25234         (generate_testfile): Remove variable $in_func.  Update call to
25235         parse_args.
25236         * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
25237         (MINUS_ZERO_INIT): Rename macro to minus_zero.
25238         (PLUS_INFTY_INIT): Rename macro to plus_infty.
25239         (MINUS_INFTY_INIT): Rename macro to minus_infty.
25240         (QNAN_VALUE_INIT): Rename macro to qnan_value.
25241         (MAX_VALUE_INIT): Rename macro to max_value.
25242         (MIN_VALUE_INIT): Rename macro to min_value.
25243         (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
25244         (plus_zero): Remove variable.
25245         (minus_zero): Likewise.
25246         (plus_infty): Likewise.
25247         (minus_infty): Likewise.
25248         (qnan_value): Likewise.
25249         (max_value): Likewise.
25250         (min_value): Likewise.
25251         (min_subnorm_value): Likewise.
25252
25253 2013-05-16  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
25254
25255         * crypt/sha512-block.c: Add missing #include <stdint.h> due to
25256         uint64_t or uint32_t usage.
25257         * crypt/sha256-block.c: Likewise.
25258         * crypt/sha256-crypt.c: Likewise.
25259         * crypt/sha256.c: Likewise.
25260         * crypt/sha512-block.c: Likewise.
25261         * crypt/sha512-crypt.c: Likewise.
25262         * crypt/sha512.c: Likewise.
25263         * debug/backtrace-tst.c: Likewise.
25264         * debug/pcprofiledump.c: Likewise.
25265         * elf/cache.c: Likewise.
25266         * elf/dl-cache.c: Likewise.
25267         * elf/dl-misc.c: Likewise.
25268         * elf/dl-profile.c: Likewise.
25269         * elf/dl-support.c: Likewise.
25270         * elf/ldconfig.c: Likewise.
25271         * elf/sprof.c: Likewise.
25272         * iconv/dummy-repertoire.c: Likewise.
25273         * iconv/iconv_charmap.c: Likewise.
25274         * iconv/skeleton.c: Likewise.
25275         * iconvdata/8bit-generic.c: Likewise.
25276         * iconvdata/cp737.h: Likewise.
25277         * iconvdata/cp775.h: Likewise.
25278         * iconvdata/ibm1008.h: Likewise.
25279         * iconvdata/ibm1025.h: Likewise.
25280         * iconvdata/ibm1046.h: Likewise.
25281         * iconvdata/ibm1097.h: Likewise.
25282         * iconvdata/ibm1112.h: Likewise.
25283         * iconvdata/ibm1122.h: Likewise.
25284         * iconvdata/ibm1123.h: Likewise.
25285         * iconvdata/ibm1124.h: Likewise.
25286         * iconvdata/ibm1129.h: Likewise.
25287         * iconvdata/ibm1130.h: Likewise.
25288         * iconvdata/ibm1132.h: Likewise.
25289         * iconvdata/ibm1133.h: Likewise.
25290         * iconvdata/ibm1137.h: Likewise.
25291         * iconvdata/ibm1140.h: Likewise.
25292         * iconvdata/ibm1141.h: Likewise.
25293         * iconvdata/ibm1142.h: Likewise.
25294         * iconvdata/ibm1143.h: Likewise.
25295         * iconvdata/ibm1144.h: Likewise.
25296         * iconvdata/ibm1145.h: Likewise.
25297         * iconvdata/ibm1146.h: Likewise.
25298         * iconvdata/ibm1147.h: Likewise.
25299         * iconvdata/ibm1148.h: Likewise.
25300         * iconvdata/ibm1149.h: Likewise.
25301         * iconvdata/ibm1153.h: Likewise.
25302         * iconvdata/ibm1154.h: Likewise.
25303         * iconvdata/ibm1155.h: Likewise.
25304         * iconvdata/ibm1156.h: Likewise.
25305         * iconvdata/ibm1157.h: Likewise.
25306         * iconvdata/ibm1158.h: Likewise.
25307         * iconvdata/ibm1160.h: Likewise.
25308         * iconvdata/ibm1161.h: Likewise.
25309         * iconvdata/ibm1162.h: Likewise.
25310         * iconvdata/ibm1163.h: Likewise.
25311         * iconvdata/ibm1164.h: Likewise.
25312         * iconvdata/ibm1166.h: Likewise.
25313         * iconvdata/ibm1167.h: Likewise.
25314         * iconvdata/ibm12712.h: Likewise.
25315         * iconvdata/ibm1390.h: Likewise.
25316         * iconvdata/ibm1399.h: Likewise.
25317         * iconvdata/ibm16804.h: Likewise.
25318         * iconvdata/ibm4517.h: Likewise.
25319         * iconvdata/ibm4899.h: Likewise.
25320         * iconvdata/ibm4909.h: Likewise.
25321         * iconvdata/ibm4971.h: Likewise.
25322         * iconvdata/ibm5347.h: Likewise.
25323         * iconvdata/ibm803.h: Likewise.
25324         * iconvdata/ibm856.h: Likewise.
25325         * iconvdata/ibm901.h: Likewise.
25326         * iconvdata/ibm902.h: Likewise.
25327         * iconvdata/ibm9030.h: Likewise.
25328         * iconvdata/ibm9066.h: Likewise.
25329         * iconvdata/ibm921.h: Likewise.
25330         * iconvdata/ibm922.h: Likewise.
25331         * iconvdata/ibm9448.h: Likewise.
25332         * iconvdata/isiri-3342.h: Likewise.
25333         * iconvdata/jis0201.h: Likewise.
25334         * include/link.h: Likewise.
25335         * include/netdb.h: Likewise.
25336         * inet/check_native.c: Likewise.
25337         * inet/check_pf.c: Likewise.
25338         * inet/getipv4sourcefilter.c: Likewise.
25339         * inet/getnameinfo.c: Likewise.
25340         * inet/getsourcefilter.c: Likewise.
25341         * inet/htonl.c: Likewise.
25342         * inet/setipv4sourcefilter.c: Likewise.
25343         * inet/setsourcefilter.c: Likewise.
25344         * inet/test-inet6_opt.c: Likewise.
25345         * inet/tst-network.c: Likewise.
25346         * locale/C-collate.c: Likewise.
25347         * locale/C-ctype.c: Likewise.
25348         * locale/C-time.c: Likewise.
25349         * locale/C-translit.h: Likewise.
25350         * locale/loadarchive.c: Likewise.
25351         * locale/programs/3level.h: Likewise.
25352         * locale/programs/charmap.c: Likewise.
25353         * locale/programs/charmap.h: Likewise.
25354         * locale/programs/ld-address.c: Likewise.
25355         * locale/programs/ld-collate.c: Likewise.
25356         * locale/programs/ld-ctype.c: Likewise.
25357         * locale/programs/ld-identification.c: Likewise.
25358         * locale/programs/ld-measurement.c: Likewise.
25359         * locale/programs/ld-messages.c: Likewise.
25360         * locale/programs/ld-monetary.c: Likewise.
25361         * locale/programs/ld-name.c: Likewise.
25362         * locale/programs/ld-numeric.c: Likewise.
25363         * locale/programs/ld-paper.c: Likewise.
25364         * locale/programs/ld-telephone.c: Likewise.
25365         * locale/programs/ld-time.c: Likewise.
25366         * locale/programs/linereader.c: Likewise.
25367         * locale/programs/locale.c: Likewise.
25368         * locale/programs/locarchive.c: Likewise.
25369         * locale/programs/locfile.h: Likewise.
25370         * locale/programs/repertoire.c: Likewise.
25371         * locale/programs/simple-hash.c: Likewise.
25372         * locale/programs/simple-hash.h: Likewise.
25373         * malloc/memusage.c: Likewise.
25374         * malloc/memusagestat.c: Likewise.
25375         * nis/nis_defaults.c: Likewise.
25376         * nis/nis_hash.c: Likewise.
25377         * nis/nis_print.c: Likewise.
25378         * nis/nis_xdr.c: Likewise.
25379         * nscd/connections.c: Likewise.
25380         * nscd/hstcache.c: Likewise.
25381         * nscd/nscd_gethst_r.c: Likewise.
25382         * nscd/nscd_getserv_r.c: Likewise.
25383         * nscd/nscd_helper.c: Likewise.
25384         * nscd/servicescache.c: Likewise.
25385         * nss/makedb.c: Likewise.
25386         * nss/nss_db/db-XXX.c: Likewise.
25387         * nss/nss_db/db-initgroups.c: Likewise.
25388         * nss/nss_db/db-netgrp.c: Likewise.
25389         * nss/nss_files/files-network.c: Likewise.
25390         * nss/nss_files/files-parse.c: Likewise.
25391         * posix/bug-regex5.c: Likewise.
25392         * posix/fnmatch_loop.c: Likewise.
25393         * posix/regcomp.c: Likewise.
25394         * posix/regexec.c: Likewise.
25395         * posix/tst-rfc3484-2.c: Likewise.
25396         * posix/tst-rfc3484-3.c: Likewise.
25397         * posix/tst-rfc3484.c: Likewise.
25398         * resolv/nss_dns/dns-canon.c: Likewise.
25399         * resolv/nss_dns/dns-network.c: Likewise.
25400         * resolv/res_init.c: Likewise.
25401         * resolv/res_mkquery.c: Likewise.
25402         * resolv/tst-aton.c: Likewise.
25403         * stdlib/cxa_atexit.c: Likewise.
25404         * stdlib/cxa_finalize.c: Likewise.
25405         * stdlib/gen-fpioconst.c: Likewise.
25406         * stdlib/strtol_l.c: Likewise.
25407         * string/tst-endian.c: Likewise.
25408         * sunrpc/auth_des.c: Likewise.
25409         * sunrpc/clnt_udp.c: Likewise.
25410         * sunrpc/rtime.c: Likewise.
25411         * sunrpc/svcauth_des.c: Likewise.
25412         * sunrpc/xdr.c: Likewise.
25413         * sunrpc/xdr_intXX_t.c: Likewise.
25414         * sunrpc/xdr_rec.c: Likewise.
25415         * sysdeps/generic/ldconfig.h: Likewise.
25416         * sysdeps/generic/ldsodefs.h: Likewise.
25417         * sysdeps/generic/memusage.h: Likewise.
25418         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
25419         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
25420         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
25421         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
25422         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
25423         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
25424         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
25425         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
25426         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
25427         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
25428         * sysdeps/posix/getaddrinfo.c: Likewise.
25429         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
25430         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
25431         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
25432         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
25433         * sysdeps/powerpc/test-gettimebase.c: Likewise.
25434         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
25435         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
25436         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
25437         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
25438         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
25439         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
25440         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
25441         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
25442         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
25443         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
25444         * sysdeps/x86_64/dl-tls.h: Likewise.
25445         * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
25446         * time/alt_digit.c: Likewise.
25447         * time/era.c: Likewise.
25448         * wcsmbs/tst-c16c32-1.c: Likewise.
25449
25450 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25451
25452         * math/libm-test.inc (struct test_sincos_data): New type.
25453         (RUN_TEST_LOOP_sincos): New macro.
25454         (sincos_test_data): New variable.
25455         (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
25456
25457 2013-05-16  Richard Henderson  <rth@redhat.com>
25458
25459         * math/atest-exp2.c (LIMB64): New macro.
25460         (CONSTSZ): New macro.
25461         (mp_exp1, mp_exp_m1, mp_log2): New variables.
25462         (hexdig): Move ...
25463         (print_mpn_fp): ... to function scope.
25464         (read_mpn_hex): Remove.
25465         (get_log2): Remove.
25466         (exp2_mpn): Use mp_log2.
25467         (main): Use mp_exp1.
25468
25469 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25470
25471         * math/libm-test.inc: Remove comment about not testing "inexact"
25472         exceptions.
25473         (INEXACT_EXCEPTION): New macro.
25474         (NO_INEXACT_EXCEPTION): Likewise.
25475         (INVALID_EXCEPTION_OK): Update value.
25476         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
25477         (OVERFLOW_EXCEPTION_OK): Likewise.
25478         (UNDERFLOW_EXCEPTION_OK): Likewise.
25479         (IGNORE_ZERO_INF_SIGN): Likewise.
25480         (ERRNO_UNCHANGED): Likewise.
25481         (ERRNO_EDOM): Likewise.
25482         (ERRNO_ERANGE): Likewise.
25483         (test_exceptions): Handle testing "inexact" exceptions.
25484         (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
25485         (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
25486         (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
25487         (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
25488         INEXACT_EXCEPTION.
25489         (rint_towardzero_test_data): Likewise.
25490         (rint_downward_test_data): Likewise.
25491         (rint_upward_test_data): Likewise.
25492
25493         * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
25494         with OVERFLOW_EXCEPTION.
25495         (exp10_test_data): Likewise.
25496         (exp2_test_data): Likewise.
25497         (expm1_test_data): Likewise.
25498         (lgamma_test_data): Likewise.
25499         (pow_test_data): Likewise.
25500         (tgamma_test_data): Likewise.
25501         (yn_test_data): Remove duplicate test of overflow.
25502
25503         * math/libm-test.inc (struct test_cc_c_data): New type.
25504         (RUN_TEST_LOOP_cc_c): New macro.
25505         (cpow_test_data): New variable.
25506         (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
25507
25508         * math/libm-test.inc (struct test_f_L_data): New type.
25509         (RUN_TEST_LOOP_f_L): New macro.
25510         (llrint_test_data): New variable.
25511         (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
25512         (llrint_tonearest_test_data): New variable.
25513         (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
25514         (llrint_towardzero_test_data): New variable.
25515         (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
25516         (llrint_downward_test_data): New variable.
25517         (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
25518         (llrint_upward_test_data): New variable.
25519         (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
25520         (llround_test_data): New variable.
25521         (llround_test): Run tests with RUN_TEST_LOOP_f_L.
25522
25523 2013-05-13  Peter Collingbourne  <pcc@google.com>
25524
25525         * math/atest-exp2.c (get_log2): Remove const attribute.
25526
25527 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
25528
25529         * math/libm-test.inc (struct test_f_l_data): New type.
25530         (RUN_TEST_LOOP_f_l): New macro.
25531         (lrint_test_data): New variable.
25532         (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
25533         (lrint_tonearest_test_data): New variable.
25534         (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
25535         (lrint_towardzero_test_data): New variable.
25536         (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
25537         (lrint_downward_test_data): New variable.
25538         (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
25539         (lrint_upward_test_data): New variable.
25540         (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
25541         (lround_test_data): New variable.
25542         (lround_test): Run tests with RUN_TEST_LOOP_f_l.
25543
25544 2013-05-15  Peter Collingbourne  <pcc@google.com>
25545
25546         * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
25547         (EXTRACT_WORDS64) Use where appropriate.
25548         (INSERT_WORDS64) Likewise.
25549
25550         * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
25551         constraints with x constraints.
25552         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
25553
25554         * malloc/obstack.c (_obstack_compat): Add initializer.
25555
25556 2013-05-15  Edjunior Machado  <emachado@linux.vnet.ibm.com>
25557
25558         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
25559         si_trapno and add si_addr_lsb to _sifields.sigfault.
25560         (si_trapno): Remove macro.
25561         (si_addr_lsb): Define new macro.
25562         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
25563
25564 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
25565
25566         * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
25567         instead of TEST_f_l.
25568         (llrint_test_tonearest): Likewise.
25569         (llrint_test_towardzero): Likewise.
25570         (llrint_test_downward): Likewise.
25571         (llrint_test_upward): Likewise.
25572         (llround_test): Likewise.
25573
25574         * math/libm-test.inc (struct test_f_i_data): Add comment.
25575         (RUN_TEST_LOOP_f_b): New macro.
25576         (RUN_TEST_LOOP_f_b_tg): Likewise.
25577         (finite_test_data): New variable.
25578         (finite_test): Run tests with RUN_TEST_LOOP_f_b.
25579         (isfinite_test_data): New variable.
25580         (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25581         (isinf_test_data): New variable.
25582         (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25583         (isnan_test_data): New variable.
25584         (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25585         (isnormal_test_data): New variable.
25586         (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25587         (issignaling_test_data): New variable.
25588         (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25589         (signbit_test_data): New variable.
25590         (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25591
25592         * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
25593         with INVALID_EXCEPTION.
25594         (acosh_test_data): Likewise.
25595         (asin_test_data): Likewise.
25596         (atanh_test_data): Likewise.
25597         (fmod_test_data): Likewise.
25598         (log_test_data): Likewise.
25599         (log10_test_data): Likewise.
25600         (log2_test_data): Likewise.
25601         (pow_test_data): Likewise.
25602         (sqrt_test_data): Likewise.
25603         (y0_test_data): Likewise.
25604         (y1_test_data): Likewise.
25605         (yn_test_data): Likewise.
25606
25607         * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
25608         function contents.
25609
25610         * math/libm-test.inc (struct test_ff_i_data): New type.
25611         (RUN_TEST_LOOP_ff_i_tg): New macro.
25612         (isgreater_test_data): New variable.
25613         (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25614         (isgreaterequal_test_data): New variable.
25615         (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25616         (isless_test_data): New variable.
25617         (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25618         (islessequal_test_data): New variable.
25619         (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25620         (islessgreater_test_data): New variable.
25621         (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25622         (isunordered_test_data): New variable.
25623         (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25624
25625 2013-05-14  David S. Miller  <davem@davemloft.net>
25626
25627         * sysdeps/sparc/fpu/libm-test-ulps: Update.
25628
25629 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
25630
25631         * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
25632
25633         * math/libm-test.inc (struct test_fF_f1_data): Change type of
25634         extra_test to int.
25635         (struct test_f_i_data): Change type of max_ulp to int.
25636
25637         * math/libm-test.inc (test_ffI_f1_data): New type.
25638         (RUN_TEST_LOOP_ffI_f1): New macro.
25639         (remquo_test_data): New variable.
25640         (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
25641
25642         * setjmp/tst-setjmp-fp.c: New file.
25643         * setjmp/Makefile (tests): Add tst-setjmp-fp.
25644         (link-libm): New variable.
25645         ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
25646
25647         * math/libm-test.inc (struct test_f_i_data): New type.
25648         (RUN_TEST_LOOP_f_i): New macro.
25649         (RUN_TEST_LOOP_f_i_tg): Likewise.
25650         (fpclassify_test_data): New variable.
25651         (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
25652         (ilogb_test_data): New variable.
25653         (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
25654
25655         * math/libm-test.inc (scalbln_test): Correct function name in END
25656         call.
25657
25658         * math/libm-test.inc (struct test_f_f1_data): Add comment.
25659         (RUN_TEST_LOOP_fI_f1): New macro.
25660         (frexp_test_data): New variable.
25661         (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
25662
25663         * math/libm-test.inc (struct test_fF_f1_data): New type.
25664         (RUN_TEST_LOOP_fF_f1): New macro.
25665         (modf_test_data): New variable.
25666         (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
25667
25668         * math/libm-test.inc (struct test_f_f1_data): New type.
25669         (RUN_TEST_LOOP_f_f1): New macro.
25670         (gamma_test_data): New variable.
25671         (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
25672         (lgamma_test_data): New variable.
25673         (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
25674
25675 2013-05-13  Carlos O'Donell  <carlos@redhat.com>
25676
25677         * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
25678         * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
25679         (main): Comment "tls" pseudo-hwcap.
25680
25681 2013-05-13  Joseph Myers  <joseph@codesourcery.com>
25682
25683         * math/libm-test.inc (struct test_fl_f_data): New type.
25684         (RUN_TEST_LOOP_fl_f): New variable.
25685         (scalbln_test_data): New variable.
25686         (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
25687
25688         * math/libm-test.inc (struct test_fi_f_data): New type.
25689         (RUN_TEST_LOOP_fi_f): New macro.
25690         (ldexp_test_data): New variable.
25691         (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
25692         (scalbn_test_data): New variable.
25693         (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
25694
25695         * math/libm-test.inc (struct test_c_f_data): New type.
25696         (RUN_TEST_LOOP_c_f): New macro.
25697         (cabs_test_data): New variable.
25698         (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
25699         (carg_test_data): New variable.
25700         (carg_test): Run tests with RUN_TEST_LOOP_c_f.
25701         (cimag_test_data): New variable.
25702         (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
25703         (creal_test_data): New variable.
25704         (creal_test): Run tests with RUN_TEST_LOOP_c_f.
25705
25706         * math/libm-test.inc (struct test_if_f_data): New type.
25707         (RUN_TEST_LOOP_if_f): New macro.
25708         (jn_test_data): New variable.
25709         (jn_test): Run tests with RUN_TEST_LOOP_if_f.
25710         (yn_test_data): New variable.
25711         (yn_test): Run tests with RUN_TEST_LOOP_if_f.
25712
25713         * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
25714
25715 2013-05-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25716
25717         * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
25718         (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
25719
25720 2013-05-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
25721
25722         * benchtests/Makefile (CPPFLAGS-nonlib): Add
25723         -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
25724         (bench-deps): Add bench-timing.h.
25725         * benchtests-bench-skeleton.c: Include bench-timing.h.
25726         (main): Use TIMING_* macros instead of clock_gettime.
25727         * benchtests/bench-timing.h: New file.
25728
25729         [BZ #14582]
25730         * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
25731         Renamed from _LIB_VERSION.
25732         (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
25733
25734 2013-05-12  Joseph Myers  <joseph@codesourcery.com>
25735
25736         * math/libm-test.inc (struct test_fff_f_data): New type.
25737         (RUN_TEST_LOOP_fff_f): New macro.
25738         (fma_test_data): New variable.
25739         (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
25740         (fma_towardzero_test_data): New variable.
25741         (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
25742         (fma_downward_test_data): New variable.
25743         (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
25744         (fma_upward_test_data): New variable.
25745         (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
25746
25747         * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
25748         (struct test_c_c_data): New type.
25749         (RUN_TEST_LOOP_c_c): New macro.
25750         (cacos_test_data): New variable.
25751         (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
25752         (cacosh_test_data): New variable.
25753         (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
25754         (casin_test_data): New variable.
25755         (casin_test): Run tests with RUN_TEST_LOOP_c_c.
25756         (casinh_test_data): New variable.
25757         (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
25758         (catan_test_data): New variable.
25759         (catan_test): Run tests with RUN_TEST_LOOP_c_c.
25760         (catanh_test_data): New variable.
25761         (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
25762         (ccos_test_data): New variable.
25763         (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
25764         (ccosh_test_data): New variable.
25765         (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
25766         (cexp_test_data): New variable.
25767         (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
25768         (clog_test_data): New variable.
25769         (clog_test): Run tests with RUN_TEST_LOOP_c_c.
25770         (clog10_test_data): New variable.
25771         (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
25772         (conj_test_data): New variable.
25773         (conj_test): Run tests with RUN_TEST_LOOP_c_c.
25774         (cproj_test_data): New variable.
25775         (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
25776         (csin_test_data): New variable.
25777         (csin_test): Run tests with RUN_TEST_LOOP_c_c.
25778         (csinh_test_data): New variable.
25779         (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
25780         (csqrt_test_data): New variable.
25781         (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
25782         (ctan_test_data): New variable.
25783         (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
25784         (ctan_tonearest_test_data): New variable.
25785         (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
25786         (ctan_towardzero_test_data): New variable.
25787         (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
25788         (ctan_downward_test_data): New variable.
25789         (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
25790         (ctan_upward_test_data): New variable.
25791         (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
25792         (ctanh_test_data): New variable.
25793         (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
25794         (ctanh_tonearest_test_data): New variable.
25795         (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
25796         (ctanh_towardzero_test_data): New variable.
25797         (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
25798         (ctanh_downward_test_data): New variable.
25799         (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
25800         (ctanh_upward_test_data): New variable.
25801         (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
25802         * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
25803         of BUILD_COMPLEX.
25804
25805         * math/libm-test.inc (struct test_ff_f_data): New type.
25806         (struct test_ff_f_data_nexttoward): Likewise.
25807         (RUN_TEST_LOOP_2_f): New macro.
25808         (RUN_TEST_LOOP_ff_f): Likewise.
25809         (atan2_test_data): New variable.
25810         (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
25811         (copysign_test_data): New variable.
25812         (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
25813         (fdim_test_data): New variable.
25814         (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
25815         (fmax_test_data): New variable.
25816         (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
25817         (fmin_test_data): New variable.
25818         (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
25819         (fmod_test_data): New variable.
25820         (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
25821         (hypot_test_data): New variable.
25822         (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
25823         (nextafter_test_data): New variable.
25824         (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
25825         (nexttoward_test_data): New variable.
25826         (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
25827         (pow_test_data): New variable.
25828         (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
25829         (pow_tonearest_test_data): New variable.
25830         (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
25831         (pow_towardzero_test_data): New variable.
25832         (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
25833         (pow_downward_test_data): New variable.
25834         (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
25835         (pow_upward_test_data): New variable.
25836         (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
25837         (remainder_test_data): New variable.
25838         (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
25839         (scalb_test_data): New variable.
25840         (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
25841         * sysdeps/i386/fpu/libm-test-ulps: Update.
25842
25843 2013-05-11  Joseph Myers  <joseph@codesourcery.com>
25844
25845         * math/libm-test.inc (fma_test): Use max_value instead of local
25846         variable fltmax.
25847         (nextafter_test): Likewise.
25848
25849         * math/libm-test.inc (acos_towardzero_test_data): New variable.
25850         (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25851         (acos_downward_test_data): New variable.
25852         (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25853         (acos_upward_test_data): New variable.
25854         (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25855         (acosh_test_data): New variable.
25856         (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
25857         (asin_test_data): New variable.
25858         (asin_test): Run tests with RUN_TEST_LOOP_f_f.
25859         (asin_tonearest_test_data): New variable.
25860         (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25861         (asin_towardzero_test_data): New variable.
25862         (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25863         (asin_downward_test_data): New variable.
25864         (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25865         (asin_upward_test_data): New variable.
25866         (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25867         (asinh_test_data): New variable.
25868         (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
25869         (atan_test_data): New variable.
25870         (atan_test): Run tests with RUN_TEST_LOOP_f_f.
25871         (atanh_test_data): New variable.
25872         (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
25873         (cbrt_test_data): New variable.
25874         (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
25875         (ceil_test_data): New variable.
25876         (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
25877         (cos_test_data): New variable.
25878         (cos_test): Run tests with RUN_TEST_LOOP_f_f.
25879         (cos_tonearest_test_data): New variable.
25880         (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25881         (cos_towardzero_test_data): New variable.
25882         (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25883         (cos_downward_test_data): New variable.
25884         (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25885         (cos_upward_test_data): New variable.
25886         (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25887         (cosh_test_data): New variable.
25888         (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
25889         (cosh_tonearest_test_data): New variable.
25890         (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25891         (cosh_towardzero_test_data): New variable.
25892         (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25893         (cosh_downward_test_data): New variable.
25894         (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25895         (cosh_upward_test_data): New variable.
25896         (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25897         (erf_test_data): New variable.
25898         (erf_test): Run tests with RUN_TEST_LOOP_f_f.
25899         (erfc_test_data): New variable.
25900         (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
25901         (exp_test_data): New variable.
25902         (exp_test): Run tests with RUN_TEST_LOOP_f_f.
25903         (exp_tonearest_test_data): New variable.
25904         (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25905         (exp_towardzero_test_data): New variable.
25906         (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25907         (exp_downward_test_data): New variable.
25908         (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25909         (exp_upward_test_data): New variable.
25910         (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25911         (exp10_test_data): New variable.
25912         (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
25913         (exp2_test_data): New variable.
25914         (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
25915         (expm1_test_data): New variable.
25916         (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
25917         (fabs_test_data): New variable.
25918         (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
25919         (floor_test_data): New variable.
25920         (floor_test): Run tests with RUN_TEST_LOOP_f_f.
25921         (j0_test_data): New variable.
25922         (j0_test): Run tests with RUN_TEST_LOOP_f_f.
25923         (j1_test_data): New variable.
25924         (j1_test): Run tests with RUN_TEST_LOOP_f_f.
25925         (log_test_data): New variable.
25926         (log_test): Run tests with RUN_TEST_LOOP_f_f.
25927         (log10_test_data): New variable.
25928         (log10_test): Run tests with RUN_TEST_LOOP_f_f.
25929         (log1p_test_data): New variable.
25930         (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
25931         (log2_test_data): New variable.
25932         (log2_test): Run tests with RUN_TEST_LOOP_f_f.
25933         (logb_test_data): New variable.
25934         (logb_test): Run tests with RUN_TEST_LOOP_f_f.
25935         (logb_downward_test_data): New variable.
25936         (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25937         (nearbyint_test_data): New variable.
25938         (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
25939         (rint_test_data): New variable.
25940         (rint_test): Run tests with RUN_TEST_LOOP_f_f.
25941         (rint_tonearest_test_data): New variable.
25942         (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25943         (rint_towardzero_test_data): New variable.
25944         (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25945         (rint_downward_test_data): New variable.
25946         (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25947         (rint_upward_test_data): New variable.
25948         (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25949         (round_test_data): New variable.
25950         (round_test): Run tests with RUN_TEST_LOOP_f_f.
25951         (sin_test_data): New variable.
25952         (sin_test): Run tests with RUN_TEST_LOOP_f_f.
25953         (sin_tonearest_test_data): New variable.
25954         (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25955         (sin_towardzero_test_data): New variable.
25956         (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25957         (sin_downward_test_data): New variable.
25958         (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25959         (sin_upward_test_data): New variable.
25960         (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25961         (sinh_test_data): New variable.
25962         (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
25963         (sinh_tonearest_test_data): New variable.
25964         (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25965         (sinh_towardzero_test_data): New variable.
25966         (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25967         (sinh_downward_test_data): New variable.
25968         (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25969         (sinh_upward_test_data): New variable.
25970         (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25971         (sqrt_test_data): New variable.
25972         (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
25973         (tan_test_data): New variable.
25974         (tan_test): Run tests with RUN_TEST_LOOP_f_f.
25975         (tan_tonearest_test_data): New variable.
25976         (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25977         (tan_towardzero_test_data): New variable.
25978         (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25979         (tan_downward_test_data): New variable.
25980         (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25981         (tan_upward_test_data): New variable.
25982         (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25983         (tanh_test_data): New variable.
25984         (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
25985         (tgamma_test_data): New variable.
25986         (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
25987         (trunc_test_data): New variable.
25988         (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
25989         (y0_test_data): New variable.
25990         (y0_test): Run tests with RUN_TEST_LOOP_f_f.
25991         (y1_test_data): New variable.
25992         (y1_test): Run tests with RUN_TEST_LOOP_f_f.
25993         (significand_test_data): New variable.
25994         (significand_test): Run tests with RUN_TEST_LOOP_f_f.
25995
25996 2013-05-10  Christian Grönke  <cgr_bugs@sysgo.com>
25997
25998         [BZ #12387]
25999         * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
26000
26001 2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
26002
26003         * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
26004
26005 2013-05-10  Andreas Jaeger  <aj@suse.de>
26006
26007         [BZ #15448]
26008         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
26009         (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
26010
26011 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
26012
26013         * math/gen-libm-test.pl (adjust_arg): New function.
26014         (special_functions): Handle generating output in both functions
26015         and arrays.
26016         (parse_args): Likewise.
26017         (generate_testfile): Handle START_DATA and END_DATA.  Pass extra
26018         $in_func argument to parse_args.
26019         * math/libm-test.inc (struct test_f_f_data): New type.
26020         (IF_ROUND_INIT_): New macro.
26021         (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
26022         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
26023         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
26024         (IF_ROUND_INIT_FE_UPWARD): Likewise.
26025         (ROUND_RESTORE_): Likewise.
26026         (ROUND_RESTORE_FE_DOWNWARD): Likewise.
26027         (ROUND_RESTORE_FE_TONEAREST): Likewise.
26028         (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
26029         (ROUND_RESTORE_FE_UPWARD): Likewise.
26030         (RUN_TEST_LOOP_f_f): New macro.
26031         (acos_test_data): New variable.
26032         (acos_test): Run tests with RUN_TEST_LOOP_f_f.
26033         (acos_tonearest_test_data): New variable.
26034         (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
26035
26036 2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
26037
26038         * benchtests/bench-skeleton.c (startup): Fix coding style.
26039
26040 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
26041
26042         [BZ #6809]
26043         * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
26044         negative infinity argument.
26045         * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
26046         negative infinity argument.
26047         * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
26048         negative infinity argument.
26049         * math/libm-test.inc (tgamma_test): Expect errno to be set for
26050         domain errors.
26051
26052 2013-05-10  Florian Weimer  <fweimer@redhat.com>
26053
26054         * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
26055         * iconv/iconv_charmap.c (charmap_conversion): Likewise.
26056         * iconv/iconv_prog.c (main): Likewise.
26057         * locale/programs/charmap-dir.c (charmap_readdir)
26058         (fopen_uncompressed): Likewise.
26059         * locale/programs/locfile.c (siblings_uncached)
26060         (write_locale_data): Use lstat64 instead of lstat.
26061         * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
26062         stat.
26063
26064 2013-05-10  Andreas Jaeger  <aj@suse.de>
26065
26066         [BZ #15395]
26067         * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
26068         localization.
26069         Include <locale.h>.
26070
26071 2013-05-09  Carlos O'Donell  <carlos@redhat.com>
26072
26073         * elf/dl-close.c (_dl_close_worker): Add comments.
26074
26075 2013-05-09  Joseph Myers  <joseph@codesourcery.com>
26076
26077         [BZ #15359]
26078         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
26079         high part of pi/2.
26080         (__ieee754_rem_pio2l): Update comments.
26081
26082         [BZ #15429]
26083         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
26084         high part of pi/2.
26085         (__ieee754_rem_pio2l): Update comments.
26086
26087         * math/libm-test.inc (M_SQRT_2_2): Remove macro.
26088         (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
26089
26090         * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
26091         M_PI_4l.
26092
26093         * math/libm-test.inc (M_PI_34l): Define using decimal constant.
26094         (M_PI_34_LOG10El): Likewise.
26095         (M_PI2_LOG10El): Likewise.
26096         (M_PI4_LOG10El): Likewise.
26097         (M_PI_LOG10El): Likewise.
26098
26099 2013-05-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26100
26101         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26102
26103 2013-05-08  Joseph Myers  <joseph@codesourcery.com>
26104
26105         * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
26106         (MINUS_ZERO_INIT): Likewise.
26107         (PLUS_INFTY_INIT): Likewise.
26108         (MINUS_INFTY_INIT): Likewise.
26109         (QNAN_VALUE_INIT): Likewise.
26110         (MAX_VALUE_INIT): Likewise.
26111         (MIN_VALUE_INIT): Likewise.
26112         (MIN_SUBNORM_VALUE_INIT): Likewise.
26113         (plus_zero): Initialize with PLUS_ZERO_INIT.
26114         (minus_zero): Initialize with MINUS_ZERO_INIT.
26115         (plus_infty): Initialize with PLUS_INFTY_INIT.
26116         (minus_infty): Initialize with MINUS_INFTY_INIT.
26117         (qnan_value): Initialize with QNAN_VALUE_INIT.
26118         (max_value): Initialize with MAX_VALUE_INIT.
26119         (min_value): Initialize with MIN_VALUE_INIT.
26120         (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
26121
26122         * math/libm-test.inc (RUN_TEST_if_f): New macro.
26123         (jn_test): Use TEST_if_f instead of TEST_ff_f.
26124         (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
26125         (yn_test): Use TEST_if_f instead of TEST_ff_f.
26126
26127         * math/libm-test.inc (RUN_TEST_f_f): New macro.
26128         (RUN_TEST_2_f): Likewise.
26129         (RUN_TEST_ff_f): Likewise.
26130         (RUN_TEST_fi_f): Likewise.
26131         (RUN_TEST_fl_f): Likewise.
26132         (RUN_TEST_fff_f): Likewise.
26133         (RUN_TEST_c_f): Likewise.
26134         (RUN_TEST_f_f1): Likewise.
26135         (RUN_TEST_fF_f1): Likewise.
26136         (RUN_TEST_fI_f1): Likewise.
26137         (RUN_TEST_ffI_f1): Likewise.
26138         (RUN_TEST_c_c): Likewise.
26139         (RUN_TEST_cc_c): Likewise.
26140         (RUN_TEST_f_i): Likewise.
26141         (RUN_TEST_f_i_tg): Likewise.
26142         (RUN_TEST_ff_i_tg): Likewise.
26143         (RUN_TEST_f_b): Likewise.
26144         (RUN_TEST_f_b_tg): Likewise.
26145         (RUN_TEST_f_l): Likewise.
26146         (RUN_TEST_f_L): Likewise.
26147         (RUN_TEST_sincos): Likewise.
26148         * math/gen-libm-test.pl (new_test): Take new argument to indicate
26149         whether to show exceptions.  Do not include ");\n" in return
26150         value.
26151         (special_functions): Output call to RUN_TEST_sincos instead of
26152         check_float calls.  Update calls to new_test.
26153         (parse_args): Output call to single RUN_TEST_* macro instead of
26154         check_* calls and other assignments.  Update calls to new_test.
26155
26156         [BZ #2546]
26157         [BZ #2560]
26158         [BZ #5159]
26159         [BZ #15426]
26160         * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
26161         input to result for tgamma overflow.
26162         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
26163         (gamma_coeff): New variable.
26164         (NCOEFF): New macro.
26165         (gamma_positive): New function.
26166         (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
26167         underflow here.  Use gamma_positive instead of exp (lgamma) for
26168         other arguments.
26169         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
26170         (gamma_coeff): New variable.
26171         (NCOEFF): New macro.
26172         (gammaf_positive): New function.
26173         (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
26174         underflow here.  Use gamma_positive instead of exp (lgamma) for
26175         other arguments.
26176         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
26177         (gamma_coeff): New variable.
26178         (NCOEFF): New macro.
26179         (gammal_positive): New function.
26180         (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
26181         underflow here.  Use gamma_positive instead of exp (lgamma) for
26182         other arguments.
26183         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
26184         (gamma_coeff): New variable.
26185         (NCOEFF): New macro.
26186         (gammal_positive): New function.
26187         (__ieee754_gammal_r): Handle positive infinity, overflow and
26188         underflow here.  Handle NaN the same as positive infinity.  Remove
26189         check x < 0xffffffff for negative integers.  Use gamma_positive
26190         instead of exp (lgamma) for other arguments.
26191         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
26192         (gamma_coeff): New variable.
26193         (NCOEFF): New macro.
26194         (gammal_positive): New function.
26195         * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
26196         * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
26197         * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
26198         * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
26199         * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
26200         * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
26201         * sysdeps/generic/math_private.h (__gamma_productf): New
26202         prototype.
26203         (__gamma_product): Likewise.
26204         (__gamma_productl): Likewise.
26205         * math/Makefile (libm-calls): Add gamma_product.
26206         * math/libm-test.inc (tgamma_test): Add more tests.
26207         * sysdeps/i386/fpu/libm-test-ulps: Update.
26208         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26209
26210 2013-05-08  Ondřej Bílka  <neleai@seznam.cz>
26211
26212         * benchtests/bench-skeleton.c (main): Preheat CPU.
26213
26214 2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
26215
26216         * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
26217
26218 2013-05-07  Roland McGrath  <roland@hack.frob.com>
26219
26220         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
26221         and _dl_skip_args_internal.
26222
26223 2013-05-07  Carlos O'Donell  <carlos@redhat.com>
26224
26225         * manual/message.texi (Message Translation): Talk about users.
26226         Message to key mapping impacts design.
26227
26228 2013-05-06  Roland McGrath  <roland@hack.frob.com>
26229
26230         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
26231
26232         * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
26233
26234         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
26235         * sysdeps/wordsize-64/glob64.c: ... here.
26236
26237         * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
26238         (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
26239         New macros.
26240
26241         * debug/getlogin_r_chk.c: Moved to ...
26242         * login/getlogin_r_chk.c: ... here.
26243         * debug/Makefile (routines): Move getlogin_r_chk to ...
26244         * login/Makefile (routines): ... here.
26245         * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
26246         * login/Versions (libc: GLIBC_2.4): ... here.
26247
26248         * io/poll.c (__poll): Renamed from poll.
26249         Add libc_hidden_def.
26250         (poll): Define as weak alias.
26251
26252         * debug/ptsname_r_chk.c: Moved to ...
26253         * login/ptsname_r_chk.c: ... here.
26254         * debug/Makefile (routines): Move ptsname_r_chk to ...
26255         * login/Makefile (routines): ... here.
26256         * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
26257         * login/Versions (libc: GLIBC_2.4): ... here.
26258
26259         * posix/getlogin.c: Moved to ...
26260         * login/getlogin.c: ... here.
26261         * posix/getlogin_r.c: Moved to ...
26262         * login/getlogin_r.c: ... here.
26263         * posix/getlogin_r.c: Moved to ...
26264         * login/getlogin_r.c: ... here.
26265         * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
26266         * login/Makefile (routines): ... here.
26267         * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
26268         * login/Versions (libc: GLIBC_2.0): ... here.
26269
26270         * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
26271         (setrlimit): Define as weak alias.
26272
26273         * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
26274         Call __ names for open, ftruncate, and close.
26275         For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
26276         (truncate): Define as weak alias.
26277
26278 2013-05-06  Joseph Myers  <joseph@codesourcery.com>
26279
26280         * math/gen-libm-test.pl (parse_args): Initialize x before each
26281         test of frexp, modf and remquo.
26282
26283         * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
26284         test signgam value.
26285
26286 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26287
26288         [BZ #15418]
26289         [BZ #15419]
26290         * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
26291         internal tests.
26292         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
26293
26294 2013-05-06  Roland McGrath  <roland@hack.frob.com>
26295
26296         * elf/dl-writev.h: New file.
26297         * elf/dl-misc.c: Include it.
26298         (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
26299         * sysdeps/unix/sysv/linux/dl-writev.h: New file.
26300
26301 2013-05-04  Joseph Myers  <joseph@codesourcery.com>
26302
26303         * math/libm-test.inc (noXFails): Remove variable.
26304         (noXPasses): Likewise.
26305         (BUILD_COMPLEX_INT): Remove macro.
26306         (print_screen): Remove xfail argument.
26307         (print_screen_max_error): Likewise.
26308         (update_stats): Likewise.
26309         (print_max_error): Likewise.  Update calls to other affected
26310         functions.
26311         (print_complex_max_error): Likewise.
26312         (test_single_exception): Update calls to print_screen.
26313         (test_single_errno): Likewise.
26314         (check_float_internal): Remove xfail argument.  Update calls to
26315         other affected functions.
26316         (check_float): Likewise.
26317         (check_complex): Likewise.
26318         (check_int): Likewise.
26319         (check_long): Likewise.
26320         (check_bool): Likewise.
26321         (check_longlong): Likewise.
26322         (main): Don't print noXFails and noXPasses.
26323         * math/gen-libm-test.pl (top level): Don't mention expected
26324         failure handling in comment.
26325         (new_test): Don't handle expected failures.
26326         (parse_args): Don't mention expected failure handling in comment.
26327         (generate_testfile): Don't handle expected failures.
26328         (parse_ulps): Likewise.
26329         (print_ulps_file): Likewise.
26330         (get_failure): Remove function.
26331         (output_test): Don't handle expected failures.
26332         * make/README.libm-test: Don't mention expected failure handling.
26333
26334         * math/libm-test.inc (plus_zero): Make const.  Add initializer.
26335         (minus_zero): Likewise.
26336         (plus_infty): Likewise.
26337         (minus_infty): Likewise.
26338         (qnan_value): Likewise.
26339         (max_value): Likewise.
26340         (min_value): Likewise.
26341         (min_subnorm_value): Likewise.
26342         (initialize): Do not initialize those variables dynamically.
26343
26344 2013-05-03  Roland McGrath  <roland@hack.frob.com>
26345
26346         * io/open.c (__open_2): Moved to ...
26347         * io/open_2.c: ... this new file.
26348         * io/open64.c (__open64_2): Moved to ...
26349         * io/open64_2.c: ... this new file.
26350         * io/openat.c (__openat_2): Moved to ...
26351         * io/openat_2.c: ... this new file.
26352         * io/openat64.c (__openat64_2): Moved to ...
26353         * io/openat64_2.c: ... this new file.
26354         * io/Makefile (routines): Add them.
26355         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
26356         * sysdeps/unix/sysv/linux/open_2.c: File removed.
26357         * sysdeps/unix/sysv/linux/open64_2.c: File removed.
26358         * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
26359         * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
26360         * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
26361         (__openat64): Add hidden_ver.
26362         * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
26363         * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
26364
26365         * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
26366         Separately conditionalize setting of GLRO(dl_sysinfo) so
26367         that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
26368         as well, but the actual setting is only under [NEED_DL_SYSINFO].
26369
26370 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26371
26372         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
26373         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
26374         definition.
26375         (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
26376         * sysdeps/unix/sysv/linux/powerpc/init-first.c
26377         (_libc_vdso_platform_setup): Add __vdso_time initialization.
26378         * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
26379         for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
26380
26381 2013-05-03  Joseph Myers  <joseph@codesourcery.com>
26382
26383         * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
26384         test signgam value.
26385
26386         * math/libm-test.inc (hypot_test): Do not use
26387         IGNORE_ZERO_INF_SIGN.
26388
26389 2013-05-03  Andreas Jaeger  <aj@suse.de>
26390
26391         * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
26392         Linux 3.9.
26393         * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
26394         (PF_MAX): Adjust for VSOCK change.
26395
26396 2013-05-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26397
26398         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26399
26400 2013-05-02  Carlos O'Donell  <carlos@redhat.com>
26401
26402         [BZ #15264]
26403         * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
26404         * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
26405         * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
26406
26407 2013-05-02  David S. Miller  <davem@davemloft.net>
26408
26409         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26410
26411 2013-05-01  Ondřej Bílka  <neleai@seznam.cz>
26412
26413         * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
26414
26415 2013-05-01  Roland McGrath  <roland@hack.frob.com>
26416
26417         * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
26418
26419 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
26420
26421         [BZ #14952]
26422         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
26423         [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
26424         Use __attribute__ ((__gnu_inline__)).
26425         [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
26426         Don't use __attribute__ ((__gnu_inline__)).
26427
26428 2013-05-01  Joseph Myers  <joseph@codesourcery.com>
26429
26430         [BZ #15423]
26431         * math/s_catan.c (__catan): Handle small real or imaginary part of
26432         input specially to avoid spurious underflow.
26433         * math/s_catanf.c (__catanf): Likewise.
26434         * math/s_catanh.c (__catanh): Likewise.
26435         * math/s_catanhf.c (__catanhf): Likewise.
26436         * math/s_catanhl.c (__catanhl): Likewise.
26437         * math/s_catanl.c (__catanl): Likewise.
26438         * math/libm-test.inc (catan_test): Add more tests.
26439         (catanh_test): Likewise.
26440         * sysdeps/i386/fpu/libm-test-ulps: Update.
26441         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26442
26443 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26444
26445         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26446
26447 2013-04-30  Joseph Myers  <joseph@codesourcery.com>
26448
26449         [BZ #15416]
26450         * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
26451         accurately for denominator in atan2.
26452         * math/s_catanf.c (__catanf): Likewise.
26453         * math/s_catanh.c (__catanh): Likewise.
26454         * math/s_catanhf.c (__catanhf): Likewise.
26455         * math/s_catanhl.c (__catanhl): Likewise.
26456         * math/s_catanl.c (__catanl): Likewise.
26457         * math/libm-test.inc (catan_test): Add more tests.
26458         (catanh_test): Likewise.
26459         * sysdeps/i386/fpu/libm-test-ulps: Update.
26460         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26461
26462 2013-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
26463
26464         * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
26465
26466         * benchtests/Makefile (bench): Remove slow benchmarks.
26467         * benchtests/atan-inputs: Add slow benchmark inputs.
26468         * benchtests/bench-modf.c (NUM_VARIANTS): Define.
26469         (BENCH_FUNC): Accept variant offset.
26470         (VARIANT): Define.
26471         * benchtests/bench-skeleton.c (main): Run benchmark for each
26472         variant.
26473         * benchtests/cos-inputs: Add slow benchmark inputs.
26474         * benchtests/exp-inputs: Likewise.
26475         * benchtests/pow-inputs: Likewise.
26476         * benchtests/sin-inputs: Likewise.
26477         * benchtests/slowatan-inputs: Remove.
26478         * benchtests/slowatan.c: Remove.
26479         * benchtests/slowcos-inputs: Remove.
26480         * benchtests/slowcos.c: Remove.
26481         * benchtests/slowexp-inputs: Remove.
26482         * benchtests/slowexp.c: Remove.
26483         * benchtests/slowpow-inputs: Remove.
26484         * benchtests/slowpow.c: Remove.
26485         * benchtests/slowsin-inputs: Remove.
26486         * benchtests/slowsin.c: Remove.
26487         * benchtests/slowtan-inputs: Remove.
26488         * benchtests/slowtan.c: Remove.
26489         * benchtests/tan-inputs: Add slow benchmark inputs.
26490         * scripts/bench.pl: Parse comments and directives.
26491
26492         * benchtests/Makefile: Remove *-ITER.  Define BENCH_DURATION
26493         in CPPFLAGS.
26494         ($(objpfx)bench-%.c): Remove *-ITER.
26495         * benchtests/bench-modf.c: Remove definition of ITER.
26496         * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
26497         (main): Loop for DURATION seconds instead of fixed number of
26498         iterations.
26499         * scripts/bench.pl: Don't expect iterations in parameters.
26500
26501 2013-04-29  Roland McGrath  <roland@hack.frob.com>
26502
26503         * io/fchdir.c (__fchdir): Renamed from fchdir.
26504         (fchdir): Define as weak alias.
26505
26506 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
26507
26508         * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
26509         (ERRNO_EDOM): Likewise.
26510         (ERRNO_ERANGE): Likewise.
26511         (noErrnoTests): New variable.
26512         (init_max_error): Set errno to 0.
26513         (test_single_errno): New function.
26514         (test_errno): Likewise.
26515         (check_float_internal): Call test_errno.  Set errno to 0.
26516         (check_complex): Refer to errno tests in comment.
26517         (check_int): Call test_errno.  Set errno to 0.
26518         (check_long): Likewise.
26519         (check_bool): Likewise.
26520         (check_longlong): Likewise.
26521         (cos_test): Use ERRNO_* flags for errno tests instead of
26522         check_int.
26523         (expm1_test): Likewise.
26524         (fmod_test): Likewise.
26525         (ilogb_test): Likewise.
26526         (lgamma_test): Likewise.
26527         (pow_test): Likewise.
26528         (remainder_test): Likewise.
26529         (sin_test): Likewise.
26530         (tan_test): Likewise.
26531         (yn_test): Likewise.
26532         (initialize): Set errno to 0.
26533         (main): Print number of errno tests.
26534         * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
26535
26536 2013-04-29  Andreas Jaeger  <aj@suse.de>
26537
26538         [BZ #15084]
26539         * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
26540         and RES_USEVC.
26541
26542         [BZ #15085]
26543         * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
26544         * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
26545         unimplemented.
26546
26547         [BZ #15380]
26548         * stdlib/random.c (__initstate): Return NULL if
26549         __initstate fails.
26550
26551         [BZ #15086]
26552         * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
26553         RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
26554         RES_SNGLKUPREOP.
26555
26556 2013-04-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26557
26558         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26559
26560 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
26561
26562         * math/libm-test.inc (cacos_test): Add missing semicolons at ends
26563         of individual tests.
26564         (casin_test): Likewise.
26565         (casinh_test): Likewise.
26566
26567 2013-04-27  Joseph Myers  <joseph@codesourcery.com>
26568
26569         [BZ #15409]
26570         * math/s_catan.c (__catan): Handle arguments with large real or
26571         imaginary part separately without squaring.
26572         * math/s_catanf.c (__catanf): Likewise.
26573         * math/s_catanh.c (__catanh): Likewise.
26574         * math/s_catanhf.c (__catanhf): Likewise.
26575         * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
26576         and redefine.
26577         (__catanhl): Handle arguments with large real or imaginary part
26578         separately without squaring.
26579         * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
26580         and redefine.
26581         (__catanl): Handle arguments with large real or imaginary part
26582         separately without squaring.
26583         * math/libm-test.inc (catan_test): Add more tests.
26584         (catanh_test): Likewise.
26585         * sysdeps/i386/fpu/libm-test-ulps: Update.
26586         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26587
26588 2013-04-27  Andreas Jaeger  <aj@suse.de>
26589
26590         [BZ #15007]
26591         * stdlib/stdlib.h: Update guards for qecvt.
26592         * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
26593         <stdlib.h>.
26594
26595 2013-04-27  Allan McRae  <allan@archlinux.org>
26596
26597         * sysdeps/i386/fpu/libm-test-ulps: Update.
26598
26599 2013-04-26  Joseph Myers  <joseph@codesourcery.com>
26600
26601         [BZ #15406]
26602         * math/s_catan.c: Include <float.h>.
26603         (__catan): Ensure underflow exception occurs for underflowed
26604         result.
26605         * math/s_catanf.c: Include <float.h>.
26606         (__catanf): Ensure underflow exception occurs for underflowed
26607         result.
26608         * math/s_catanh.c: Include <float.h>.
26609         (__catanh): Ensure underflow exception occurs for underflowed
26610         result.
26611         * math/s_catanhf.c: Include <float.h>.
26612         (__catanhf): Ensure underflow exception occurs for underflowed
26613         result.
26614         * math/s_catanhl.c: Include <float.h>.
26615         (__catanhl): Ensure underflow exception occurs for underflowed
26616         result.
26617         * math/s_catanl.c: Include <float.h>.
26618         (__catanl): Ensure underflow exception occurs for underflowed
26619         result.
26620         * math/libm-test.inc (catan_test): Add more tests.
26621         (catanh_test): Likewise.
26622
26623         [BZ #15405]
26624         * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
26625         underflowed result.
26626         * math/s_ccoshf.c (__ccoshf): Likewise.
26627         * math/s_ccoshl.c (__ccoshl): Likewise.
26628         * math/s_csin.c (__csin): Likewise.
26629         * math/s_csinf.c (__csinf): Likewise.
26630         * math/s_csinh.c (__csinh): Likewise.
26631         * math/s_csinhf.c (__csinhf): Likewise.
26632         * math/s_csinhl.c (__csinhl): Likewise.
26633         * math/s_csinl.c (__csinl): Likewise.
26634         * math/libm-test.inc (ccos_test): Add more tests.
26635         (ccosh_test): Likewise.
26636         (csin_test): Likewise.
26637         (csinh_test): Likewise.
26638
26639 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26640
26641         * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
26642         * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
26643         * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
26644         * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
26645         * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
26646         powerpc/power5+/fpu folders.
26647         * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
26648
26649
26650 2013-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
26651
26652         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26653
26654 2013-04-25  Joseph Myers  <joseph@codesourcery.com>
26655
26656         * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
26657         additions to variable.
26658         [$(config-machine) = x86_64] (modules-names): Likewise.
26659         ($(objpfx)tst-audit3): Remove dependency.
26660         ($(objpfx)tst-audit3.out): Likewise.
26661         ($(objpfx)tst-audit4): Likewise.
26662         ($(objpfx)tst-audit4.out): Likewise.
26663         ($(objpfx)tst-audit5): Likewise.
26664         ($(objpfx)tst-audit5.out): Likewise.
26665         ($(objpfx)tst-audit6): Likewise.
26666         ($(objpfx)tst-audit6.out): Likewise.
26667         ($(objpfx)tst-audit7): Likewise.
26668         ($(objpfx)tst-audit7.out): Likewise.
26669         (tst-audit3-ENV): Remove variable.
26670         (tst-audit4-ENV): Likewise.
26671         (tst-audit5-ENV): Likewise.
26672         (tst-audit6-ENV): Likewise.
26673         (tst-audit7-ENV): Likewise.
26674         [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
26675         [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
26676         addition to variable.
26677         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
26678         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
26679         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
26680         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
26681         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
26682         * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
26683         tst-audit3, tst-audit4 and tst-audit5.
26684         [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
26685         tst-audit6 and tst-audit7.
26686         [$(subdir) = elf] (modules-names): Add audit modules for those
26687         tests.
26688         [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
26689         [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
26690         [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
26691         [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
26692         [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
26693         [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
26694         [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
26695         [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
26696         [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
26697         [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
26698         [$(subdir) = elf] (tst-audit3-ENV): New variable.
26699         [$(subdir) = elf] (tst-audit4-ENV): Likewise.
26700         [$(subdir) = elf] (tst-audit5-ENV): Likewise.
26701         [$(subdir) = elf] (tst-audit6-ENV): Likewise.
26702         [$(subdir) = elf] (tst-audit7-ENV): Likewise.
26703         [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
26704         Likewise.
26705         [$(subdir) = elf && $(config-cflags-avx) = yes]
26706         (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
26707         [$(subdir) = elf && $(config-cflags-avx) = yes]
26708         (CFLAGS-tst-auditmod4a.c): Likewise.
26709         [$(subdir) = elf && $(config-cflags-avx) = yes]
26710         (CFLAGS-tst-auditmod4b.c): Likewise.
26711         [$(subdir) = elf && $(config-cflags-avx) = yes]
26712         (CFLAGS-tst-auditmod6b.c): Likewise.
26713         [$(subdir) = elf && $(config-cflags-avx) = yes]
26714         (CFLAGS-tst-auditmod6c.c): Likewise.
26715         [$(subdir) = elf && $(config-cflags-avx) = yes]
26716         (CFLAGS-tst-auditmod7b.c): Likewise.
26717         * elf/tst-audit3.c: Move to ...
26718         * sysdeps/x86_64/tst-audit3.c: ... here.
26719         * elf/tst-audit4.c: Move to ...
26720         * sysdeps/x86_64/tst-audit4.c: ... here.
26721         * elf/tst-audit5.c: Move to ...
26722         * sysdeps/x86_64/tst-audit5.c: ... here.
26723         * elf/tst-audit6.c: Move to ...
26724         * sysdeps/x86_64/tst-audit6.c: ... here.
26725         * elf/tst-audit7.c: Move to ...
26726         * sysdeps/x86_64/tst-audit7.c: ... here.
26727         * elf/tst-auditmod3a.c: Move to ...
26728         * sysdeps/x86_64/tst-auditmod3a.c: ... here.
26729         * elf/tst-auditmod3b.c: Move to ...
26730         * sysdeps/x86_64/tst-auditmod3b.c: ... here.
26731         * elf/tst-auditmod4a.c: Move to ...
26732         * sysdeps/x86_64/tst-auditmod4a.c: ... here.
26733         * elf/tst-auditmod4b.c: Move to ...
26734         * sysdeps/x86_64/tst-auditmod4b.c: ... here.
26735         * elf/tst-auditmod5a.c: Move to ...
26736         * sysdeps/x86_64/tst-auditmod5a.c: ... here.
26737         * elf/tst-auditmod5b.c: Move to ...
26738         * sysdeps/x86_64/tst-auditmod5b.c: ... here.
26739         * elf/tst-auditmod6a.c: Move to ...
26740         * sysdeps/x86_64/tst-auditmod6a.c: ... here.
26741         * elf/tst-auditmod6b.c: Move to ...
26742         * sysdeps/x86_64/tst-auditmod6b.c: ... here.
26743         * elf/tst-auditmod6c.c: Move to ...
26744         * sysdeps/x86_64/tst-auditmod6c.c: ... here.
26745         * elf/tst-auditmod7a.c: Move to ...
26746         * sysdeps/x86_64/tst-auditmod7a.c: ... here.
26747         * elf/tst-auditmod7b.c: Move to ...
26748         * sysdeps/x86_64/tst-auditmod7b.c: ... here.
26749
26750 2013-04-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
26751
26752         [BZ #15366]
26753         * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
26754         define unconditionally.
26755         * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
26756         define unconditionally.
26757         (INT8_C, INT16_C, etc.): Likewise.
26758
26759 2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
26760
26761         * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
26762         __ehdr_start with hidden visibility.
26763
26764         * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
26765
26766 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
26767
26768         * math/libm-test.inc (cos_test): Use accurate hex constants.
26769         (sincost_test): Likewise.
26770
26771 2013-04-24  Joseph Myers  <joseph@codesourcery.com>
26772
26773         * math/libm-test.inc (catan_test): Add more tests.
26774         (catanh_test): Likewise.
26775
26776         * math/s_catanf.c (__catanf): Use suffixed floating-point
26777         constants.
26778         * math/s_catanhf.c (__catanhf): Likewise.
26779         * math/s_catanhl.c (__catanhl): Likewise.
26780         * math/s_catanl.c (__catanl): Likewise.
26781
26782         [BZ #15394]
26783         * math/s_catan.c (__catan): Calculate imaginary part of result
26784         with log1p not log unless computing log of number close to 0.
26785         * math/s_catanf.c (__catanf): Likewise.
26786         * math/s_catanl.c (__catanl): Likewise.
26787         * math/s_catanh.c (__catanh): Calculate real part of result with
26788         log1p not log unless computing log of number close to 0.
26789         * math/s_catanhf.c (__catanhf): Likewise.
26790         * math/s_catanhl.c (__catanhl): Likewise.
26791         * math/libm-test.inc (catan_test): Add more tests.
26792         (catanh_test): Likewise.
26793         * sysdeps/i386/fpu/libm-test-ulps: Update.
26794         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26795
26796 2013-04-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
26797
26798         * benchtests/Makefile: Mention files in which fast and slow
26799         paths of math functions are implemented.
26800
26801 2013-04-23  Roland McGrath  <roland@hack.frob.com>
26802
26803         * sysdeps/posix/timespec_get.c: New file.
26804
26805 2013-04-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26806
26807         * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
26808         POWER.
26809         * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
26810         for POWER.
26811         * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
26812         powerpc/power5/fpu folders.
26813         * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
26814         * benchtests/Makefile: Add modf testcase.
26815         * benchtests/bench-modf.c: New file: Benchmark test for mo
26816
26817 2013-04-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
26818
26819         [BZ #14888]
26820         * time/Makefile (tests): Add tst-strptime-whitespace.
26821         * time/strptime_l.c (get_number): Use ISSPACE.
26822         (__strptime_internal): Likewise.
26823         * time/tst-strptime-whitespace.c: New test case.
26824
26825 2013-04-23  Andreas Schwab  <schwab@linux-m68k.org>
26826
26827         * nss/nss_files/files-init.c (TF): Don't initialize flexible array
26828         member.
26829         (_nss_files_init): Set it here.
26830
26831 2013-04-23  Heiko Carstens  <heiko.carstens@de.ibm.com>
26832
26833         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
26834         f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
26835         unsigned.
26836
26837 2013-04-22  Jan-Benedict Glaw  <jbglaw@getslash.de>
26838
26839         * nss/getent.c (shadow_keys): Call endspent, not endpwent.
26840
26841 2013-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
26842
26843         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
26844         size just once.
26845
26846 2013-04-21  David S. Miller  <davem@davemloft.net>
26847
26848         * po/ru.po: Update Russion translation from translation project.
26849
26850 2013-04-17  Adam Conrad  <adconrad@0c3.net>
26851
26852         * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
26853         and setfsgid.
26854
26855 2013-04-17  Carlos O'Donell  <carlos@redhat.com>
26856
26857         * configure.in: Remove i386 configure warning. Remove i386 case.
26858         * configure: Regenerate.
26859         * sysdeps/i386/configure.in: Raise error if config_machine is i386.
26860         Add example to error message.
26861         * sysdeps/i386/configure: Regenerate.
26862
26863 2013-04-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
26864
26865         * benchtests/Makefile (bench): Add cos, tan, slowcos and
26866         slowtan.
26867         * benchtests/cos-inputs: New file.
26868         * benchtests/slowcos-inputs: New file.
26869         * benchtests/slowcos.c: New file.
26870         * benchtests/slowtan-inputs: New file.
26871         * benchtests/slowtan.c: New file.
26872         * benchtests/tan-inputs: New file.
26873
26874 2013-04-16  Roland McGrath  <roland@hack.frob.com>
26875
26876         * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
26877         considered kosher.
26878
26879 2013-04-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
26880
26881         * benchtests/Makefile: Include cppflags-iterator.mk to add
26882         -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
26883
26884         * Makefile.in (bench-clean): New target.
26885         * benchtests/Makefile (bench-clean): Likewise.
26886
26887 2013-04-16  David Holsgrove  <david.holsgrove@xilinx.com>
26888
26889         * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
26890
26891 2013-04-15  Thomas Schwinge  <thomas@codesourcery.com>
26892
26893         * stdio-common/tstdiomisc.c: Fix coding-style violation.
26894
26895 2013-04-15  Andreas Schwab  <schwab@suse.de>
26896
26897         * nscd/grpcache.c (cache_addgr): Properly check for short write.
26898         * nscd/initgrcache.c (addinitgroupsX): Likewise.
26899         * nscd/pwdcache.c (cache_addpw): Likewise.
26900         * nscd/servicescache.c (cache_addserv): Likewise.  Don't write
26901         more than recsize.
26902
26903 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
26904
26905         * benchtests/Makefile (bench): Write all output to
26906         bench-out.tmp together.
26907
26908 2013-04-15  Andreas Schwab  <schwab@suse.de>
26909
26910         * nscd/nscd.c (main): Don't fork again after closing files.
26911
26912 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
26913
26914         * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
26915
26916         * benchtests/Rules (bench-deps): Collect dependencies into a
26917         single variable.  Add Makefile to dependencies.
26918         ($(objpfx)bench-%.c): Depend on bench-deps.
26919
26920 2013-04-12  Roland McGrath  <roland@hack.frob.com>
26921             Xavier Roche  <roche+kml2@exalead.com>
26922
26923         [BZ #15361]
26924         * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
26925         just that it's a file descriptor.
26926         * manual/llio.texi (Synchronizing AIO Operations): Update description
26927         for EBADF error from aio_fsync.
26928
26929 2013-04-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
26930
26931         * Rules (bench): Move target definition...
26932         * benchtests/Makefile: ... here.
26933
26934 2013-04-11  Carlos O'Donell  <carlos@redhat.com>
26935
26936         * math/libm-test.inc (cos_test): Fix PI/2 test.
26937         (sincos_test): Likewise.
26938         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
26939         * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
26940
26941 2013-04-11  Andreas Schwab  <schwab@suse.de>
26942
26943         [BZ #13988]
26944         * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
26945         accept exponent character only when digits were seen.
26946         * stdio-common/Makefile (tests): Add bug26.
26947         * stdio-common/bug26.c: New file.
26948
26949         [BZ #14293]
26950         * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
26951         non-freeable.
26952
26953 2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
26954
26955         * Makeconfig (rtld-prefix): Define built linker prefix.
26956         * Rules (run-bench): Use it.
26957         * math/Makefile (run-regen-ulps): Likewise.
26958
26959         * Rules (bench): Remove eval.
26960
26961 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
26962             Roland McGrath  <roland@hack.frob.com>
26963             Ondrej Bilka  <neleai@seznam.cz>
26964
26965         [BZ #15346]
26966         * time/getdate.c: Include ctype.h and alloca.h.
26967         (__getdate_r): Trim leading and trailing spaces of input.
26968         * time/tst-getdate.c (tests): Add tests with leading and
26969         trailing spaces.
26970
26971 2013-04-08  Roland McGrath  <roland@hack.frob.com>
26972
26973         [BZ #14280]
26974         * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
26975         when computing value.
26976
26977 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
26978
26979         * math/README.libm-test (How can I generate "libm-test-ulps"?):
26980         Use testrun.sh to run libm tests.
26981
26982         [BZ #15309]
26983         * elf/dl-open.c (dl_open_worker): memset all of seen array.
26984
26985 2013-04-06  Marko Myllynen  <myllynen@redhat.com>
26986
26987         [BZ #15264]
26988         * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
26989
26990 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
26991
26992         * Makefile.in (regen-ulps): New target.
26993         * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
26994         [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
26995         [ifneq (no,$(PERL)] (regen-ulps): New target.
26996         [ifeq (no,$(PERL)] (regen-ulps): New target.
26997         * math/libm-test.inc (ulps_file_name): Define.
26998         (output_dir): New variable.
26999         (options): Add "output-dir" option.
27000         (parse_opt): Handle 'o' case.
27001         (main): If output_dir is non-NULL use it as a prefix
27002         otherwise use "".
27003         * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
27004
27005 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
27006
27007         [BZ #10060, #10062]
27008         * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
27009         * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
27010         fail configure if __sync_val_compare_and_swap is not inlined.
27011         * sysdeps/i386/configure: Regenerate.
27012         * configure.in: Build for i686 when configured for i386.
27013         * configure: Regenerate.
27014         * README: Remove i386 reference.
27015
27016 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
27017
27018         * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
27019         * sysdeps/s390/s390-64/sysdep.h: Likewise.
27020
27021 2013-04-05  Thomas Schwinge  <thomas@codesourcery.com>
27022
27023         * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
27024         (lmsnanval): New variables.
27025         (F): Add conversion tests.
27026         * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
27027         * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
27028
27029         * stdio-common/tstdiomisc.c (F): Properly collect individual
27030         tests' results.
27031
27032         [BZ #14686, #15336]
27033         * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
27034         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
27035         Instead, use input NaN values or generate a qNaN by arithmetic
27036         operation.  Also fix bugs to comply with the standard.
27037         * math/libm-test.inc (remainder_test): Add more tests.
27038
27039         [BZ #15335, #15342]
27040         * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
27041         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
27042         input NaN values or generate a qNaN by arithmetic operation.
27043
27044         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
27045         unreachable code.
27046
27047         * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
27048         definitions.
27049
27050 2013-04-03  Joseph Myers  <joseph@codesourcery.com>
27051
27052         [BZ #14478]
27053         * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
27054         underflowed result.
27055         * math/s_cexpf.c (__cexpf): Likewise.
27056         * math/s_cexpl.c (__cexpl): Likewise.
27057         * math/libm-test.inc (cexp_test): Add more tests.
27058
27059 2013-04-03  Andreas Schwab  <schwab@suse.de>
27060
27061         [BZ #15330]
27062         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
27063         order arrays from heap if bigger than alloca cutoff.
27064
27065 2013-04-03  Thomas Schwinge  <thomas@codesourcery.com>
27066
27067         * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
27068         (SNAN_TESTS_double): Refer to GCC PR56831.
27069         * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
27070         GCC PR56828.
27071
27072 2013-04-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
27073
27074         * Rules (bench): Move bench.out after the run is complete.
27075
27076         * Rules (bench): Echo currently running benchmark.
27077
27078         * benchtests/Makefile (bench): Add atan and slowatan.
27079         * benchtests/atan-inputs: New file.
27080         * benchtests/slowatan-inputs: New file.
27081         * benchtests/slowatan.c: New file.
27082
27083         * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
27084         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
27085         its value.
27086
27087         [BZ #15305]
27088         * sysdeps/unix/sysv/linux/kernel-features.h
27089         [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
27090         __ASSUME_XFS_RESTRICTED_CHOWN.
27091         * sysdeps/unix/sysv/linux/pathconf.c
27092         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
27093         Save and restore errno.
27094
27095 2013-04-02  Joseph Myers  <joseph@codesourcery.com>
27096
27097         [BZ #15327]
27098         * math/s_cacosh.c (__cacosh): Implement for finite nonzero
27099         arguments using __kernel_casinh.
27100         * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
27101         arguments using __kernel_casinhf.
27102         * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
27103         arguments using __kernel_casinhl.
27104         * math/libm-test.inc (cacosh_test): Add more tests.
27105         * sysdeps/i386/fpu/libm-test-ulps: Update.
27106         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27107
27108 2013-04-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
27109
27110         * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
27111         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
27112
27113         * bench/Makefile (bench): Add sin and slowsin.
27114         * benchtests/sin-inputs: New file.
27115         * benchtests/slowsin-inputs: New file.
27116         * benchtests/slowsin.c: New file.
27117
27118         * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
27119         (bench): Add slowexp and slowpow.
27120         (exp-ITER): Increase iterations.
27121         (pow-ITER): Likewise.
27122         * benchtests/exp-inputs: Change input.
27123         * benchtests/pow-inputs: Likewise.
27124         * benchtests/slowexp-inputs: New file.
27125         * benchtests/slowexp.c: New file.
27126         * benchtests/slowpow-inputs: New file.
27127         * benchtests/slowpow.c: New file.
27128
27129 2013-04-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27130
27131         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
27132         instructions.
27133         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
27134         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
27135         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
27136         * benchtests/Makefile: Add rint benchtest.
27137         * benchtests/rint-inputs: Input for rint benchtest.
27138
27139 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
27140
27141         * Versions.def (libm): Add GLIBC_2.18.
27142         * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
27143         hidden libm prototypes.
27144         [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
27145         * math/Makefile (libm-calls): Add s_issignaling.
27146         * math/Versions (libm: GLIBC_2.18): Add __issignaling,
27147         __issignalingf, __issignalingl.  Adjust all libm.abilist files.
27148         * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
27149         declaration.
27150         * math/math.h [__USE_GNU] (issignaling): New macro.
27151         * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
27152         * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
27153         * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
27154         * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
27155         * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
27156         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
27157         * manual/arith.texi (issignaling): New section.
27158         * manual/libm-err-tab.pl (@all_functions): Update comment.
27159         * math/gen-libm-test.pl (parse_args): Apply special handling for
27160         issignaling.
27161         * math/libm-test.inc (print_float, issignaling_test): New
27162         functions.
27163         (check_float_internal): Add issignaling checks.
27164         * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
27165         default definition.
27166         * sysdeps/powerpc/math-tests.h: New file.
27167         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
27168         tests.
27169         * math/test-snan.c (TEST_FUNC): Likewise.
27170
27171 2013-03-30  David S. Miller  <davem@davemloft.net>
27172
27173         * po/de.po: Update from translation team.
27174
27175 2013-03-30  Joseph Myers  <joseph@codesourcery.com>
27176
27177         [BZ #10357]
27178         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27179         imaginary part less than 1.0 and real part less than 0.5
27180         specially.
27181         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27182         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27183         * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
27184         (cacos_test): Add more tests.
27185         (casin_test): Likewise.
27186         (casinh_test): Likewise.
27187         * sysdeps/i386/fpu/libm-test-ulps: Update.
27188         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27189
27190 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
27191
27192         * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
27193         ONE with its value.
27194
27195         * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
27196         (__pow_mp): Replace ONE and MONE with their values.
27197         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27198         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
27199         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
27200         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
27201         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27202         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
27203
27204         * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
27205
27206         * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
27207         (__pow_mp): Replace ZERO and MZERO with their values.
27208         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
27209         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27210         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
27211         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
27212         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27213         * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
27214         (__sqr): Likewise.
27215
27216         * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
27217
27218         * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
27219
27220 2013-03-28  Roland McGrath  <roland@hack.frob.com>
27221
27222         * include/stdlib.h [!SHARED] (__call_tls_dtors):
27223         Declare with __attribute__ ((weak)).
27224         * stdlib/exit.c (__libc_atexit) [!SHARED]:
27225         Call __call_tls_dtors only if it's not NULL.
27226
27227 2013-03-28  Roland McGrath  <roland@hack.frob.com>
27228
27229         * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
27230         didn't do it already, then set _dl_phdr and _dl_phnum based on the
27231         magic __ehdr_start linker symbol if it's defined.
27232         * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
27233         them up here if it was already done.
27234
27235         * elf/dl-support.c (_dl_phdr): Make pointer to const.
27236         (_dl_aux_init): Use const in cast when setting it.
27237         * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
27238         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
27239         * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
27240
27241         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
27242         Declare them here.
27243         * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
27244         * csu/libc-tls.c: Nor here.
27245         * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
27246
27247         * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
27248         (__libc_message): Never call vsyslog.
27249
27250 2013-03-28  Alan Modra  <amodra@gmail.com>
27251
27252         * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
27253         Define as empty.
27254         * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
27255         Likewise.
27256
27257 2013-03-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27258
27259         [BZ #15214]
27260         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
27261         underflow.
27262         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
27263
27264 2013-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
27265
27266         [BZ #15304]
27267         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
27268         Don't add gid passed as argument.
27269
27270         * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
27271
27272 2013-03-27  Joseph Myers  <joseph@codesourcery.com>
27273
27274         [BZ #15307]
27275         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27276         imaginary part between 1.0 and 1.5 and real part less than 0.5
27277         specially.
27278         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27279         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27280         * math/libm-test.inc (cacos_test): Add more tests.
27281         (casin_test): Likewise.
27282         (casinh_test): Likewise.
27283         * sysdeps/i386/fpu/libm-test-ulps: Update.
27284         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27285
27286 2013-03-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
27287
27288         * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
27289         constants.
27290         (norm): Likewise.
27291         (denorm): Likewise.
27292         (__dbl_mp): Likewise.
27293         (add_magnitudes): Likewise.
27294         (sub_magnitudes): Likewise.
27295         (__add): Likewise.
27296         (__sub): Likewise.
27297         (__mul): Likewise.
27298         (__sqr): Likewise.
27299         (__inv): Likewise.
27300         (__dvd): Likewise.
27301
27302         * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
27303         commented code.
27304         * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
27305         (__dubcos): Likewise.
27306         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
27307         (__ieee754_acos): Likewise.
27308         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
27309         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
27310         (__exp1): Likewise.
27311         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27312         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
27313         (log1): Likewise.
27314         (my_log2): Likewise.
27315         (checkint): Likewise.
27316         * sysdeps/ieee754/dbl-64/e_remainder.c
27317         (__ieee754_remainder): Likewise.
27318         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27319         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
27320         (bsloww): Likewise.
27321         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
27322
27323         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
27324         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
27325         MANTISSA_STORE_T to store computations on mantissa.  Use
27326         macros for rounding and division.
27327         (denorm): Likewise.
27328         (__dbl_mp): Likewise.
27329         (add_magnitudes): Likewise.
27330         (sub_magnitudes): Likewise.
27331         (__mul): Likewise.
27332         (__sqr): Likewise.
27333         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
27334         powers of two in terms of TWOPOW macro.
27335         (mp_no): Make type of mantissa as MANTISSA_T.
27336         [!RADIXI]: Define RADIXI.
27337         [!TWO52]: Define TWO52.
27338         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
27339
27340 2013-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27341
27342         * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
27343         llroundl symbol when building for PPC32.
27344
27345 2013-03-24  Mark H Weaver  <mhw@netris.org>
27346
27347         * manual/arith.texi (Normalization Functions): Fix prototypes for
27348         scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
27349
27350 2013-03-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27351
27352         [BZ #13889]
27353         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
27354         high value to check if expl overflow.
27355         * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
27356         to check for underflow and overflow.
27357         * math/libm-test.inc: Add exp test.
27358
27359 2013-03-21  Dmitry V. Levin  <ldv@altlinux.org>
27360
27361         [BZ #11120]
27362         * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
27363         with NOT_IN_libc.
27364
27365 2013-03-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27366
27367         * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
27368         symbol.
27369
27370 2013-03-21  Thomas Schwinge  <thomas@codesourcery.com>
27371
27372         * math/gen-libm-test.pl (parse_args, special_functions): Properly
27373         wrap blocks consisting of several statements.
27374
27375         * sysdeps/generic/math-tests.h: New file.
27376         * sysdeps/i386/fpu/math-tests.h: Likewise.
27377         * math/test-snan.c: Include it.
27378         (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
27379
27380 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
27381
27382         [BZ #15285]
27383         * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
27384         (__ieee754_j0l): Do not improve calculations using cos of twice
27385         input for inputs above LDBL_MAX / 2.0L.
27386         (__ieee754_y0l): Likewise.
27387         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
27388         (__ieee754_j1l): Do not improve calculations using cos of twice
27389         input for inputs above LDBL_MAX / 2.0L.
27390         (__ieee754_y1l): Likewise.
27391         * math/libm-test.inc (j0_test): Add another test.
27392         (j1_test): Likewise.
27393         (y0_test): Likewise.
27394         (y1_test): Likewise.
27395         * sysdeps/i386/fpu/libm-test-ulps: Update.
27396
27397 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
27398
27399         * Rules ($(objpfx)bench-%.c): Include code from a C source
27400         file.
27401
27402 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
27403
27404         [BZ #15287]
27405         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27406         imaginary part 1.0 and real part less than 0.5 specially.
27407         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27408         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27409         * math/libm-test.inc (cacos_test): Add more tests.
27410         (casin_test): Likewise.
27411         (casinh_test): Likewise.
27412         * sysdeps/i386/fpu/libm-test-ulps: Update.
27413         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27414
27415 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
27416
27417         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
27418         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
27419
27420 2013-03-20  Joseph Myers  <joseph@codesourcery.com>
27421
27422         * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
27423         * config.make.in (config-cflags-sse4): Remove variable.
27424         (config-cflags-avx): Likewise.
27425         (config-cflags-sse2avx): Likewise.
27426         (config-cflags-novzeroupper): Likewise.
27427         (config-asflags-i686): Likewise.
27428         (have-mfma4): Likewise.
27429         (have-as-vis3): Likewise.
27430         (MIG): Likewise.
27431         * configure.in (MIG): Do not AC_SUBST.
27432         (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
27433         (libc_cv_cc_sse4): Do not AC_SUBST.
27434         (libc_cv_cc_avx): Likewise.
27435         (libc_cv_cc_sse2avx): Likewise.
27436         (libc_cv_cc_novzeroupper): Likewise.
27437         (libc_cv_cc_fma4): Likewise.
27438         (libc_cv_as_i686): Likewise.
27439         (libc_cv_sparc_as_vis3): Likewise.
27440         * sysdeps/i386/configure.in (config-cflags-sse4): Set using
27441         LIBC_CONFIG_VAR.
27442         (config-asflags-i686): Likewise.
27443         (config-cflags-avx): Likewise.
27444         (config-cflags-sse2avx): Likewise.
27445         (have-mfma4): Likewise.
27446         (config-cflags-novzeroupper): Likewise.
27447         * sysdeps/mach/configure.in (MIG): Likewise.
27448         * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
27449         * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
27450         LIBC_CONFIG_VAR.
27451         (config-cflags-avx): Likewise.
27452         (config-cflags-sse2avx): Likewise.
27453         (have-mfma4): Likewise.
27454         (config-cflags-novzeroupper): Likewise.
27455         * configure: Regenerated.
27456         * sysdeps/i386/configure: Likewise.
27457         * sysdeps/mach/configure: Likewise.
27458         * sysdeps/sparc/configure: Likewise.
27459         * sysdeps/x86_64/configure: Likewise.
27460
27461 2013-03-20  Roland McGrath  <roland@hack.frob.com>
27462
27463         [BZ #14812]
27464         * locale/programs/localedef.c (options): Put N_ translation marker
27465         on argument names, not just descriptions.
27466
27467 2013-03-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
27468
27469         * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
27470
27471 2013-03-20  Ondřej Bílka  <neleai@seznam.cz>
27472
27473         [BZ #14176]
27474         * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
27475
27476 2013-03-19  Roland McGrath  <roland@hack.frob.com>
27477
27478         * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
27479         [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
27480         [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
27481         [!BEFORE_ABORT] (before_abort): New function.
27482         [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
27483         * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
27484         (writev_for_fatal): New function.
27485         (WRITEV_FOR_FATAL): New macro; call that.
27486         (backtrace_and_maps): New function.
27487         (BEFORE_ABORT): New macro; call that.
27488         (struct str_list): Type removed.
27489         (__libc_message, __libc_fatal): Functions removed.
27490         Include <sysdeps/posix/libc_fatal.c> instead.
27491
27492 2013-03-19  Joseph Myers  <joseph@codesourcery.com>
27493
27494         * math/k_casinhf.c (__kernel_casinhf): Consistently use float
27495         constants.
27496         * math/k_casinhl.c (__kernel_casinhl): Consistently use long
27497         double constants.
27498
27499 2013-03-19  Andreas Schwab  <schwab@suse.de>
27500
27501         * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
27502         * sysdeps/gnu/configure: Regenerate.
27503
27504         * configure.in: Substitute libc_cv_rtlddir.
27505         * configure: Regenerate.
27506         * config.make.in (rtlddir): Set from libc_cv_rtlddir.
27507         * Makeconfig (rtlddir, inst_rtlddir): New variables.
27508         (rtld-LDFLAGS): Use them with $(rtld-installed-name).
27509         * elf/Makefile (install-others, CFLAGS-interp.c)
27510         (ldso_install, common-ldd-rewrite): Likewise.
27511         ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
27512         $(inst_slibdir)/$(rtld-installed-name).
27513         * scripts/rellns-sh: Add -p option.
27514         * Makerules (make-shlib-link): Use rellns-sh to get relative name
27515         for source.
27516
27517 2013-03-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
27518
27519         * manual/nptl.texi: Renamed to ...
27520         * manual/threads.texi: ... this.
27521         * manual/Makefile (chapters): Update.
27522
27523 2013-03-18  Roland McGrath  <roland@hack.frob.com>
27524
27525         [BZ #14812]
27526         * argp/argp-parse.c (argp_default_options): Put N_ translation marker
27527         on argument names, not just descriptions.
27528         * malloc/memusagestat.c (options): Likewise.
27529         * nss/getent.c (options): Likewise.
27530
27531 2013-03-18  Benno Schulenberg  <bensberg@justemail.net>
27532
27533         [BZ #14812]
27534         * iconv/iconv_prog.c (options): Put N_ translation marker
27535         on argument names, not just descriptions.
27536         * iconv/iconvconfig.c (options): Likewise.
27537
27538 2013-03-18  Ondrej Bilka  <neleai@seznam.cz>
27539
27540         * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
27541         implementation which is faster on all x86_64 architectures.
27542         Tested on AMD, Intel Nehalem, SNB, IVB.
27543         * sysdeps/x86_64/strnlen.S: Likewise.
27544
27545         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
27546         Remove all multiarch strlen and strnlen versions.
27547         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
27548         Remove strlen and strnlen related parts.
27549
27550         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
27551         Inline strlen part.
27552         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
27553
27554         * sysdeps/x86_64/multiarch/strlen.S: Remove.
27555         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
27556         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
27557         * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
27558         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
27559         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
27560
27561 2013-03-17  Carlos O'Donell  <carlos@redhat.com>
27562
27563         * manual/memory.texi (Malloc Tunable Parameters):
27564         Sort parameters alphabetically. Add comments for missing entries.
27565
27566 2013-03-17  David S. Miller  <davem@davemloft.net>
27567
27568         * sysdeps/sparc/fpu/libm-test-ulps: Update.
27569
27570 2013-03-16  Joseph Myers  <joseph@codesourcery.com>
27571
27572         [BZ #15283]
27573         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
27574         for arguments at most half maximum finite value.
27575         * math/libm-test.inc (j0_test): Add more tests.
27576         (j1_test): Likewise.
27577         (y0_test): Likewise.
27578         (y1_test): Likewise.
27579         * sysdeps/i386/fpu/libm-test-ulps: Update.
27580         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27581
27582         [BZ #14155]
27583         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
27584         1 / x and functions P and Q for arguments above 0x1p256L.
27585         (__ieee754_y0l): Likewise.
27586         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
27587         (__ieee754_y1l): Likewise.
27588         * math/libm-test.inc (j0_test): Do not allow spurious underflows.
27589         (j1_test): Likewise.
27590         (y0_test): Likewise.
27591         (y1_test): Likewise.
27592
27593 2013-03-16  Thomas Schwinge  <thomas@codesourcery.com>
27594
27595         * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
27596         variable.
27597
27598 2013-03-15  Roland McGrath  <roland@hack.frob.com>
27599
27600         * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
27601         (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
27602         zero since it's initialized to EXEC_PAGESIZE.
27603
27604         * sysdeps/unix/sysv/linux/ldsodefs.h
27605         (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
27606         * sysdeps/generic/ldsodefs.h: ... here.
27607
27608 2013-03-15  Thomas Schwinge  <thomas@codesourcery.com>
27609
27610         * math/libm-test.inc (ldexp_test): Add missing START/END markers.
27611
27612         * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
27613         math/test-snan.c.
27614         * math/test-snan.c: Renamed from
27615         sysdeps/powerpc/fpu/test-powerpc-snan.c.
27616         * math/Makefile (tests): Add test-snan.
27617         * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
27618         test-powerpc-snan.
27619
27620         * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
27621         SUFFIX.  Initialize qNaN_var with __builtin_nan family of
27622         functions.
27623         (TEST_TRUNC): Add SUFFIX argument.  Initialize qNaN_var with
27624         __builtin_nan family of functions.
27625         * math/libm-test.inc (initialize): Initialize qnan_value with
27626         __builtin_nan family of functions.
27627         * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
27628         Remove variables.
27629         (init_signaling_nan, snan_float, snan_double, snan_ldouble):
27630         Remove functions.
27631         (TEST_FUNC): Add SUFFIX argument.  Move sNaN_var into static
27632         storage class.  Initialize qNaN_var and sNaN_var with
27633         __builtin_nan and __builtin_nans families of functions,
27634         respectively.
27635
27636         * math/libm-test.inc (acosh_test): Also test with qNaN input.
27637         (sqrt_test): Remove duplicate test with qNaN input.
27638         (lrint_test, llrint_test, lround_test, llround_test, rint_test)
27639         (round_test, signbit_test, significand_test): Note missing +/-Inf
27640         as well as qNaN tests.
27641
27642         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
27643         qNaN_var.  Fix a few strings, too.
27644         * math/libm-test.inc (nan_value): Rename to qnan_value.
27645         * math/gen-libm-test.pl (%beautify): Adjust to that.
27646         * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
27647         * math/test-misc.c (main): Likewise.
27648         * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
27649         to __qnan_bytes, and __qnan_union, respectively.
27650         * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
27651         Likewise.
27652         * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
27653         and lqnanval, respectively.
27654         * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
27655         * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
27656         * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
27657         and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
27658
27659         * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
27660         * math/test-misc.c (main) [__x86_64__]: Enable test for long
27661         doubles.
27662
27663         * math/test-misc.c (main): Fix copy'n'pastos.
27664         * misc/tst-efgcvt.c (special): Likewise.
27665
27666         * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
27667         Remove declarations.
27668
27669 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27670
27671         * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
27672         * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
27673         * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
27674         * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
27675
27676 2013-03-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27677
27678         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
27679         macro to return vdso values correctly in IFUNC implementations.
27680         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
27681         Optimization by using IFUNC.
27682
27683 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27684             Richard Henderson  <rth@redhat.com>
27685             Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
27686
27687         * Makefile.in (bench): New target.
27688         * NEWS: Mention the benchmark framework.
27689         * Rules (bench): Likewise.
27690         (binaries-bench): Generate binaries for functions to
27691         benchmark.
27692         * benchtests/Makefile: New makefile for benchmark tests.
27693         * benchtests/bench-skeleton.c: New skeleton file for benchmark
27694         programs.
27695         * benchtests/exp-inputs: New input file for EXP function.
27696         * benchtests/pow-inputs: New input file for POW function.
27697         * scripts/bench.pl: New script to generate source files for
27698         benchmark programs.
27699
27700 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27701
27702         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
27703         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
27704         computations on mantissa.  Use macros for rounding and
27705         division.
27706         (denorm): Likewise.
27707         (__dbl_mp): Likewise.
27708         (add_magnitudes): Likewise.
27709         (sub_magnitudes): Likewise.
27710         (__mul): Likewise.
27711         (__sqr): Likewise.
27712         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
27713         powers of two in terms of TWOPOW macro.
27714         (mp_no): Make type of mantissa as MANTISSA_T.
27715         [!RADIXI]: Define RADIXI.
27716         [!TWO52]: Define TWO52.
27717         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
27718
27719         * manual/nptl.texi (cindex): Modify threads to pthreads.
27720
27721 2013-03-15  Joseph Myers  <joseph@codesourcery.com>
27722
27723         * sysdeps/x86_64/preconfigure: Regenerated.
27724
27725 2013-03-14  Joseph Myers  <joseph@codesourcery.com>
27726
27727         [BZ #14155]
27728         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
27729         0x1p28 and above.
27730         (qzero): Return -0.125 / x for arguments 0x1p28 and above.
27731         * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
27732         0x1p28 and above.
27733         (qzero): Return 0.375 / x for arguments 0x1p28 and above.
27734         * math/libm-test.inc (j0_test): Do not allow one spurious
27735         underflow exception.
27736         (y1_test): Likewise.
27737
27738 2013-03-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
27739
27740         * manual/Makefile (chapters): Add nptl.
27741         * manual/debug.texi (Debugging Support): Add link to Threads
27742         chapter.
27743         * manual/nptl.texi: New file.
27744
27745         * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
27746
27747 2013-03-14  Petr Baudis  <pasky@ucw.cz>
27748
27749         * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
27750         for non-NULL pointer before the memory validity test. Pointed
27751         out by Holger Brunck <holger.brunck@keymile.com>.
27752
27753 2013-03-13  Andreas Schwab  <schwab@suse.de>
27754
27755         * extra-lib.mk (extra-objs): Add static-only-routines as .oS
27756         instead of .os.
27757
27758 2013-03-13  Joseph Myers  <joseph@codesourcery.com>
27759
27760         * timezone/zic.c: Update from tzcode 2013b.
27761
27762 2013-03-12  Carlos O'Donell  <carlos@redhat.com>
27763
27764         * manual/install.texi (Configuring and compiling):
27765         Mention i686 and i586.
27766         * INSTALL: Regenerate.
27767
27768 2013-03-12  Roland McGrath  <roland@hack.frob.com>
27769
27770         * sysdeps/init_array/elf-init.c: New file.
27771         * csu/elf-init.c
27772         (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
27773         (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
27774
27775         * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
27776         __gmon_start__ as global, but as static with a .preinit_array pointer.
27777         * sysdeps/init_array/gmon-start.c: New file.  Use that.
27778         * sysdeps/init_array/crti.S: New file, empty except for comments.
27779         * sysdeps/init_array/crtn.S: Likewise.
27780
27781 2013-03-11  Ondřej Bílka  <neleai@seznam.cz>
27782
27783         * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
27784         definining bcopy.
27785         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
27786         Remove Prefer_SSE_for_memop.
27787         * sysdeps/x86_64/multiarch/init-arch.h: Remove
27788         bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
27789         HAS_PREFER_SSE_FOR_MEMOP.
27790         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
27791         memset-x86-64.
27792         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
27793         Remove bzero, memset ifunc support.
27794         * sysdeps/x86_64/multiarch/bzero.S: Remove file.
27795         * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
27796         * sysdeps/x86_64/multiarch/memset.S: Likewise.
27797         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
27798
27799 2013-03-11  Andreas Schwab  <schwab@suse.de>
27800
27801         [BZ #15234]
27802         * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
27803         by SHLIB_COMPAT.
27804         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
27805         (GLIBC_2.16): Remove pthread_atfork.
27806
27807 2013-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
27808
27809         * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
27810         (ptestcases.h): Likewise.
27811
27812 2013-03-08  Roland McGrath  <roland@hack.frob.com>
27813
27814         * Makeconfig ($(common-objpfx)config.status): Depend on
27815         sysdeps/*/preconfigure{,.in} too.
27816
27817 2013-03-08  Joseph Myers  <joseph@codesourcery.com>
27818
27819         * malloc/malloc.h (__malloc_ptr_t): Remove macro.
27820         (__free_hook): Use void * instead of __malloc_ptr_t.
27821         (__malloc_hook): Likewise.
27822         (__realloc_hook): Likewise.
27823         (__memalign_hook): Likewise.
27824         (__after_morecore_hook): Likewise.
27825         * malloc/arena.c (save_malloc_hook): Likewise.
27826         (save_free_hook): Likewise.
27827         * malloc/hooks.c (malloc_hook_ini): Likewise.
27828         (realloc_hook_ini): Likewise.
27829         (memalign_hook_ini): Likewise.
27830         * malloc/malloc.c (malloc_hook_ini): Likewise.
27831         (realloc_hook_ini): Likewise.
27832         (memalign_hook_ini): Likewise.
27833         (__free_hook): Likewise.
27834         (__malloc_hook): Likewise.
27835         (__realloc_hook): Likewise.
27836         (__memalign_hook): Likewise.
27837         (__libc_malloc): Likewise.
27838         (__libc_free): Likewise.
27839         (__libc_realloc): Likewise.
27840         (__libc_memalign): Likewise.
27841         (__libc_valloc): Likewise.
27842         (__libc_pvalloc): Likewise.
27843         (__libc_calloc): Likewise.
27844         (__posix_memalign): Likewise.
27845         * malloc/morecore.c (__sbrk): Likewise.
27846         (__default_morecore): Likewise.
27847
27848         * malloc/morecore.c (__default_morecore): Use ISO C prototype.
27849
27850         * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
27851         * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
27852         __malloc_ptrdiff_t.
27853
27854         * malloc/malloc.h (__malloc_size_t): Remove macro.
27855         * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
27856         __malloc_size_t.
27857         (old_memalign_hook): Likewise.
27858         (old_realloc_hook): Likewise.
27859         (struct hdr): Likewise.
27860         (flood): Likewise.
27861         (mallochook): Likewise.
27862         (memalignhook): Likewise.
27863         (reallochook): Likewise.
27864         * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
27865         (tr_old_realloc_hook): Likewise.
27866         (tr_old_memalign_hook): Likewise.
27867         (tr_mallochook): Likewise.
27868         (tr_reallochook): Likewise.
27869         (tr_memalignhook): Likewise.
27870
27871 2013-03-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27872
27873         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
27874         default_ldbl_pack and using as default implementation.
27875         (ldbl_unpack): Rename to default_ldbl_unpack and using as default
27876         implementation.
27877         * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
27878         redundant definition.
27879         (ldbl_insert_mantissa): Likewise.
27880         (ldbl_canonicalize): Likewise.
27881         (ldbl_nearbyint): Likewise.
27882         (ldbl_pack): Rename to ldbl_pack_ppc.
27883         (ldbl_unpack): Rename to ldbl_unpack_ppc.
27884         * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
27885         * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
27886
27887 2013-03-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
27888
27889         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
27890         * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
27891         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
27892         * sysdeps/powerpc/power4/fpu/Makefile: ... here.
27893         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
27894         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
27895         * sysdeps/powerpc/powerpc32/power4/Implies: New file.
27896         * sysdeps/powerpc/powerpc64/power4/Implies: New file.
27897
27898 2013-03-07  Andreas Jaeger  <aj@suse.de>
27899
27900         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
27901         bits/mman-linux.h.
27902
27903 2013-03-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
27904
27905         * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
27906         Include mpa.h and declare __MPEXP.
27907         [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
27908         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
27909         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
27910         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
27911         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
27912         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
27913         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
27914
27915         * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
27916         (__slowpow): Use long double EXPL and LOGL functions to
27917         compute POW.
27918         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
27919         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
27920         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
27921         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
27922         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
27923         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
27924
27925         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
27926         intermediate variable to calculate exponent.
27927         (__sqr): Likewise.
27928         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
27929         Likewise.
27930         (__sqr): Likewise.
27931
27932         * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
27933         [!NO__SQR]: Define __sqr.
27934         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
27935         and NO__SQR.  Remove all code except __mul and __sqr.  Include
27936         sysdeps/ieee754/dbl-64/mpa.c.
27937         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
27938
27939         [BZ #12723]
27940         * posix/Makefile (tests): Add tst-pathconf.
27941         * posix/tst-pathconf.c: New test case.
27942         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
27943         _PC_PIPE_BUF.
27944         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
27945
27946 2013-03-06  Patsy Franklin  <pfrankli@redhat.com>
27947
27948         * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
27949
27950 2013-03-06  Andreas Jaeger  <aj@suse.de>
27951
27952         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
27953         definition via __MAP_ANONYMOUS.
27954
27955         * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
27956         it's not part of Linux headers.
27957
27958         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
27959         (MAP_HUGE_MASK): Define.
27960
27961         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27962         Define.
27963         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27964         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27965         Define.
27966         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27967         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27968         Define.
27969         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27970         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
27971         Define.
27972         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27973
27974         * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
27975         * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
27976         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
27977         * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
27978         * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
27979         * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
27980
27981         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
27982         Handle f2fs.
27983
27984         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
27985         Handle f2fs and efivarfs.
27986
27987         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
27988         f2fs.
27989
27990         * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
27991         (EFIVARFS_MAGIC): Add.
27992         (F2FS_LINK_MAX): Add.
27993
27994 2013-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
27995
27996         * stdio-common/vfprintf.c: Replace __builtin_expect with
27997         __glibc_unlikely.
27998
27999 2013-03-06  Joseph Myers  <joseph@codesourcery.com>
28000
28001         [BZ #13550]
28002         * sysdeps/generic/bp-sym.h: Remove file.
28003         * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
28004         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
28005         <bp-sym.h> and <bp-asm.h>.
28006         (__longjmp): Don't use BP_SYM.
28007         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
28008         and <bp-asm.h>.
28009         (memcpy): Don't use BP_SYM.
28010         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
28011         <bp-sym.h> and <bp-asm.h>.
28012         (memcpy): Don't use BP_SYM.
28013         * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
28014         <bp-asm.h>.
28015         (memcpy): Don't use BP_SYM.
28016         * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
28017         <bp-asm.h>.
28018         (memset): Don't use BP_SYM.
28019         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28020         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28021         (__bzero): Don't use BP_SYM.
28022         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28023         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28024         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
28025         <bp-sym.h> and <bp-asm.h>.
28026         (memcmp): Don't use BP_SYM.  Remove comment about bounded
28027         pointers.
28028         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
28029         <bp-sym.h> and <bp-asm.h>.
28030         (memcpy): Don't use BP_SYM.
28031         * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
28032         <bp-sym.h> and <bp-asm.h>.
28033         (memset): Don't use BP_SYM.
28034         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28035         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28036         (__bzero): Don't use BP_SYM.
28037         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28038         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28039         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
28040         <bp-sym.h> and <bp-asm.h>.
28041         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28042         pointers.
28043         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
28044         <bp-sym.h> and <bp-asm.h>.
28045         (memcpy): Don't use BP_SYM.
28046         * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
28047         <bp-sym.h> and <bp-asm.h>.
28048         (memset): Don't use BP_SYM.
28049         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28050         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28051         (__bzero): Don't use BP_SYM.
28052         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28053         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28054         * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
28055         <bp-sym.h> and <bp-asm.h>.
28056         (__memchr): Don't use BP_SYM.
28057         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
28058         <bp-sym.h> and <bp-asm.h>.
28059         (memcmp): Don't use BP_SYM.  Remove comment about bounded
28060         pointers.
28061         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
28062         <bp-sym.h> and <bp-asm.h>.
28063         (memcpy): Don't use BP_SYM.
28064         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
28065         <bp-sym.h> and <bp-asm.h>.
28066         (__mempcpy): Don't use BP_SYM.
28067         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
28068         <bp-sym.h> and <bp-asm.h>.
28069         (__memrchr): Don't use BP_SYM.
28070         * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
28071         <bp-sym.h> and <bp-asm.h>.
28072         (memset): Don't use BP_SYM.
28073         (__bzero): Likewise.
28074         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
28075         <bp-sym.h> and <bp-asm.h>.
28076         (__rawmemchr): Don't use BP_SYM.
28077         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
28078         <bp-sym.h> and <bp-asm.h>.
28079         (__STRCMP): Don't use BP_SYM.
28080         * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
28081         <bp-sym.h> and <bp-asm.h>.
28082         (strchr): Don't use BP_SYM.
28083         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
28084         <bp-sym.h> and <bp-asm.h>.
28085         (__strchrnul): Don't use BP_SYM.
28086         * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
28087         <bp-sym.h> and <bp-asm.h>.
28088         (strlen): Don't use BP_SYM.
28089         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
28090         <bp-sym.h> and <bp-asm.h>.
28091         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28092         pointers.
28093         * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
28094         <bp-sym.h> and <bp-asm.h>.
28095         (__strnlen): Don't use BP_SYM.
28096         * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
28097         <bp-sym.h> and <bp-asm.h>.
28098         (__GI__setjmp): Don't use BP_SYM.
28099         (_setjmp): Likewise.
28100         (__sigsetjmp): Likewise.
28101         * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
28102         (L(start_addresses)): Don't use BP_SYM.
28103         (_start): Likewise.
28104         * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
28105         <bp-asm.h>.
28106         (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
28107         STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
28108         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28109         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28110         * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
28111         <bp-asm.h>.
28112         (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
28113         CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE.  Remove comment
28114         about bounded pointers.
28115         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
28116         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
28117         * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
28118         <bp-asm.h>.
28119         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
28120         about bounded pointers.  Remove GKM FIXME comments.
28121         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
28122         * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
28123         <bp-asm.h>.
28124         (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
28125         STORE_RETURN_BOUNDS.  Remove comment about bounded pointers.
28126         Remove GKM FIXME comments.
28127         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28128         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28129         * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
28130         <bp-asm.h>.
28131         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
28132         about bounded pointers.  Remove GKM FIXME comment.
28133         * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
28134         and <bp-asm.h>.
28135         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28136         pointers.
28137         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
28138         <bp-sym.h> and <bp-asm.h>.
28139         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
28140         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
28141         <bp-sym.h> and <bp-asm.h>.
28142         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
28143         comment.
28144
28145 2013-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
28146
28147         * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
28148         call free(NULL).
28149
28150 2013-03-05  David S. Miller  <davem@davemloft.net>
28151
28152         * po/es.po: Update from translation team.
28153
28154 2013-03-05  Andreas Jaeger  <aj@suse.de>
28155
28156         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
28157         <bits/mman-linux.h>.
28158         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28159         is fine.
28160         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
28161         <bits/mman-linux.h> to end of file.
28162         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28163         is fine.
28164         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
28165         <bits/mman-linux.h> to end of file.
28166         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28167         is fine.
28168         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
28169         <bits/mman-linux.h> to end of file.
28170
28171         * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
28172         (MCL_CURRENT, MCL_FUTURE): Define here.
28173
28174 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28175
28176         [BZ #15232]
28177         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
28178         attribute_hidden.
28179         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
28180
28181 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28182
28183         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
28184         fourth parameter needed for rt_sigprocmask syscall.
28185         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
28186         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
28187         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
28188         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
28189         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
28190         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
28191
28192 2013-03-04  Joseph Myers  <joseph@codesourcery.com>
28193
28194         [BZ #13550]
28195         * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
28196         comment about bounded pointers.
28197         * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
28198         * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
28199
28200 2013-03-04  Andreas Jaeger  <aj@suse.de>
28201
28202         * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
28203         common definitions.
28204
28205         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
28206         provided by bits/mman-linux.h and include <bits/mman-linux.h>.
28207         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
28208         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
28209         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
28210         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
28211
28212 2013-03-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28213
28214         [BZ #15055]
28215         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
28216         __ieee754_sqrl instead of __sqrl.
28217
28218 2013-03-01  Joseph Myers  <joseph@codesourcery.com>
28219
28220         * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
28221         * sysdeps/powerpc/fpu_control.h: ... here.
28222         * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
28223         * sysdeps/powerpc/bits/fenvinline.h: ... here.
28224         * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
28225         * sysdeps/powerpc/bits/mathinline.h: ... here.
28226
28227 2013-03-01  Roland McGrath  <roland@hack.frob.com>
28228
28229         * elf/dl-hwcaps.c (_dl_important_hwcaps):
28230         Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
28231         to just [NEED_DL_SYSINFO_DSO].
28232         * elf/dl-support.c: Likewise.
28233         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
28234         * elf/rtld.c (dl_main): Likewise.
28235         * elf/setup-vdso.h (setup_vdso): Likewise.
28236         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
28237         * sysdeps/unix/sysv/linux/dl-sysdep.c
28238         (_dl_discover_osversion): Likewise.
28239
28240 2013-03-01  Carlos O'Donell  <carlos@redhat.com>
28241
28242         * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
28243         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
28244
28245 2013-03-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
28246
28247         * NEWS: Mention libm performance improvements and non-x86 PI
28248         futex support.
28249
28250         * csu/libc-start.c (__pthread_initialize_minimal): Change
28251         function arguments.
28252         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
28253
28254 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
28255
28256         [BZ #13550]
28257         * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
28258         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
28259         <bp-sym.h> and <bp-asm.h>.
28260         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28261         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
28262         and <bp-asm.h>.
28263         (memcpy): Don't use BP_SYM.
28264         * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
28265         <bp-asm.h>.
28266         (__mpn_add_n): Don't use BP_SYM.
28267         (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
28268         * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
28269         and <bp-asm.h>.
28270         (__mpn_addmul_1): Don't use BP_SYM.
28271         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28272         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
28273         <bp-sym.h>.
28274         (_setjmp): Don't use BP_SYM.
28275         (__novmx_setjmp): Likewise.
28276         (__GI__setjmp): Likewise.
28277         (__vmx_setjmp): Likewise.
28278         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
28279         <bp-sym.h>.
28280         * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
28281         (__bzero): Don't use BP_SYM.
28282         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28283         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28284         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
28285         <bp-sym.h> and <bp-asm.h>.
28286         (memcpy): Don't use BP_SYM.
28287         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
28288         <bp-sym.h> and <bp-asm.h>.
28289         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28290         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
28291         <bp-sym.h> and <bp-asm.h>.
28292         (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28293         * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
28294         <bp-asm.h>.
28295         (__mpn_lshift): Don't use BP_SYM.
28296         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
28297         * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
28298         <bp-asm.h>.
28299         (memset): Don't use BP_SYM.
28300         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28301         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28302         * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
28303         <bp-asm.h>.
28304         (__mpn_mul_1): Don't use BP_SYM.
28305         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28306         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
28307         <bp-sym.h> and <bp-asm.h>.
28308         (memcmp): Don't use BP_SYM.
28309         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
28310         <bp-sym.h> and <bp-asm.h>.
28311         (memcpy): Don't use BP_SYM.
28312         * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
28313         <bp-sym.h> and <bp-asm.h>.
28314         (memset): Don't use BP_SYM.
28315         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
28316         <bp-sym.h> and <bp-asm.h>.
28317         (strncmp): Don't use BP_SYM.
28318         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
28319         <bp-sym.h> and <bp-asm.h>.
28320         (memcpy): Don't use BP_SYM.
28321         * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
28322         <bp-sym.h> and <bp-asm.h>.
28323         (memset): Don't use BP_SYM.
28324         * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
28325         <bp-sym.h> and <bp-asm.h>.
28326         (__memchr): Don't use BP_SYM.
28327         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
28328         <bp-sym.h> and <bp-asm.h>.
28329         (memcmp): Don't use BP_SYM.
28330         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
28331         <bp-sym.h> and <bp-asm.h>.
28332         (memcpy): Don't use BP_SYM.
28333         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
28334         <bp-sym.h> and <bp-asm.h>.
28335         (__mempcpy): Don't use BP_SYM.
28336         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
28337         <bp-sym.h> and <bp-asm.h>.
28338         (__memrchr): Don't use BP_SYM.
28339         * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
28340         <bp-sym.h> and <bp-asm.h>.
28341         (memset): Don't use BP_SYM.
28342         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
28343         <bp-sym.h> and <bp-asm.h>.
28344         (__rawmemchr): Don't use BP_SYM.
28345         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
28346         <bp-sym.h> and <bp-asm.h>.
28347         (__STRCMP): Don't use BP_SYM.
28348         * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
28349         <bp-sym.h> and <bp-asm.h>.
28350         (strchr): Don't use BP_SYM.
28351         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
28352         <bp-sym.h> and <bp-asm.h>.
28353         (__strchrnul): Don't use BP_SYM.
28354         * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
28355         <bp-sym.h> and <bp-asm.h>.
28356         (strlen): Don't use BP_SYM.
28357         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
28358         <bp-sym.h> and <bp-asm.h>.
28359         (strncmp): Don't use BP_SYM.
28360         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
28361         <bp-sym.h> and <bp-asm.h>.
28362         (__strnlen): Don't use BP_SYM.
28363         * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
28364         <bp-asm.h>.
28365         (__mpn_rshift): Don't use BP_SYM.
28366         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
28367         * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
28368         <bp-sym.h> and <bp-asm.h>.
28369         (__sigsetjmp): Don't use BP_SYM.
28370         * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
28371         (L(start_addresses)): Don't use BP_SYM.
28372         (_start): Likewise.
28373         * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
28374         <bp-asm.h>.
28375         (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
28376         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28377         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28378         * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
28379         <bp-asm.h>.
28380         (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
28381         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
28382         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
28383         * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
28384         <bp-asm.h>.
28385         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
28386         comments.
28387         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
28388         * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
28389         <bp-asm.h>.
28390         (strcpy): Don't use BP_SYM and macros from bp-asm.h.  Remove GKM
28391         FIXME comments.
28392         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28393         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28394         * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
28395         <bp-asm.h>.
28396         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
28397         comment.
28398         * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
28399         and <bp-asm.h>.
28400         (strncmp): Don't use BP_SYM,
28401         * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
28402         <bp-asm.h>.
28403         (__mpn_sub_n): Don't use BP_SYM.
28404         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
28405         * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
28406         and <bp-asm.h>.
28407         (__mpn_submul_1): Don't use BP_SYM.
28408         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28409         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
28410         <bp-sym.h> and <bp-asm.h>.
28411         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
28412         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
28413         <bp-sym.h> and <bp-asm.h>.
28414         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
28415         comment.
28416
28417 2013-02-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
28418
28419         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
28420         Use ZK to minimize writes to Z.
28421         (sub_magnitudes): Simplify code a bit.
28422         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
28423         Use ZK to minimize writes to Z.
28424         (sub_magnitudes): Simplify code a bit.
28425
28426 2013-02-27  Roland McGrath  <roland@hack.frob.com>
28427
28428         * csu/gmon-start.c: Add special exception to license text.
28429
28430 2013-02-27  Richard Henderson  <rth@redhat.com>
28431
28432         * scripts/config.guess: Update from config.git.
28433         * scripts/config.sub: Likewise.
28434
28435 2013-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
28436
28437         * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
28438
28439         * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
28440
28441         * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
28442
28443         * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
28444
28445         * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
28446
28447 2013-02-26  Roland McGrath  <roland@hack.frob.com>
28448
28449         * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
28450         [$(build-shared = yes].
28451
28452 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
28453
28454         * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
28455         (__mul): Reduce iterations for calculating mantissa.
28456
28457         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
28458         MPTWO.
28459         (__mpranred): Likewise.
28460
28461         [BZ #15160]
28462         * malloc/memusagestat.c (main): Draw graphs for heap and stack
28463         only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
28464
28465 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
28466
28467         * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
28468         Define __attribute__.
28469
28470 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
28471
28472         * locale/elem-hash.h (elem_hash): Mark as pure and possibly
28473         unused.
28474         * posix/regex_internal.h (__attribute): Remove.
28475         [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
28476         (re_string_context_at): Likewise.
28477         (bitset_not): Use __attribute__ and mark function as possibly
28478         unused.
28479         (bitset_merge): Likewise.
28480         (bitset_mask): Likewise.
28481         (re_string_char_size_at): Likewise.
28482         (re_string_wchar_at): Likewise.
28483         (re_string_elem_size_at): Likewise.
28484
28485 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
28486
28487         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
28488         code.
28489         (cc32): Likewise.
28490
28491         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
28492         (__acr): Likewise.
28493         (__cpy): Likewise.
28494         (norm): Likewise.
28495         (denorm): Likewise.
28496         (__dbl_mp): Likewise.
28497         (add_magnitudes): Likewise.
28498         (sub_magnitudes): Likewise.
28499         (__mul): Likewise.
28500         (__inv): Likewise.
28501
28502         * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
28503         style.
28504
28505         * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
28506         style.
28507
28508         * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
28509         code.
28510
28511         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
28512         up changes with default code.
28513         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
28514         Likewise.
28515
28516 2013-02-24  Allan McRae  <allan@archlinux.org>
28517
28518         * manual/socket.texi (The Internet Namespace): Order menu items
28519         to match that in the file.
28520
28521         * manual/libc-texinfo.sh: Use @detailmenu around the detailed
28522         node listing of the info page menu.
28523
28524 2013-02-21  Joseph Myers  <joseph@codesourcery.com>
28525
28526         [BZ #13550]
28527         * sysdeps/i386/bp-asm.h: Remove file.
28528         * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
28529         (PARMS): Do not use macros from bp-asm.h.
28530         (S1): Likewise.
28531         (S2): Likewise.
28532         (SIZE): Likewise.
28533         (__mpn_add_n): Do not use BP_SYM
28534         * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
28535         "bp-asm.h".
28536         (PARMS): Do not use macros from bp-asm.h.
28537         (S1): Likewise.
28538         (SIZE): Likewise.
28539         (__mpn_addmul_1): Do not use BP_SYM
28540         * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
28541         "bp-asm.h".
28542         (PARMS): Do not use macros from bp-asm.h.
28543         (SIGMSK): Likewise.
28544         (_setjmp): Likewise.  Do not use BP_SYM.
28545         * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
28546         "bp-asm.h".
28547         (PARMS): Do not use macros from bp-asm.h.
28548         (SIGMSK): Likewise.
28549         (setjmp): Likewise.  Do not use BP_SYM.
28550         * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
28551         "bp-asm.h".
28552         (PARMS): Do not use macros from bp-asm.h.
28553         (__frexp): Do not use BP_SYM.
28554         (frexp): Likewise.
28555         * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
28556         "bp-asm.h".
28557         (PARMS): Do not use macros from bp-asm.h.
28558         (__frexpf): Do not use BP_SYM.
28559         (frexpf): Likewise.
28560         * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
28561         "bp-asm.h".
28562         (PARMS): Do not use macros from bp-asm.h.
28563         (__frexpl): Do not use BP_SYM.
28564         (frexpl): Likewise.
28565         * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
28566         "bp-asm.h".
28567         (PARMS): Do not use macros from bp-asm.h.
28568         (__remquo): Do not use BP_SYM.
28569         (remquo): Likewise.
28570         * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
28571         "bp-asm.h".
28572         (PARMS): Do not use macros from bp-asm.h.
28573         (__remquof): Do not use BP_SYM.
28574         (remquof): Likewise.
28575         * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
28576         "bp-asm.h".
28577         (PARMS): Do not use macros from bp-asm.h.
28578         (__remquol): Do not use BP_SYM.
28579         (remquol): Likewise.
28580         * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
28581         "bp-asm.h".
28582         (PARMS): Do not use macros from bp-asm.h.
28583         (DEST): Likewise.
28584         (SRC): Likewise.
28585         (strcat): Remove GKM FIXME comment.  Do not use BP_SYM.
28586         * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
28587         "bp-asm.h".
28588         (PARMS): Do not use macros from bp-asm.h.
28589         (strlen): Do not use BP_SYM.
28590         * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
28591         "bp-asm.h".
28592         (PARMS): Do not use macros from bp-asm.h.
28593         (S1): Likewise.
28594         (S2): Likewise.
28595         (SIZE): Likewise.
28596         (__mpn_add_n): Do not use BP_SYM.
28597         * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
28598         "bp-asm.h".
28599         (PARMS): Do not use macros from bp-asm.h.
28600         (S1): Likewise.
28601         (SIZE): Likewise.
28602         (__mpn_addmul_1): Do not use BP_SYM.
28603         * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
28604         weak_alias.
28605         (bzero): Likewise.
28606         * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
28607         "bp-asm.h".
28608         (PARMS): Do not use macros from bp-asm.h.
28609         (S): Likewise.
28610         (SIZE): Likewise.
28611         (__mpn_lshift): Do not use BP_SYM.
28612         * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
28613         "bp-asm.h".
28614         (PARMS): Do not use macros from bp-asm.h.
28615         (DEST): Likewise.
28616         (SRC): Likewise.
28617         (LEN): Likewise.
28618         (memcpy): Likewise.  Do not use BP_SYM.
28619         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
28620         libc_hidden_def and weak_alias.
28621         (mempcpy): Do not use BP_SYM in weak_alias.
28622         * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
28623         "bp-asm.h".
28624         (PARMS): Do not use macros from bp-asm.h.
28625         (DEST): Likewise.
28626         (LEN): Likewise.
28627         [!BZERO_P] (CHR): Likewise.
28628         (memset): Likewise.  Do not use BP_SYM.
28629         * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
28630         "bp-asm.h".
28631         (PARMS): Do not use macros from bp-asm.h.
28632         (S1): Likewise.
28633         (SIZE): Likewise.
28634         (__mpn_mul_1): Do not use BP_SYM.
28635         * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
28636         "bp-asm.h".
28637         (PARMS): Do not use macros from bp-asm.h.
28638         (S): Likewise.
28639         (SIZE): Likewise.
28640         (__mpn_rshift): Do not use BP_SYM.
28641         * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
28642         "bp-asm.h".
28643         (PARMS): Do not use macros from bp-asm.h.
28644         (STR): Likewise.
28645         (CHR): Likewise.
28646         (strchr): Likewise.  Do not use BP_SYM.
28647         (index): Do not use BP_SYM in weak_alias.
28648         * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
28649         "bp-asm.h".
28650         (PARMS): Do not use macros from bp-asm.h.
28651         (DEST): Likewise.
28652         (SRC): Likewise.
28653         (STRCPY): Likewise.  Remove GKM FIXME comment.  Do not use BP_SYM.
28654         * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
28655         "bp-asm.h".
28656         (PARMS): Do not use macros from bp-asm.h.
28657         (strlen): Do not use BP_SYM.
28658         * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
28659         "bp-asm.h".
28660         (PARMS): Do not use macros from bp-asm.h.
28661         (S1): Likewise.
28662         (S2): Likewise.
28663         (SIZE): Likewise.
28664         (__mpn_sub_n): Do not use BP_SYM.
28665         * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
28666         "bp-asm.h".
28667         (PARMS): Do not use macros from bp-asm.h.
28668         (S1): Likewise.
28669         (SIZE): Likewise.
28670         (__mpn_submul_1): Do not use BP_SYM.
28671         * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
28672         "bp-asm.h".
28673         (PARMS): Do not use macros from bp-asm.h.
28674         (S1): Likewise.
28675         (S2): Likewise.
28676         (SIZE): Likewise.
28677         (__mpn_add_n): Do not use BP_SYM.
28678         * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
28679         weak_alias.
28680         (bzero): Likewise.
28681         * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
28682         "bp-asm.h".
28683         (PARMS): Do not use macros from bp-asm.h.
28684         (BLK2): Likewise.
28685         (LEN): Likewise.
28686         (memcmp): Do not use BP_SYM.
28687         (bcmp): Do not use BP_SYM in weak_alias.
28688         * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
28689         "bp-asm.h".
28690         (PARMS): Do not use macros from bp-asm.h.
28691         (DEST): Likewise.
28692         (SRC): Likewise.
28693         (LEN): Likewise.
28694         (memcpy): Likewise.  Do not use BP_SYM.
28695         * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
28696         "bp-asm.h".
28697         (PARMS): Do not use macros from bp-asm.h.
28698         (DEST): Likewise.
28699         (SRC): Likewise.
28700         (LEN): Likewise.
28701         (memmove): Likewise.  Do not use BP_SYM.
28702         * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
28703         "bp-asm.h".
28704         (PARMS): Do not use macros from bp-asm.h.
28705         (DEST): Likewise.
28706         (SRC): Likewise.
28707         (LEN): Likewise.
28708         (__mempcpy): Likewise.  Do not use BP_SYM.
28709         (mempcpy): Do not use BP_SYM in weak_alias.
28710         * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
28711         "bp-asm.h".
28712         (PARMS): Do not use macros from bp-asm.h.
28713         (DEST): Likewise.
28714         (LEN): Likewise.
28715         [!BZERO_P] (CHR): Likewise.
28716         (memset): Likewise.  Do not use BP_SYM.
28717         * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
28718         "bp-asm.h".
28719         (PARMS): Do not use macros from bp-asm.h.
28720         (STR2): Likewise.
28721         (strcmp): Do not use BP_SYM.
28722         * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
28723         "bp-asm.h".
28724         (PARMS): Do not use macros from bp-asm.h.
28725         (STR): Likewise.
28726         (DELIM): Likewise.
28727         [USE_AS_STRTOK_R] (SAVE): Likewise.
28728         (FUNCTION): Likewise.  Do not use BP_SYM.
28729         * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
28730         aliases.
28731         (strtok_r): Likewise.
28732         (__GI___strtok_r): Likewise.
28733         * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
28734         (PARMS): Do not use macros from bp-asm.h.
28735         (S): Likewise.
28736         (SIZE): Likewise.
28737         (__mpn_lshift): Do not use BP_SYM.
28738         * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
28739         (PARMS): Do not use macros from bp-asm.h.
28740         (STR): Likewise.
28741         (CHR): Likewise.
28742         (__memchr): Do not use BP_SYM.
28743         (memchr): Do not use BP_SYM in weak_alias.
28744         * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
28745         (PARMS): Do not use macros from bp-asm.h.
28746         (BLK2): Likewise.
28747         (LEN): Likewise.
28748         (memcmp): Do not use BP_SYM.
28749         (bcmp): Do not use BP_SYM in weak_alias.
28750         * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
28751         (PARMS): Do not use macros from bp-asm.h.
28752         (S1): Likewise.
28753         (SIZE): Likewise.
28754         (__mpn_mul_1): Do not use BP_SYM.
28755         * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
28756         "bp-asm.h".
28757         (PARMS): Do not use macros from bp-asm.h.
28758         (STR): Likewise.
28759         (CHR): Likewise.
28760         (__rawmemchr): Do not use BP_SYM.
28761         (rawmemchr): Do not use BP_SYM in weak_alias.
28762         * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
28763         (PARMS): Do not use macros from bp-asm.h.
28764         (S): Likewise.
28765         (SIZE): Likewise.
28766         (__mpn_rshift): Do not use BP_SYM.
28767         * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
28768         (PARMS): Do not use macros from bp-asm.h.
28769         (SIGMSK): Likewise.
28770         (__sigsetjmp): Likewise.  Do not use BP_SYM.
28771         * sysdeps/i386/start.S: Do not include "bp-sym.h".
28772         (_start): Do not use BP_SYM.
28773         * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
28774         (PARMS): Do not use macros from bp-asm.h.
28775         (DEST): Likewise.
28776         (SRC): Likewise.
28777         (__stpcpy): Likewise.  Do not use BP_SYM.
28778         (stpcpy): Do not use BP_SYM in weak_alias.
28779         * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
28780         "bp-asm.h".
28781         (PARMS): Do not use macros from bp-asm.h.
28782         (DEST): Likewise.
28783         (SRC): Likewise.
28784         (LEN): Likewise.
28785         (__stpncpy): Likewise.  Do not use BP_SYM.
28786         (stpncpy): Do not use BP_SYM in weak_alias.
28787         * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
28788         (PARMS): Do not use macros from bp-asm.h.
28789         (STR): Likewise.
28790         (CHR): Likewise.
28791         (strchr): Likewise.  Do not use BP_SYM.
28792         * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
28793         "bp-asm.h".
28794         (PARMS): Do not use macros from bp-asm.h.
28795         (STR): Likewise.
28796         (CHR): Likewise.
28797         (__strchrnul): Likewise.  Do not use BP_SYM.
28798         (strchrnul): Do not use BP_SYM in weak_alias.
28799         * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
28800         "bp-asm.h".
28801         (PARMS): Do not use macros from bp-asm.h.
28802         (STOP): Likewise.
28803         (strcspn): Do not use BP_SYM.
28804         * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
28805         "bp-asm.h".
28806         (PARMS): Do not use macros from bp-asm.h.
28807         (STR): Likewise.
28808         (STOP): Likewise.
28809         (strpbrk): Likewise.  Do not use BP_SYM.
28810         * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
28811         "bp-asm.h".
28812         (PARMS): Do not use macros from bp-asm.h.
28813         (STR): Likewise.
28814         (CHR): Likewise.
28815         (strrchr): Likewise.  Do not use BP_SYM.
28816         * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
28817         (PARMS): Do not use macros from bp-asm.h.
28818         (SKIP): Likewise.
28819         (strspn): Do not use BP_SYM.
28820         * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
28821         (PARMS): Do not use macros from bp-asm.h.
28822         (STR): Likewise.
28823         (DELIM): Likewise.
28824         (SAVE): Likewise.
28825         (FUNCTION): Likewise.  Do not use BP_SYM.
28826         * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
28827         aliases.
28828         (strtok_r): Likewise.
28829         (__GI___strtok_r): Likewise.
28830         * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
28831         (PARMS): Do not use macros from bp-asm.h.
28832         (S1): Likewise.
28833         (S2): Likewise.
28834         (SIZE): Likewise.
28835         (__mpn_sub_n): Do not use BP_SYM.
28836         * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
28837         "bp-asm.h".
28838         (PARMS): Do not use macros from bp-asm.h.
28839         (S1): Likewise.
28840         (SIZE): Likewise.
28841         (__mpn_submul_1): Do not use BP_SYM.
28842         * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
28843         <bp-sym.h>.
28844         * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
28845         and <bp-asm.h>.
28846         (PARMS): Do not use macros from bp-asm.h.
28847         (FLAGS): Likewise.
28848         (PTID): Likewise.
28849         (TLS): Likewise.
28850         (CTID): Likewise.
28851         (__clone): Do not use BP_SYM.
28852         (clone): Do not use BP_SYM in weak_alias.
28853         * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
28854         and <bp-asm.h>.
28855         (PARMS): Do not use macros from bp-asm.h.
28856         (LEN): Likewise.
28857         (__mmap64): Do not use BP_SYM.
28858         (mmap64): Do not use BP_SYM in weak_alias.
28859         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
28860         <bp-sym.h> and <bp-asm.h>.
28861         (PARMS): Do not use macros from bp-asm.h.
28862         (__posix_fadvise64_l64): Do not use BP_SYM.
28863         * sysdeps/unix/sysv/linux/i386/semtimedop.S
28864         (PARMS): Do not use macros from bp-asm.h.
28865         (NSOPS): Likewise.
28866         (semtimedop): Do not use BP_SYM.
28867         * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
28868         and <bp-asm.h>.
28869
28870 2013-02-21  Allan McRae  <allan@archlinux.org>
28871
28872         * manual/message.texi (Charset conversion in gettext):
28873         Move @end statement to beginning of line.
28874
28875 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
28876
28877         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
28878         static.
28879         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
28880         Likewise.
28881
28882         * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
28883         (denorm): Likewise.
28884         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
28885         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
28886
28887 2013-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28888
28889         * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
28890         tail-call to the resolved function if pltexit isn't needed.
28891
28892 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
28893
28894         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
28895         or Y being zero as being unlikely.
28896         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
28897         Likewise.
28898
28899 2013-02-20  Carlos O'Donell  <carlos@redhat.com>
28900
28901         * manual/nss.texi (System Databases and Name Service Switch):
28902         Remove frobnicate @pxref.
28903
28904 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
28905
28906         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
28907         __attribute__ ((unused)) to __attribute__ ((__unused__)).
28908
28909 2013-02-20  Petr Machata  <pmachata@redhat.com>
28910
28911         * elf/elf.h (R_ARM_TARGET1): New macro.
28912         (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
28913         (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
28914         (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
28915         (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
28916         (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
28917         (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
28918         (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
28919         (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
28920         (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
28921         (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
28922         (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
28923         (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
28924         (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
28925         (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
28926         (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
28927         (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
28928         (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
28929         (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
28930         (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
28931         (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
28932         (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
28933         (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
28934         (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
28935         (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
28936         (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
28937         (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
28938         (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
28939         (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
28940         (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
28941         (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
28942         (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
28943         (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
28944         (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
28945         (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
28946         (R_ARM_THM_GOT_BREL12): Likewise.
28947         (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
28948         (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
28949         (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
28950         (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
28951         (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
28952         (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
28953         (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
28954         (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
28955         (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
28956
28957 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
28958
28959         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
28960         __attribute_used__ to __attribute__ ((unused)).
28961
28962 2013-02-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
28963
28964         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
28965         powerpc mpa.c.
28966         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
28967         comment formatting.
28968         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
28969
28970 2013-02-19  Joseph Myers  <joseph@codesourcery.com>
28971
28972         [BZ #13550]
28973         * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
28974         Remove macro.
28975         (ENTER): Remove both macro definitions.
28976         (LEAVE): Likewise.
28977         (CHECK_BOUNDS_LOW): Likewise.
28978         (CHECK_BOUNDS_HIGH): Likewise.
28979         (CHECK_BOUNDS_BOTH): Likewise.
28980         (CHECK_BOUNDS_BOTH_WIDE): Likewise.
28981         (RETURN_BOUNDED_POINTER): Likewise.
28982         (RETURN_NULL_BOUNDED_POINTER): Likewise.
28983         (PUSH_ERRNO_LOCATION_RETURN): Likewise.
28984         (POP_ERRNO_LOCATION_RETURN): Likewise.
28985         * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
28986         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
28987         * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
28988         macros.
28989         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28990         * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
28991         * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
28992         * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
28993         * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
28994         * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
28995         * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
28996         * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
28997         * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
28998         * sysdeps/i386/i486/strcat.S (strcat): Likewise.
28999         * sysdeps/i386/i486/strlen.S (strlen): Likewise.
29000         * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
29001         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29002         * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
29003         removed macros.
29004         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29005         * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
29006         macros.
29007         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29008         * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
29009         * sysdeps/i386/i586/memset.S (memset): Likewise.
29010         * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
29011         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29012         * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
29013         macros.
29014         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29015         * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
29016         Change uses of L(2) to L(out).
29017         * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
29018         * sysdeps/i386/i586/strlen.S (strlen): Likewise.
29019         * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
29020         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29021         * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
29022         removed macros.
29023         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29024         * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
29025         macros.
29026         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29027         * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
29028         (RETURN): Do not use macro LEAVE.
29029         * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
29030         * sysdeps/i386/i686/memmove.S (memmove): Likewise.
29031         * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
29032         * sysdeps/i386/i686/memset.S (memset): Likewise.
29033         * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
29034         (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
29035         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
29036         * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
29037         Likewise.
29038         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29039         (FUNCTION): Do not use removed macros.  Combine labels L(1_1),
29040         L(1_2) and L(1_3) into L(1).
29041         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
29042         * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
29043         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29044         * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
29045         (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
29046         * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
29047         * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
29048         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29049         * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
29050         macros.
29051         * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
29052         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29053         * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
29054         * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
29055         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
29056         (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29057         * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
29058         * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
29059         * sysdeps/i386/strcspn.S (strcspn): Likewise.
29060         * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
29061         * sysdeps/i386/strrchr.S (strrchr): Likewise.
29062         * sysdeps/i386/strspn.S (strspn): Likewise.
29063         * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
29064         conditional code.
29065         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29066         (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
29067         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
29068         (FUNCTION): Do not use removed macros.  Combine labels L(1_2) and
29069         L(1_3) into L(1_1).
29070         * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
29071         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29072         * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
29073         macros.
29074         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29075
29076 2013-02-19  Jakub Jelinek  <jakub@redhat.com>
29077
29078         * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
29079         macro.
29080
29081 2013-02-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
29082
29083         * math/atest-exp.c (exp_mpn): Remove ROUND.
29084         * math/atest-exp2.c (exp_mpn): Likewise.
29085         * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
29086
29087         * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
29088         * stdlib/tst-tls-atexit-lib.c: Likewise.
29089         * stdlib/tst-tls-atexit.c: Likewise.
29090
29091 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29092
29093         * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
29094         and __attribute_alloc_size__.
29095
29096 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29097
29098         * include/programs/xmalloc.h: Change __attribute_alloc_size to
29099         __attribute_alloc_size__.
29100         * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
29101         * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
29102
29103 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29104
29105         * include/programs/xmalloc.h: New file.
29106         * catgets/gencat.c: Include it.
29107         (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
29108         * elf/pldd.c: Likewise.
29109         * iconv/iconv_charmap.c: Likewise.
29110         * iconv/iconvconfig.c: Likewise.
29111         * iconv/strtab.c: Likewise.
29112         * locale/programs/locale.c: Likewise.
29113         * locale/programs/localedef.h: Likewise.
29114         * locale/programs/simple-hash.c: Likewise.
29115         * nscd/nscd.h: Likewise.
29116         * nss/makedb.c: Likewise.
29117         * sysdeps/generic/ldconfig.h: Likewise.
29118
29119 2013-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
29120
29121         * Versions.def: Add GLIBC_2.18.
29122         * include/link.h (struct link_map): New member l_tls_dtor_count.
29123         * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
29124         (__call_tls_dtors): Likewise.
29125         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
29126         __cxa_thread_atexit_impl.
29127         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
29128         Likewise.
29129         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
29130         Likewise.
29131         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
29132         Likewise.
29133         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
29134         Likewise.
29135         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
29136         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
29137         Likewise.
29138         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
29139         Likewise.
29140         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
29141         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
29142         Likewise.
29143         * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
29144         (tests): Add test case tst-tls-atexit.
29145         (modules-names): Add shared library for tst-tls-atexit.
29146         * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
29147         (GLIBC_PRIVATE): Add __call_tls_dtors.
29148         * stdlib/cxa_thread_atexit_impl.c: New file with helper function
29149         for libstdc++.
29150         * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
29151         * stdlib/tst-tls-atexit.c: New test case.
29152         * stdlib/tst-tls-atexit-lib.c: New test case.
29153
29154         * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
29155
29156         * elf/Versions (ld): Add _dl_find_dso_for_object.
29157         * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
29158         * elf/dl-open.c (_dl_find_dso_for_object): New function.
29159         (dl_open_worker): Use _dl_find_dso_for_object.
29160         * elf/dl-sym.c (do_sym): Likewise.
29161         * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
29162
29163 2013-02-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
29164
29165         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
29166         Syntactic changes only.
29167         (_dl_runtime_profile): Do a tail-call to the resolved function.
29168
29169 2013-02-17  Joseph Myers  <joseph@codesourcery.com>
29170
29171         [BZ #13550]
29172         * sysdeps/x86_64/bp-asm.h: Remove file.
29173         * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
29174         <bp-sym.h> and <bp-asm.h>.
29175         (__clone): Do not use BP_SYM.
29176         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
29177         <bp-sym.h> and <bp-asm.h>.
29178         * sysdeps/unix/x86_64/sysdep.S: Likewise.
29179         * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
29180         "bp-asm.h".
29181         (_setjmp): Do not use BP_SYM.
29182         * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
29183         "bp-asm.h".
29184         (setjmp): Do not use BP_SYM.
29185         * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
29186         libc_hidden_def.
29187         (mempcpy): Do not use BP_SYM in weak_alias.
29188         * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
29189         "bp-asm.h".
29190         (strchr): Do not use BP_SYM.
29191         * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
29192         "bp-asm.h".
29193         * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
29194         * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
29195         (_start): Do not use BP_SYM.
29196         * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
29197         "bp-asm.h".
29198         (strcat): Do not use BP_SYM.
29199         * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
29200         "bp-asm.h".
29201         (STRCMP): Do not use BP_SYM.
29202         * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
29203         "bp-asm.h".
29204         (STRCPY): Do not use BP_SYM.
29205         * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
29206         "bp-asm.h".
29207         * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
29208         "bp-asm.h".
29209         (FUNCTION): Do not use BP_SYM.
29210         * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
29211         weak_alias.
29212         (__GI___strtok_r): Do not use BP_SYM in strong_alias.
29213
29214 2013-02-17  Andreas Jaeger  <aj@suse.de>
29215
29216         * time/Versions: Sort entries.
29217         * string/Versions: Likewise.
29218         * resolv/Versions: Likewise.
29219         * posix/Versions: Likewise.
29220         * iconv/Versions: Likewise.
29221         * elf/Versions: Likewise.
29222         * wcsmbs/Versions: Likewise.
29223
29224 2013-02-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
29225
29226         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
29227         loop termination condition.
29228
29229         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
29230         variable to calculate EZ.
29231         (__sqr): Likewise.
29232
29233         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
29234         the lower precision input.
29235
29236 2013-02-15  Joseph Myers  <joseph@codesourcery.com>
29237
29238         [BZ #13550]
29239         * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
29240         [!link-extra-libs] (link-extra-libs-bounded): Likewise.
29241         (run-via-rtld-prefix): Do not handle %-bp tests.
29242         (test-via-rtld-prefix): Do not mention %-bp tests in comment.
29243         (all-object-suffixes): Remove .ob.
29244         (bppfx): Remove variable.
29245         [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
29246         [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
29247         [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
29248         [$(build-bounded) = yes] (libtype.ob): Likewise.
29249         * Makerules (elide-routines.ob): Remove variable.
29250         (do-tests-clean): Do not handle *-bp.out.
29251         (common-mostlyclean): Do not handle *-bp and *-bp.out.
29252         * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
29253         [$(build-bounded) = yes] (xtests-bp.out): Likewise.
29254         (tests): Do not include $(tests-bp.out).
29255         (xtests): Do not include $(xtests-bp.out).
29256         [$(build-bounded) = yes] (binaries-bounded): Remove variable.
29257         [$(build-bounded) = yes] ($(addprefix
29258         $(objpfx),$(binaries-bounded))): Remove rule.
29259         ($(objpfx)%-bp.out): Remove rule.
29260         * config.make.in (build-bounded): Remove variable.
29261         * crypt/Makefile [$(build-bounded) = yes]
29262         ($(tests:%=$(objpfx)%-bp)): Remove dependency.
29263         * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
29264         append to variable.
29265         [$(build-bounded) = yes] (install-lib): Likewise.
29266         [$(build-bounded) = yes] (generated): Likewise.
29267         [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
29268         Remove rule.
29269         * intl/Makefile [$(build-bounded) = yes]
29270         ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
29271         * math/Makefile [$(build-bounded) = yes]
29272         ($(tests:%=$(objpfx)%-bp): Likewise.
29273         * misc/Makefile [$(build-bounded) = yes]
29274         ($(objpfx)tst-tsearch-bp): Likewise.
29275         * nptl/Makeconfig (bounded-thread-library): Remove variable.
29276         * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
29277         Remove dependency.
29278         * string/Makefile (o-objects.ob): Remove variable.
29279         * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
29280         (CFLAGS-.ob): Remove variable.
29281         [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
29282         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
29283         both definitions of variable.
29284         * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
29285         (ASFLAGS-.ob): Remove variable.
29286
29287 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
29288
29289         [BZ #13550]
29290         * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
29291         Remove __BOUNDED_POINTERS__ from condition.
29292         * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
29293         * string/bits/string2.h [!__NO_STRING_INLINES &&
29294         !__BOUNDED_POINTERS__]: Likewise.
29295         * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
29296         Likewise.
29297         * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
29298         Remove conditional code.
29299         * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
29300         __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
29301         !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
29302         condition.
29303
29304         [BZ #13550]
29305         * csu/libc-start.c: Do not include <bp-sym.h>.
29306         [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
29307         * elf/dl-open.c: Do not include <bp-sym.h>.
29308         (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
29309         * math/fegetenv.c: Do not include <bp-sym.h>.
29310         (fegetenv): Do not use BP_SYM in versioned symbols.
29311         * nptl/sysdeps/pthread/bits/libc-lockP.h
29312         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
29313         <bp-sym.h>.
29314         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29315         (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
29316         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29317         (__pthread_mutex_destroy): Likewise.
29318         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29319         (__pthread_mutex_lock): Likewise.
29320         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29321         (__pthread_mutex_trylock): Likewise.
29322         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29323         (__pthread_mutex_unlock): Likewise.
29324         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29325         (__pthread_mutexattr_init): Likewise.
29326         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29327         (__pthread_mutexattr_destroy): Likewise.
29328         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29329         (__pthread_mutexattr_settype): Likewise.
29330         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29331         (__pthread_rwlock_init): Likewise.
29332         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29333         (__pthread_rwlock_destroy): Likewise.
29334         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29335         (__pthread_rwlock_rdlock): Likewise.
29336         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29337         (__pthread_rwlock_tryrdlock): Likewise.
29338         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29339         (__pthread_rwlock_wrlock): Likewise.
29340         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29341         (__pthread_rwlock_trywrlock): Likewise.
29342         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29343         (__pthread_rwlock_unlock): Likewise.
29344         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29345         (__pthread_key_create): Likewise.
29346         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29347         (__pthread_setspecific): Likewise.
29348         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29349         (__pthread_getspecific): Likewise.
29350         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
29351         Likewise.
29352         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29353         (_pthread_cleanup_push_defer): Likewise.
29354         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29355         (_pthread_cleanup_pop_restore): Likewise.
29356         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29357         (pthread_setcancelstate): Likewise.
29358         * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
29359         <bp-sym.h>.
29360         [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
29361         (memchr): Do not use BP_SYM in weak_alias.
29362         * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
29363         (fegetenv): Do not use BP_SYM in versioned symbols.
29364         * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
29365         (fesetenv): Do not use BP_SYM in versioned symbols.
29366         * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
29367         (feupdateenv): Do not use BP_SYM in versioned symbols.
29368         * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
29369         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
29370         * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
29371         (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
29372         (open64): Do not use BP_SYM in weak_alias.
29373         * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
29374         (fegetenv): Do not use BP_SYM in versioned symbols.
29375         * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
29376         (fesetenv): Do not use BP_SYM in versioned symbols.
29377         * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
29378         (feupdateenv): Do not use BP_SYM in versioned symbols.
29379         * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
29380         (fegetexceptflag): Do not use BP_SYM in versioned symbols.
29381         * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
29382         (feraiseexcept): Do not use BP_SYM in versioned symbols.
29383         * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
29384         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
29385         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
29386         <bp-sym.h>.
29387         (__libc_start_main): Do not use BP_SYM.
29388
29389 2013-02-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
29390
29391         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
29392         redundant return line.
29393         (norm): Likewise.
29394         (denorm): Likewise.
29395         (dbl_mp): Likewise.
29396         (sub_magnitudes): Likewise.
29397         (__add): Likewise.
29398         (__sub): Likewise.
29399         (__mul): Likewise.
29400         (__inv): Likewise.
29401         (__dvd): Likewise.
29402         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
29403         (norm): Likewise.
29404         (denorm): Likewise.
29405         (dbl_mp): Likewise.
29406         (sub_magnitudes): Likewise.
29407         (__add): Likewise.
29408         (__sub): Likewise.
29409         (__mul): Likewise.
29410         (__inv): Likewise.
29411         (__dvd): Likewise.
29412
29413         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
29414         instead of __mul.
29415         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
29416         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
29417         (cc32): Likewise.
29418
29419         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
29420         * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
29421         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
29422         of __mul for squares.
29423         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
29424         function
29425         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
29426         Likewise.
29427         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
29428         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
29429
29430 2013-02-13  Joseph Myers  <joseph@codesourcery.com>
29431
29432         [BZ #13550]
29433         * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
29434         code.
29435         * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
29436         prototype or function definition.  Rename ubp_* variables and
29437         parameters.  Remove argv definitions conditional on
29438         [__BOUNDED_POINTERS__].
29439         * debug/backtrace.c (__backtrace): Do not use __unbounded.
29440         * elf/dl-runtime.c (_dl_fixup): Likewise.
29441         * include/set-hooks.h (RUN_HOOK): Likewise.
29442         * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
29443         definition.
29444         * string/strcpy.c (strcpy): Do not use __unbounded.
29445         * sysdeps/generic/frame.h (struct layout): Likewise.
29446         * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
29447         * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
29448         * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
29449         * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
29450         * sysdeps/sparc/backtrace.c (struct layout): Likewise.
29451         (__backtrace): Likewise.
29452         * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
29453         use __ptrvalue.
29454         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
29455         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
29456         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
29457         Likewise.
29458         * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
29459         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
29460         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
29461         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
29462         * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
29463         Do not use __unbounded.
29464         * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
29465         Rename __unboundedrlimits parameter to rlimits in prototype.
29466         * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
29467         Do not use __unbounded.
29468         * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
29469         not use __ptrvalue.
29470         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
29471         * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
29472         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
29473         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
29474         __ptrvalue or __unbounded.
29475         (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
29476         * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
29477         use __unbounded.
29478         (__new_msgctl): Do not use __ptrvalue.
29479         * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
29480         __unbounded.
29481         (__libc_msgrcv): Do not use __ptrvalue.
29482         * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
29483         startup_info): Do not use __unbounded.
29484         (__libc_start_main): Likewise.  Rename ubp_* variables and
29485         parameters.  Remove argv definitions conditional on
29486         [__BOUNDED_POINTERS__].
29487         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
29488         __ptrvalue.
29489         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
29490         use __unbounded.
29491         * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
29492         or __ptrvalue.
29493         * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
29494         use __unbounded.
29495         (__new_shmctl): Do not use __ptrvalue.
29496         * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
29497         * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
29498         Likewise.
29499         * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
29500         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
29501         (__libc_sigaction): Likewise.
29502         * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
29503         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
29504         Likewise.
29505         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
29506
29507 2013-02-13   Ondřej Bílka  <neleai@seznam.cz>
29508
29509         * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
29510
29511         * string/mempcpy.c: Implement by calling memcpy.
29512
29513 2013-02-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
29514
29515         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
29516
29517         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
29518         evaluation.
29519
29520         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
29521         values in the mantissa.
29522
29523         * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
29524         minimize writes to Z.
29525         (sub_magnitudes): Simplify code a bit.
29526
29527 2013-02-12  Roland McGrath  <roland@hack.frob.com>
29528
29529         * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
29530         from the message.  The linker prefixes all warnings with that already.
29531
29532 2013-02-12  Andreas Schwab  <schwab@suse.de>
29533
29534         [BZ #15078]
29535         * posix/regexec.c (extend_buffers): Add parameter min_len.
29536         (check_matching): Pass minimum needed length.
29537         (clean_state_log_if_needed): Likewise.
29538         (get_subexp): Likewise.
29539         * posix/Makefile (tests): Add bug-regex34.
29540         (bug-regex34-ENV): Define.
29541         * posix/bug-regex34.c: New file.
29542
29543         [BZ #11561]
29544         * posix/regcomp.c (parse_bracket_exp): When looking up collating
29545         elements compare against the byte sequence of it, not its name.
29546         * posix/Makefile (tests): Add bug-regex35.
29547         (bug-regex35-ENV): Define.
29548         * posix/bug-regex35.c: New file.
29549
29550 2013-02-11  Tom de Vries  <tom@codesourcery.com>
29551
29552         * string/str-two-way.h:  Fix typo RESULT_TYPE -> RETURN_TYPE in
29553         comment.
29554         Add RET0_IF_0 and CHECK_EOL to macro list in comment.
29555         (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
29556         (CHECK_EOL): Add undef.
29557
29558 2013-02-11   Ondřej Bílka  <neleai@seznam.cz>
29559
29560         * bits/stdlib-bsearch.h: New file.
29561         * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
29562         * stdlib/stdlib.h: Likewise.
29563
29564 2013-02-11  Roland McGrath  <roland@hack.frob.com>
29565
29566         * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
29567         * manual/errno.texi (Error Messages): Fix typo in error_print_progname
29568         declaration.
29569         * manual/search.texi (Array Search Function): Add missing const in
29570         lfind prototype.
29571         * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
29572         declaration to use rlim_t.
29573         (Basic Scheduling Functions): Remove erroneous const from
29574         sched_getparam prototype.  Remove erroneous * from
29575         sched_get_priority_max and sched_get_priority_min prototypes.
29576         (Resource Usage): Fix summary @comment on vtimes to refer to
29577         sys/vtimes.h rather than vtimes.h.
29578         Add missing *s in vtimes prototype.
29579         (Limits on Resources): Fix ulimit prototype to return long int.
29580         * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
29581         prototypes to use long int rather than double.
29582         (BSD Random): Fix initstate and setstate to use char *, not void *.
29583         * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
29584         prototype to make second argument 'struct aiocb64 *const[]'.
29585         Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
29586         (Status of AIO Operations): Remove erroneous const in aio_return and
29587         aio_return64 prototypes.
29588         (Synchronizing I/O): Fix sync prototype to return void.
29589         * manual/startup.texi (Suboptions): Remove an erroneous const in
29590         getsubopt prototype.
29591         * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
29592         * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
29593         use size_t rather than int.
29594         (Scanning All Users): Likewise for getpwent_r.
29595         (Setting Groups): Add missing const to setgroups prototype.
29596         * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
29597         * manual/socket.texi (Host Names): Fix gethostbyaddr and
29598         gethostbyaddr_r prototypes to use socklen_t rather than size_t and
29599         'const void *' rather than 'const char *'.
29600         (Host Address Functions): Likewise for inet_ntop.
29601         (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
29602         (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
29603         ssize_t for return value.
29604         (Sending Data): Likewise for send, sendto, sendmsg.
29605         (Socket Option Functions): Add a missing const in setsockopt prototype.
29606         * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
29607         use wchar_t for the argument.
29608         (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
29609         * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
29610         take no arguments.
29611         (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
29612         double/float/long double for second argument.
29613         Fix return types of significand, significandf, significandl.
29614         * manual/filesys.texi (Setting Permissions): Use mode_t for second
29615         argument in fchmod prototype.
29616         (File Owner): Use uid_t and gid_t in fchown prototype.
29617         (File Times): Add const to utimes, futimes, and lutimes prototypes.
29618         (Making Special Files): Use mode_t and dev_t in mknod prototype.
29619         (Scanning Directory Content): Fix scandir and scandir64 prototypes to
29620         use 'const struct dirent **' as argument types to CMP function pointer
29621         argument.
29622         (Symbolic Links): Fix readlink prototype with ssize_t as return value.
29623         (File Times): Fix summary magic @comment for struct utimbuf and utime
29624         to refer to utime.h, not time.h.
29625         * manual/string.texi (Argz Functions): Add missing const in
29626         argz_extract and argz_next prototypes.
29627         (Finding Tokens in a String): Likewise for basename.
29628         (String/Array Comparison): Fix typo in wcscasecmp prototype.
29629         (Copying and Concatenation): Fix typo in wmemmove prototype.
29630         * manual/signal.texi (Using Pause): Use (void) in pause prototype.
29631         (Signal Stack): Remove erroneous const in sigstack prototype.
29632         * manual/time.texi (Setting an Alarm): Add missing const in setitimer
29633         prototype.
29634         (Simple Calendar Time): Likewise for stime.
29635         * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
29636         prototype.
29637         * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
29638         say sys/sysctl.h instead.
29639         * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
29640         and vsyslog prototypes.
29641
29642 2013-02-11  Tom de Vries  <tom@codesourcery.com>
29643
29644         * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
29645         Remove.
29646
29647 2013-02-11  Roland McGrath  <roland@hack.frob.com>
29648
29649         * misc/sys/mman.h: Fix typo in mremap comment.
29650
29651 2013-02-08  Roland McGrath  <roland@hack.frob.com>
29652
29653         * manual/examples/mkfsock.c (make_named_socket): Don't add one for
29654         the '\0' terminator.
29655
29656 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
29657
29658         [BZ #13550]
29659         * debug/segfault.c: Don't include <bp-checks.h>.
29660         * sysdeps/generic/bp-checks.h: Remove file.
29661         * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
29662         (__GETDENTS): Don't use CHECK_N.
29663         * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
29664         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
29665         (__getgroups): Don't use CHECK_N.
29666         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
29667         (setgroups): Don't use CHECK_N.
29668         * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
29669         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
29670         (__libc_msgrcv): Don't use CHECK_N.
29671         * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
29672         (__libc_msgsnd): Don't use CHECK_N.
29673         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
29674         <bp-checks.h>.
29675         (__libc_pread): Don't use CHECK_N.
29676         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
29677         include <bp-checks.h>.
29678         (__libc_pread64): Don't use CHECK_N.
29679         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
29680         include <bp-checks.h>.
29681         (__libc_pwrite): Don't use CHECK_N.
29682         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
29683         include <bp-checks.h>.
29684         (__libc_pwrite64): Don't use CHECK_N.
29685         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
29686         <bp-checks.h>.
29687         (__libc_pread): Don't use CHECK_N.
29688         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
29689         include <bp-checks.h>.
29690         (__libc_pread64): Don't use CHECK_N.
29691         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
29692         include <bp-checks.h>.
29693         (__libc_pwrite): Don't use CHECK_N.
29694         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
29695         include <bp-checks.h>.
29696         (__libc_pwrite64): Don't use CHECK_N.
29697         * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
29698         (do_pread): Don't use CHECK_N.
29699         * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
29700         (do_pread64): Don't use CHECK_N.
29701         * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
29702         (do_pwrite): Don't use CHECK_N.
29703         * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
29704         (do_pwrite64): Don't use CHECK_N.
29705         * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
29706         (__libc_readv): Don't use CHECK_N.
29707         * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
29708         (semop): Don't use CHECK_N.
29709         * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
29710         <bp-checks.h>.
29711         (semtimedop): Don't use CHECK_N.
29712         * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
29713         (__libc_pread): Don't use CHECK_N.
29714         * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
29715         <bp-checks.h>.
29716         (__libc_pread64): Don't use CHECK_N.
29717         * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
29718         <bp-checks.h>.
29719         (__libc_pwrite): Don't use CHECK_N.
29720         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
29721         <bp-checks.h>.
29722         (__libc_pwrite64): Don't use CHECK_N.
29723         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
29724         <bp-checks.h>.
29725         (__libc_msgrcv): Don't use CHECK_N.
29726         * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
29727         (__sysctl): Don't use CHECK_N.  Remove GKM FIXME comment.
29728         * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
29729         (__libc_writev): Don't use CHECK_N.
29730
29731 2013-02-08  Roland McGrath  <roland@hack.frob.com>
29732
29733         * string/strcpy.c: Removed unused variable.
29734
29735         * Makeconfig (+sysdep-includes): Define with := rather than =.
29736         Use an existing include/ subdir of each sysdeps dir before it.
29737
29738 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29739
29740         * nscd/connection.c (register_traced_file): Comment function.
29741         [HAVE_INOTIFY] (union __inev): Define.
29742         [HAVE_INOTIFY] (inotify_check_files): New function.
29743         [HAVE_INOTIFY] (clear_db_cache): Likewise.
29744         [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
29745         clear_db_cache.
29746         [HAVE_INOTIFY] (main_loop_epoll): Likewise.
29747
29748 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29749
29750         * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
29751         loaded if not already and that a failure is permanent.
29752
29753 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29754
29755         [BZ #15006]
29756         * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
29757         * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
29758
29759 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
29760
29761         [BZ #13550]
29762         * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
29763         (CHECK_1_NULL_OK): Likewise.
29764         * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
29765         (__fxstat): Do not use CHECK_1.
29766         * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
29767         <bp-checks.h>.
29768         (___fxstat64): Do not use CHECK_1.
29769         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
29770         <bp-checks.h>.
29771         (__fxstatat): Do not use CHECK_1.
29772         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
29773         <bp-checks.h>.
29774         (__fxstatat64): Do not use CHECK_1.
29775         * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
29776         <bp-checks.h>.
29777         (__fxstat): Do not use CHECK_1.
29778         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
29779         <bp-checks.h>.
29780         (__fxstatat): Do not use CHECK_1.
29781         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
29782         <bp-checks.h>.
29783         (__getresgid): Do not use CHECK_1.
29784         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
29785         <bp-checks.h>.
29786         (__getresuid): Do not use CHECK_1.
29787         * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
29788         <bp-checks.h>.
29789         (__lxstat): Do not use CHECK_1.
29790         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
29791         <bp-checks.h>.
29792         (__old_msgctl): Do not use CHECK_1.
29793         (__new_msgctl): Likewise.
29794         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
29795         <bp-checks.h>.
29796         (__new_setrlimit): Do not use CHECK_1.
29797         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
29798         <bp-checks.h>.
29799         (__old_shmctl): Do not use CHECK_1.
29800         (__new_shmctl): Likewise.
29801         * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
29802         <bp-checks.h>.
29803         (__xstat): Do not use CHECK_1.
29804         * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
29805         (__lxstat): Do not use CHECK_1.
29806         * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
29807         <bp-checks.h>.
29808         (___lxstat64): Do not use CHECK_1.
29809         * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
29810         (__old_msgctl): Do not use CHECK_1.
29811         (__new_msgctl): Likewise.
29812         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
29813         <bp-checks.h>.
29814         (__gettimeofday): Do not use CHECK_1.
29815         * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
29816         (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
29817         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
29818         <bp-checks.h>.
29819         (__gettimeofday): Do not use CHECK_1.
29820         * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
29821         (__old_shmctl): Do not use CHECK_1_NULL_OK.
29822         (__new_shmctl): Do not use CHECK_1.
29823         * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
29824         <bp-checks.h>.
29825         (do_sigtimedwait): Do not use CHECK_1.
29826         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
29827         <bp-checks.h>.
29828         (do_sigwaitinfo): Do not use CHECK_1.
29829         * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
29830         <bp-checks.h>.
29831         (msgctl): Do not use CHECK_1.
29832         * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
29833         <bp-checks.h>.
29834         (shmctl): Do not use CHECK_1.
29835         * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
29836         (ustat): Do not use CHECK_1.
29837         * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
29838         <bp-checks.h>.
29839         (__fxstat): Do not use CHECK_1.
29840         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
29841         <bp-checks.h>.
29842         (__fxstatat): Do not use CHECK_1.
29843         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
29844         <bp-checks.h>.
29845         (__lxstat): Do not use CHECK_1.
29846         * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
29847         <bp-checks.h>.
29848         (__xstat): Do not use CHECK_1.
29849         * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
29850         (__xstat): Do not use CHECK_1.
29851         * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
29852         (___xstat64): Do not use CHECK_1.
29853
29854         [BZ #13550]
29855         * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
29856         definitions.
29857         (CHECK_BOUNDS_HIGH): Likewise.
29858         * string/strcpy.c: Do not include <bp-checks.h>.
29859         (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
29860
29861 2013-02-07  Roland McGrath  <roland@hack.frob.com>
29862
29863         * nscd/nscd-client.h (__nscd_drop_map_ref):
29864         Add __attribute__ ((unused)).
29865         * nis/nss-nisplus.h (niserr2nss): Likewise.
29866
29867         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
29868         under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
29869
29870         * csu/libc-tls.c (init_static_tls, init_slotinfo):
29871         Remove inline keyword.
29872         * include/rounding-mode.h (round_away): Likewise.
29873         * libio/wfileops.c (adjust_wide_data): Likewise.
29874         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
29875         (__m128i_strloadu_tolower): Likewise.
29876         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
29877         (__m128i_strloadu_tolower): Likewise.
29878         * time/mktime.c (ydhms_diff): Likewise.
29879         * locale/elem-hash.h (elem_hash): Likewise.
29880         * locale/setlocale.c (setdata): Likewise.
29881         * posix/regex_internal.h (re_string_char_size_at): Likewise.
29882         (re_string_wchar_at): Likewise.
29883         (bitset_not, bitset_merge, bitset_mask): Likewise.
29884         [!(__GNUC__ > 3)] (inline): Remove macro.
29885         * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
29886         * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
29887         * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
29888         (_dl_tlsdesc_wake_up_held_fixups): Likewise.
29889         * string/memcmp.c (memcmp_bytes): Likewise.
29890         * locale/programs/locarchive.c (compute_hashval): Likewise.
29891         * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
29892         * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
29893         * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
29894         * nss/getent.c (print_rpc, print_protocols): Likewise.
29895         (print_passwd, print_group, print_aliases): Likewise.
29896         * nis/nss-nisplus.h (niserr2nss): Likewise.
29897         * nscd/connections.c (restart_p): Likewise.
29898         Change return type to bool.
29899
29900 2013-02-05  Roland McGrath  <roland@hack.frob.com>
29901
29902         * Makeconfig (all-Depend-files): Add existing
29903         $(sorted-subdirs:=/Depend) files.
29904         (all-subdirs): Remove nss.
29905         * sysdeps/unix/inet/Subdirs: Add it here instead.
29906         * hesiod/Depend: New file.
29907
29908         * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
29909         instead of calling alloca.
29910
29911         * io/lseek.c (__lseek): Rename to __libc_lseek.
29912         Define __lseek as an alias.
29913
29914         * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
29915
29916 2013-02-04  Carlos O'Donell  <carlos@redhat.com>
29917
29918         * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
29919         else clause and remove check for non-standard endianness.
29920
29921 2013-02-04  David S. Miller  <davem@davemloft.net>
29922
29923         * sysdeps/sparc/fpu/libm-test-ulps: Update.
29924
29925 2013-02-04  Joseph Myers  <joseph@codesourcery.com>
29926
29927         [BZ #13550]
29928         * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
29929         (__ubp_memchr): Remove prototype.
29930         [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
29931         [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
29932         [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
29933         [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
29934         * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
29935         Remove alias.
29936         * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
29937         (__ubp_memchr): Likewise.
29938         * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
29939         (__ubp_memchr): Likewise.
29940         * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
29941         (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
29942         (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
29943         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
29944         CHECK_STRING.
29945         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
29946         * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
29947         (__getcwd): Do not use CHECK_STRING.
29948         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
29949         <bp-checks.h>.
29950         (__real_chown): Do not use CHECK_STRING.
29951         * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
29952         <bp-checks.h>.
29953         (fchownat): Do not use CHECK_STRING.
29954         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
29955         CHECK_STRING.
29956         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
29957         <bp-checks.h>.
29958         (__lchown): Do not use CHECK_STRING.
29959         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
29960         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
29961         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
29962         * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
29963         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
29964         include <bp-checks.h>.
29965         (truncate64): Do not use CHECK_STRING.
29966         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
29967         <bp-checks.h>.
29968         (__real_chown): Do not use CHECK_STRING.
29969         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
29970         <bp-checks.h>.
29971         (__lchown): Do not use CHECK_STRING.
29972         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
29973         <bp-checks.h>.
29974         (__chown): Do not use CHECK_STRING.
29975         * sysdeps/unix/sysv/linux/truncate64.c: Do not include
29976         <bp-checks.h>.
29977         (truncate64): Do not use CHECK_STRING.
29978         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
29979         Likewise.
29980         * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
29981         (__xmknod): Do not use CHECK_STRING.
29982         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
29983         <bp-checks.h>.
29984         (__xmknodat): Do not use CHECK_STRING.
29985         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
29986         * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
29987
29988 2013-02-04  Andreas Schwab  <schwab@suse.de>
29989
29990         [BZ #14142]
29991         * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
29992         * include/netdb.h: Likewise for h_errno.
29993         * elf/tst-stackguard1.c: Include <tls.h>.
29994
29995 2013-02-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
29996
29997         * elf/link.h (struct link_map): Extend the l_addr comment.
29998         * include/link.h (struct link_map): Likewise.
29999
30000 2013-02-01  Joseph Myers  <joseph@codesourcery.com>
30001
30002         [BZ #13550]
30003         * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
30004         (BOUNDED_1): Remove macro.
30005         * debug/backtrace.c: Don't include <bp-checks.h>.
30006         (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
30007         (__backtrace): Likewise.
30008         * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
30009         <bp-checks.h>.
30010         (__backtrace): Don't use BOUNDED_1.
30011         * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
30012         <bp-checks.h>.
30013         (__backtrace): Don't use BOUNDED_1.
30014         * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
30015         (__backtrace): Don't use BOUNDED_1.
30016         * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
30017         (shmat): Don't use BOUNDED_N.
30018
30019 2013-01-31  Joseph Myers  <joseph@codesourcery.com>
30020
30021         [BZ #13550]
30022         * sysdeps/generic/bp-start.h: Remove file.
30023         * csu/libc-start.c: Don't include <bp-start.h>.
30024         (LIBC_START_MAIN): Set up __environ directly instead of using
30025         INIT_ARGV_and_ENVIRON.
30026         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
30027         <bp-start.h>.
30028
30029         [BZ #13550]
30030         * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
30031         definitions.
30032         (CHECK_FCNTL): Likewise.
30033         (CHECK_N_PAGES): Likewise.
30034
30035         [BZ #13550]
30036         * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
30037         definitions.
30038         (CHECK_SIGSET_NULL_OK): Likewise.
30039         * sysdeps/unix/sysv/linux/sigpending.c: Don't include
30040         <bp-checks.h>.
30041         (sigpending): Don't use CHECK_SIGSET.
30042         * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
30043         <bp-checks.h>.
30044         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30045         * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
30046         <bp-checks.h>.
30047         (do_sigsuspend): Don't use CHECK_SIGSET.
30048         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
30049         use CHECK_SIGSET.
30050         * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
30051         (do_sigwait): Don't use CHECK_SIGSET.
30052         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
30053         use CHECK_SIGSET.
30054         * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
30055         include <bp-checks.h>.
30056         (sigpending): Don't use CHECK_SIGSET.
30057         * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
30058         include <bp-checks.h>.
30059         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30060         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
30061         <bp-checks.h>.
30062         (sigpending): Don't use CHECK_SIGSET.
30063         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
30064         <bp-checks.h>.
30065         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30066
30067         [BZ #13550]
30068         * sysdeps/generic/bp-semctl.h: Remove file.
30069         * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
30070         <bp-checks.h> and <bp-semctl.h>.
30071         (__old_semctl): Don't use CHECK_SEMCTL.
30072         (__new_semctl): Likewise.
30073         * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
30074         and <bp-semctl.h>.
30075         (__old_semctl): Don't use CHECK_SEMCTL.
30076         (__new_semctl): Likewise.
30077         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
30078         <bp-checks.h> and <bp-semctl.h>.
30079         (__old_semctl): Don't use CHECK_SEMCTL.
30080         (__new_semctl): Likewise.
30081         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
30082         <bp-checks.h> and <bp-semctl.h>.
30083         (semctl): Don't use CHECK_SEMCTL.
30084
30085         [BZ #13550]
30086         * Makerules (elide-bp-thunks): Remove variable.
30087         (elide-routines.oS): Don't use $(elide-bp-thunks).
30088         (elide-routines.os): Likewise.
30089         (elide-routines.o): Likewise.
30090         (elide-routines.op): Likewise.
30091         (elide-routines.og): Likewise.
30092         (objects): Don't use $(bp-thunks).
30093         * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
30094         include.
30095         (common-generated): Do not add s-proto-bp.d.
30096         * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
30097         (int): Likewise.
30098         (typ): Likewise.
30099         Do not generate makefile rules for bounded-pointer thunks.
30100         * sysdeps/generic/bp-thunks.h: Remove file.
30101         * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
30102         * sysdeps/unix/s-proto-bp.S: Likewise.
30103
30104         [BZ #15062]
30105         * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
30106         parts of result separately when argument is not close to line from
30107         -i to i and one part of argument is small.
30108         * math/k_casinhf.c (__kernel_casinhf): Likewise.
30109         * math/k_casinhl.c (__kernel_casinhl): Likewise.
30110         * math/libm-test.inc (cacos_test): Add more tests.
30111         (casin_test): Likewise.
30112         (casinh_test): Likewise.
30113         * sysdeps/i386/fpu/libm-test-ulps: Update.
30114         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30115
30116 2013-01-31  David S. Miller  <davem@davemloft.net>
30117
30118         * po/de.po: Update from translation team.
30119
30120 2013-01-25  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
30121
30122         * time/tzfile.c: Include stdint.h for SIZE_MAX.
30123
30124 2013-01-25  Thomas Schwinge  <thomas@codesourcery.com>
30125
30126         * configure.in (_AC_PROG_CC_C89): New definition.
30127         * configure: Regenerate.
30128
30129         * configure.in (AC_PROG_CPP): New definition.
30130         * configure: Regenerate.
30131
30132 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
30133
30134         * debug/tst-backtrace.h: New file.
30135         * debug/tst-backtrace2.c: Include tst-backtrace.h.
30136         (ret): Remove variable.
30137         (x): Likewise.
30138         (FAIL): Remove macro.
30139         (NO_INLINE): Likewise.
30140         (fn1): Use match function instead of strstr.
30141         * debug/tst-backtrace3.c: Include tst-backtrace.h.
30142         (ret): Remove variable.
30143         (x): Likewise.
30144         (FAIL): Remove macro.
30145         (NO_INLINE): Likewise.
30146         (fn): Use match function instead of strstr.
30147         * debug/tst-backtrace4.c: Include tst-backtrace.h.
30148         (ret): Remove variable.
30149         (x): Likewise.
30150         (FAIL): Remove macro.
30151         (NO_INLINE): Likewise.
30152         (handle_signal): Use match function instead of strstr.
30153         * debug/tst-backtrace5.c: Include tst-backtrace.h.
30154         (ret): Remove variable.
30155         (x): Likewise.
30156         (FAIL): Remove macro.
30157         (NO_INLINE): Likewise.
30158         (handle_signal): Use match function instead of strstr.
30159
30160 2013-01-23  Roland McGrath  <roland@hack.frob.com>
30161
30162         * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
30163
30164 2013-01-23  David S. Miller  <davem@davemloft.net>
30165
30166         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
30167         (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
30168         argument of CAS if possible.
30169         * sysdeps/sparc/sparc64/bits/atomic.h
30170         (__arch_compare_and_exchange_val_32_acq): Likewise.
30171         (__arch_compare_and_exchange_val_64_acq): Likewise.
30172
30173 2013-01-23  Pino Toscano  <toscano.pino@tiscali.it>
30174
30175         * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
30176         * sysdeps/posix/ulimit.c: ... this.
30177         Include <limits.h>.
30178         * sysdeps/unix/bsd/ulimit.c: Remove file.
30179
30180 2013-01-23  Adam Conrad  <adconrad@0c3.net>
30181
30182         * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
30183         (LDFLAGS-tst-array5): Likewise.
30184
30185 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
30186
30187         [BZ #15036]
30188         * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
30189         based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
30190         (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
30191         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
30192
30193 2013-01-21  David S. Miller  <davem@davemloft.net>
30194
30195         * sysdeps/sparc/backtrace.c: New file.
30196         * sysdeps/sparc/sparc32/backtrace.h: New file.
30197         * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
30198         * sysdeps/sparc/sparc64/backtrace.h: New file.
30199         * sysdeps/sparc/sparc64/backtrace.c: Delete.
30200         * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
30201         -funwind-tables.
30202
30203 2013-01-21  Andreas Schwab  <schwab@suse.de>
30204
30205         [BZ #15020]
30206         * posix/wordexp.c (exec_comm): Avoid busy loop when command has
30207         closed its stdout.
30208
30209 2013-01-20  Andreas Schwab  <schwab@linux-m68k.org>
30210
30211         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
30212         "mpa2.h".
30213         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30214
30215 2013-01-18  Joseph Myers  <joseph@codesourcery.com>
30216             Mark Mitchell  <mark@codesourcery.com>
30217             Tom de Vries  <tom@codesourcery.com>
30218             Paul Pluzhnikov  <ppluzhnikov@google.com>
30219
30220         * debug/tst-backtrace2.c: New file.
30221         * debug/tst-backtrace3.c: Likewise.
30222         * debug/tst-backtrace4.c: Likewise.
30223         * debug/tst-backtrace5.c: Likewise.
30224         * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
30225         (CFLAGS-tst-backtrace3.c): Likewise.
30226         (CFLAGS-tst-backtrace4.c): Likewise.
30227         (CFLAGS-tst-backtrace5.c): Likewise.
30228         (LDFLAGS-tst-backtrace2): Likewise.
30229         (LDFLAGS-tst-backtrace3): Likewise.
30230         (LDFLAGS-tst-backtrace4): Likewise.
30231         (LDFLAGS-tst-backtrace5): Likewise.
30232         (tests): Add new tests tst-backtrace2, tst-backtrace3,
30233         tst-backtrace4 and tst-backtrace5.
30234
30235 2013-01-18  Anton Blanchard  <anton@samba.org>
30236             Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
30237
30238         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
30239         __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
30240         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
30241         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
30242         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
30243         (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
30244         "+r" and remove output regs list as redundant.  Add explicit inline
30245         asm to specify register of return val to work around compiler codegen
30246         bug.  Remove (int) cast on return value.  Add return type parameter to
30247         use in macro so that this macro does not truncate return value for
30248         64-bit values.
30249         (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
30250         pass to INTERNAL_VSYSCALL_NCS.
30251         (INLINE_VSYSCALL): Add 'long int' as return type to
30252         INTERNAL_VSYSCALL_NCS macro invocation.
30253         (INTERNAL_VSYSCALL): Add 'long int' as return type to
30254         INTERNAL_VSYSCALL_NCS macro invocation.
30255         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
30256
30257 2013-01-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
30258
30259         [BZ #14496]
30260         * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
30261         Fix application of SIMD FP exception mask.
30262
30263         * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
30264         mp_no from a power of two.
30265         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
30266         __mpexp_twomm1.  Use __pow_mp.
30267
30268         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
30269         multiplication.
30270
30271 2013-01-17  David S. Miller  <davem@davemloft.net>
30272
30273         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30274
30275 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
30276
30277         [BZ #15023]
30278         * include/complex.h: Condition contents on [!_COMPLEX_H].
30279         (__kernel_casinhf): New prototype.
30280         (__kernel_casinh): Likewise.
30281         (__kernel_casinhl): Likewise.
30282         * math/Makefile (libm_calls): Add k_casinh.
30283         * math/k_casinh.c: New file.
30284         * math/k_casinhf.c: Likewise.
30285         * math/k_casinhl.c: Likewise.
30286         * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
30287         finite nonzero arguments.
30288         * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
30289         finite nonzero arguments.
30290         * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
30291         finite nonzero arguments.
30292         * math/s_casinh.c: Do not include <float.h>.
30293         (__casinh): Move code for finite nonzero arguments to k_casinh.c.
30294         * math/s_casinhf.c: Do not include <float.h>.
30295         (__casinhf): Move code for finite nonzero arguments to
30296         k_casinhf.c.
30297         * math/s_casinhl.c: Do not include <float.h>.
30298         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
30299         redefine.
30300         (__casinhl): Move code for finite nonzero arguments to
30301         k_casinhl.c.
30302         * math/libm-test.inc (cacos_test): Add more tests.
30303         * sysdeps/i386/fpu/libm-test-ulps: Update.
30304         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30305
30306 2013-01-17  Pino Toscano  <toscano.pino@tiscali.it>
30307
30308         * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
30309         * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
30310         [!HAVE_MREMAP]: Remove [defined linux] case.
30311         * malloc/arena.c: Do not include <malloc-sysdep.h>.
30312
30313 2013-01-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
30314
30315         * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
30316
30317 2013-01-17  H.J. Lu  <hongjiu.lu@intel.com>
30318
30319         * elf/elf.h (R_386_SIZE32): New relocation.
30320         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
30321         R_386_SIZE32.
30322         (elf_machine_rela): Likewise.
30323         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
30324         R_X86_64_SIZE64 and R_X86_64_SIZE32.
30325
30326 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
30327
30328         * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
30329         (FP_FAST_FMA): Do not define.
30330         [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
30331         * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
30332         && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
30333         * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
30334         !_SOFT_FLOAT]: Likewise.
30335         * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
30336         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
30337         value.
30338         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
30339         [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
30340         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
30341         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
30342         [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
30343         [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
30344         file.
30345
30346 2013-01-16  Andreas Schwab  <schwab@suse.de>
30347
30348         [BZ #14327]
30349         * include/stdlib.h (__mktemp): Add declaration.
30350         * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
30351         * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
30352
30353 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
30354
30355         * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
30356         definitions.
30357         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
30358         * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
30359         * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
30360         definitions here.
30361         * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
30362         * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
30363         definitions.
30364         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
30365         and ONE.
30366         * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
30367         * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
30368         * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
30369         definitions.
30370         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
30371         * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
30372         definitions.
30373         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
30374
30375         * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
30376
30377 2013-01-15  David S. Miller  <davem@davemloft.net>
30378
30379         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30380         trunc{,f} to libm-sysdep_routes.
30381         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30382         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
30383         file.
30384         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
30385         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
30386         file.
30387         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
30388         file.
30389         * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
30390         * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
30391         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
30392         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
30393         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
30394         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
30395         * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
30396         * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
30397
30398         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30399         nearbyint{,f} to libm-sysdep_routes.
30400         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30401         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
30402         New file.
30403         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
30404         file.
30405         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
30406         New file.
30407         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
30408         file.
30409         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
30410         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
30411         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
30412         file.
30413         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
30414         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
30415         file.
30416         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
30417         * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
30418         * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
30419
30420         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
30421         libc_feholdexcept and libc_fesetenv.
30422
30423 2013-01-15  Mike Frysinger  <vapier@gentoo.org>
30424
30425         * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
30426
30427 2013-01-14  David S. Miller  <davem@davemloft.net>
30428
30429         * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
30430         (SPARC_ASM_VIS2_IFUNC): Likewise.
30431         (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
30432         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
30433         use of 'siam' instruction.
30434         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
30435         Likewise.
30436         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
30437         Likewise.
30438         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
30439         Likewise.
30440         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
30441         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
30442         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
30443         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
30444         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
30445         file.
30446         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
30447         file.
30448         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
30449         file.
30450         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
30451         file.
30452         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
30453         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
30454         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
30455         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
30456         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
30457         new VIS2 routines.
30458         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
30459         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
30460         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
30461         Likewise.
30462         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
30463         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
30464         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
30465         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
30466         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
30467         routines to libm-sysdep_routines.
30468         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30469
30470         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30471         fdim/fdimf to libm-sysdep_routines.
30472         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
30473         file.
30474         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
30475         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
30476         file.
30477         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
30478         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
30479         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
30480         * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
30481         * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
30482         * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
30483         * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
30484
30485 2013-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
30486
30487         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
30488         to optimize copies.
30489
30490         * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
30491         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
30492         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30493
30494         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
30495         local variable MPTWO.
30496         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
30497         Likewise.
30498
30499 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30500
30501         * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
30502         GLOB_NOESCAPE.
30503
30504 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30505
30506         * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
30507
30508 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30509
30510         * manual/pattern.texi (glob_t): Document gl_flags.
30511         (glob64_t): Likewise.
30512
30513 2013-01-11  David S. Miller  <davem@davemloft.net>
30514
30515         * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
30516         * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
30517         (gmp-sysdep_routines): New variable.  Add VIS3 optimized GMP routines.
30518         * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
30519         * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
30520         * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
30521         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
30522         * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
30523         * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
30524         * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
30525         * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
30526         * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
30527         * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
30528
30529         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
30530         sparc V9 rather than using V8 code.
30531         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30532         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30533
30534         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
30535         Move to...
30536         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
30537         Here.
30538
30539 2013-01-11  Roland McGrath  <roland@hack.frob.com>
30540
30541         * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
30542         not in the main loop.
30543         * configure: Regenerated.
30544
30545 2013-01-11  Joseph Myers  <joseph@codesourcery.com>
30546
30547         * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
30548         * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
30549         to just #else.
30550         * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise.  Remove
30551         [!__GLIBC_HAVE_LONG_LONG] case.
30552         * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
30553         condition to just #else.
30554         * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
30555         __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
30556         [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
30557         * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
30558         unconditional.
30559         * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
30560         * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
30561         #elif condition to just #else.
30562         * sysdeps/unix/sysv/linux/sys/sysmacros.h
30563         [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
30564         * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
30565         #elif condition to just #else.
30566
30567 2013-01-11  Steve Ellcey  <sellcey@mips.com>
30568
30569         * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
30570         (EF_MIPS_ARCH_64): Fix value.
30571         (EF_MIPS_ARCH_32R2): New.
30572         (EF_MIPS_ARCH_64R2): New.
30573
30574 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
30575
30576         * Makeconfig (+link-pie-before-libc): New.
30577         (+link-pie-after-libc): Likewise.
30578         (+link-pie-tests): Likewise.
30579         (+link-pie): Rewritten.
30580         (link-before-libc): Remove $(config-LDFLAGS).
30581         (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
30582         (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
30583         (config-LDFLAGS): Renamed to ...
30584         (rtld-LDFLAGS): This.
30585         (rtld-tests-LDFLAGS): New macro.
30586         (link-libc-rpath-link): Likewise.
30587         (link-libc-tests-rpath-link): Likewise.
30588         (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
30589         (link-libc): Prepand $(link-libc-rpath-link).
30590         (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
30591         (test-program-prefix): New macro.
30592         (test-via-rtld-prefix): Likewise.
30593         (test-program-cmd): Likewise.
30594         (host-test-program-cmd): Likewise.
30595         * Makefile ($(common-objpfx)testrun.sh): Replace
30596         $(run-program-prefix) with $(test-program-prefix).
30597         * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
30598         $(rtld-LDFLAGS).
30599         ($(common-objpfx)shlib.lds): Likewise.
30600         (build-module-helper): Likewise.
30601         ($(common-objpfx)format.lds): Likewise.
30602         * Rules (binaries-pie-tests): New.
30603         (binaries-pie-notests): Likewise.
30604         (binaries-pie): Rewritten.
30605         ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
30606         ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
30607         ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
30608         (make-test-out): Replace $(host-built-program-cmd) with
30609         $(host-test-program-cmd).
30610         * config.make.in (build-hardcoded-path-in-tests): New variable.
30611         * configure.in (--enable-hardcoded-path-in-tests): New configure
30612         option.
30613         (hardcoded_path_in_tests): New AC_SUBST.
30614         * configure: Regenerated.
30615         * catgets/Makefile ($(objpfx)test-gencat.out): Replace
30616         $(built-program-cmd) with $(test-program-cmd).
30617         * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
30618         (test_program_cmd): This.
30619         * elf/Makefile ($(objpfx)order.out): Run test with
30620         $(test-program-prefix).
30621         ($(objpfx)order2.out): Likewise.
30622         ($(objpfx)tst-initorder.out): Likewise.
30623         ($(objpfx)tst-initorder2.out): Likewise.
30624         ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
30625         $(test-program-cmd).
30626         ($(objpfx)tst-array1-static.out): Likewise.
30627         ($(objpfx)tst-array2.out): Likewise.
30628         ($(objpfx)tst-array3.out): Likewise.
30629         ($(objpfx)tst-array4.out): Likewise.
30630         ($(objpfx)tst-array5.out): Likewise.
30631         ($(objpfx)tst-array5-static.out): Likewise.
30632         (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
30633         $(test-program-cmd).
30634         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
30635         $(run-program-prefix) with $(test-program-prefix).
30636         * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
30637         (test_program_prefix): This.
30638         * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
30639         $(run-program-prefix) with $(test-program-prefix).
30640         * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
30641         (test_program_prefix): This.
30642         * iconvdata/tst-tables.sh: Likewise.
30643         * intl/Makefile ($(objpfx)tst-gettext.out): Replace
30644         $(run-program-prefix) with $(test-program-prefix).
30645         ($(objpfx)tst-translit.out): Likewise.
30646         ($(objpfx)tst-gettext2.out): Likewise.
30647         ($(objpfx)tst-gettext4.out): Likewise.
30648         ($(objpfx)tst-gettext6.out): Likewise.
30649         * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
30650         (test_program_prefix): This.
30651         * intl/tst-gettext2.sh: Likewise.
30652         * intl/tst-gettext4.sh  Likewise.
30653         * intl/tst-gettext6.sh: Likewise.
30654         * intl/tst-translit.sh: Likewise.
30655         * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
30656         with $(test-program-cmd).
30657         * libio/Makefile ($(objpfx)test-freopen.out): Replace
30658         $(run-program-prefix) with $(test-program-prefix).
30659         * libio/test-freopen.sh (run_program_prefix): Renamed to ...
30660         (test_program_prefix): This.
30661         * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
30662         $(run-program-prefix) with $(test-program-prefix).
30663         * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
30664         (test_program_prefix): This.
30665         * manual/install.texi: Document --enable-hardcoded-path-in-tests.
30666         * posix/Makefile ($(objpfx)globtest.out): Replace
30667         $(run-via-rtld-prefix) and $(test-wrapper) with
30668         $(test-program-prefix) and $(test-via-rtld-prefix).
30669         ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
30670         $(test-program-prefix).
30671         (tst-exec-ARGS): Replace $(host-built-program-cmd) with
30672         $(host-test-program-cmd).
30673         (tst-spawn-ARGS): Likewise.
30674         ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
30675         $(test-program-prefix).
30676         * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
30677         (test_via_rtld_prefix): This.
30678         (test_wrapper): Renamed to ...
30679         (test_program_prefix): This.
30680         (run_program_prefix): Replaced by test_program_prefix.
30681         * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
30682         (test_program_prefix): This.
30683         * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
30684         with $(host-test-program-cmd).
30685         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
30686         $(run-program-prefix) with $(test-program-prefix).
30687         ($(objpfx)tst-printf.out): Likewise.
30688         ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
30689         $(test-program-cmd).
30690         * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
30691         (test_program_prefix): This.
30692         * stdio-common/tst-unbputc.sh: Likewise.
30693         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
30694         $(run-program-prefix) with $(test-program-prefix).
30695         * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
30696         (test_program_prefix): This.
30697         * string/Makefile ($(objpfx)tst-svc.out):  Replace
30698         $(built-program-cmd) with $(test-program-cmd).
30699
30700 2013-01-11  Andreas Jaeger  <aj@suse.de>
30701
30702         [BZ #15003]
30703         * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
30704         value. Sync with Linux 3.7.
30705
30706 2013-01-10  David S. Miller  <davem@davemloft.net>
30707
30708         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
30709         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30710         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30711
30712 2013-01-10  Roland McGrath  <roland@hack.frob.com>
30713
30714         * configure.in (sysnames): Drop use of $m0sub and $msub, which are
30715         never set.
30716         * configure: Regenerated.
30717
30718 2013-01-10  David S. Miller  <davem@davemloft.net>
30719
30720         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
30721         sparc V9 rather than using V8 code.
30722         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30723         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30724
30725 2013-01-10  Roland McGrath  <roland@hack.frob.com>
30726
30727         * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
30728         (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
30729         (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
30730         (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
30731         (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
30732         (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
30733         (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
30734         (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
30735         (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
30736         (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
30737         (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
30738         (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
30739         (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
30740         (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
30741         (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
30742         (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
30743         (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
30744         (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
30745         (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
30746         (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
30747         (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
30748         (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
30749         (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
30750         (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
30751         (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
30752         (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
30753         (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
30754
30755 2013-01-10  David S. Miller  <davem@davemloft.net>
30756
30757         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30758
30759 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
30760
30761         * posix/Makefile (tests-static): New variable.
30762         (tests): Add $(tests-static).
30763         (tst-exec-static-ARGS): New variable.
30764         (tst-spawn-static-ARGS): Likewise.
30765         * posix/tst-exec-static.c: New file.
30766         * posix/tst-spawn-static.c: Likewise.
30767         * posix/tst-exec.c: Support run directly.
30768         * posix/tst-spawn.c: Likewise.
30769
30770 2013-01-10  Joseph Myers  <joseph@codesourcery.com>
30771
30772         * elf/link.h (struct dl_phdr_info): Use __extension__ with long
30773         long.
30774         * math/bits/mathcalls.h (llrint): Likewise.
30775         (llround): Likewise.
30776         * stdlib/stdlib.h (struct drand48_data): Likewise.
30777         * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
30778         * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
30779         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
30780         Likewise.
30781         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
30782         Likewise.
30783         * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
30784         (elf_greg_t): Likewise.
30785         * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
30786         (__jmp_buf): Likewise.
30787         * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
30788         definitions.
30789         (llrint): Likewise, for all definitions.
30790         (llrintl): Likewise.
30791
30792         * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
30793         Remove [__GNUC__] condition.
30794         * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
30795         condition to just [__USE_ISOC99].
30796         [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
30797
30798 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
30799
30800         [BZ #14200]
30801         * sysdeps/unix/sysv/linux/x86/bits/environments.h
30802         (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
30803         defined.
30804         (_POSIX_V6_ILP32_OFF32): Likewise.
30805         (_XBS5_ILP32_OFF32): Likewise.
30806         (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
30807         (__ILP32_OFFBIG_LDFLAGS): Likewise.
30808
30809 2013-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
30810
30811         * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
30812
30813         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
30814         doubles __mpexp_twomm1.  Adjust usage.
30815         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
30816         Remove.
30817
30818 2013-01-10  Andreas Schwab  <schwab@suse.de>
30819
30820         [BZ #14964]
30821         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
30822         (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
30823
30824 2013-01-09  David S. Miller  <davem@davemloft.net>
30825
30826         [BZ #15003]
30827         * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
30828         (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
30829         (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
30830         (TCP_FASTOPEN): Define.
30831         (tcp_repair_opt): New structure.
30832         (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
30833         enum values.
30834         (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
30835         (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
30836         (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
30837         (tcp_cookie_transactions): New structure.
30838
30839 2013-01-09  Anton Blanchard  <anton@samba.org>
30840
30841         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
30842         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
30843         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
30844         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
30845
30846 2013-01-09  Joseph Myers  <joseph@codesourcery.com>
30847
30848         * include/features.h (__USE_ANSI): Remove.
30849
30850 2013-01-09  Roland McGrath  <roland@hack.frob.com>
30851
30852         * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
30853
30854         * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
30855
30856 2013-01-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
30857
30858         * sysdeps/s390/fpu/libm-test-ulps: Update.
30859
30860         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30861
30862         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
30863         (__acr): Likewise.
30864         (__cpy): Likewise.
30865         (norm): Likewise.
30866         (denorm): Likewise.
30867         (__mp_dbl): Likewise.
30868         (__dbl_mp): Likewise.
30869         (add_magnitudes): Likewise.
30870         (sub_magnitudes): Likewise.
30871         (__add): Likewise.
30872         (__sub): Likewise.
30873         (__mul): Likewise.
30874         (__inv): Likewise.
30875         (__dvd): Likewise.
30876         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
30877         (__acr): Likewise.
30878         (__cpy): Likewise.
30879         (norm): Likewise.
30880         (denorm): Likewise.
30881         (__mp_dbl): Likewise.
30882         (__dbl_mp): Likewise.
30883         (add_magnitudes): Likewise.
30884         (sub_magnitudes): Likewise.
30885         (__add): Likewise.
30886         (__sub): Likewise.
30887         (__mul): Likewise.
30888         (__inv): Likewise.
30889         (__dvd): Likewise.
30890         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
30891         (__acr): Likewise.
30892         (__cpy): Likewise.
30893         (norm): Likewise.
30894         (denorm): Likewise.
30895         (__mp_dbl): Likewise.
30896         (__dbl_mp): Likewise.
30897         (add_magnitudes): Likewise.
30898         (sub_magnitudes): Likewise.
30899         (__add): Likewise.
30900         (__sub): Likewise.
30901         (__mul): Likewise.
30902         (__inv): Likewise.
30903         (__dvd): Likewise.
30904
30905 2013-01-08  Joseph Myers  <joseph@codesourcery.com>
30906
30907         * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
30908         __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
30909         * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
30910         2 && __USE_EXTERN_INLINES]: Likewise.
30911
30912 2013-01-08  Andreas Jaeger  <aj@suse.de>
30913
30914         [BZ# 14985]
30915         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
30916         Remove.
30917         * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
30918         * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
30919
30920 2013-01-07  Anton Blanchard  <anton@samba.org>
30921
30922         * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
30923         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
30924         * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
30925         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
30926         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
30927         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
30928         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
30929         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
30930         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
30931         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
30932         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
30933         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
30934         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
30935         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
30936         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
30937         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
30938         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
30939         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
30940         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
30941         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
30942         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
30943         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
30944         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
30945         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
30946         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
30947         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
30948         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
30949         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
30950         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
30951         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
30952         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
30953         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30954         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
30955         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
30956         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
30957         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
30958         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
30959         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
30960         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
30961         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
30962         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
30963         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
30964         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
30965
30966 2013-01-07  Joseph Myers  <joseph@codesourcery.com>
30967
30968         * malloc/malloc.h (__MALLOC_P): Remove all definitions.
30969         (__MALLOC_PMT): Likewise.
30970         [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
30971         [__GNUC__], only on [_LIBC].
30972         [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
30973         [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
30974         [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
30975         * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
30976         forward declaration.
30977         (realloc_hook_ini): Likewise.
30978         (memalign_hook_ini): Likewise.
30979         (__libc_memalign): Do not use __MALLOC_PMT in variable
30980         declaration.
30981         (__libc_valloc): Likewise.
30982         (__libc_pvalloc): Likewise.
30983         (__libc_calloc): Likewise.
30984         (__posix_memalign): Likewise.
30985
30986         [BZ #14996]
30987         * math/s_casinh.c: Include <float.h>.
30988         (__casinh): Do not do computation with squaring and square root
30989         for large arguments.
30990         * math/s_casinhf.c: Include <float.h>.
30991         (__casinhf): Do not do computation with squaring and square root
30992         for large arguments.
30993         * math/s_casinhl.c: Include <float.h>.
30994         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
30995         (__casinhl): Do not do computation with squaring and square root
30996         for large arguments.
30997         * math/libm-test.inc (casin_test): Add more tests.
30998         (casinh_test): Likewise.
30999         * sysdeps/i386/fpu/libm-test-ulps: Update.
31000         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31001
31002 2013-01-04  H.J. Lu  <hongjiu.lu@intel.com>
31003
31004         * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
31005         (__x86_64_raw_data_cache_size): Likewise.
31006         (__x86_64_data_cache_size_half): Likewise.
31007         (__x86_64_raw_data_cache_size_half): Likewise.
31008         (__x86_64_shared_cache_size): Likewise.
31009         (__x86_64_raw_shared_cache_size): Likewise.
31010         (__x86_64_shared_cache_size_half): Likewise.
31011         (__x86_64_raw_shared_cache_size_half): Likewise.
31012         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
31013         to ...
31014         (__x86_data_cache_size): This.
31015         (__x86_64_raw_data_cache_size): Renamed to ...
31016         (__x86_raw_data_cache_size): This.
31017         (__x86_64_data_cache_size_half): Renamed to ...
31018         (__x86_data_cache_size_half): This.
31019         (__x86_64_raw_data_cache_size_half): Renamed to ...
31020         (__x86_raw_data_cache_size_half): This.
31021         (__x86_64_shared_cache_size): Renamed to ...
31022         (__x86_shared_cache_size): This.
31023         (__x86_64_raw_shared_cache_size): Renamed to ...
31024         (__x86_raw_shared_cache_size): This.
31025         (__x86_64_shared_cache_size_half): Renamed to ...
31026         (__x86_shared_cache_size_half): This.
31027         (__x86_64_raw_shared_cache_size_half): Renamed to ...
31028         (__x86_raw_shared_cache_size_half): This.
31029         * sysdeps/x86_64/memcpy.S: Updated.
31030         * sysdeps/x86_64/memset.S: Likewise.
31031         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
31032         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
31033         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
31034
31035 2013-01-04  David S. Miller  <davem@davemloft.net>
31036
31037         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31038
31039 2013-01-04  Andreas Schwab  <schwab@linux-m68k.org>
31040
31041         * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
31042         1 to avoid redefinition warning.
31043         (__USE_GNU): Don't define.
31044         (init_signaling_nan): Protoize.
31045
31046         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
31047
31048 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
31049
31050         * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
31051         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
31052         (__cpymn): Likewise.
31053         (norm): Remove commented code.
31054         (denorm): Likewise.
31055         (__mp_dbl): Likewise.
31056         (__inv): Likewise.
31057         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
31058         (__cpymn): Likewise.
31059         (norm): Remove commented code.
31060         (denorm): Likewise.
31061         (__mp_dbl): Likewise.
31062         (__inv): Likewise.
31063
31064         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
31065         mp_no value for 1.0 and 2.0.
31066         (norm): Use RADIXI instead of radixi.d.
31067         (denorm): Likewise.
31068         (__mul): Use 0.0 instead of zero.d.
31069         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
31070         mp_no value for 1.0 and 2.0.
31071         (norm): Use RADIXI instead of radixi.d.
31072         (denorm): Likewise.
31073         (__mul): Use 0.0 instead of zero.d.
31074
31075 2013-01-04  Joseph Myers  <joseph@codesourcery.com>
31076
31077         [BZ #14994]
31078         * math/s_casinh.c (__casinh): Reduce finite argument to first
31079         quadrant then set signs of results at the end.
31080         * math/s_casinhf.c (__casinhf): Likewise.
31081         * math/s_casinhl.c (__casinhl): Likewise.
31082         * math/libm-test.inc (casin_test): Add more tests.
31083         (casinh_test): Likewise.
31084         * sysdeps/i386/fpu/libm-test-ulps: Update.
31085         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31086
31087 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
31088
31089         * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
31090
31091         * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
31092
31093         * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
31094         declarations.
31095         (denorm): Likewise.
31096         (__mp_dbl): Likewise.
31097         (__inv): Likewise.
31098
31099         * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
31100         and adjust the header comment.
31101
31102         * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
31103         variable name from declaration.
31104
31105 2013-01-03  H.J. Lu  <hongjiu.lu@intel.com>
31106
31107         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
31108         Initialize COMMON_CPUID_INDEX_7 element.
31109         * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
31110         (CPUID_RTM): Likewise.
31111         (HAS_RTM): Likewise.
31112         (COMMON_CPUID_INDEX_7): New enum.
31113
31114 2013-01-03  Andreas Schwab  <schwab@linux-m68k.org>
31115
31116         [BZ #14981]
31117         * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
31118         size is zero, record memory as freed.
31119
31120 2013-01-03  Andreas Jaeger  <aj@suse.de>
31121
31122         * po/ia.po: Add new Interlingua translation.
31123
31124 2012-01-03  Allan McRae  <allan@archlinux.org>
31125
31126         * locale/programs/localedef.c: Fix description of '--posix' flag.
31127
31128 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
31129
31130         * NEWS: Update dates in second copyright notice.
31131         * README: Update copyright dates in example.
31132         * manual/libc.texinfo: Update copyright dates.
31133         * scripts/test-installation.pl: Update copyright date in --version
31134         output.
31135
31136         * hurd/ctty-input.c: Fix copyright notice formatting.
31137         * hurd/ctty-output.c: Likewise.
31138         * hurd/dtable.c: Likewise.
31139         * hurd/hurd-raise.c: Likewise.
31140         * hurd/hurdprio.c: Likewise.
31141         * hurd/msgportdemux.c: Likewise.
31142         * misc/sys/file.h: Likewise.
31143         * misc/sys/ioctl.h: Likewise.
31144         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
31145         * sysdeps/mach/hurd/chdir.c: Likewise.
31146         * sysdeps/mach/hurd/fchdir.c: Likewise.
31147         * sysdeps/mach/hurd/rename.c: Likewise.
31148         * sysdeps/mach/hurd/rmdir.c: Likewise.
31149         * sysdeps/mach/hurd/seekdir.c: Likewise.
31150         * sysdeps/mach/hurd/setsid.c: Likewise.
31151         * sysdeps/posix/wait3.c: Likewise.
31152
31153         * All files with FSF copyright notices: Update copyright dates
31154         using scripts/update-copyrights.
31155         * intl/plural.c: Regenerated.
31156         * locale/programs/charmap-kw.h: Likewise.
31157         * locale/programs/locfile-kw.h: Likewise.
31158
31159 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
31160
31161         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
31162         four values.
31163
31164         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
31165         calculation loop and add branch prediction.
31166
31167         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
31168         check access beyond bounds of m1np.
31169
31170         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
31171         MPTWO.
31172         (__inv): Remove local variable MPTWO to use the global
31173         constant.
31174         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
31175         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
31176         variable MPTWO.
31177         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
31178         MP3HALFS static const.
31179
31180 2013-01-01  David S. Miller  <davem@davemloft.net>
31181
31182         * po/ca.po: Update from translation team.
31183
31184 2013-01-01  Joseph Myers  <joseph@codesourcery.com>
31185
31186         * scripts/update-copyrights: New file.
31187         * Makeconfig: Reformat copyright notice.
31188         * ctype/ctype.h: Likewise.
31189         * debug/swprintf_chk.c: Likewise.
31190         * elf/dl-cache.c: Likewise.
31191         * elf/dl-debug.c: Likewise.
31192         * elf/dl-object.c: Likewise.
31193         * grp/initgroups.c: Likewise.
31194         * hurd/Makefile: Likewise.
31195         * hurd/hurd/signal.h: Likewise.
31196         * hurd/hurdfault.c: Likewise.
31197         * hurd/hurdioctl.c: Likewise.
31198         * hurd/hurdlookup.c: Likewise.
31199         * hurd/intr-msg.c: Likewise.
31200         * iconv/gconv_open.c: Likewise.
31201         * libio/swprintf.c: Likewise.
31202         * locale/lc-ctype.c: Likewise.
31203         * locale/nl_langinfo.c: Likewise.
31204         * mach/Machrules: Likewise.
31205         * mach/Makefile: Likewise.
31206         * malloc/obstack.h: Likewise.
31207         * manual/Makefile: Likewise.
31208         * manual/tsort.awk: Likewise.
31209         * misc/bits/stab.def: Likewise.
31210         * nis/nis_print_group_entry.c: Likewise.
31211         * nis/nis_table.c: Likewise.
31212         * nis/nss_compat/compat-pwd.c: Likewise.
31213         * nis/nss_compat/compat-spwd.c: Likewise.
31214         * po/Makefile: Likewise.
31215         * posix/fnmatch.c: Likewise.
31216         * posix/regex.h: Likewise.
31217         * resolv/Makefile: Likewise.
31218         * resolv/nss_dns/dns-network.c: Likewise.
31219         * resolv/res_hconf.c: Likewise.
31220         * scripts/gen-sorted.awk: Likewise.
31221         * soft-fp/soft-fp.h: Likewise.
31222         * stdio-common/printf.h: Likewise.
31223         * stdlib/monetary.h: Likewise.
31224         * stdlib/random.c: Likewise.
31225         * stdlib/random_r.c: Likewise.
31226         * sysdeps/generic/Makefile: Likewise.
31227         * sysdeps/gnu/Makefile: Likewise.
31228         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
31229         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
31230         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
31231         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
31232         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
31233         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
31234         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
31235         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
31236         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
31237         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
31238         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
31239         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
31240         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
31241         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
31242         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
31243         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
31244         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
31245         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
31246         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
31247         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
31248         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
31249         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
31250         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
31251         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
31252         * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
31253         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
31254         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
31255         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
31256         * sysdeps/mach/hurd/errnos.awk: Likewise.
31257         * sysdeps/mach/hurd/fork.c: Likewise.
31258         * sysdeps/mach/hurd/getcwd.c: Likewise.
31259         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
31260         * sysdeps/mach/hurd/mmap.c: Likewise.
31261         * sysdeps/mach/hurd/utimes.c: Likewise.
31262         * sysdeps/mach/hurd/xmknod.c: Likewise.
31263         * sysdeps/posix/profil.c: Likewise.
31264         * sysdeps/posix/readdir_r.c: Likewise.
31265         * sysdeps/powerpc/bits/mathdef.h: Likewise.
31266         * sysdeps/powerpc/bits/setjmp.h: Likewise.
31267         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
31268         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
31269         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
31270         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
31271         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
31272         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
31273         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
31274         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
31275         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
31276         * sysdeps/pthread/lio_listio.c: Likewise.
31277         * sysdeps/sparc/dl-procinfo.h: Likewise.
31278         * sysdeps/unix/i386/sysdep.S: Likewise.
31279         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
31280         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
31281         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
31282         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
31283         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
31284         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
31285         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
31286         * sysdeps/unix/sysv/linux/speed.c: Likewise.
31287         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
31288         * sysdeps/wordsize-32/divdi3.c: Likewise.
31289         * time/sys/time.h: Likewise.
31290         * wcsmbs/Makefile: Likewise.
31291
31292 2013-01-01  David S. Miller  <davem@davemloft.net>
31293
31294         * po/fr.po: Update from translation team.
31295
31296         * catgets/gencat.c: Update copyright year.
31297         * csu/version.c: Likewise.
31298         * debug/catchsegv.sh: Likewise.
31299         * debug/pcprofiledump.c: Likewise.
31300         * debug/xtrace.sh: Likewise.
31301         * elf/ldconfig.c: Likewise.
31302         * elf/ldd.bash.in: Likewise.
31303         * elf/pldd.c: Likewise.
31304         * elf/sotruss.ksh: Likewise.
31305         * elf/sprof.c: Likewise.
31306         * iconv/iconv_prog.c: Likewise.
31307         * iconv/iconvconfig.c: Likewise.
31308         * locale/programs/locale.c: Likewise.
31309         * locale/programs/localedef.c: Likewise.
31310         * login/programs/pt_chown.c: Likewise.
31311         * malloc/memusage.sh: Likewise.
31312         * malloc/memusagestat.c: Likewise.
31313         * malloc/mtrace.pl: Likewise.
31314         * nscd/nscd.c: Likewise.
31315         * nss/getent.c: Likewise.
31316         * nss/makedb.c: Likewise.
31317         * posix/getconf.c: Likewise.
31318
31319 2012-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
31320
31321         * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
31322         numbers.
31323
31324 2012-12-30  Mike Frysinger  <vapier@gentoo.org>
31325
31326         * math/bits/mathcalls.h (modf): Use __nonnull.
31327
31328 2012-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
31329
31330         * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
31331         (split): Use macro CN instead of the bare value.
31332         * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
31333         could be used.
31334         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
31335         instead of the bare value.
31336         (power1): Likewise.
31337
31338 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31339
31340         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
31341         __ATAN_TWOM.
31342         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
31343
31344         * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
31345         their values.
31346         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
31347         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
31348         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
31349         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
31350
31351 2012-12-28  Andreas Jaeger  <aj@suse.de>
31352
31353         * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define.  New
31354         values are from Linux 3.7.
31355
31356         * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
31357         (TCPI_OPT_ECN_SEEN): Define.  Sync with Linux 3.7.
31358
31359 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31360
31361         * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
31362         TRUE case.
31363
31364         * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
31365         (norm): Likewise.
31366         * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
31367         variables with preprocessor constants.
31368         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
31369         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
31370         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
31371
31372 2012-12-27  Bruno Haible  <bruno@clisp.org>
31373
31374         [BZ #14317]
31375         * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
31376         only if needed.
31377
31378 2012-12-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
31379
31380         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
31381         and use variable directly.
31382         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
31383
31384         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
31385         MPONE.
31386         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
31387         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
31388         variable MPONE.
31389         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
31390         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
31391         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
31392         include directive.  Remove local variable MPONE.
31393         * sysdeps/ieee754/dbl-64/mplog.h: Remove.
31394         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
31395         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
31396
31397 2012-12-25  David S. Miller  <davem@davemloft.net>
31398
31399         * version.h (RELEASE): Set to "development".
31400         (VERSION): Set to "2.17.90".
31401         * NEWS: Add 2.18 section.
31402
31403 2012-12-21  David S. Miller  <davem@davemloft.net>
31404
31405         * po/hr.po: Update from translation team.
31406
31407 2012-12-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
31408
31409         * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
31410
31411 2012-12-19  Steve Ellcey  <sellcey@mips.com>
31412
31413         * NEWS:  Mention new memcpy for MIPS.
31414
31415 2012-12-18  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
31416
31417         * manual/contrib.texi (Contributors): Spelling correction.
31418
31419 2012-12-15  David S. Miller  <davem@davemloft.net>
31420
31421         * po/ru.po: Update from translation team.
31422
31423 2012-12-13  David S. Miller  <davem@davemloft.net>
31424
31425         * NEWS: Mention IFUNC testsuite enhancements.
31426
31427         * po/pl.po: Update from translation team.
31428         * po/bg.po: Likewise.
31429
31430         * manual/contrib.texi (Contributors): Update entries for Hongjiu
31431         Lu and Joseph S. Myers.  Add entry for Marcus Shawcroft.
31432
31433 2012-12-11  David S. Miller  <davem@davemloft.net>
31434
31435         * po/sv.po: Update from translation team.
31436
31437         * po/vi.po: Update from translation team.
31438
31439         * po/cs.po: Update from translation team.
31440
31441         * po/de.po: Update from translation team.
31442         * po/eo.po: Likewise.
31443         * po/nl.po: Likewise.
31444
31445 2012-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
31446
31447         [BZ #14246]
31448         * manual/argp.texi (Argp Helper Functions): Move node to follow
31449         Argp Parsing State.
31450
31451         [BZ #14872]
31452         * manual/conf.texi (Limits on File System Capacity): Mention if
31453         terminating null is included in the max size.
31454
31455 2012-12-10  Andreas Jaeger  <aj@suse.de>
31456
31457         * po/cs.po: Update from translation team.
31458
31459 2012-12-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
31460
31461         * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
31462         void pointer and cast to uintptr_t.
31463         * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
31464         path.
31465         * sysdeps/s390/s390-64/memcpy.S: Likewise.
31466         * sysdeps/s390/s390-64/memset.S: Likewise.
31467
31468 2012-12-08  Benno Schulenberg  <bensberg@justemail.net>
31469
31470         [BZ #14833]
31471         * menual/message.texi (Message Translation): Fix typos.
31472         (Helper programs for gettext): Likewise.
31473
31474 2012-12-07  Andreas Schwab  <schwab@linux-m68k.org>
31475
31476         [BZ #14898]
31477         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
31478         Change to -1.
31479
31480 2012-12-07  David S. Miller  <davem@davemloft.net>
31481
31482         * po/libc.pot: Update.
31483
31484 2012-12-07  Richard Henderson  <rth@redhat.com>
31485
31486         [BZ #10114]
31487         * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
31488         normal/normal case to before the switch.
31489         (_FP_DIV): Likewise.
31490
31491 2012-12-06  Carlos O'Donell  <carlos@systemhalted.org>
31492             Mike Frysinger  <vapier@gentoo.org>
31493
31494         * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
31495         check for __NR_fadvise64_64.
31496
31497 2012-12-06  Chris Metcalf  <cmetcalf@tilera.com>
31498
31499         * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
31500         0, not just to plain "0" as a statement.
31501         (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
31502         with cw.
31503
31504 2012-12-06  Joseph Myers  <joseph@codesourcery.com>
31505
31506         * NEWS: Use sourceware.org in Bugzilla URL.
31507
31508 2012-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
31509
31510         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
31511         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
31512
31513         * stdio-common/tst-put-error.c (do_test): Add newline to the
31514         padded test to ensure flush.
31515
31516 2012-12-05  Jeff Law  <law@redhat.com>
31517
31518         * sunrpc/etc.rpc (fedfs_admin): Add entry.
31519
31520 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
31521
31522         * README: Don't refer to ports add-on as distributed separately.
31523         Mention AArch64 in list of systems supported in the ports add-on.
31524
31525         * LICENSES: Add more non-FSF copyright and license notices.
31526
31527         * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
31528         ((unused)).
31529
31530         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
31531
31532         * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
31533         10000 as width of padded output.
31534
31535 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
31536
31537         * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
31538
31539         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
31540         variable LX with __attribute__ ((unused)).
31541         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
31542         Likewise.
31543         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
31544         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
31545         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
31546         with __attribute__ ((unused)).
31547
31548 2012-12-04  David S. Miller  <davem@abraco.davemloft.net>
31549
31550         * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
31551
31552 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
31553
31554         * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
31555         (CFLAGS-nldbl-acos.c): New variable.
31556         [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
31557         [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
31558         [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
31559         [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
31560         [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
31561         [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
31562         [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
31563         [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
31564         [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
31565         [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
31566         [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
31567         [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
31568         [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
31569         [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
31570         [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
31571         [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
31572         [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
31573         [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
31574         [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
31575         [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
31576         [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
31577         [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
31578         [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
31579         [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
31580         [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
31581         [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
31582         [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
31583         [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
31584         [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
31585         [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
31586         [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
31587         [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
31588         [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
31589         [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
31590         [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
31591         [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
31592         [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
31593         [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
31594         [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
31595         [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
31596         [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
31597         [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
31598         [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
31599         [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
31600         [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
31601         [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
31602         [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
31603         [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
31604         [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
31605         [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
31606         [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
31607         [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
31608         [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
31609         [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
31610         [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
31611         [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
31612         [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
31613         [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
31614         [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
31615         [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
31616         [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
31617         [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
31618         [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
31619         [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
31620         [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
31621         [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
31622         [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
31623         [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
31624         [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
31625         [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
31626         [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
31627         [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
31628         [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
31629         [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
31630         [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
31631         [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
31632         [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
31633         [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
31634         [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
31635         [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
31636         [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
31637         [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
31638         [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
31639         [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
31640         [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
31641         [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
31642         [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
31643         [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
31644         [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
31645         [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
31646         [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
31647         [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
31648         [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
31649         [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
31650         [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
31651         [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
31652         [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
31653
31654         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
31655         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
31656
31657         [BZ #14914]
31658         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
31659         whole low double instead of just low 47 bits when splitting values
31660         into two parts.
31661
31662 2012-12-03  Allan McRae  <allan@archlinux.org>
31663
31664         * manual/stdio.texi (Predefined Printf Handlers): Remove
31665         @hsep and @vsep usage.
31666
31667 2012-12-03  Mike Frysinger  <vapier@gentoo.org>
31668
31669         * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
31670         * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
31671
31672 2012-12-03  Jeff Law  <law@redhat.com>
31673
31674         * time/sys/time.h (settimeofday): Do not mark TV argument
31675         as __nonnull.
31676
31677 2012-12-01  Mike Frysinger  <vapier@gentoo.org>
31678
31679         * libio/fileops.c (_IO_new_file_close_it): Do not always flush
31680         when currently writing and seek to current position when not.
31681         * libio/Makefile (tests): Remove bug-fclose1.
31682         * libio/bug-fclose1.c: Delete.
31683
31684 2012-12-01  Joseph Myers  <joseph@codesourcery.com>
31685
31686         * manual/arith.texi (feenableexcept): Fix typo.
31687         (fedisableexcept): Likewise.
31688
31689 2012-11-30  Roland McGrath  <roland@hack.frob.com>
31690
31691         * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
31692         second, differently-typed declaration, rather than a cast.
31693
31694 2012-11-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
31695
31696         * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
31697         * include/rpc/svc.h: ... here.
31698
31699 2012-11-30  Aurelien Jarno  <aurel32@debian.org>
31700
31701         [BZ #13013]
31702         * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
31703         depending n and resplen2 to catch cases where answer
31704         equals answerp2.
31705
31706 2012-11-29  Carlos O'Donell  <carlos@systemhalted.org>
31707
31708         * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
31709         for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
31710
31711 2012-11-29  Mike Frysinger  <vapier@gentoo.org>
31712
31713         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
31714
31715 2012-11-29  Roland McGrath  <roland@hack.frob.com>
31716
31717         * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
31718
31719 2012-11-28  Jeff Law  <law@redhat.com>
31720
31721         [BZ #13761]
31722         * nscd/grpcache.c (cache_addgr): Rename alloca_used to
31723         dataset_temporary.  Track alloca usage into alloca_used.
31724         If dataset is large allocate and release it via malloc/free.
31725
31726 2012-06-04  Florian Weimer  <fweimer@redhat.com>
31727
31728         [BZ #14197]
31729         * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
31730
31731 2012-11-28  David S. Miller  <davem@davemloft.net>
31732
31733         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31734
31735 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
31736
31737         [BZ #14803]
31738         * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
31739         of pi/2 rounded to nearest to 64 bits.
31740         (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
31741         nearest to 64 bits.
31742         (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
31743         bits.
31744
31745 2012-11-28  Jeff Law <law@redhat.com>
31746             Martin Osvald <mosvald@redhat.com>
31747
31748         [BZ #14889]
31749         * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
31750         * sunrpc/svc.c: Include time.h.
31751         (__svc_accept_failed): New function.
31752         * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
31753         any reason other than EINTR, call __svc_accept_failed.
31754         * sunrpc/svc_udp.c (svcudp_recv): Similarly.
31755         * sunrpc/svc_unix.c (rendezvous_request): Similarly.
31756
31757 2012-11-28  Andreas Schwab  <schwab@suse.de>
31758
31759         * scripts/abilist.awk: Also handle indirect functions in .opd
31760         section.
31761
31762 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
31763
31764         [BZ #13881]
31765         * sysdeps/x86/fpu/powl_helper.c: New file.
31766         * sysdeps/x86/fpu/Makefile: Likewise.
31767         * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
31768         (p3): New object.
31769         (__ieee754_powl): Use __powl_helper for finite arguments except
31770         integer exponents below 8.
31771         * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
31772         (p3): New object.
31773         (__ieee754_powl): Use __powl_helper for finite arguments except
31774         integer exponents below 8.
31775         * math/libm-test.inc (pow_test): Add more tests and enable some
31776         previously disabled tests.
31777         * sysdeps/i386/fpu/libm-test-ulps: Update.
31778         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31779
31780 2012-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31781             Carlos O'Donell  <carlos_odonell@mentor.com>
31782
31783         * nss/makedb.c (is_prime): Assert that input is odd and greater
31784         than 4.  Note that fact in a comment too.
31785         (next_prime): Add 4 to input.
31786
31787 2012-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
31788
31789         [BZ #11741]
31790         * libio/Makefile (tests): Add test case tst-fwrite-error.
31791         * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
31792         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
31793         * libio/tst-fwrite-error.c: New test case.
31794
31795 2012-11-26  H.J. Lu  <hongjiu.lu@intel.com>
31796
31797         * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
31798         before casting to void *.
31799         * include/libc-internal.h (__pointer_type): New macro.
31800         (__integer_if_pointer_type_sub): Likewise.
31801         (__integer_if_pointer_type): Likewise.
31802         (cast_to_integer): Likewise.
31803         * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
31804         (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
31805         before casting to atomic64_t.
31806         (atomic_exchange_acq): Likewise.
31807         (__arch_exchange_and_add_body): Likewise.
31808         (__arch_add_body): Likewise.
31809         (atomic_add_negative): Likewise.
31810         (atomic_add_zero): Likewise.
31811
31812 2012-11-26  Joseph Myers  <joseph@codesourcery.com>
31813
31814         * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
31815         (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
31816         (add_fdes): Likewise.
31817         (linear_search_fdes): Likewise.
31818         (binary_search_unencoded_fdes): Likewise.
31819
31820 2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
31821
31822         * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
31823
31824 2012-11-24  Adam Conrad  <adconrad@0c3.net>
31825
31826         * configure.in: Autodetect C++ header directories.
31827         * configure: Regenerated.
31828
31829 2012-11-23  Mike Frysinger  <vapier@gentoo.org>
31830
31831         * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
31832
31833 2012-11-23  Andreas Schwab  <schwab@linux-m68k.org>
31834
31835         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
31836
31837 2012-11-22  Joseph Myers  <joseph@codesourcery.com>
31838
31839         * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
31840         LDBL_MANT_DIG == 106]: Disable some tests.
31841         (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
31842         Likewise.
31843         (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
31844         Likewise.
31845
31846         [BZ #14871]
31847         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
31848         input for small inputs.  Return +/- pi/2 for large inputs.
31849         * math/libm-test.inc (atan_test): Add more tests.
31850
31851         * sysdeps/generic/unwind-dw2-fde-glibc.c
31852         (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
31853         __attribute__ ((unused)).
31854
31855         [BZ #14645]
31856         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
31857         x * y if x and y are nonzero and z is zero.
31858
31859         [BZ #14811]
31860         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
31861         nonzero exponents with absolute value below 0x1p-117 to +/-
31862         0x1p-117.
31863
31864         [BZ #14869]
31865         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
31866         up arguments below 2**-450, not just those below 2**-500.
31867         * math/libm-test.inc (hypot_test): Add another test.
31868
31869         [BZ #14868]
31870         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
31871         Return a+b for ratio over 2**120, not 2**60.
31872         * math/libm-test.inc (hypot_test): Add another test.
31873
31874         * math/libm-test.inc (clog_test): Use
31875         UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
31876         (clog10_test): Likewise.
31877
31878         [BZ #6778]
31879         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
31880
31881 2012-11-22  Andreas Schwab  <schwab@suse.de>
31882
31883         * sysdeps/i386/fpu/libm-test-ulps: Update.
31884
31885 2012-11-22  Pino Toscano  <toscano.pino@tiscali.it>
31886
31887         * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
31888         printf output with newline.
31889
31890 2012-11-21  H.J. Lu  <hongjiu.lu@intel.com>
31891
31892         [BZ #14865]
31893         * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
31894         * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
31895         -z nodlopen, -z initfirst and -z execstack support.
31896         * configure: Regenerated.
31897
31898         * elf/elf.h (DF_1_NODIRECT): New macro.
31899         (DF_1_IGNMULDEF): Likewise.
31900         (DF_1_NOKSYMS): Likewise.
31901         (DF_1_NOHDR): Likewise.
31902         (DF_1_EDITED): Likewise.
31903         (DF_1_NORELOC): Likewise.
31904         (DF_1_SYMINTPOSE): Likewise.
31905         (DF_1_GLOBAUDIT): Likewise.
31906         (DF_1_SINGLETON): Likewise.
31907         * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
31908         DT_1_SUPPORTED_MASK bits.
31909         * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
31910
31911 2012-11-20  Carlos O'Donell  <carlos_odonell@mentor.com>
31912
31913         * sysdeps/unix/make-syscalls.sh: Document prefixes.
31914
31915 2012-11-20  Thomas Schwinge  <thomas@codesourcery.com>
31916
31917         * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
31918         macro.
31919
31920         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
31921         (sendmmsg): Move declarations...
31922         * socket/sys/socket.h: ... here.
31923         * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
31924         !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
31925         include it from...
31926         * socket/recvmmsg.c: ... this new file.
31927         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
31928         (sendmmsg): Rename to __sendmmsg, create weak alias and make
31929         definition of __sendmmsg hidden.
31930         * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
31931         [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
31932         Move ENOSYS stub into and include it from...
31933         * socket/sendmmsg.c: ... this new file.
31934         * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
31935         (sysdep_routines): Move recvmmsg and sendmmsg...
31936         * socket/Makefile (routines): ... here.
31937         * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
31938         (GLIBC_PRIVATE): Add __sendmmsg.
31939         * include/sys/socket.h (__sendmmsg): Add declarations.
31940         * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
31941         sendmmsg.
31942
31943 2012-11-20  Joseph Myers  <joseph@codesourcery.com>
31944
31945         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
31946         variable I1 with __attribute__ ((unused)).
31947         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
31948
31949 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
31950
31951         * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
31952         DUMMY variables with __attribute__ ((unused)).
31953
31954         * bits/byteswap.h: Include <bits/types.h>.
31955         (__bswap_64): Use __uint64_t instead of unsigned long long int.
31956
31957 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
31958
31959         * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
31960         string_t.  Do not manually set errno.
31961         (__ptsname_r): Change the type of PEERNAME to string_t, and check its
31962         length with __strnlen.  Make sure to both set errno and return it on
31963         failure.
31964
31965 2012-11-19  David S. Miller  <davem@davemloft.net>
31966
31967         With help from Joseph Myers.
31968         * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
31969         very large arguments properly.
31970         * math/libm-test.inc (atan_test): New tests.
31971         (atan2_test): New tests.
31972         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31973         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
31974
31975 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
31976
31977         [BZ #14856]
31978         * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
31979         Define to 3.
31980
31981         * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
31982         [POSIX] (EADDRNOTAVAIL): Likewise.
31983         [POSIX] (EAFNOSUPPORT): Likewise.
31984         [POSIX] (EALREADY): Likewise.
31985         [POSIX] (ECONNABORTED): Likewise.
31986         [POSIX] (ECONNREFUSED): Likewise.
31987         [POSIX] (ECONNRESET): Likewise.
31988         [POSIX] (EDESTADDRREQ): Likewise.
31989         [POSIX] (EDQUOT): Likewise.
31990         [POSIX] (EHOSTUNREACH): Likewise.
31991         [POSIX] (EIDRM): Likewise.
31992         [POSIX] (EISCONN): Likewise.
31993         [POSIX] (ELOOP): Likewise.
31994         [POSIX] (EMULTIHOP): Likewise.
31995         [POSIX] (ENETDOWN): Likewise.
31996         [POSIX] (ENETUNREACH): Likewise.
31997         [POSIX] (ENOBUFS): Likewise.
31998         [POSIX] (ENODATA): Likewise.
31999         [POSIX] (ENOLINK): Likewise.
32000         [POSIX] (ENOMSG): Likewise.
32001         [POSIX] (ENOPROTOOPT): Likewise.
32002         [POSIX] (ENOSR): Likewise.
32003         [POSIX] (ENOSTR): Likewise.
32004         [POSIX] (ENOTCONN): Likewise.
32005         [POSIX] (ENOTSOCK): Likewise.
32006         [POSIX] (EOPNOTSUPP): Likewise.
32007         [POSIX] (EOVERFLOW): Likewise.
32008         [POSIX] (EPROTO): Likewise.
32009         [POSIX] (EPROTONOSUPPORT): Likewise.
32010         [POSIX] (EPROTOTYPE): Likewise.
32011         [POSIX] (ESTALE): Likewise.
32012         [POSIX] (ETIME): Likewise.
32013         [POSIX] (ETXTBSY): Likewise.
32014         [POSIX] (EWOULDBLOCK): Likewise.
32015         [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
32016         * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
32017         [POSIX] (SEEK_CUR): Likewise.
32018         [POSIX] (SEEK_END): Likewise.
32019         [POSIX || UNIX98] (mode_t): Do not require.
32020         [POSIX] (off_t): Likewise.
32021         [POSIX] (pid_t): Likewise.
32022         [POSIX] (sys/stat.h): Do not allow header.
32023         [POSIX] (unistd.h): Likewise.
32024         [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
32025         [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
32026         [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
32027         * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
32028         require.
32029         * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
32030         sigevent): Specify elements.
32031         [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
32032         entry.
32033         [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
32034         [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
32035
32036         * conform/data/cpio.h-data [POSIX]: Disable whole file.
32037         * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
32038         * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
32039         (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
32040         [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
32041         [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
32042         [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
32043         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
32044         [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
32045         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
32046         [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
32047         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
32048         [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
32049         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
32050         Likewise.
32051         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
32052         Likewise.
32053         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
32054         Likewise.
32055         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
32056         Likewise.
32057         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
32058         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
32059         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
32060         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
32061         [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
32062         Specify lower bound on value.
32063         [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
32064         [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
32065         [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
32066         [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
32067         [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
32068         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
32069         [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
32070         [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
32071         value.
32072         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
32073         as optional.
32074         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
32075         [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
32076         [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
32077         [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
32078         [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
32079         [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
32080         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
32081         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
32082         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
32083         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
32084         [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
32085         [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
32086         [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
32087         [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
32088         [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
32089         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
32090         entry.
32091         [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
32092         optional.
32093         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
32094         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
32095         [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
32096         [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
32097         [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
32098         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
32099         Likewise.
32100         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
32101         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
32102         [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
32103         [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
32104         [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise.  Give
32105         value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
32106         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
32107         as optional.
32108         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
32109         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
32110         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
32111         [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
32112         Likewise.  Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
32113         [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
32114         specify as optional.
32115         [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
32116         [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
32117         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
32118         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
32119         [POSIX || XPG3] (NL_ARGMAX): Do not allow.
32120         [XPG3] (NL_LANGMAX): Likewise.
32121         [POSIX || XPG3] (NL_MSGMAX): Likewise.
32122         [POSIX || XPG3] (NL_NMAX): Likewise.
32123         [POSIX || XPG3] (NL_SETMAX): Likewise.
32124         [POSIX || XPG3] (NL_TEXTMAX): Likewise.
32125         [XPG3] (NZERO): Likewise.
32126         [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
32127         [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
32128         [!ISO && !ISO99 && !ISO11] (*_t): Allow.
32129         * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
32130         (REG_ERANGE): Expect.
32131         * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
32132         optional-constant.
32133         [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
32134         Use (void) in prototype.
32135         [POSIX] (*_t): Allow.
32136         * conform/data/sys/times.h-data [POSIX]: Enable whole file.
32137         * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
32138         (WRDE_BADVAL): Expect.
32139
32140         * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
32141         expect.
32142         [XPG3 || XPG4] (O_RSYNC): Likewise.
32143         * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
32144         Likewise.
32145         [XPG3 || XPG4] (pthread_sigmask): Likewise.
32146         [XPG3 || XPG4] (sigqueue): Likewise.
32147         [XPG3 || XPG4] (sigtimedwait): Likewise.
32148         [XPG3 || XPG4] (sigwaitinfo): Likewise.
32149         * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
32150         [XPG3 || XPG4] (vsnprintf): Likewise.
32151         * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
32152         Likewise.
32153         [XPG3 || XPG4] (blksize_t): Likewise.
32154         * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
32155         Likewise.
32156         [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
32157         [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
32158         [XPG3 || XPG4] (struct itimerspec): Likewise.
32159         [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
32160         [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
32161         [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
32162         [XPG3 || XPG4] (clockid_t): Likewise.
32163         [XPG3 || XPG4] (timer_t): Likewise.
32164         [XPG3 || XPG4] (clock_getres): Likewise.
32165         [XPG3 || XPG4] (clock_gettime): Likewise.
32166         [XPG3 || XPG4] (clock_settime): Likewise.
32167         [XPG3 || XPG4] (nanosleep): Likewise.
32168         [XPG3 || XPG4] (timer_create): Likewise.
32169         [XPG3 || XPG4] (timer_delete): Likewise.
32170         [XPG3 || XPG4] (timer_gettime): Likewise.
32171         [XPG3 || XPG4] (timer_getoverrun): Likewise.
32172         [XPG3 || XPG4] (timer_settime): Likewise.
32173         * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
32174         [XPG3 || XPG4] (getlogin_r): Likewise.
32175         [XPG3 || XPG4] (pread): Likewise.
32176         [XPG3 || XPG4] (pthread_atfork): Likewise.
32177         [XPG3 || XPG4] (pwrite): Likewise.
32178
32179         [BZ #14835]
32180         * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
32181         <bits/siginfo.h>.
32182
32183 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
32184
32185         * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
32186         finalizing MALLSTREAM.
32187
32188         * sysdeps/mach/hurd/syncfs.c: New file.
32189
32190 2012-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
32191
32192         [BZ #14719]
32193         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
32194         NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
32195         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
32196         h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
32197         (_nss_dns_gethostbyname4_r): Likewise.
32198         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
32199         EAI_SYSTEM if NSS_STATUS_UNAVAIL.
32200
32201 2012-11-19  Peng Haitao  <penght@cn.fujitsu.com>
32202
32203         [BZ #13763]
32204         * sunrpc/bindrsvprt.c: Add lock to protect static variable.
32205
32206 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
32207
32208         * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
32209         * elf/cache.c (print_entry): Print ",AArch64" for
32210         FLAG_AARCH64_LIB64
32211
32212         * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
32213         * elf/cache.c (print_entry): Print ",hard-float" for
32214         FLAG_ARM_LIBHF.
32215
32216 2012-11-18  David S. Miller  <davem@davemloft.net>
32217
32218         With help from Joseph Myers.
32219         * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
32220         cutoff to 2**-13.
32221         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
32222         cutoff to 2**-25.
32223         * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
32224         ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
32225         small.
32226         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
32227         * math/libm-test.inc (y0_test): New tests.
32228         (y1_test): New tests.
32229         * sysdeps/i386/fpu/libm-test-ulps: Update.
32230         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
32231         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32232
32233 2012-11-18  Andreas Schwab  <schwab@linux-m68k.org>
32234
32235         * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
32236         64-bit targets.
32237         * configure: Regenerated.
32238
32239 2012-11-17  David S. Miller  <davem@davemloft.net>
32240
32241         [BZ #14811]
32242         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
32243         nonzero exponents with absolute value below 0x1p-128 to +/-
32244         0x1p-128.
32245
32246 2012-11-17  Joseph Myers  <joseph@codesourcery.com>
32247
32248         * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
32249
32250         * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
32251
32252         * posix/getconf-speclist.c: New file.
32253         * posix/posix-envs.def: Likewise.
32254         * posix/confstr.c (START_ENV_GROUP): New macro.
32255         (END_ENV_GROUP): Likewise.
32256         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
32257         (KNOWN_PRESENT_ENV_STRING): Likewise.
32258         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
32259         (UNKNOWN_ENVIRONMENT): Likewise.
32260         (confstr): Include posix-envs.def instead of handling
32261         _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
32262         _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
32263         * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
32264         (END_ENV_GROUP): Likewise.
32265         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
32266         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
32267         (UNKNOWN_ENVIRONMENT): Likewise.
32268         (__sysconf): Include posix-envs.def instead of handling associated
32269         cases directly here.
32270         * posix/Makefile ($(objpfx)getconf.speclist): Generate by
32271         preprocessing getconf-speclist.c rather than running getconf or
32272         generating empty file.
32273
32274 2012-11-16  Pino Toscano  <toscano.pino@tiscali.it>
32275
32276         * scripts/check-local-headers.sh: Ignore 'mach' headers.
32277
32278 2012-11-16  Andrej Lajovic  <natrij@gmail.com>
32279
32280         [BZ #14672]
32281         * iconv/iconv_prog.c (main): Fix -c handling of '/'.
32282
32283 2012-11-16  David S. Miller  <davem@davemloft.net>
32284
32285         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
32286         smaller than LDBL_EPSILON/2.0L, just return xm1.
32287
32288 2012-11-16  H.J. Lu  <hongjiu.lu@intel.com>
32289
32290         * elf/tst-array1.c (init): Set constructor priority to 1000.
32291         (fini): Set destructor priority to 1000.
32292         * elf/tst-array2dep.c: Likewise.
32293
32294 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
32295
32296         [BZ #11741]
32297         * libio/fileops.c (_IO_new_file_write): Correctly return error.
32298         (_IO_new_file_xsputn): Also return EOF if none of the input
32299         data was written when overflow failed.
32300         * libio/iopadn.c (_IO_padn): Likewise.
32301         * libio/iowpadn.c (_IO_wpadn): Likewise.
32302         * stdio-common/tst-put-error.c: Add copyright notice.
32303         (do_test): Add case for printing padded string.
32304         * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
32305         _IO_padn returned error.
32306         [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
32307         * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
32308         return EOF.
32309
32310 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
32311
32312         * libio/libioP.h: Add comment note that the references to C++
32313         bits are now obsolete.
32314
32315 2012-11-15  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32316
32317         * math/libm-test.inc (check_complex): Use asprintf.
32318
32319 2012-11-14  Joseph Myers  <joseph@codesourcery.com>
32320
32321         * debug/pcprofiledump.c (print_version): Update copyright year.
32322         * malloc/memusagestat.c (print_version): Likewise.
32323
32324 2012-11-14  H.J. Lu  <hongjiu.lu@intel.com>
32325
32326         [BZ #14831]
32327         * elf/Makefile (tests): Add tst-audit8.
32328         ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
32329         ($(objpfx)tst-audit8.out): New target.
32330         (tst-audit8-ENV): New variable.
32331         * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
32332         audit if l_reloc_result is NULL.
32333         (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
32334         defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
32335         * elf/tst-audit8.c: New file.
32336
32337 2012-11-14  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32338
32339         * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
32340         * misc/Makefile (CFLAGS-select.c): Define.
32341         * posix/Makefile (CFLAGS-pause.c): Define.
32342
32343 2012-11-13  David S. Miller  <davem@davemloft.net>
32344
32345         * crypt/Makefile: Move test targets after toplevel Rules
32346         inclusion.  Grab any necessary sysdep routines when linking.
32347         * crypt/md5.c (md5_process_block): Remove define, we will always
32348         name it __md5_process_block.
32349         (md5_finish_ctx): Update md5_process_block call.
32350         (md5_stream): Likewise.
32351         (md5_process_bytes): Likewise.
32352         (md5_process_block): Rename to __md5_process_block and move to ...
32353         * crypt/md5-block.c: ... here.
32354         * crypt/sha256.c (sha256_process_block): Move to ...
32355         * crypt/sha256-block.c: ... here.
32356         * crypt/sha512.c (sha512_process_block): Move to ...
32357         * crypt/sha512-block.c: ... here.
32358         * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
32359         path.
32360         * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
32361         * sysdeps/sparc/sparc64/multiarch/Makefile
32362         (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
32363         crypt subdir.
32364         (localedef-aux): Add md5 crypto assembler when in locale subdir.
32365         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
32366         multiarch changes.
32367         * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
32368         * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
32369         * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
32370         * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
32371         * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
32372         * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
32373         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
32374         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
32375         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
32376         file.
32377         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
32378         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
32379         file.
32380         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
32381
32382 2012-11-13  Joseph Myers  <joseph@codesourcery.com>
32383
32384         * timezone/tzselect.ksh: Update from tzcode git revision
32385         a435f9f0ecafa56d9e0263835836bd0c64cd7307.
32386         * timezone/zdump.c: Likewise.
32387         * timezone/zic.c: Likewise.
32388         * timezone/Makefile ($(objpfx)version.h): Only include $(version)
32389         in TZVERSION setting, not $(PKGVERSION).
32390         ($(objpfx)tzselect): Likewise.  Also substitute PKGVERSION and
32391         REPORT_BUGS_TO settings.
32392
32393         [BZ #14838]
32394         * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
32395         macro.
32396
32397 2012-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32398
32399         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
32400         detection to immediately after _FP_ROUND().
32401         * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
32402         bits are 0.
32403
32404 2012-11-11  David S. Miller  <davem@davemloft.net>
32405
32406         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
32407         inttypes.h
32408         (__get_clockfreq_via_proc_openprom): Use __open, __read, and
32409         __close rather than their public counterparts.
32410
32411 2012-11-10  Joseph Myers  <joseph@codesourcery.com>
32412
32413         * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
32414         file.
32415         [UNIX98] (sem_timedwait): Do not expect.
32416         * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
32417         [XPG4 || UNIX98] (sockatmark): Do not expect.
32418         * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
32419         (clock_getcpuclockid): Do not expect.
32420         [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
32421         * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
32422         Do not expect.
32423         [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
32424         * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
32425         [UNIX98] (vwscanf): Likewise.
32426         [UNIX98] (vswscanf): Likewise.
32427
32428 2012-11-09  Joseph Myers  <joseph@codesourcery.com>
32429
32430         * timezone/version.h: Remove file.
32431         * timezone/README: Do not refer to version.h.
32432         * timezone/Makefile ($(objpfx)zic.o): New dependency on
32433         $(objpfx)version.h.
32434         ($(objpfx)zdump.o): Likewise.
32435         ($(objpfx)version.h): New target.
32436
32437         * timezone/tzselect.ksh: Change to verbatim copy from tzcode
32438         2012i.
32439         * timezone/README: Don't mention modification to tzselect.ksh.
32440         * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
32441         work on unmodified tzselect.ksh.  Substitute version numbers in
32442         tzselect.ksh.
32443
32444         * Makefile (format-me): Remove.
32445         (INSTALL): Adjust indentation.  Use commands directly instead of
32446         using $(format-me).
32447
32448         * aclocal.m4 (ACX_PKGVERSION): New macro.
32449         (ACX_BUGURL): Likewise.
32450         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
32451         (PKGVERSION): New AC_DEFINE_UNQUOTED.
32452         (REPORT_BUGS_TO): Likewise.
32453         * configure: Regenerated.
32454         * config.h.in (PKGVERSION): New macro.
32455         (REPORT_BUGS_TO): Likewise.
32456         * config.make.in (PKGVERSION): New variable.
32457         (PKGVERSION_TEXI): Likewise.
32458         (REPORT_BUGS_TO): Likewise.
32459         (REPORT_BUGS_TEXI): Likewise.
32460         * Makefile (format-me): Use -I$(common-objpfx)manual.
32461         (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
32462         ($(common-objpfx)manual/%): New target.
32463         (manual/%): Remove target.
32464         * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
32465         (print_version): Use PKGVERSION.
32466         * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
32467         * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
32468         and REPORT_BUGS_TO.
32469         ($(objpfx)xtrace): Likewise.
32470         * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
32471         * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
32472         (print_version): Use PKGVERSION.
32473         * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
32474         (do_version): Use PKGVERSION.
32475         * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
32476         REPORT_BUGS_TO.
32477         (common-ldd-rewrite): Likewise.
32478         * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
32479         * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
32480         (print_version): Use PKGVERSION.
32481         * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
32482         * elf/pldd.c (argp_program_bug_address): Remove variable.
32483         (more_help): New function.
32484         (argp): Use more_help.
32485         (print_version): Use PKGVERSION.
32486         * elf/sln.c (main): Use PKGVERSION.
32487         (usage): Use REPORT_BUGS_TO.
32488         * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
32489         (top level): Use PKGVERSION.
32490         * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
32491         (print_version): Use PKGVERSION.
32492         * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
32493         (print_version): Use PKGVERSION.
32494         * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
32495         (print_version): Use PKGVERSION.
32496         * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
32497         (print_version): Use PKGVERSION.
32498         * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
32499         (print_version): Use PKGVERSION.
32500         * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
32501         (print_version): Use PKGVERSION.
32502         * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
32503         and BUGURL.
32504         ($(objpfx)memusage): Likewise.
32505         * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
32506         (do_version): Use PKGVERSION.
32507         * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
32508         (print_version): Use PKGVERSION.
32509         * malloc/mtrace.pl ($PACKAGE): Remove variable.
32510         ($PKGVERSION): New variable.
32511         ($REPORT_BUGS_TO): Likewise.
32512         (usage): Use $REPORT_BUGS_TO.
32513         (top level): Use $PKGVERSION.
32514         * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
32515         ($(objpfx)pkgvers.texi): New rule.
32516         ($(objpfx)stamp-pkgvers): Likewise.
32517         * manual/install.texi: Include pkgvers.texi.
32518         (--with-pkgversion): Document new configure option.
32519         (--with-bugurl): Likewise.
32520         (Reporting Bugs): Describe Bugzilla as upstream tracker rather
32521         than necessarily for this particular distribution.  Use
32522         REPORT_BUGS_TO for where to report bugs.
32523         * INSTALL: Regenerated.
32524         * manual/libc.texinfo: Include pkgvers.texi.
32525         [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
32526         * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
32527         (print_version): Use PKGVERSION.
32528         * nss/getent.c (more_help): Use REPORT_BUGS_TO.
32529         (print_version): Use PKGVERSION.
32530         * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
32531         (print_version): Use PKGVERSION.
32532         * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
32533         * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
32534         macro.
32535         * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
32536         (print_version): Use PKGVERSION.
32537         * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
32538         (print_version): Use PKGVERSION.
32539         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
32540         and PKGVERSION.
32541
32542         * timezone/checktab.awk: Update from tzcode 2012i.
32543         * timezone/ialloc.c: Likewise.
32544         * timezone/private.h: Likewise.
32545         * timezone/scheck.c: Likewise.
32546         * timezone/tzfile.h: Likewise.
32547         * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
32548         (TZVERSION): Hardcode tzcode version number.
32549         * timezone/zdump.c: Update from tzcode 2012i.
32550         * timezone/zic.c: Likewise.
32551         * timezone/version.h: New file.
32552         * timezone/README: Describe version.h.  Update upstream location.
32553
32554         [BZ #14824]
32555         * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
32556         (mktemp): Enable declaration.
32557         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
32558         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
32559         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
32560         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
32561         Likewise.
32562         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
32563         Likewise.
32564         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
32565         Likewise.
32566         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
32567         Likewise.
32568         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
32569         Likewise.
32570         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
32571         Likewise.
32572
32573         [BZ #14821]
32574         * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
32575         offset in buffer as u_int32_t not u_long.  Consistently use memcpy
32576         for copies of such integer values.
32577         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
32578         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
32579
32580 2012-11-09  Andreas Jaeger  <aj@suse.de>
32581
32582         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
32583         definitions and declarations that are provided by
32584         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
32585
32586 2012-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32587
32588         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
32589         * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
32590         * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
32591         definition.
32592
32593 2012-11-08  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32594
32595         * elf/elf.h: Update comment before AArch64 relocations.
32596
32597 2012-11-07  David S. Miller  <davem@davemloft.net>
32598
32599         * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
32600         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
32601         (__start_context): Declare.
32602         (__makecontext_ret): Delete.
32603         (__makecontext): Hook up __start_context instead of
32604         __makecontext_ret.
32605         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
32606         (sysdep_routines): Add __start_context when in stdlib.
32607
32608 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32609
32610         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
32611         $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
32612         * sysdeps/x86/tst-xmmymm.sh (NM): New variable.  Use it instead of
32613         hardcoded "nm".
32614         (OBJDUMP): New variable.  Use it instead of hardcoded "objdump".
32615         (READELF): New variable.  Use it instead of hardcoded "readelf".
32616
32617 2012-11-07  H.J. Lu  <hongjiu.lu@intel.com>
32618
32619         * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
32620         * sysdeps/x86/Makefile: Here.
32621         * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
32622         * sysdeps/x86/tst-xmmymm.sh: This.
32623
32624 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32625
32626         * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
32627         expectations.
32628         [UNIX98] (pthread_barrier_t): Do not expect.
32629         [UNIX98] (pthread_barrierattr_t): Likewise.
32630         [UNIX98] (pthread_spinlock_t): Likewise.
32631         [UNIX98] (pthread_barrier_destroy): Likewise.
32632         [UNIX98] (pthread_barrier_init): Likewise.
32633         [UNIX98] (pthread_barrier_wait): Likewise.
32634         [UNIX98] (pthread_barrierattr_destroy): Likewise.
32635         [UNIX98] (pthread_barrierattr_getpshared): Likewise.
32636         [UNIX98] (pthread_barrierattr_init): Likewise.
32637         [UNIX98] (pthread_barrierattr_setpshared): Likewise.
32638         [UNIX98] (pthread_getcpuclockid): Likewise.
32639         [UNIX98] (pthread_mutex_timedlock): Likewise.
32640         [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
32641         [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
32642         [UNIX98] (pthread_sigmask): Likewise.
32643         [UNIX98] (pthread_spin_destroy): Likewise.
32644         [UNIX98] (pthread_spin_init): Likewise.
32645         [UNIX98] (pthread_spin_lock): Likewise.
32646         [UNIX98] (pthread_spin_trylock): Likewise.
32647         [UNIX98] (pthread_spin_unlock): Likewise.
32648         * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
32649         Do not expect.
32650         [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
32651         [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
32652         [XPG3 || XPG4] (pthread_cond_t): Likewise.
32653         [XPG3 || XPG4] (pthread_condattr_t): Likewise.
32654         [XPG3 || XPG4] (pthread_key_t): Likewise.
32655         [XPG3 || XPG4] (pthread_mutex_t): Likewise.
32656         [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
32657         [XPG3 || XPG4] (pthread_once_t): Likewise.
32658         [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
32659         [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
32660         [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
32661         [XPG3 || XPG4] (pthread_t): Likewise.
32662
32663         * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
32664         not expect.
32665         [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
32666
32667         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
32668         Change function return type to int.
32669
32670         * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
32671         Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
32672         [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
32673         [!POSIX] (POSIX_MADV_RANDOM): Likewise.
32674         [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
32675         [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
32676         [!POSIX] (posix_madvise): Likewise.
32677         (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
32678         && !UNIX98].
32679         (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
32680         (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
32681         (mode_t): Likewise.
32682         (posix_mem_offset): Likewise.
32683         (posix_typed_mem_get_info): Likewise.
32684         (posix_typed_mem_open): Likewise.
32685
32686         * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
32687         Change condition to [XOPEN2K8].
32688
32689         * conform/conformtest.pl: Preprocess allow-header data with -x c
32690         instead of from stdin.
32691         (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
32692         * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
32693         [C99-based standards] (cerfc): Likewise.
32694         [C99-based standards] (cexp2): Likewise.
32695         [C99-based standards] (cexpm1): Likewise.
32696         [C99-based standards] (clog10): Likewise.
32697         [C99-based standards] (clog1p): Likewise.
32698         [C99-based standards] (clog2): Likewise.
32699         [C99-based standards] (clgamma): Likewise.
32700         [C99-based standards] (ctgamma): Likewise.
32701         [C99-based standards] (cerff): Likewise.
32702         [C99-based standards] (cerfcf): Likewise.
32703         [C99-based standards] (cexp2f): Likewise.
32704         [C99-based standards] (cexpm1f): Likewise.
32705         [C99-based standards] (clog10f): Likewise.
32706         [C99-based standards] (clog1pf): Likewise.
32707         [C99-based standards] (clog2f): Likewise.
32708         [C99-based standards] (clgammaf): Likewise.
32709         [C99-based standards] (ctgammaf): Likewise.
32710         [C99-based standards] (cerfl): Likewise.
32711         [C99-based standards] (cerfcl): Likewise.
32712         [C99-based standards] (cexp2l): Likewise.
32713         [C99-based standards] (cexpm1l): Likewise.
32714         [C99-based standards] (clog10l): Likewise.
32715         [C99-based standards] (clog1pl): Likewise.
32716         [C99-based standards] (clog2l): Likewise.
32717         [C99-based standards] (clgammal): Likewise.
32718         [C99-based standards] (ctgammal): Likewise.
32719         * conform/data/inttypes.h-data [C99-based standards]: Include
32720         stdint.h-data.  Remove all expectations for stdint.h contents.
32721         [C99-based standards] (PRI*): Do not allow.
32722         [C99-based standards] (SCN*): Likewise.
32723         [C99-based standards] (*_t): Likewise.
32724         [C99-based-standards] (PRId8): Expect macro.
32725         [C99-based-standards] (PRIi8): Likewise.
32726         [C99-based-standards] (PRIo8): Likewise.
32727         [C99-based-standards] (PRIu8): Likewise.
32728         [C99-based-standards] (PRIx8): Likewise.
32729         [C99-based-standards] (PRIX8): Likewise.
32730         [C99-based-standards] (SCNd8): Likewise.
32731         [C99-based-standards] (SCNi8): Likewise.
32732         [C99-based-standards] (SCNo8): Likewise.
32733         [C99-based-standards] (SCNu8): Likewise.
32734         [C99-based-standards] (SCNx8): Likewise.
32735         [C99-based-standards] (PRIdLEAST8): Likewise.
32736         [C99-based-standards] (PRIiLEAST8): Likewise.
32737         [C99-based-standards] (PRIoLEAST8): Likewise.
32738         [C99-based-standards] (PRIuLEAST8): Likewise.
32739         [C99-based-standards] (PRIxLEAST8): Likewise.
32740         [C99-based-standards] (PRIXLEAST8): Likewise.
32741         [C99-based-standards] (SCNdLEAST8): Likewise.
32742         [C99-based-standards] (SCNiLEAST8): Likewise.
32743         [C99-based-standards] (SCNoLEAST8): Likewise.
32744         [C99-based-standards] (SCNuLEAST8): Likewise.
32745         [C99-based-standards] (SCNxLEAST8): Likewise.
32746         [C99-based-standards] (PRIdFAST8): Likewise.
32747         [C99-based-standards] (PRIiFAST8): Likewise.
32748         [C99-based-standards] (PRIoFAST8): Likewise.
32749         [C99-based-standards] (PRIuFAST8): Likewise.
32750         [C99-based-standards] (PRIxFAST8): Likewise.
32751         [C99-based-standards] (PRIXFAST8): Likewise.
32752         [C99-based-standards] (SCNdFAST8): Likewise.
32753         [C99-based-standards] (SCNiFAST8): Likewise.
32754         [C99-based-standards] (SCNoFAST8): Likewise.
32755         [C99-based-standards] (SCNuFAST8): Likewise.
32756         [C99-based-standards] (SCNxFAST8): Likewise.
32757         [C99-based-standards] (PRId16): Likewise.
32758         [C99-based-standards] (PRIi16): Likewise.
32759         [C99-based-standards] (PRIo16): Likewise.
32760         [C99-based-standards] (PRIu16): Likewise.
32761         [C99-based-standards] (PRIx16): Likewise.
32762         [C99-based-standards] (PRIX16): Likewise.
32763         [C99-based-standards] (SCNd16): Likewise.
32764         [C99-based-standards] (SCNi16): Likewise.
32765         [C99-based-standards] (SCNo16): Likewise.
32766         [C99-based-standards] (SCNu16): Likewise.
32767         [C99-based-standards] (SCNx16): Likewise.
32768         [C99-based-standards] (PRIdLEAST16): Likewise.
32769         [C99-based-standards] (PRIiLEAST16): Likewise.
32770         [C99-based-standards] (PRIoLEAST16): Likewise.
32771         [C99-based-standards] (PRIuLEAST16): Likewise.
32772         [C99-based-standards] (PRIxLEAST16): Likewise.
32773         [C99-based-standards] (PRIXLEAST16): Likewise.
32774         [C99-based-standards] (SCNdLEAST16): Likewise.
32775         [C99-based-standards] (SCNiLEAST16): Likewise.
32776         [C99-based-standards] (SCNoLEAST16): Likewise.
32777         [C99-based-standards] (SCNuLEAST16): Likewise.
32778         [C99-based-standards] (SCNxLEAST16): Likewise.
32779         [C99-based-standards] (PRIdFAST16): Likewise.
32780         [C99-based-standards] (PRIiFAST16): Likewise.
32781         [C99-based-standards] (PRIoFAST16): Likewise.
32782         [C99-based-standards] (PRIuFAST16): Likewise.
32783         [C99-based-standards] (PRIxFAST16): Likewise.
32784         [C99-based-standards] (PRIXFAST16): Likewise.
32785         [C99-based-standards] (SCNdFAST16): Likewise.
32786         [C99-based-standards] (SCNiFAST16): Likewise.
32787         [C99-based-standards] (SCNoFAST16): Likewise.
32788         [C99-based-standards] (SCNuFAST16): Likewise.
32789         [C99-based-standards] (SCNxFAST16): Likewise.
32790         [C99-based-standards] (PRId32): Likewise.
32791         [C99-based-standards] (PRIi32): Likewise.
32792         [C99-based-standards] (PRIo32): Likewise.
32793         [C99-based-standards] (PRIu32): Likewise.
32794         [C99-based-standards] (PRIx32): Likewise.
32795         [C99-based-standards] (PRIX32): Likewise.
32796         [C99-based-standards] (SCNd32): Likewise.
32797         [C99-based-standards] (SCNi32): Likewise.
32798         [C99-based-standards] (SCNo32): Likewise.
32799         [C99-based-standards] (SCNu32): Likewise.
32800         [C99-based-standards] (SCNx32): Likewise.
32801         [C99-based-standards] (PRIdLEAST32): Likewise.
32802         [C99-based-standards] (PRIiLEAST32): Likewise.
32803         [C99-based-standards] (PRIoLEAST32): Likewise.
32804         [C99-based-standards] (PRIuLEAST32): Likewise.
32805         [C99-based-standards] (PRIxLEAST32): Likewise.
32806         [C99-based-standards] (PRIXLEAST32): Likewise.
32807         [C99-based-standards] (SCNdLEAST32): Likewise.
32808         [C99-based-standards] (SCNiLEAST32): Likewise.
32809         [C99-based-standards] (SCNoLEAST32): Likewise.
32810         [C99-based-standards] (SCNuLEAST32): Likewise.
32811         [C99-based-standards] (SCNxLEAST32): Likewise.
32812         [C99-based-standards] (PRIdFAST32): Likewise.
32813         [C99-based-standards] (PRIiFAST32): Likewise.
32814         [C99-based-standards] (PRIoFAST32): Likewise.
32815         [C99-based-standards] (PRIuFAST32): Likewise.
32816         [C99-based-standards] (PRIxFAST32): Likewise.
32817         [C99-based-standards] (PRIXFAST32): Likewise.
32818         [C99-based-standards] (SCNdFAST32): Likewise.
32819         [C99-based-standards] (SCNiFAST32): Likewise.
32820         [C99-based-standards] (SCNoFAST32): Likewise.
32821         [C99-based-standards] (SCNuFAST32): Likewise.
32822         [C99-based-standards] (SCNxFAST32): Likewise.
32823         [C99-based-standards] (PRId64): Likewise.
32824         [C99-based-standards] (PRIi64): Likewise.
32825         [C99-based-standards] (PRIo64): Likewise.
32826         [C99-based-standards] (PRIu64): Likewise.
32827         [C99-based-standards] (PRIx64): Likewise.
32828         [C99-based-standards] (PRIX64): Likewise.
32829         [C99-based-standards] (SCNd64): Likewise.
32830         [C99-based-standards] (SCNi64): Likewise.
32831         [C99-based-standards] (SCNo64): Likewise.
32832         [C99-based-standards] (SCNu64): Likewise.
32833         [C99-based-standards] (SCNx64): Likewise.
32834         [C99-based-standards] (PRIdLEAST64): Likewise.
32835         [C99-based-standards] (PRIiLEAST64): Likewise.
32836         [C99-based-standards] (PRIoLEAST64): Likewise.
32837         [C99-based-standards] (PRIuLEAST64): Likewise.
32838         [C99-based-standards] (PRIxLEAST64): Likewise.
32839         [C99-based-standards] (PRIXLEAST64): Likewise.
32840         [C99-based-standards] (SCNdLEAST64): Likewise.
32841         [C99-based-standards] (SCNiLEAST64): Likewise.
32842         [C99-based-standards] (SCNoLEAST64): Likewise.
32843         [C99-based-standards] (SCNuLEAST64): Likewise.
32844         [C99-based-standards] (SCNxLEAST64): Likewise.
32845         [C99-based-standards] (PRIdFAST64): Likewise.
32846         [C99-based-standards] (PRIiFAST64): Likewise.
32847         [C99-based-standards] (PRIoFAST64): Likewise.
32848         [C99-based-standards] (PRIuFAST64): Likewise.
32849         [C99-based-standards] (PRIxFAST64): Likewise.
32850         [C99-based-standards] (PRIXFAST64): Likewise.
32851         [C99-based-standards] (SCNdFAST64): Likewise.
32852         [C99-based-standards] (SCNiFAST64): Likewise.
32853         [C99-based-standards] (SCNoFAST64): Likewise.
32854         [C99-based-standards] (SCNuFAST64): Likewise.
32855         [C99-based-standards] (SCNxFAST64): Likewise.
32856         [C99-based-standards] (PRIdMAX): Likewise.
32857         [C99-based-standards] (PRIiMAX): Likewise.
32858         [C99-based-standards] (PRIoMAX): Likewise.
32859         [C99-based-standards] (PRIuMAX): Likewise.
32860         [C99-based-standards] (PRIxMAX): Likewise.
32861         [C99-based-standards] (PRIXMAX): Likewise.
32862         [C99-based-standards] (SCNdMAX): Likewise.
32863         [C99-based-standards] (SCNiMAX): Likewise.
32864         [C99-based-standards] (SCNoMAX): Likewise.
32865         [C99-based-standards] (SCNuMAX): Likewise.
32866         [C99-based-standards] (SCNxMAX): Likewise.
32867         [C99-based-standards] (PRIdPTR): Likewise.
32868         [C99-based-standards] (PRIiPTR): Likewise.
32869         [C99-based-standards] (PRIoPTR): Likewise.
32870         [C99-based-standards] (PRIuPTR): Likewise.
32871         [C99-based-standards] (PRIxPTR): Likewise.
32872         [C99-based-standards] (PRIXPTR): Likewise.
32873         [C99-based-standards] (SCNdPTR): Likewise.
32874         [C99-based-standards] (SCNiPTR): Likewise.
32875         [C99-based-standards] (SCNoPTR): Likewise.
32876         [C99-based-standards] (SCNuPTR): Likewise.
32877         [C99-based-standards] (SCNxPTR): Likewise.
32878         * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
32879         allow.
32880         * conform/data/stdint.h-data: Update comments to clarify
32881         requirements.
32882         [C99-based standards] (INT8_MIN): Use macro-int-constant.  Specify
32883         type.
32884         [C99-based standards] (INT8_MAX): Likewise.
32885         [C99-based standards] (INT16_MIN): Likewise.
32886         [C99-based standards] (INT16_MAX): Likewise.
32887         [C99-based standards] (INT32_MIN): Likewise.
32888         [C99-based standards] (INT32_MAX): Likewise.
32889         [C99-based standards] (INT64_MIN): Likewise.
32890         [C99-based standards] (INT64_MAX): Likewise.
32891         [C99-based standards] (UINT8_MAX): Likewise.
32892         [C99-based standards] (UINT16_MAX): Likewise.
32893         [C99-based standards] (UINT32_MAX): Likewise.
32894         [C99-based standards] (UINT64_MAX): Likewise.
32895         [C99-based standards] (INT_LEAST8_MIN): Likewise.
32896         [C99-based standards] (INT_LEAST8_MAX): Likewise.
32897         [C99-based standards] (INT_LEAST16_MIN): Likewise.
32898         [C99-based standards] (INT_LEAST16_MAX): Likewise.
32899         [C99-based standards] (INT_LEAST32_MIN): Likewise.
32900         [C99-based standards] (INT_LEAST32_MAX): Likewise.
32901         [C99-based standards] (INT_LEAST64_MIN): Likewise.
32902         [C99-based standards] (INT_LEAST64_MAX): Likewise.
32903         [C99-based standards] (UINT_LEAST8_MAX): Likewise.
32904         [C99-based standards] (UINT_LEAST16_MAX): Likewise.
32905         [C99-based standards] (UINT_LEAST32_MAX): Likewise.
32906         [C99-based standards] (UINT_LEAST64_MAX): Likewise.
32907         [C99-based standards] (INT_FAST8_MIN): Likewise.
32908         [C99-based standards] (INT_FAST8_MAX): Likewise.
32909         [C99-based standards] (INT_FAST16_MIN): Likewise.
32910         [C99-based standards] (INT_FAST16_MAX): Likewise.
32911         [C99-based standards] (INT_FAST32_MIN): Likewise.
32912         [C99-based standards] (INT_FAST32_MAX): Likewise.
32913         [C99-based standards] (INT_FAST64_MIN): Likewise.
32914         [C99-based standards] (INT_FAST64_MAX): Likewise.
32915         [C99-based standards] (UINT_FAST8_MAX): Likewise.
32916         [C99-based standards] (UINT_FAST16_MAX): Likewise.
32917         [C99-based standards] (UINT_FAST32_MAX): Likewise.
32918         [C99-based standards] (UINT_FAST64_MAX): Likewise.
32919         [C99-based standards] (INTPTR_MIN): Likewise.
32920         [C99-based standards] (INTPTR_MAX): Likewise.
32921         [C99-based standards] (UINTPTR_MAX): Likewise.
32922         [C99-based standards] (INTMAX_MIN): Likewise.
32923         [C99-based standards] (INTMAX_MAX): Likewise.
32924         [C99-based standards] (UINTMAX_MAX): Likewise.
32925         [C99-based standards] (PTRDIFF_MIN): Likewise.
32926         [C99-based standards] (PTRDIFF_MAX): Likewise.
32927         [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
32928         [C99-based standards] (SIZE_MAX): Likewise.
32929         [C99-based standards] (WCHAR_MAX): Likewise.
32930         [C99-based standards] (WINT_MAX): Likewise.
32931         [C99-based standards] (SIG_ATOMIC_MIN): Likewise.  Do not specify
32932         constraint on value.
32933         [C99-based standards] (WCHAR_MIN): Likewise.
32934         [C99-based standards] (WINT_MIN): Likewise.
32935         [C99-based standards] (*_t): Allow.
32936         * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
32937         condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
32938         Include math.h-data and complex.h-data.  Remove all expectations
32939         of math.h and complex.h contents.
32940         * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
32941         at end of line.
32942         * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
32943         (struct tm): Expect tag.
32944         [C99-based-standards] (wcstof): Expect function.
32945         [C99-based-standards] (wcstold): Likewise.
32946         [C99-based-standards] (wcstoll): Likewise.
32947         [C99-based-standards] (wcstoull): Likewise.
32948         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
32949         macro-int-constant.  Specify type.
32950         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise.  Specify
32951         constraint on value.
32952         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
32953         Specify type.
32954         [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
32955         Specify value.
32956         [ISO C standards]: Do not allow headers.
32957         [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
32958         wcs[abcdefghijklmnopqrstuvwxyz]*.
32959         [ISO C standards] (*_t): Do not allow.
32960         * conform/data/wctype.h-data [C99-based standards] (iswblank):
32961         Expect function.
32962         [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
32963         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
32964         Specify type.
32965         [ISO C standards]: Do not allow headers.
32966         [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
32967         is[abcdefghijklmnopqrstuvwxyz]*.
32968         [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
32969         to[abcdefghijklmnopqrstuvwxyz]*.
32970         [ISO C standards] (*_t): Do not allow.
32971         * conform/data/stdalign.h-data: New file.
32972         * conform/data/stdbool.h-data: Likewise.
32973         * conform/data/stdnoreturn.h-data: Likewise.
32974
32975 2012-11-07  Roland McGrath  <roland@hack.frob.com>
32976
32977         [BZ #14815]
32978         * manual/filesys.texi (Directory Entries): Typo fix.
32979         Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
32980
32981 2012-11-07  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32982
32983         * elf/elf.h (EM_AARCH64): New macro.
32984         (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
32985         (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
32986         (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
32987         (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
32988         (R_AARCH64_TLSDESC): Likewise.
32989         (NT_ARM_TLS): Likewise.
32990         (NT_ARM_HW_BREAK): Likewise.
32991         (NT_ARM_HW_WATCH): Likewise.
32992
32993 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32994
32995         [BZ #14811]
32996         * sysdeps/i386/fpu/e_powl.S (pm79): New object.
32997         (__ieee754_powl): Saturate nonzero exponents with absolute value
32998         below 0x1p-79 to +/- 0x1p-79.
32999         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
33000         exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
33001         * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
33002         nonzero exponents with absolute value below 0x1p-32 to +/-
33003         0x1p-32.
33004         * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
33005         (__ieee754_powl): Saturate nonzero exponents with absolute value
33006         below 0x1p-79 to +/- 0x1p-79.
33007         * math/libm-test.inc (pow_test): Add more tests.
33008
33009 2012-11-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33010
33011         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
33012         _dl_s390_cap_flags with kernel. Increase string length.
33013         (_dl_s390_platforms): Add z196 and zEC12.
33014
33015 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
33016
33017         * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
33018         Change XOPEN21K to XOPEN2K.
33019
33020 2012-11-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
33021
33022         * string/memmove.c: Use memcpy when possible.
33023
33024 2012-11-06  Andreas Jaeger  <aj@suse.de>
33025
33026         * po/eo.po: Update from translation team.
33027
33028 2012-11-06  Joseph Myers  <joseph@codesourcery.com>
33029
33030         [BZ #14793]
33031         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
33032         exponent and small x and y exponents, scale x or y up.  Increase
33033         by 2 the exponent used in scaling up.
33034         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33035         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33036         * math/libm-test.inc (fma_test): Add more tests.
33037         (fma_test_towardzero): Likewise.
33038         (fma_test_downward): Likewise.
33039         (fma_test_upward): Likewise.
33040
33041 2012-11-05  Joseph Myers  <joseph@codesourcery.com>
33042
33043         [BZ #14805]
33044         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
33045         fenv_t *.
33046
33047         [BZ #14801]
33048         * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
33049         namespace for names of struct fields.
33050         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
33051         fenv_t fields.
33052         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
33053         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
33054
33055 2012-11-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
33056
33057         [BZ #3665]
33058         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
33059
33060 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
33061
33062         * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
33063         PTR_DEMANGLE.
33064
33065         [BZ #5246]
33066         * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
33067         PTR_DEMANGLE.
33068
33069 2012-11-04  Joseph Myers  <joseph@codesourcery.com>
33070
33071         [BZ #14797]
33072         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
33073         definitely overflow as x * y not x * y + z.
33074         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33075         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33076         * math/libm-test.inc (fma_test): Add more tests.
33077         (fma_test_towardzero): Likewise.
33078         (fma_test_downward): Likewise.
33079         (fma_test_upward): Likewise.
33080
33081 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
33082
33083         [BZ #157]
33084
33085         * include/stub-tag.h: Remove file.
33086         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
33087         '#include' of it.
33088         * manual/maint.texi (Porting): Don't reference it.
33089         * Makerules ($(objpfx)stubs): Likewise.
33090         * dirent/closedir.c: Don't include <stub-tag.h>.
33091         * dirent/dirfd.c: Likewise.
33092         * dirent/fdopendir.c: Likewise.
33093         * dirent/getdents.c: Likewise.
33094         * dirent/getdents64.c: Likewise.
33095         * dirent/opendir.c: Likewise.
33096         * dirent/readdir.c: Likewise.
33097         * dirent/readdir64.c: Likewise.
33098         * dirent/readdir64_r.c: Likewise.
33099         * dirent/readdir_r.c: Likewise.
33100         * dirent/rewinddir.c: Likewise.
33101         * dirent/seekdir.c: Likewise.
33102         * dirent/telldir.c: Likewise.
33103         * gmon/profil.c: Likewise.
33104         * grp/setgroups.c: Likewise.
33105         * inet/if_index.c: Likewise.
33106         * io/access.c: Likewise.
33107         * io/chdir.c: Likewise.
33108         * io/chmod.c: Likewise.
33109         * io/chown.c: Likewise.
33110         * io/close.c: Likewise.
33111         * io/dup.c: Likewise.
33112         * io/dup2.c: Likewise.
33113         * io/dup3.c: Likewise.
33114         * io/euidaccess.c: Likewise.
33115         * io/faccessat.c: Likewise.
33116         * io/fchdir.c: Likewise.
33117         * io/fchmod.c: Likewise.
33118         * io/fchmodat.c: Likewise.
33119         * io/fchown.c: Likewise.
33120         * io/fchownat.c: Likewise.
33121         * io/fcntl.c: Likewise.
33122         * io/flock.c: Likewise.
33123         * io/fstatfs.c: Likewise.
33124         * io/fstatfs64.c: Likewise.
33125         * io/fstatvfs.c: Likewise.
33126         * io/fstatvfs64.c: Likewise.
33127         * io/futimens.c: Likewise.
33128         * io/fxstat.c: Likewise.
33129         * io/fxstat64.c: Likewise.
33130         * io/fxstatat.c: Likewise.
33131         * io/fxstatat64.c: Likewise.
33132         * io/getcwd.c: Likewise.
33133         * io/isatty.c: Likewise.
33134         * io/lchmod.c: Likewise.
33135         * io/lchown.c: Likewise.
33136         * io/link.c: Likewise.
33137         * io/linkat.c: Likewise.
33138         * io/lseek.c: Likewise.
33139         * io/lseek64.c: Likewise.
33140         * io/lxstat64.c: Likewise.
33141         * io/mkdir.c: Likewise.
33142         * io/mkdirat.c: Likewise.
33143         * io/mkfifo.c: Likewise.
33144         * io/mkfifoat.c: Likewise.
33145         * io/open.c: Likewise.
33146         * io/open64.c: Likewise.
33147         * io/openat.c: Likewise.
33148         * io/openat64.c: Likewise.
33149         * io/pipe.c: Likewise.
33150         * io/pipe2.c: Likewise.
33151         * io/poll.c: Likewise.
33152         * io/posix_fadvise.c: Likewise.
33153         * io/posix_fadvise64.c: Likewise.
33154         * io/posix_fallocate.c: Likewise.
33155         * io/posix_fallocate64.c: Likewise.
33156         * io/read.c: Likewise.
33157         * io/readlink.c: Likewise.
33158         * io/readlinkat.c: Likewise.
33159         * io/rmdir.c: Likewise.
33160         * io/sendfile.c: Likewise.
33161         * io/sendfile64.c: Likewise.
33162         * io/statfs.c: Likewise.
33163         * io/statfs64.c: Likewise.
33164         * io/statvfs.c: Likewise.
33165         * io/statvfs64.c: Likewise.
33166         * io/symlink.c: Likewise.
33167         * io/symlinkat.c: Likewise.
33168         * io/ttyname.c: Likewise.
33169         * io/ttyname_r.c: Likewise.
33170         * io/umask.c: Likewise.
33171         * io/unlink.c: Likewise.
33172         * io/unlinkat.c: Likewise.
33173         * io/utime.c: Likewise.
33174         * io/utimensat.c: Likewise.
33175         * io/write.c: Likewise.
33176         * io/xmknod.c: Likewise.
33177         * io/xmknodat.c: Likewise.
33178         * io/xstat.c: Likewise.
33179         * io/xstat64.c: Likewise.
33180         * login/getpt.c: Likewise.
33181         * login/grantpt.c: Likewise.
33182         * login/unlockpt.c: Likewise.
33183         * math/e_acoshl.c: Likewise.
33184         * math/e_acosl.c: Likewise.
33185         * math/e_asinl.c: Likewise.
33186         * math/e_atan2l.c: Likewise.
33187         * math/e_atanhl.c: Likewise.
33188         * math/e_coshl.c: Likewise.
33189         * math/e_expl.c: Likewise.
33190         * math/e_fmodl.c: Likewise.
33191         * math/e_gammal_r.c: Likewise.
33192         * math/e_hypotl.c: Likewise.
33193         * math/e_j0l.c: Likewise.
33194         * math/e_j1l.c: Likewise.
33195         * math/e_jnl.c: Likewise.
33196         * math/e_lgammal_r.c: Likewise.
33197         * math/e_log10l.c: Likewise.
33198         * math/e_log2l.c: Likewise.
33199         * math/e_logl.c: Likewise.
33200         * math/e_powl.c: Likewise.
33201         * math/e_rem_pio2l.c: Likewise.
33202         * math/e_sinhl.c: Likewise.
33203         * math/e_sqrtl.c: Likewise.
33204         * math/fclrexcpt.c: Likewise.
33205         * math/fedisblxcpt.c: Likewise.
33206         * math/feenablxcpt.c: Likewise.
33207         * math/fegetenv.c: Likewise.
33208         * math/fegetexcept.c: Likewise.
33209         * math/fegetround.c: Likewise.
33210         * math/feholdexcpt.c: Likewise.
33211         * math/fesetenv.c: Likewise.
33212         * math/fesetround.c: Likewise.
33213         * math/feupdateenv.c: Likewise.
33214         * math/fgetexcptflg.c: Likewise.
33215         * math/fraiseexcpt.c: Likewise.
33216         * math/fsetexcptflg.c: Likewise.
33217         * math/ftestexcept.c: Likewise.
33218         * math/k_cosl.c: Likewise.
33219         * math/k_rem_pio2l.c: Likewise.
33220         * math/k_sinl.c: Likewise.
33221         * math/k_tanl.c: Likewise.
33222         * math/s_asinhl.c: Likewise.
33223         * math/s_atanl.c: Likewise.
33224         * math/s_cbrtl.c: Likewise.
33225         * math/s_erfl.c: Likewise.
33226         * math/s_expm1l.c: Likewise.
33227         * math/s_log1pl.c: Likewise.
33228         * math/s_tanhl.c: Likewise.
33229         * misc/acct.c: Likewise.
33230         * misc/brk.c: Likewise.
33231         * misc/chflags.c: Likewise.
33232         * misc/chroot.c: Likewise.
33233         * misc/fchflags.c: Likewise.
33234         * misc/fgetxattr.c: Likewise.
33235         * misc/flistxattr.c: Likewise.
33236         * misc/fremovexattr.c: Likewise.
33237         * misc/fsetxattr.c: Likewise.
33238         * misc/fsync.c: Likewise.
33239         * misc/ftruncate.c: Likewise.
33240         * misc/futimes.c: Likewise.
33241         * misc/futimesat.c: Likewise.
33242         * misc/getdomain.c: Likewise.
33243         * misc/getdtsz.c: Likewise.
33244         * misc/gethostid.c: Likewise.
33245         * misc/gethostname.c: Likewise.
33246         * misc/getloadavg.c: Likewise.
33247         * misc/getpagesize.c: Likewise.
33248         * misc/getsysstats.c: Likewise.
33249         * misc/getxattr.c: Likewise.
33250         * misc/gtty.c: Likewise.
33251         * misc/ioctl.c: Likewise.
33252         * misc/lgetxattr.c: Likewise.
33253         * misc/listxattr.c: Likewise.
33254         * misc/llistxattr.c: Likewise.
33255         * misc/lremovexattr.c: Likewise.
33256         * misc/lsetxattr.c: Likewise.
33257         * misc/lutimes.c: Likewise.
33258         * misc/madvise.c: Likewise.
33259         * misc/mincore.c: Likewise.
33260         * misc/mlock.c: Likewise.
33261         * misc/mlockall.c: Likewise.
33262         * misc/mmap.c: Likewise.
33263         * misc/mprotect.c: Likewise.
33264         * misc/msync.c: Likewise.
33265         * misc/munlock.c: Likewise.
33266         * misc/munlockall.c: Likewise.
33267         * misc/munmap.c: Likewise.
33268         * misc/preadv.c: Likewise.
33269         * misc/preadv64.c: Likewise.
33270         * misc/ptrace.c: Likewise.
33271         * misc/pwritev.c: Likewise.
33272         * misc/pwritev64.c: Likewise.
33273         * misc/readv.c: Likewise.
33274         * misc/reboot.c: Likewise.
33275         * misc/remap_file_pages.c: Likewise.
33276         * misc/removexattr.c: Likewise.
33277         * misc/revoke.c: Likewise.
33278         * misc/select.c: Likewise.
33279         * misc/setdomain.c: Likewise.
33280         * misc/setegid.c: Likewise.
33281         * misc/seteuid.c: Likewise.
33282         * misc/sethostid.c: Likewise.
33283         * misc/sethostname.c: Likewise.
33284         * misc/setregid.c: Likewise.
33285         * misc/setreuid.c: Likewise.
33286         * misc/setxattr.c: Likewise.
33287         * misc/sstk.c: Likewise.
33288         * misc/stty.c: Likewise.
33289         * misc/swapoff.c: Likewise.
33290         * misc/swapon.c: Likewise.
33291         * misc/sync.c: Likewise.
33292         * misc/syncfs.c: Likewise.
33293         * misc/syscall.c: Likewise.
33294         * misc/truncate.c: Likewise.
33295         * misc/ualarm.c: Likewise.
33296         * misc/usleep.c: Likewise.
33297         * misc/ustat.c: Likewise.
33298         * misc/utimes.c: Likewise.
33299         * misc/vhangup.c: Likewise.
33300         * misc/writev.c: Likewise.
33301         * posix/_exit.c: Likewise.
33302         * posix/alarm.c: Likewise.
33303         * posix/execve.c: Likewise.
33304         * posix/fexecve.c: Likewise.
33305         * posix/fork.c: Likewise.
33306         * posix/fpathconf.c: Likewise.
33307         * posix/getaddrinfo.c: Likewise.
33308         * posix/getegid.c: Likewise.
33309         * posix/geteuid.c: Likewise.
33310         * posix/getgid.c: Likewise.
33311         * posix/getgroups.c: Likewise.
33312         * posix/getlogin.c: Likewise.
33313         * posix/getlogin_r.c: Likewise.
33314         * posix/getpgid.c: Likewise.
33315         * posix/getpid.c: Likewise.
33316         * posix/getppid.c: Likewise.
33317         * posix/getresgid.c: Likewise.
33318         * posix/getresuid.c: Likewise.
33319         * posix/getsid.c: Likewise.
33320         * posix/getuid.c: Likewise.
33321         * posix/glob64.c: Likewise.
33322         * posix/nanosleep.c: Likewise.
33323         * posix/pathconf.c: Likewise.
33324         * posix/pause.c: Likewise.
33325         * posix/posix_madvise.c: Likewise.
33326         * posix/pread.c: Likewise.
33327         * posix/pread64.c: Likewise.
33328         * posix/pwrite.c: Likewise.
33329         * posix/pwrite64.c: Likewise.
33330         * posix/sched_getaffinity.c: Likewise.
33331         * posix/sched_getp.c: Likewise.
33332         * posix/sched_gets.c: Likewise.
33333         * posix/sched_primax.c: Likewise.
33334         * posix/sched_primin.c: Likewise.
33335         * posix/sched_rr_gi.c: Likewise.
33336         * posix/sched_setaffinity.c: Likewise.
33337         * posix/sched_setp.c: Likewise.
33338         * posix/sched_sets.c: Likewise.
33339         * posix/sched_yield.c: Likewise.
33340         * posix/setgid.c: Likewise.
33341         * posix/setlogin.c: Likewise.
33342         * posix/setpgid.c: Likewise.
33343         * posix/setresgid.c: Likewise.
33344         * posix/setresuid.c: Likewise.
33345         * posix/setsid.c: Likewise.
33346         * posix/setuid.c: Likewise.
33347         * posix/sleep.c: Likewise.
33348         * posix/spawni.c: Likewise.
33349         * posix/sysconf.c: Likewise.
33350         * posix/times.c: Likewise.
33351         * posix/wait.c: Likewise.
33352         * posix/wait3.c: Likewise.
33353         * posix/wait4.c: Likewise.
33354         * posix/waitpid.c: Likewise.
33355         * resolv/gai_sigqueue.c: Likewise.
33356         * resource/getpriority.c: Likewise.
33357         * resource/getrlimit.c: Likewise.
33358         * resource/getrusage.c: Likewise.
33359         * resource/nice.c: Likewise.
33360         * resource/setpriority.c: Likewise.
33361         * resource/setrlimit.c: Likewise.
33362         * resource/ulimit.c: Likewise.
33363         * rt/aio_cancel.c: Likewise.
33364         * rt/aio_fsync.c: Likewise.
33365         * rt/aio_read.c: Likewise.
33366         * rt/aio_sigqueue.c: Likewise.
33367         * rt/aio_suspend.c: Likewise.
33368         * rt/aio_write.c: Likewise.
33369         * rt/clock_getres.c: Likewise.
33370         * rt/clock_gettime.c: Likewise.
33371         * rt/clock_nanosleep.c: Likewise.
33372         * rt/clock_settime.c: Likewise.
33373         * rt/lio_listio.c: Likewise.
33374         * rt/mq_close.c: Likewise.
33375         * rt/mq_getattr.c: Likewise.
33376         * rt/mq_notify.c: Likewise.
33377         * rt/mq_open.c: Likewise.
33378         * rt/mq_receive.c: Likewise.
33379         * rt/mq_send.c: Likewise.
33380         * rt/mq_setattr.c: Likewise.
33381         * rt/mq_timedreceive.c: Likewise.
33382         * rt/mq_timedsend.c: Likewise.
33383         * rt/mq_unlink.c: Likewise.
33384         * rt/shm_open.c: Likewise.
33385         * rt/shm_unlink.c: Likewise.
33386         * rt/timer_create.c: Likewise.
33387         * rt/timer_delete.c: Likewise.
33388         * rt/timer_getoverr.c: Likewise.
33389         * rt/timer_gettime.c: Likewise.
33390         * rt/timer_settime.c: Likewise.
33391         * setjmp/__longjmp.c: Likewise.
33392         * setjmp/setjmp.c: Likewise.
33393         * signal/kill.c: Likewise.
33394         * signal/killpg.c: Likewise.
33395         * signal/raise.c: Likewise.
33396         * signal/sigaction.c: Likewise.
33397         * signal/sigaltstack.c: Likewise.
33398         * signal/sigblock.c: Likewise.
33399         * signal/sigignore.c: Likewise.
33400         * signal/sigintr.c: Likewise.
33401         * signal/signal.c: Likewise.
33402         * signal/sigpause.c: Likewise.
33403         * signal/sigpending.c: Likewise.
33404         * signal/sigqueue.c: Likewise.
33405         * signal/sigreturn.c: Likewise.
33406         * signal/sigset.c: Likewise.
33407         * signal/sigsetmask.c: Likewise.
33408         * signal/sigstack.c: Likewise.
33409         * signal/sigsuspend.c: Likewise.
33410         * signal/sigtimedwait.c: Likewise.
33411         * signal/sigvec.c: Likewise.
33412         * signal/sigwait.c: Likewise.
33413         * signal/sigwaitinfo.c: Likewise.
33414         * signal/sysv_signal.c: Likewise.
33415         * socket/accept.c: Likewise.
33416         * socket/accept4.c: Likewise.
33417         * socket/bind.c: Likewise.
33418         * socket/connect.c: Likewise.
33419         * socket/getpeername.c: Likewise.
33420         * socket/getsockname.c: Likewise.
33421         * socket/getsockopt.c: Likewise.
33422         * socket/isfdtype.c: Likewise.
33423         * socket/listen.c: Likewise.
33424         * socket/recv.c: Likewise.
33425         * socket/recvfrom.c: Likewise.
33426         * socket/recvmsg.c: Likewise.
33427         * socket/send.c: Likewise.
33428         * socket/sendmsg.c: Likewise.
33429         * socket/sendto.c: Likewise.
33430         * socket/setsockopt.c: Likewise.
33431         * socket/shutdown.c: Likewise.
33432         * socket/sockatmark.c: Likewise.
33433         * socket/socket.c: Likewise.
33434         * socket/socketpair.c: Likewise.
33435         * stdio-common/ctermid.c: Likewise.
33436         * stdio-common/cuserid.c: Likewise.
33437         * stdio-common/remove.c: Likewise.
33438         * stdio-common/rename.c: Likewise.
33439         * stdio-common/renameat.c: Likewise.
33440         * stdio-common/tempname.c: Likewise.
33441         * stdlib/getcontext.c: Likewise.
33442         * stdlib/makecontext.c: Likewise.
33443         * stdlib/setcontext.c: Likewise.
33444         * stdlib/swapcontext.c: Likewise.
33445         * stdlib/system.c: Likewise.
33446         * streams/fattach.c: Likewise.
33447         * streams/fdetach.c: Likewise.
33448         * streams/getmsg.c: Likewise.
33449         * streams/getpmsg.c: Likewise.
33450         * streams/putmsg.c: Likewise.
33451         * streams/putpmsg.c: Likewise.
33452         * sysdeps/unix/bsd/getpt.c: Likewise.
33453         * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
33454         * sysdeps/unix/sysv/linux/futimens.c: Likewise.
33455         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
33456         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
33457         Likewise.
33458         * sysdeps/unix/sysv/linux/readahead.c: Likewise.
33459         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
33460         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
33461         * sysvipc/msgctl.c: Likewise.
33462         * sysvipc/msgget.c: Likewise.
33463         * sysvipc/msgrcv.c: Likewise.
33464         * sysvipc/msgsnd.c: Likewise.
33465         * sysvipc/semctl.c: Likewise.
33466         * sysvipc/semget.c: Likewise.
33467         * sysvipc/semop.c: Likewise.
33468         * sysvipc/semtimedop.c: Likewise.
33469         * sysvipc/shmat.c: Likewise.
33470         * sysvipc/shmctl.c: Likewise.
33471         * sysvipc/shmdt.c: Likewise.
33472         * sysvipc/shmget.c: Likewise.
33473         * termios/tcdrain.c: Likewise.
33474         * termios/tcflow.c: Likewise.
33475         * termios/tcflush.c: Likewise.
33476         * termios/tcgetattr.c: Likewise.
33477         * termios/tcgetpgrp.c: Likewise.
33478         * termios/tcsendbrk.c: Likewise.
33479         * termios/tcsetattr.c: Likewise.
33480         * termios/tcsetpgrp.c: Likewise.
33481         * time/adjtime.c: Likewise.
33482         * time/clock.c: Likewise.
33483         * time/getitimer.c: Likewise.
33484         * time/gettimeofday.c: Likewise.
33485         * time/setitimer.c: Likewise.
33486         * time/settimeofday.c: Likewise.
33487         * time/stime.c: Likewise.
33488         * time/time.c: Likewise.
33489
33490 2012-11-04  Pino Toscano  <toscano.pino@tiscali.it>
33491
33492         * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
33493         /usr/old/bin.
33494
33495         * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
33496         instead of spaces.
33497         * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
33498
33499 2012-11-03  Joseph Myers  <joseph@codesourcery.com>
33500
33501         [BZ #14796]
33502         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
33503         FE_TONEAREST before applying Dekker multiplication and Knuth
33504         addition.  Clear inexact exceptions and check for exact zero
33505         results afterwards.
33506         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33507         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
33508         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33509         * math/libm-test.inc (fma_test): Add more tests.
33510         (fma_test_towardzero): Likewise.
33511         (fma_test_downward): Likewise.
33512         (fma_test_upward): Likewise.
33513         * sysdeps/generic/math_private.h (default_libc_fesetround): New
33514         function.
33515         (libc_fesetround): New macro.
33516         (libc_fesetroundf): Likewise.
33517         (libc_fesetroundl): Likewise.
33518         * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
33519         function.
33520         (libc_fesetround_387): Likewise.
33521         (libc_fesetroundf): New macro.
33522         (libc_fesetround): Likewise.
33523         (libc_fesetroundl): Likewise.
33524         * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
33525         function.
33526         (libc_fesetroundf): New macro.
33527         (libc_fesetround): Likewise.
33528         (libc_fesetroundl): Likewise.
33529         * include/fenv.h (feclearexcept): Add libm_hidden_proto.
33530         * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
33531         * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
33532         libm_hidden_ver.
33533         * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
33534         * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
33535         libm_hidden_def.
33536         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
33537         * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
33538         libm_hidden_ver.
33539         * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
33540         libm_hidden_def.
33541
33542         [BZ #3439]
33543         * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
33544         integer constant usable in #if and use that to give value to enum
33545         constant.
33546         (FE_DIVBYZERO): Likewise.
33547         (FE_UNDERFLOW): Likewise.
33548         (FE_OVERFLOW): Likewise.
33549         (FE_INVALID): Likewise.
33550         (FE_INVALID_SNAN): Likewise.
33551         (FE_INVALID_ISI): Likewise.
33552         (FE_INVALID_IDI): Likewise.
33553         (FE_INVALID_ZDZ): Likewise.
33554         (FE_INVALID_IMZ): Likewise.
33555         (FE_INVALID_COMPARE): Likewise.
33556         (FE_INVALID_SOFTWARE): Likewise.
33557         (FE_INVALID_SQRT): Likewise.
33558         (FE_INVALID_INTEGER_CONVERSION): Likewise.
33559         (FE_TONEAREST): Likewise.
33560         (FE_TOWARDZERO): Likewise.
33561         (FE_UPWARD): Likewise.
33562         (FE_DOWNWARD): Likewise.
33563         * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
33564         (FE_DIVBYZERO): Likewise.
33565         (FE_OVERFLOW): Likewise.
33566         (FE_UNDERFLOW): Likewise.
33567         (FE_INEXACT): Likewise.
33568         (FE_TONEAREST): Likewise.
33569         (FE_DOWNWARD): Likewise.
33570         (FE_UPWARD): Likewise.
33571         (FE_TOWARDZERO): Likewise.
33572         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
33573         (FE_UNDERFLOW): Likewise.
33574         (FE_OVERFLOW): Likewise.
33575         (FE_DIVBYZERO): Likewise.
33576         (FE_INVALID): Likewise.
33577         (FE_TONEAREST): Likewise.
33578         (FE_TOWARDZERO): Likewise.
33579         * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
33580         (FE_OVERFLOW): Likewise.
33581         (FE_UNDERFLOW): Likewise.
33582         (FE_DIVBYZERO): Likewise.
33583         (FE_INEXACT): Likewise.
33584         (FE_TONEAREST): Likewise.
33585         (FE_TOWARDZERO): Likewise.
33586         (FE_UPWARD): Likewise.
33587         (FE_DOWNWARD): Likewise.
33588         * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
33589         (FE_DIVBYZERO): Likewise.
33590         (FE_OVERFLOW): Likewise.
33591         (FE_UNDERFLOW): Likewise.
33592         (FE_INEXACT): Likewise.
33593         (FE_TONEAREST): Likewise.
33594         (FE_DOWNWARD): Likewise.
33595         (FE_UPWARD): Likewise.
33596         (FE_TOWARDZERO): Likewise.
33597
33598 2012-11-02  Chris Metcalf  <cmetcalf@tilera.com>
33599
33600         * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
33601
33602 2012-11-03  Andreas Schwab  <schwab@linux-m68k.org>
33603
33604         * scripts/cross-test-ssh.sh (command): Use newlines to separate
33605         commands.  Quote $PWD.
33606         (blacklist_exports): Don't use remove_newlines.  Replace "declare
33607         -x" by "export".
33608         (remove_newlines): Remove.
33609
33610 2012-11-02  H.J. Lu  <hongjiu.lu@intel.com>
33611
33612         * stdlib/Makefile (headers): Add bits/stdlib-float.h.
33613         * stdlib/stdlib.h (atof): Moved to ...
33614         * include/bits/stdlib-float.h: Here.  New file.
33615         * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
33616         * stdlib/bits/stdlib-float.h: New file.
33617         * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
33618         -mno-sse -mno-mmx.
33619         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
33620         <xmmintrin.h>.
33621
33622 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
33623
33624         * conform/conformtest.pl (@headers): Add fenv.h.
33625         * conform/data/fenv.h-data: New file.
33626         * include/fenv.h [_ISOMAC]: Disable all contents of file except
33627         include of <math/fenv.h>.
33628
33629         * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
33630         POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
33631         && !UNIX98].  Enables tests for XOPEN2K8.
33632         * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
33633         POSIX2008]: Likewise.
33634
33635         * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
33636         (struct rusage): Do not expect type or its members.
33637
33638         [BZ #3439]
33639         * math/math.h (FP_NAN): Define macro to integer constant usable in
33640         #if and use that to give value to enum constant.
33641         (FP_INFINITE): Likewise.
33642         (FP_ZERO): Likewise.
33643         (FP_SUBNORMAL): Likewise.
33644         (FP_NORMAL): Likewise.
33645
33646 2012-11-02  Andreas Schwab  <schwab@linux-m68k.org>
33647
33648         * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
33649         * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
33650         arguments.
33651
33652 2012-11-02  Roland McGrath  <roland@hack.frob.com>
33653
33654         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
33655         Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
33656         autoconf-time if not.
33657         * configure.in: Remove AC_PREREQ.
33658
33659 2012-11-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33660
33661         * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
33662         __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
33663         of the internal implementation.
33664
33665 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
33666
33667         * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
33668         except include of <misc/sys/syslog.h>.
33669
33670 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
33671
33672         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
33673         function returns with a NULL context exit with zero.
33674
33675 2012-11-01  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33676
33677         * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
33678
33679 2012-11-01  H.J. Lu  <hongjiu.lu@intel.com>
33680
33681         * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
33682         (run_program_cmd): This.
33683         * localedata/tst-langinfo.sh (run_program_prefix): Removed.
33684         (tst_langinfo): New variable.  Use it.
33685
33686 2012-11-01  Sebastan Andrzej Siewior  <bigeasy@linutronix.de>
33687
33688         * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
33689         floating point opcodes.
33690
33691 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33692
33693         * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
33694         variable.
33695
33696         * elf/dl-support.c: Unconditionally include "setup-vdso.h".
33697
33698         * sysdeps/mach/hurd/powerpc: Remove directory.
33699         * sysdeps/mach/powerpc: Likewise.
33700
33701 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
33702
33703         * scripts/check-local-headers.sh: Ignore c++ headers.
33704
33705 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33706
33707         * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
33708         __libc_cleanup_region_start argument.
33709
33710 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
33711
33712         [BZ #14784]
33713         [BZ #14785]
33714         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
33715         x * y using scaling, not as x * y + z.
33716         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33717         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33718         * math/libm-test.inc (fma_test): Add more tests.
33719         (fma_test_towardzero): Likewise.
33720         (fma_test_downward): Likewise.
33721         (fma_test_upward): Likewise.
33722
33723 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33724
33725         * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
33726
33727 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
33728
33729         * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
33730         New variable.
33731
33732 2012-10-31  Thomas Schwinge  <thomas@codesourcery.com>
33733
33734         * rt/tst-shm.c (worker): Correct checking for mmap failure.
33735
33736 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
33737
33738         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
33739         Fix sort order.
33740         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
33741         Likewise.
33742
33743 2012-10-31  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33744
33745         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
33746         Fix the order of the list for glibc 2.17.
33747         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
33748         Likewise.
33749
33750 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
33751
33752         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
33753
33754 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
33755
33756         [BZ #14610]
33757         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
33758         for low part of x being zero before using __atanl (y).
33759         * math/libm-test.inc (atan2_test): Add another test.
33760
33761         * manual/install.texi (Configuring and compiling): Document
33762         general use of test-wrapper and test-wrapper-env.
33763         * INSTALL: Regenerated.
33764
33765         * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
33766         (__fma): Do not extract and scale down low bits on after-rounding
33767         systems when result rounded to normal precision would have normal
33768         exponent.
33769         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
33770         (__fmal): Do not extract and scale down low bits on after-rounding
33771         systems when result rounded to normal precision would have normal
33772         exponent.
33773         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
33774         (__fmal): Do not extract and scale down low bits on after-rounding
33775         systems when result rounded to normal precision would have normal
33776         exponent.
33777         * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
33778         macro.
33779         (fma_test): Add more tests.
33780         (fma_test_towardzero): Likewise.
33781         (fma_test_downward): Likewise.
33782         (fma_test_upward): Likewise.
33783
33784 2012-10-30  H.J. Lu  <hongjiu.lu@intel.com>
33785
33786         * sysdeps/i386/tininess.h: Renamed to ...
33787         * sysdeps/x86/tininess.h: This.
33788         * sysdeps/x86_64/tininess.h: Removed.
33789
33790 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
33791
33792         * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
33793         input.  Use $(build-program-cmd).
33794         ($(objpfx)tst-array1-static.out): Likewise.
33795         ($(objpfx)tst-array2.out): Likewise.
33796         ($(objpfx)tst-array3.out): Likewise.
33797         ($(objpfx)tst-array4.out): Likewise.
33798         ($(objpfx)tst-array5.out): Likewise.
33799         ($(objpfx)tst-array5-static.out): Likewise.
33800
33801 2012-10-30  Chris Metcalf  <cmetcalf@tilera.com>
33802
33803         * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
33804         if defined.
33805
33806         * nss/nsswitch.h (nss_interface_function): Provide new
33807         macro for use with NSS functions.
33808         * grp/initgroups.c: Use new macro.
33809         * nss/getXXbyYY.c: Likewise.
33810         * nss/getXXbyYY_r.c: Likewise.
33811         * nss/getXXent.c: Likewise.
33812         * nss/getXXent_r.c: Likewise.
33813         * sysdeps/posix/getaddrinfo.c: Likewise.
33814
33815 2012-10-30  Andreas Jaeger  <aj@suse.de>
33816
33817         * po/ru.po: Update Russion translation from translation project.
33818
33819 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
33820
33821         [BZ #14152]
33822         [BZ #14783]
33823         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
33824         result and shift together with sticky bit instead of replicating
33825         round-to-nearest rounding.
33826         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33827         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33828         * math/libm-test.inc (fma_test): Add more tests.  Do not permit
33829         missing underflow exceptions.
33830         (fma_test_towardzero): Add more tests.
33831         (fma_test_downward): Likewise.
33832         (fma_test_upward): Likewise.
33833
33834         [BZ #14047]
33835         * sysdeps/generic/tininess.h: New file.
33836         * sysdeps/i386/tininess.h: Likewise.
33837         * sysdeps/sh/tininess.h: Likewise.
33838         * sysdeps/x86_64/tininess.h: Likewise.
33839         * stdlib/tst-strtod-underflow.c: Likewise.
33840         * stdlib/tst-tininess.c: Likewise.
33841         * stdlib/strtod_l.c: Include <tininess.h>.
33842         (round_and_return): Do not set errno for exact underflow cases.
33843         Force an underflow exception when setting errno for underflow.
33844         Determine underflow based on rounding to normal precision if
33845         TININESS_AFTER_ROUNDING.
33846         * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
33847         ERANGE for exact underflow cases.
33848         * stdlib/Makefile (tests): Add tst-tininess and
33849         tst-strtod-underflow.
33850         ($(objpfx)tst-tininess): Use $(link-libm).
33851         ($(objpfx)tst-strtod-underflow): Likewise.
33852
33853 2012-10-30  Andreas Jaeger  <aj@suse.de>
33854
33855         [BZ#14767]
33856         * elf/Makefile (tests): Remove conditional for have-initfini-array
33857         since this is now always required and the variable does not exist
33858         anymore.
33859         (tests-static): Likewise.
33860         (modules-names): Likewise.
33861
33862         * po/eo.po: Add Esperanto translation from translation project.
33863
33864         * elf/tst-array1.c (fini_array): Make writeable so that it can be
33865         merged with constructor/destructor.
33866         (init_array): Likewise.
33867         * elf/tst-array2dep.c (fini_array): Likewise.
33868         (init_array): Likewise.
33869
33870 2012-10-29  Mike Frysinger  <vapier@gentoo.org>
33871
33872         * manual/message.texi: Delete @cartouche tags.
33873
33874 2012-10-29  Pino Toscano  <toscano.pino@tiscali.it>
33875
33876         * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
33877         EOPNOTSUPP.
33878         * sysdeps/mach/hurd/fsync.c: Likewise.
33879
33880         * sysdeps/pthread/aio_notify.c (__aio_notify_only)
33881         [_POSIX_REALTIME_SIGNALS]: Change condition to
33882         [_POSIX_REALTIME_SIGNALS > 0].
33883
33884 2012-10-27  Andreas Jaeger  <aj@suse.de>
33885
33886         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
33887         [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
33888         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
33889         [__WORDSIZE != 64]: Likewise.
33890
33891 2012-10-26  H.J. Lu  <hongjiu.lu@intel.com>
33892
33893         *  iconvdata/tst-table.sh: Remove ${SHELL}.
33894         *  iconvdata/tst-tables.sh: Likewise.
33895
33896 2012-10-25  David S. Miller  <davem@davemloft.net>
33897
33898         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
33899         (__get_clockfreq_via_proc_openprom): Use strtoumax instead
33900         of strtoull.
33901
33902         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
33903         ifunc-impl-list.c
33904         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
33905         * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
33906         * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
33907         file.
33908
33909 2012-10-25  Roland McGrath  <roland@hack.frob.com>
33910
33911         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
33912         (__get_clockfreq_via_proc_openprom): Use __getdents instead of
33913         __getdirentries.
33914
33915 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
33916             Jim Blandy  <jimb@codesourcery.com>
33917
33918         * scripts/cross-test-ssh.sh: New file.
33919         * manual/install.texi (Configuring and compiling): Document use of
33920         cross-test-ssh.sh.
33921         * INSTALL: Regenerated.
33922
33923 2012-10-25  Pino Toscano  <toscano.pino@tiscali.it>
33924
33925         * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
33926         EOPNOTSUPP.
33927
33928 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
33929
33930         * Makeconfig (run-program-prefix): Fix comment.
33931
33932 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
33933             Jim Blandy  <jimb@codesourcery.com>
33934
33935         * Makeconfig (test-wrapper): New variable,
33936         (test-wrapper-env): Likewise.
33937         [$(cross-compiling) = yes && $(test-wrapper) != ""]
33938         (run-built-tests): Define to yes.
33939         (run-program-prefix): Use $(test-wrapper).
33940         (built-program-cmd): Likewise.
33941         * Rules (make-test-out): Use $(test-wrapper-env) and
33942         $(host-built-program-cmd).
33943         * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
33944         ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
33945         tst-pathopt.sh.
33946         ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
33947         $(test-wrapper-env) to tst-rtld-load-self.sh.
33948         ($(objpfx)order2.out): Use $(test-wrapper).
33949         ($(objpfx)tst-initorder.out): Likewise.
33950         ($(objpfx)tst-initorder2.out): Likewise.
33951         ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
33952         * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
33953         (test_wrapper_env): New variable.  Use it to run ld.so.
33954         * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
33955         Use it to run ld.so.
33956         (test_wrapper_env): Likewise.
33957         * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
33958         $(test-wrapper) to run-iconv-test.sh.
33959         * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
33960         (ICONV): Use $test_wrapper.
33961         * posix/Makefile ($(objpfx)globtest.out): Pass
33962         $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
33963         globtest.sh, not $(run-program-prefix).
33964         * posix/globtest.sh (run_via_rtld_prefix): New variable.
33965         (test_wrapper): Likewise.
33966         (test_wrapper_env): Likewise.  Use it to run globtest with HOME
33967         set together with run_via_rtld_prefix.
33968         (run_program_prefix): Define in terms of test_wrapper and
33969         run_via_rtld_prefix.
33970
33971 2012-10-24  Roland McGrath  <roland@hack.frob.com>
33972
33973         * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
33974         * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
33975         Targets removed.
33976
33977         [BZ #14743]
33978         * include/time.h: Remove librt_hidden_proto (clock_gettime).
33979         Declare __clock_getres, __clock_gettime, __clock_settime,
33980         __clock_nanosleep, and __clock_getcpuclockid.
33981         * rt/clock_gettime.c: Define __clock_gettime as an alias.
33982         Remove librt_hidden_def (clock_gettime).
33983         * sysdeps/unix/clock_gettime.c: Likewise.
33984         * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
33985         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
33986         * rt/clock_getres.c: Define __clock_getres as an alias.
33987         * sysdeps/posix/clock_getres.c: Likewise.
33988         * rt/clock_settime.c: Define __clock_settime as an alias.
33989         * sysdeps/unix/clock_settime.c: Likewise.
33990         * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
33991         * sysdeps/unix/clock_nanosleep.c: Likewise.
33992         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
33993         * rt/clock-compat.c: New file.
33994         * rt/Makefile (librt-routines): Add clock-compat and move
33995         $(clock-routines) to ...
33996         (routines): ... here, new variable.
33997         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
33998         Don't add get_clockfreq here.
33999         * rt/Versions (libc: GLIBC_2.17): New version set.
34000         Add clock_* symbols here.
34001         (libc: GLIBC_PRIVATE): New version set.  Add __clock_* symbols here.
34002         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
34003         (GLIBC_2.17): Add clock_* symbols.
34004         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
34005         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
34006         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
34007         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
34008         Likewise.
34009         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
34010         Likewise.
34011         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
34012         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
34013         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
34014         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
34015         * NEWS: Mention the move.
34016
34017         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
34018         Use __open, __read, __close rather than their public counterparts.
34019         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
34020         (__get_clockfreq_via_cpuinfo): Likewise.
34021         (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
34022         (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
34023
34024         * config.h.in (HAVE_IFUNC): New #undef.
34025         * configure.in: Define it if libc_cv_ld_gnu_indirect_function
34026         was successful.
34027         * configure: Regenerated.
34028
34029 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
34030
34031         * configure.in: Move READELF check to start of file.
34032         (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
34033         libc_cv_asm_gnu_indirect_function in the process.
34034         * configure: Regenerated.
34035
34036 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
34037
34038         * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
34039         send the output to /dev/null.
34040         (libc_cv_cc_with_libunwind): Likewise.
34041         (libc_cv_as_noexecstack): Likewise.
34042         * configure: Regenerate.
34043
34044 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
34045
34046         * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
34047
34048         * posix/globtest.sh (TMPDIR): Do not set.
34049         (testdir): Define using ${common_objpfx}posix not $TMPDIR.
34050         (testout): Likewise.
34051
34052 2012-10-24  Andreas Jaeger  <aj@suse.de>
34053
34054         * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
34055         types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
34056         [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
34057         [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
34058         posix_fadvise64, posix_fallocate64.
34059
34060         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
34061         (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
34062         (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
34063         Likewise.
34064         (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
34065         Likewise.
34066         (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
34067
34068         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
34069         (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
34070         <bits/fcntl-linux.h>.
34071         (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
34072
34073         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
34074         (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
34075         (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
34076         (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
34077         [__WORDSIZE != 64]: Likewise.
34078
34079 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
34080
34081         * Makeconfig (run-built-tests): New variable.
34082         * Rules [$(cross-compiling) = yes]: Change condition to
34083         [$(run-built-tests) = no].
34084         * catgets/Makefile [$(cross-compiling) != yes]: Change condition
34085         to [$(run-built-tests) = yes].
34086         * elf/Makefile [$(cross-compiling) = no]: Likewise
34087         * grp/Makefile [$(cross-compiling) = no]: Likewise.
34088         * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
34089         * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
34090         * intl/Makefile [$(cross-compiling) = no]: Likewise.
34091         * io/Makefile [$(cross-compiling) = no]: Likewise.
34092         * libio/Makefile [$(cross-compiling) = no]: Likewise.
34093         * malloc/Makefile [$(cross-compiling) = no]: Likewise.
34094         * misc/Makefile [$(cross-compiling) = no]: Likewise.
34095         * posix/Makefile [$(cross-compiling) = no]: Likewise.
34096         * resolv/Makefile [$(cross-compiling) = no]: Likewise.
34097         * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
34098         * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
34099         * string/Makefile [$(cross-compiling) = no]: Likewise.
34100
34101         * posix/Makefile ($(objpfx)globtest.out): Pass
34102         $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
34103         $(rtld-installed-name).
34104         * posix/globtest.sh (elf_objpfx): Remove variable.
34105         (rtld_installed_name): Likewise.
34106         (library_path): Likewise.
34107         (run_program_prefix): New variable.  Use for running globtest
34108         binary.
34109
34110 2012-10-23  Jim Blandy  <jimb@codesourcery.com>
34111             Joseph Myers  <joseph@codesourcery.com>
34112
34113         * Makeconfig (host-built-program-cmd): New variable.
34114         * elf/Makefile (tst-stackguard1-ARGS): Use
34115         $(host-built-program-cmd).
34116         * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
34117         (tst-spawn-ARGS): Likewise.
34118         * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
34119
34120 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
34121             Jim Blandy  <jimb@codesourcery.com>
34122
34123         * Makeconfig (run-via-rtld-prefix): New variable.
34124         (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
34125         (built-program-cmd): Likewise.
34126
34127 2012-10-22  Andreas Jaeger  <aj@suse.de>
34128
34129         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
34130         __O_RSYNC if it exists, otherwise to O_SYNC.
34131
34132 2012-10-22  Jim Blandy  <jimb@codesourcery.com>
34133             Joseph Myers  <joseph@codesourcery.com>
34134
34135         * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
34136         /dev/null.
34137         * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
34138         from /dev/null
34139         * posix/tst-getconf.sh: Redirect getconf stdin in loop from
34140         /dev/null.
34141
34142 2012-10-22  Andreas Jaeger  <aj@suse.de>
34143
34144         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
34145         Define always.
34146         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
34147
34148         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
34149         bits/fcntl-linux.h.
34150
34151         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
34152         (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
34153
34154         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
34155         to __O_LARGEFILE.
34156         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
34157         to __O_LARGEFILE.
34158
34159 2012-10-21  Jim Blandy  <jimb@codesourcery.com>
34160             Joseph Myers  <joseph@codesourcery.com>
34161
34162         * config.make.in (NM): New variable.
34163
34164 2012-10-21  Andreas Jaeger  <aj@suse.de>
34165
34166         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
34167         definitions and declarations that are provided by
34168         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
34169
34170 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
34171
34172         [BZ #14683]
34173         * elf/Makefile (tests-static): Add tst-leaks1-static.
34174         (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
34175         ($(objpfx)tst-leaks1-static): New rule.
34176         ($(objpfx)tst-leaks1-static-mem): Likewise.
34177         (tst-leaks1-static-ENV): New macro.
34178         * elf/dl-open.c (dl_open_worker): Check the main application
34179         only if SHARED is defined.
34180         * elf/tst-leaks1-static.c: New file.
34181
34182 2012-10-20  Andreas Jaeger  <aj@suse.de>
34183
34184         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
34185         generic values for Linux.
34186         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
34187         and declarations that are provided by <bits/fcntl-linux.h> and
34188         include <bits/fcntl-linux.h>.
34189         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
34190         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
34191
34192 2012-10-20  Roland McGrath  <roland@hack.frob.com>
34193
34194         * io/fcntl.h: Move include of <bits/types.h> to the top and
34195         include it unconditionally.
34196
34197 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
34198
34199         * wcsmbs/Makefile (tests-ifunc): New variable.
34200         (tests): Add $(tests-ifunc).
34201         * wcsmbs/test-wcschr-ifunc.c: New file.
34202         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
34203         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
34204         * wcsmbs/test-wcslen-ifunc.c: Likewise.
34205         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
34206         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
34207
34208         * string/Makefile (tests-ifunc): New variable.
34209         (tests): Add $(tests-ifunc).
34210         * string/test-memccpy.c (TEST_NAME): New macro.
34211         * string/test-memchr.c (TEST_NAME): Likewise.
34212         * string/test-memcmp.c (TEST_NAME): Likewise.
34213         * string/test-memcpy.c (TEST_NAME): Likewise.
34214         * string/test-memmem.c (TEST_NAME): Likewise.
34215         * string/test-memmove.c (TEST_NAME): Likewise.
34216         * string/test-memset.c (TEST_NAME): Likewise.
34217         * string/test-rawmemchr.c (TEST_NAME): Likewise.
34218         * string/test-stpcpy.c (TEST_NAME): Likewise.
34219         * string/test-stpncpy.c (TEST_NAME): Likewise.
34220         * string/test-strcasecmp.c (TEST_NAME): Likewise.
34221         * string/test-strcasestr.c (TEST_NAME): Likewise.
34222         * string/test-strcat.c (TEST_NAME): Likewise.
34223         * string/test-strchr.c (TEST_NAME): Likewise.
34224         * string/test-strcmp.c(TEST_NAME): Likewise.
34225         * string/test-strcpy.c (TEST_NAME): Likewise.
34226         * string/test-strcspn.c (TEST_NAME): Likewise.
34227         * string/test-strlen.c (TEST_NAME): Likewise.
34228         * string/test-strncasecmp.c (TEST_NAME): Likewise.
34229         * string/test-strncmp.c (TEST_NAME): Likewise.
34230         * string/test-strncpy.c (TEST_NAME): Likewise.
34231         * string/test-strnlen.c (TEST_NAME): Likewise.
34232         * string/test-strpbrk.c (TEST_NAME): Likewise.
34233         * string/test-strrchr.c (TEST_NAME): Likewise.
34234         * string/test-strspn.c (TEST_NAME): Likewise.
34235         * string/test-strstr.c (TEST_NAME): Likewise.
34236         * string/test-bcopy-ifunc.c: New file.
34237         * string/test-bzero-ifunc.c: Likewise.
34238         * string/test-memccpy-ifunc.c: Likewise.
34239         * string/test-memchr-ifunc.c: Likewise.
34240         * string/test-memcmp-ifunc.c: Likewise.
34241         * string/test-memcpy-ifunc.c: Likewise.
34242         * string/test-memmem-ifunc.c: Likewise.
34243         * string/test-memmove-ifunc.c: Likewise.
34244         * string/test-mempcpy-ifunc.c: Likewise.
34245         * string/test-memset-ifunc.c: Likewise.
34246         * string/test-rawmemchr-ifunc.c: Likewise.
34247         * string/test-stpcpy-ifunc.c: Likewise.
34248         * string/test-stpncpy-ifunc.c: Likewise.
34249         * string/test-strcasecmp-ifunc.c: Likewise.
34250         * string/test-strcasestr-ifunc.c: Likewise.
34251         * string/test-strcat-ifunc.c: Likewise.
34252         * string/test-strchr-ifunc.c: Likewise.
34253         * string/test-strchrnul-ifunc.c: Likewise.
34254         * string/test-strcmp-ifunc.c: Likewise.
34255         * string/test-strcpy-ifunc.c: Likewise.
34256         * string/test-strcspn-ifunc.c: Likewise.
34257         * string/test-strlen-ifunc.c: Likewise.
34258         * string/test-strncasecmp-ifunc.c: Likewise.
34259         * string/test-strncat-ifunc.c: Likewise.
34260         * string/test-strncmp-ifunc.c: Likewise.
34261         * string/test-strncpy-ifunc.c: Likewise.
34262         * string/test-strnlen-ifunc.c: Likewise.
34263         * string/test-strpbrk-ifunc.c: Likewise.
34264         * string/test-strrchr-ifunc.c: Likewise.
34265         * string/test-strspn-ifunc.c: Likewise.
34266         * string/test-strstr-ifunc.c: Likewise.
34267
34268         * debug/Makefile (tests-ifunc): New variable.
34269         (tests): Add $(tests-ifunc).
34270         * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
34271         * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
34272         * debug/test-stpcpy_chk-ifunc.c: New file.
34273         * debug/test-strcpy_chk-ifunc.c: Likewise.
34274
34275 2012-10-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
34276
34277         [BZ #13601]
34278         * elf/dl-load.c (open_verify): Retry read if the entire ELF
34279         header is not read in.
34280
34281 2012-10-19  Joseph Myers  <joseph@codesourcery.com>
34282
34283         * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh.  Pass
34284         script to $(SHELL) as $<.  Pass $(common-objpfx) to script
34285         directly.  Pass built executable to script as
34286         $(built-program-cmd).
34287         * io/ftwtest-sh (ldso): Remove variable.  Run ftwtest directly as
34288         $testprogram without using LD_LIBRARY_PATH and $ldso.
34289
34290         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
34291         $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
34292         $(rtld-installed-name).
34293         * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
34294         (rtld_installed_name): Likewise.
34295         (library_path): Likewise.
34296         (run_program_prefix): New variable.  Use it to run tst_fgetgrent.
34297         * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
34298         $(run-program-prefix) to tst-tables.sh.
34299         * iconvdata/tst-table.sh (run_program_prefix): New variable.  Use
34300         it to run tst-table-from and tst-table-to.
34301         * iconvdata/tst-tables.sh (run_program_prefix): New variable.
34302         Pass it to tst-table.sh.
34303         * intl/Makefile ($(objpfx)tst-gettext.out): Pass
34304         $(run-program-prefix) to tst-gettext.sh.
34305         ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
34306         tst-translit.sh.
34307         ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
34308         tst-gettext2.sh.
34309         * intl/tst-gettext.sh (run_program_prefix): New variable.  Use it
34310         to run tst-gettext.
34311         * intl/tst-gettext2.sh (run_program_prefix): New variable.  Use it
34312         to run tst-gettext2.
34313         * intl/tst-translit.sh (run_program_prefix): New variable.  Use it
34314         to run tst-translit.
34315         * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
34316         $(run-program-prefix) to tst-mtrace.sh.
34317         * malloc/tst-mtrace.sh (run_program_prefix): New variable.  Use it
34318         to run tst-mtrace.
34319         * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
34320         $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
34321         $(rtld-installed-name).
34322         * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
34323         (rtld_installed_name): Likewise.
34324         (run_program_prefix): New variable.  Use it to run wordexp-test.
34325
34326         * Makeconfig (ARCH): Remove all definitions.
34327         (machine): Likewise.
34328         [ARCH]: Remove conditional code.
34329         [!objdir]: Give error.
34330         [!objdir] (objpfx): Remove.
34331         [!objdir] (common-objpfx): Likewise.
34332         [!objdir] (common-objdir): Likewise.
34333         * configure.in (config_makefile): Remove.  Hardcode Makefile in
34334         AC_CONFIG_FILES call.
34335         * configure: Regenerated.
34336
34337         [BZ #13888]
34338         * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
34339         or TMPDIR.
34340         (testout): Likewise.
34341
34342         * posix/Makefile ($(objpfx)tst-getconf.out): Pass
34343         $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
34344         $(rtld-installed-name).
34345         * posix/tst-getconf.sh (elf_objpfx): Remove variable.
34346         (rtld_installed_name): Likwise.
34347         (runit): Remove function.
34348         (run_getconf): New variable,  Use it for running getconf binary.
34349
34350 2012-10-18  H.J. Lu  <hongjiu.lu@intel.com>
34351
34352         [BZ #14716]
34353         * string/test-memmem.c (check_result): New function.
34354         (do_one_test): Use it.
34355         (check1): New function.
34356         (test_main): Use it.
34357
34358 2012-10-18  Markus Trippelsdorf  <markus@trippelsdorf.de>
34359
34360         * math/Makefile: Comment on slow compilation of test-tgmath2.c.
34361
34362 2012-10-18  Joseph Myers  <joseph@codesourcery.com>
34363
34364         * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
34365         (_G_LSEEK64): Likewise.
34366         (_G_MMAP64): Likewise.
34367         (_G_FSTAT64): Likewise.
34368         * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
34369         (_G_LSEEK64): Likewise.
34370         (_G_MMAP64): Likewise.
34371         (_G_FSTAT64): Likewise.
34372         * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
34373         unconditional.  Call __mmap64 directly.
34374         (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
34375         (mmap_remap_check) [_G_LSEEK64]: Make code unconditional.  Call
34376         __lseek64 directly.
34377         (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
34378         (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional.  Call
34379         __mmap64 directly.
34380         (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
34381         (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional.  Call
34382         __lseek64 directly.
34383         (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
34384         (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional.  Call
34385         __lseek64 directly.
34386         (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
34387         (_IO_file_seek) [_G_LSEEK64]: Make code unconditional.  Call
34388         __lseek64 directly.
34389         (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
34390         (_IO_file_stat) [_G_FSTAT64]: Make code unconditional.  Call
34391         __fxstat64 directly.
34392         (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
34393         * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
34394         unconditional.
34395         (freopen64) [!_G_OPEN64]: Remove conditional code.
34396         * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
34397         unconditional.
34398         (fseeko64) [!_G_LSEEK64]: Remove conditional code.
34399         * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
34400         unconditional.
34401         (ftello64) [!_G_LSEEK64]: Remove conditional code.
34402         * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
34403         unconditional.
34404         (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
34405         * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
34406         unconditional.
34407         (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
34408         * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
34409         unconditional.
34410         (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
34411         * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
34412         unconditional.
34413         (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
34414         * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
34415         unconditional.
34416         (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
34417
34418 2012-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
34419
34420         [BZ #12140]
34421         * manual/memory.texi (Malloc Tunable Parameters): Add note
34422         about free list pointers overwriting some perturb bytes.
34423         Wording suggested by Roland McGrath.
34424
34425 2012-10-17  Joseph Myers  <joseph@codesourcery.com>
34426
34427         * math/libm-test.inc (gamma_test): Do not call feclearexcept.
34428         (lgamma_test): Likewise.
34429         (tgamma_test): Likewise.
34430
34431 2012-10-16  Florian Weimer  <fweimer@redhat.com>
34432
34433         [BZ #14700]
34434         * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
34435         (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
34436
34437 2012-10-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
34438
34439         * NEWS: Mention BZ #14716.
34440         * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
34441         when removing AVAILABLE1_USES_J macro.
34442
34443 2012-10-12  H.J. Lu  <hongjiu.lu@intel.com>
34444
34445         * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
34446         (__bswap_64): __uint64_t for unsigned 64-bit int.
34447
34448 2012-10-12  Andreas Schwab  <schwab@linux-m68k.org>
34449
34450         * include/string.h (memmem): Declare libc hidden alias.
34451         * string/memmem.c (memmem): Define libc hidden alias.
34452         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
34453         __read, __close instead of open, read, close.
34454
34455 2012-10-11  H.J. Lu  <hongjiu.lu@intel.com>
34456
34457         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
34458         * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
34459         global and hidden.
34460         * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
34461         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
34462         * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
34463         Likewise.
34464         (__rawmemchr_sse2): Likewise.
34465         * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
34466         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
34467         (__strchr_sse2): Likewise.
34468         * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
34469         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
34470         (__strcasecmp_sse2): Likewise.
34471         (__strncasecmp_sse2): Likewise.
34472         * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
34473         * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
34474         * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
34475         * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
34476         (__strrchr_sse2): Likewise.
34477         * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
34478         ifunc-impl-list.c.
34479         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
34480         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
34481         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
34482         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
34483         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
34484         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
34485         * sysdeps/x86_64/multiarch/memset.S: Likewise.
34486         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
34487         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
34488         * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
34489         * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
34490         * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
34491         * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
34492         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
34493         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
34494         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
34495         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
34496         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
34497         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
34498         * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
34499         * sysdeps/x86_64/multiarch/strncat.S: Likewise.
34500         * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
34501         * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
34502         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
34503         * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
34504         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
34505         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
34506         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
34507         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
34508         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
34509
34510         * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
34511         global and hidden.
34512         * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
34513         * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
34514         * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
34515         * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
34516         Likewise.
34517         * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
34518         Likewise.
34519         * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
34520         * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
34521         * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
34522         * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
34523         ifunc-impl-list.c.
34524         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
34525         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
34526         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
34527         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
34528         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
34529         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
34530         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
34531         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
34532         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
34533         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
34534         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
34535         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
34536         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
34537         * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
34538         * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
34539         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
34540         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
34541         * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
34542         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
34543         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
34544         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
34545         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
34546         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
34547         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
34548         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
34549         * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
34550         * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
34551         * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
34552         * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
34553         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
34554         * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
34555         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
34556         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
34557         * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
34558         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
34559         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
34560         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
34561         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
34562         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
34563         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
34564         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
34565
34566         * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
34567         [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
34568         * include/ifunc-impl-list.h: New file.
34569         * misc/ifunc-impl-list.c: Likewise.
34570         * misc/Makefile (routines): Add ifunc-impl-list.
34571         * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
34572         * string/test-string.h: Include <ifunc-impl-list.h>.
34573         (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
34574         TEST_NAME]: New variables.
34575         (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
34576         are defined.
34577         (test_init): Call __libc_ifunc_impl_list to initialize
34578         func_list if TEST_IFUNC and TEST_NAME are defined.
34579
34580         * string/Makefile (strop-tests): Add bcopy and bzero.
34581         * string/test-bcopy.c: New file.
34582         * string/test-bzero.c: Likewise.
34583         * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
34584         defined.
34585         * string/test-memset.c: Support bzero test if TEST_BZERO is
34586         defined.
34587         * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
34588         __libc_memmove.
34589         * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
34590         __libc_memset.
34591         * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
34592         of memset.
34593
34594 2012-10-10  Joseph Myers  <joseph@codesourcery.com>
34595
34596         * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
34597         * configure: Regenerated.
34598
34599         * Makeconfig (+link-static-before-libc): Don't include
34600         $(link-static-libc).
34601
34602         * libio/libio.h (_IO_pos_t): Remove.
34603
34604 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34605
34606         * NEWS: Add note about FIPS mode.  Wording suggested by Roland
34607         McGrath.
34608
34609 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34610
34611         * crypt/crypt-entry.c: Include fips-private.h.
34612         (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
34613         * crypt/md5c-test.c (main): Tolerate disabled MD5.
34614         * sysdeps/unix/sysv/linux/fips-private.h: New file.
34615         * sysdeps/generic/fips-private.h: New file, dummy fallback.
34616
34617 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34618
34619         * crypt/crypt-private.h: Include stdbool.h.
34620         (_ufc_setup_salt_r): Return bool.
34621         * crypt/crypt-entry.c: Include errno.h.
34622         (__crypt_r): Return NULL with EINVAL for bad salt.
34623         * crypt/crypt_util.c (bad_for_salt): New.
34624         (_ufc_setup_salt_r): Check that salt is long enough and within
34625         the specified alphabet.
34626         * crypt/badsalttest.c: New file.
34627         * crypt/Makefile (tests): Add it.
34628         ($(objpfx)badsalttest): New.
34629
34630 2012-10-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
34631
34632         * NEWS: Add entry for BZ #14602.
34633
34634 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
34635
34636         * math/gen-libm-test.pl (parse_args): Handle comparison macros as
34637         type-generic.
34638         * math/libm-test.inc: Update comment listing what functions and
34639         macros are tested.
34640         (isgreater_test): New function.
34641         (isgreaterequal_test): Likewise.
34642         (isless_test): Likewise.
34643         (islessequal_test): Likewise.
34644         (islessgreater_test): Likewise.
34645         (isunordered_test): Likewise.
34646         (main): Call the new functions.
34647
34648 2012-10-09  Roland McGrath  <roland@hack.frob.com>
34649
34650         * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
34651         _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
34652         AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
34653         * sysdeps/i386/configure: Regenerated.
34654         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
34655         * sysdeps/mach/configure: Regenerated.
34656         * sysdeps/mach/hurd/configure: Regenerated.
34657         * sysdeps/powerpc/configure: Regenerated.
34658         * sysdeps/powerpc/powerpc32/configure: Regenerated.
34659         * sysdeps/powerpc/powerpc64/configure: Regenerated.
34660         * sysdeps/s390/s390-32/configure: Regenerated.
34661         * sysdeps/s390/s390-64/configure: Regenerated.
34662         * sysdeps/sh/configure: Regenerated.
34663         * sysdeps/sparc/configure: Regenerated.
34664         * sysdeps/unix/sysv/linux/configure: Regenerated.
34665         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
34666         * sysdeps/x86_64/configure: Regenerated.
34667
34668         * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
34669         defined.  Don't check if MAP is NULL.
34670
34671 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
34672
34673         * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
34674         (_G_stat64): Likewise.
34675         * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
34676         (_G_stat64): Likewise.
34677         * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
34678         instead of struct _G_stat64.
34679         * libio/fileops.c (mmap_remap_check): Likewise.
34680         (decide_maybe_mmap): Likewise.
34681         (_IO_new_file_seekoff): Likewise.
34682         (_IO_file_stat): Likewise.
34683         * libio/libio.h (_IO_off64_t): Define to __off64_t, not
34684         _G_off64_t.
34685         * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
34686         instead of struct _G_stat64.
34687         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
34688
34689 2012-10-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
34690
34691         [BZ #14602]
34692         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34693         Replace with ...
34694         (CHECK_EOL): New macro.
34695         (two_way_short_needle): Check beginning of haystack for EOL.  Use
34696         CHECK_EOL.
34697         * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34698         Replace with CHECK_EOL.
34699         * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34700         Replace with CHECK_EOL.
34701
34702 2012-10-08  Joseph Myers  <joseph@codesourcery.com>
34703
34704         * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
34705         type-generic.
34706         * math/libm-test.inc: Update comment listing what functions and
34707         macros are tested.
34708         (finite_test): New function.
34709         (isinf_test): Likewise.
34710         (isnan_test): Likewise.
34711         (fpclassify_test): Test subnormal input.
34712         (isfinite_test): Likewise.
34713         (isnormal_test): Likewise.
34714         (main): Call the new functions.
34715
34716 2012-10-08  Jonathan Nieder  <jrnieder@gmail.com>
34717
34718         [BZ #14660]
34719         * Makerules (%.dynsym): Force C locale when running
34720         $(OBJDUMP) --dynamic-syms.
34721
34722 2012-10-08  Andreas Schwab  <schwab@linux-m68k.org>
34723
34724         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
34725         <stdint.h>.
34726
34727 2012-10-06  David S. Miller  <davem@davemloft.net>
34728
34729         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
34730         upper 32-bits of the length value in %o2 since we use branch-on-register
34731         tests which consider the entire 64-bit register.
34732
34733 2012-10-06  H.J. Lu  <hongjiu.lu@intel.com>
34734
34735         * string/test-strstr.c (check2): Add a test for page boundary.
34736
34737 2012-10-05  David S. Miller  <davem@davemloft.net>
34738
34739         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
34740         * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
34741         file.
34742         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
34743         sysdep_routines.
34744         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
34745         * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
34746         and bzero when HWCAP_SPARC_CRYPTO is present.
34747
34748 2012-10-05  H.J. Lu  <hongjiu.lu@intel.com>
34749
34750         [BZ #14602]
34751         * string/test-strstr.c (check2): New function.
34752         (test_main): Call check2.
34753
34754         * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
34755         and bug-strchr1.
34756         * string/bug-strcasestr1.c (do_test): Moved to ...
34757         * string/test-strcasestr.c (check1): Here.  New function.
34758         (do_one_test): Break out result checking code into ...
34759         (check_result): This.  New function.
34760         (do_one_test): Call check_result.
34761         (test_main): Call check1.
34762         * string/bug-strchr1.c (do_test): Moved to ...
34763         * string/test-strchr.c (check1): Here.  New function.
34764         (do_one_test): Break out result checking code into ...
34765         (check_result): This.  New function.
34766         (do_one_test): Call check_result.
34767         (test_main): Call check1.
34768         * string/bug-strstr1.c (main): Moved to ...
34769         * string/test-strstr.c (check1): Here.  New function.
34770         (do_one_test): Break out result checking code into ...
34771         (check_result): This.  New function.
34772         (do_one_test): Call check_result.
34773         (test_main): Call check1.
34774         * string/bug-strcasestr1.c: Removed.
34775         * string/bug-strchr1.c: Likewise.
34776         * string/bug-strstr1.c: Likewise.
34777
34778         * elf/Makefile (dl-routines): Add hwcaps.
34779         * elf/dl-support.c (_dl_important_hwcaps): Removed.
34780         * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
34781         (_dl_important_hwcaps): Moved to ...
34782         * elf/dl-hwcaps.c: Here.  New file.
34783         * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
34784
34785         [BZ #14557]
34786         * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
34787         if IS_IN_rtld isn't defined.
34788
34789         * elf/dl-support.c (_dl_sysinfo_map): New.
34790         Include "get-dynamic-info.h" and "setup-vdso.h".
34791         (_dl_non_dynamic_init): Call setup_vdso.
34792         * elf/dynamic-link.h: Don't include <assert.h>.
34793         (elf_get_dynamic_info): Moved to ...
34794         * elf/get-dynamic-info.h: Here.  New file.
34795         * elf/dynamic-link.h: Include "get-dynamic-info.h".
34796         * elf/rtld.c (dl_main): Break out vDSO setup code into ...
34797         * elf/setup-vdso.h: Here.  New file.
34798         * elf/rtld.c: Include "setup-vdso.h".
34799         (dl_main): Call setup_vdso.
34800
34801 2012-10-05  Joseph Myers  <joseph@codesourcery.com>
34802
34803         * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
34804         creal in comment listing functions tested.  List finite, isinf,
34805         isnan, isless, islessequal, isgreater, isgreaterequal,
34806         islessgreater, isunordered, lgamma_r and pow10 as functions and
34807         macros not tested.  Mention which functions not tested are aliases
34808         for other functions.  Fix typo.  Note that signs of NaNs are not
34809         tested.
34810
34811         * scripts/config.guess: Update from config.git.
34812         * scripts/config.sub: Likewise.
34813
34814 2012-10-04  Roland McGrath  <roland@hack.frob.com>
34815
34816         * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
34817         * misc/madvise.c (madvise): Renamed to __madvise.
34818         Make madvise a weak alias.
34819         * include/sys/mman.h: Declare __madvise.
34820         Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
34821         * sysdeps/unix/syscalls.list
34822         (madvise): Make __madvise the strong name, and madvise a weak alias.
34823         * sysdeps/unix/sysv/linux/syscalls.list
34824         (madvise, mmap): Remove redundant entries.
34825         * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
34826         * malloc/malloc.c (mtrim): Likewise.
34827         * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
34828
34829 2012-10-03  Roland McGrath  <roland@hack.frob.com>
34830
34831         * sysdeps/mach/hurd/dl-cache.c: File removed.
34832         * config.h.in (USE_LDCONFIG): New #undef.
34833         * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
34834         * configure: Regenerated.
34835         * elf/Makefile (dl-routines): Add dl-cache only under
34836         [$(use-ldconfig) = yes].
34837         * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
34838         cache on [USE_LDCONFIG].
34839         * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
34840         [USE_LDCONFIG].
34841         * elf/rtld.c (dl_main): Likewise.
34842
34843 2012-10-03  Pino Toscano  <toscano.pino@tiscali.it>
34844
34845         * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
34846         _SC_LEVEL4_CACHE_LINESIZE.
34847
34848 2012-10-03  Roland McGrath  <roland@hack.frob.com>
34849
34850         * sysdeps/unix/bsd/confstr.h: File removed.
34851
34852 2012-10-02  Alexandre Oliva <aoliva@redhat.com>
34853
34854         * scripts/check-local-headers.sh: Exclude sys/sdt.h and
34855         sys/sdt-config.h.
34856
34857 2012-10-02  Roland McGrath  <roland@hack.frob.com>
34858
34859         * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
34860         Make 'mapoff' field ElfW(Off) rather than off_t.
34861
34862 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
34863
34864         * nscd/Makefile: Remove nscd-cflags and all its users.
34865         (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
34866         (CFLAGS-nonlib): Add compiler flags for nscd modules.
34867
34868         [BZ #10631]
34869         * malloc.c (malloc_printerr): Clarify error message.
34870
34871 2012-10-02  H.J. Lu  <hongjiu.lu@intel.com>
34872
34873         [BZ #14648]
34874         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
34875         Set bit_FMA_Usable if FMA is supported.
34876         * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
34877         macro.
34878         (bit_FMA4_Usable): Updated.
34879         (index_FMA_Usable): New macro.
34880         (CPUID_FMA): Likewise
34881         (HAS_FMA): Defined with bit_FMA_Usable.
34882
34883 2012-10-01  Roland McGrath  <roland@hack.frob.com>
34884
34885         * bits/types.h (__swblk_t): Type removed.
34886         * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
34887         * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
34888         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
34889         (__SWBLK_T_TYPE): Likewise.
34890         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
34891         (__SWBLK_T_TYPE): Likewise.
34892         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
34893         (__SWBLK_T_TYPE): Likewise.
34894         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
34895         (__SWBLK_T_TYPE): Likewise.
34896
34897 2012-10-01  Patsy Franklin <pfrankli@redhat.com>
34898             Honza Horak <hhorak@redhat.com>
34899
34900         * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
34901         (xdr_mapname): Use YPMAXMAP as maxsize.
34902         (xdr_peername): Use YPMAXPEER as maxsize.
34903         (xdr_keydat): Use YPAXRECORD as maxsize.
34904         (xdr_valdat): Use YPMAXRECORD as maxsize.
34905
34906 2012-10-01  Roland McGrath  <roland@hack.frob.com>
34907
34908         * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
34909
34910         * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
34911         * csu/init-first.c: ... here.
34912         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
34913         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
34914         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
34915         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
34916         * sysdeps/i386/init-first.c: File removed.
34917         * sysdeps/sh/init-first.c: File removed.
34918
34919 2012-10-01  Joseph Myers  <joseph@codesourcery.com>
34920
34921         [BZ #14645]
34922         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
34923         if x * y might underflow to zero and z is zero.
34924         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34925         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34926         * math/libm-test.inc (min_subnorm_value): New variable.
34927         (fma_test): Add more tests.
34928         (fma_test_towardzero): Likewise.
34929         (fma_test_downward): Likewise
34930         (fma_test_upward): Likewise.
34931         (initialize): Set min_subnorm_value.
34932
34933 2012-09-29  Joseph Myers  <joseph@codesourcery.com>
34934
34935         [BZ #14638]
34936         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
34937         0 + 0.
34938         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
34939         mode for addition resulting in exact zero.
34940         * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
34941         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
34942         exact 0 + 0.
34943         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
34944         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34945         * math/libm-test.inc (fma_test): Add more tests.
34946         (fma_test_towardzero): New function.
34947         (fma_test_downward): Likewise.
34948         (fma_test_upward): Likewise.
34949         (main): Call the new functions.
34950
34951 2012-09-28  David S. Miller  <davem@davemloft.net>
34952
34953         * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
34954
34955 2012-09-28  Roland McGrath  <roland@hack.frob.com>
34956
34957         * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
34958         instead of SIGALRM.
34959
34960         * sysdeps/gnu/_G_config.h: Moved to ...
34961         * sysdeps/unix/sysv/linux/_G_config.h: ... here.
34962         * sysdeps/mach/hurd/_G_config.h: Moved to ...
34963         * sysdeps/generic/_G_config.h: ... here.
34964
34965         * io/open.c (__open): Renamed to __libc_open.  Make __open an alias.
34966
34967         * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
34968
34969         * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
34970         Conditionalize target on [libnss_test1.so-version].
34971
34972         * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
34973
34974         * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
34975         (elfobjdir): Move out of conditionals.
34976
34977         * nss/nsswitch.c (nss_new_service): Conditionalize definition and
34978         declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
34979         (__nss_lookup_function): Conditionalize label remove_from_tree on
34980         [!DO_STATIC_NSS || SHARED], matching its only use.
34981
34982 2012-09-28  David S. Miller  <davem@davemloft.net>
34983
34984         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
34985         * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
34986         file.
34987         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
34988         sysdep_routines.
34989         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
34990         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
34991         when HWCAP_SPARC_CRYPTO is present.
34992
34993 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
34994
34995         * io/tst-mknodat.c: Create a FIFO instead of a socket.
34996
34997 2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>
34998
34999         [BZ #6530]
35000         * stdio-common/vfprintf.c (process_string_arg): Revert
35001         2000-07-22 change.
35002
35003 2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>
35004
35005         * stdio-common/Makefile (tst-sprintf-ENV): Set environment
35006         for testcase.
35007         * stdio-common/tst-sprintf.c: Include <locale.h>
35008         (main): Test sprintf's handling of incomplete multibyte
35009         characters.
35010
35011 2012-09-28  H.J. Lu  <hongjiu.lu@intel.com>
35012
35013         * elf/dl-runtime.c (VERSYMIDX): Removed.
35014         * elf/dl-version.c (VERSYMIDX): Likewise.
35015         * elf/do-rel.h (VERSYMIDX): Likewise.
35016         (VALIDX): Likewise.
35017         * elf/dynamic-link.h (VERSYMIDX): Likewise.
35018         * elf/rtld.c (VALIDX): Likewise.
35019         (ADDRIDX): Likewise.
35020         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
35021         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
35022         * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
35023         * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
35024         (VALIDX): Likewise.
35025         (ADDRIDX): Likewise.
35026
35027 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
35028
35029         * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
35030
35031 2012-09-28  Dmitry V. Levin  <ldv@altlinux.org>
35032
35033         [BZ #11438]
35034         * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
35035         to global scope.
35036         * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
35037         addresses are in the same scope as 192.0.2/24.
35038         * posix/gai.conf: Document new scope table defaults.
35039
35040 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35041
35042         [BZ #5298]
35043         * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
35044         for ftell.  Compute offsets from write pointers instead.
35045         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
35046
35047 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35048
35049         [BZ #14543]
35050         * libio/Makefile (tests): New test case tst-fseek.
35051         * libio/tst-fseek.c: New test case to verify that fseek/ftell
35052         combination works in wide mode.
35053         * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
35054         state when the external buffer state changes.
35055
35056 2012-09-27  David S. Miller  <davem@davemloft.net>
35057
35058         [BZ #14376]
35059         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
35060         pass reloc->r_addend in as the 'high' argument to
35061         sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
35062
35063         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35064
35065 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
35066
35067         * rt/tst-aio2.c: Include <pthread.h>.
35068         * rt/tst-aio3.c: Likewise.
35069
35070 2012-09-27  Steve Ellcey  <sellcey@mips.com>
35071
35072         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
35073
35074 2012-09-27  H.J. Lu  <hongjiu.lu@intel.com>
35075
35076         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
35077         contents on [SHARED].
35078
35079 2012-09-26  Marek Polacek  <polacek@redhat.com>
35080
35081         [BZ #14530]
35082         [BZ #13741]
35083         * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
35084         for C++ and GCC <4.3 as well as for non GCC compilers.
35085
35086 2012-09-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
35087
35088         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35089
35090 2012-09-25  Roland McGrath  <roland@hack.frob.com>
35091
35092         * Makefile.in (all, install): Declare with .PHONY.
35093         Reported by Michael Hope <michael.hope@linaro.org>.
35094
35095 2012-09-25  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
35096
35097         * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
35098         * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
35099         system header.
35100         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
35101         Likewise.
35102         (sydep_routines): Add the new and the internal functions.
35103         * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
35104         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
35105         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
35106         (GLIBC_2.17): Add the new function.
35107         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
35108         (GLIBC_2.17): Likewise.
35109         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
35110         (GLIBC_2.17): Likewise.
35111         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
35112         (GLIBC_2.17): Likewise.
35113         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
35114
35115 2012-09-25  Alan Modra  <amodra@gmail.com>
35116
35117         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
35118         Add release barrier before setting once_control to say
35119         initialisation is done.  Add hints on lwarx.  Use macro in
35120         place of isync.
35121         (clear_once_control): Add release barrier.
35122
35123 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
35124
35125         [BZ #13629]
35126         * math/s_clog.c (__clog): Handle more values close to |z| = 1
35127         specially.
35128         * math/s_clog10.c (__clog10): Likewise.
35129         * math/s_clog10f.c (__clog10f): Likewise.
35130         * math/s_clog10l.c (__clog10l): Likewise.
35131         * math/s_clogf.c (__clogf): Likewise.
35132         * math/s_clogl.c (__clogl): Likewise.
35133         * math/Makefile (libm-calls): Add x2y2m1.
35134         * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
35135         (__x2y2m1): Likewise.
35136         (__x2y2m1l): Likewise.
35137         * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
35138         * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
35139         * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
35140         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
35141         * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
35142         * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
35143         * math/libm-test.inc (clog_test, clog10_test): Add more tests.
35144         * sysdeps/i386/fpu/libm-test-ulps: Update.
35145         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35146
35147         [BZ #14621]
35148         * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
35149         int as type of variable DEPTH.
35150         (glob): Use size_t instead of int as type of variables NEWCOUNT
35151         and OLD_PATHC.
35152
35153 2012-09-25  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35154
35155         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
35156         Add s_sincosf-sse2.
35157         * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
35158         * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
35159         * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
35160         macros for using routine as __sincosf_ia32.
35161         Use macro for function declaration and weak_alias.
35162         * sysdeps/i386/fpu/libm-test-ulps: Update.
35163
35164         * sysdeps/x86_64/fpu/s_sincosf.S: New file.
35165         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35166
35167         * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
35168         subnormal argument.
35169         * math/s_cexpf.c (__cexpf): Likewise.
35170         * math/s_csinf.c (__csinf): Likewise.
35171         * math/s_csinhf.c (__csinhf): Likewise.
35172         * math/s_ctanf.c (__ctanf): Likewise.
35173         * math/s_ctanhf.c (__ctanhf): Likewise.
35174         * math/s_ccosh.c (__ccoshf): Likewise.
35175         * math/s_cexp.c (__cexpl): Likewise.
35176         * math/s_csin.c (__csin): Likewise.
35177         * math/s_csinh.c (__csinh): Likewise.
35178         * math/s_ctan.c (__ctan): Likewise.
35179         * math/s_ctanh.c (ctanh): Likewise.
35180         * math/s_ccoshl.c (__ccoshl): Likewise.
35181         * math/s_cexpl.c (__cexpl): Likewise.
35182         * math/s_csinl.c (__csinl): Likewise.
35183         * math/s_csinhl.c (__csinhl): Likewise.
35184         * math/s_ctanl.c (__ctanl): Likewise.
35185         * math/s_ctanhl.c (__ctanhl): Likewise.
35186
35187 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
35188
35189         * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
35190         (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
35191         (_IO_off_t): Define to __off_t, not _G_off_t.
35192         (_IO_pid_t): Define to __pid_t, not _G_pid_t.
35193         (_IO_uid_t): Define to __uid_t, not _G_uid_t.
35194         (_IO_wint_t): Define to wint_t, not _G_wint_t.
35195         * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
35196         type of __dummy and __dummy2 fields.
35197         * sysdeps/generic/_G_config.h (_G_size_t): Remove.
35198         (_G_ssize_t): Likewise.
35199         (_G_off_t): Likewise.
35200         (_G_pid_t): Likewise.
35201         (_G_uid_t): Likewise.
35202         (_G_wchar_t): Likewise.
35203         (_G_wint_t): Likewise.
35204         * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
35205         (_G_ssize_t): Likewise.
35206         (_G_off_t): Likewise.
35207         (_G_pid_t): Likewise.
35208         (_G_uid_t): Likewise.
35209         (_G_wchar_t): Likewise.
35210         (_G_wint_t): Likewise.
35211         * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
35212         (_G_ssize_t): Likewise.
35213         (_G_off_t): Likewise.
35214         (_G_pid_t): Likewise.
35215         (_G_uid_t): Likewise.
35216         (_G_wchar_t): Likewise.
35217         (_G_wint_t): Likewise.
35218
35219 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
35220
35221         * malloc/arena.c: Include malloc-sysdep.h.
35222         (shrink_heap): Use check_may_shrink_heap to decide if madvise
35223         is sufficient to shrink the heap or an unmap is needed.
35224         * sysdeps/generic/malloc-sysdep.h: New file.  Define
35225         new function check_may_shrink_heap.
35226         * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file.  Define
35227         new function check_may_shrink_heap.
35228
35229 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
35230
35231         * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
35232         comments.
35233
35234 2012-09-24  Dmitry V. Levin  <ldv@altlinux.org>
35235
35236         * catgets/test-gencat.sh: Add "set -e".
35237         * elf/tst-pathopt.sh: Likewise.
35238         * grp/tst_fgetgrent.sh: Likewise.
35239         * iconvdata/run-iconv-test.sh: Likewise.
35240         * intl/tst-gettext.sh: Likewise.
35241         * intl/tst-gettext2.sh: Likewise.
35242         * intl/tst-gettext4.sh: Likewise.
35243         * intl/tst-gettext6.sh: Likewise.
35244         * intl/tst-translit.sh: Likewise.
35245         * io/ftwtest-sh: Likewise.
35246         * libio/test-freopen.sh: Likewise.
35247         * malloc/tst-mtrace.sh: Likewise.
35248         * posix/globtest.sh: Likewise.
35249         * posix/tst-getconf.sh: Likewise.
35250         * posix/wordexp-tst.sh: Likewise.
35251         * stdio-common/tst-printf.sh: Likewise.
35252         * stdio-common/tst-unbputc.sh: Likewise.
35253         * stdlib/tst-fmtmsg.sh: Likewise.
35254         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
35255         * catgets/Makefile: Do not specify -e option when running
35256         testsuite shell scripts.
35257         * elf/Makefile: Likewise.
35258         * grp/Makefile: Likewise.
35259         * iconvdata/Makefile: Likewise.
35260         * intl/Makefile: Likewise.
35261         * io/Makefile: Likewise.
35262         * libio/Makefile: Likewise.
35263         * malloc/Makefile: Likewise.
35264         * posix/Makefile: Likewise.
35265         * stdio-common/Makefile: Likewise.
35266         * stdlib/Makefile: Likewise.
35267         * sysdeps/x86_64/Makefile: Likewise.
35268
35269         * io/ftwtest-sh: Add copyright header.
35270         * posix/globtest.sh: Likewise.
35271         * posix/tst-getconf.sh: Likewise.
35272         * posix/wordexp-tst.sh: Likewise.
35273         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
35274
35275 2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
35276
35277         [BZ #13679]
35278         * Makeconfig (+link): Defined as $(+link-static) if
35279         $(build-shared) isn't yes.
35280         (link-tests): Defined as $(+link-static-tests) if $(build-shared)
35281         isn't yes.
35282         (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
35283
35284         * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
35285
35286         [BZ #14562]
35287         * malloc/arena.c (heap_trim): Properly get fencepost and adjust
35288         new chunk size with MALLOC_ALIGN_MASK.
35289
35290 2012-09-24  Joseph Myers  <joseph@codesourcery.com>
35291
35292         [BZ #5044]
35293         * stdio-common/printf_fphex.c: Include <stdbool.h> and
35294         <rounding-mode.h>.
35295         (__printf_fphex): Determine rounding using get_rounding_mode and
35296         round_away.
35297         * stdio-common/tst-printf-round.c (struct hex_test): New
35298         structure.
35299         (hex_tests): New variable.
35300         (test_hex_in_one_mode): New function.
35301         (do_test): Also run tests for hex float output.
35302
35303 2012-09-21  Joseph Myers  <joseph@codesourcery.com>
35304
35305         * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
35306         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
35307         * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
35308         * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
35309         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
35310         * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
35311         * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
35312         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
35313
35314 2012-09-20  Joseph Myers  <joseph@codesourcery.com>
35315
35316         * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
35317         * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
35318         * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
35319         * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
35320
35321 2012-09-19  Dmitry V. Levin  <ldv@altlinux.org>
35322
35323         [BZ #14579]
35324         * elf/rtld.c (dl_main): Limit the check for self loading to normal
35325         mode only.
35326         * elf/tst-rtld-load-self.sh: New test.
35327         * elf/Makefile: Run it.
35328
35329 2012-09-18  Joseph Myers  <joseph@codesourcery.com>
35330
35331         * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
35332         (tst-writev-ENV): Remove.
35333         * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
35334
35335 2012-09-17  Chris Metcalf  <cmetcalf@tilera.com>
35336
35337         * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
35338
35339 2012-09-17  Joseph Myers  <joseph@codesourcery.com>
35340
35341         * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
35342         unconditional.
35343         * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
35344         Likewise.
35345         * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
35346         * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
35347         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
35348         Likewise.
35349
35350 2012-09-14  H.J. Lu  <hongjiu.lu@intel.com>
35351
35352         [BZ #14587]
35353         * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
35354         * config.make.in (have-cpp-asm-debuginfo): Removed.
35355         * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
35356         * configure: Regenerated.
35357
35358 2012-09-14  Joseph Myers  <joseph@codesourcery.com>
35359
35360         [BZ #5044]
35361         * stdio-common/printf_fp.c: Include <stdbool.h> and
35362         <rounding-mode.h>.
35363         (___printf_fp): Determine rounding using get_rounding_mode and
35364         round_away.
35365         * stdio-common/tst-printf-round.c: New file.
35366         * stdio-common/Makefile (tests): Add tst-printf-round.
35367         (link-libm): New variable.
35368         ($(objpfx)tst-printf-round): Depend in $(link-libm).
35369
35370 2012-09-13  H.J. Lu  <hongjiu.lu@intel.com>
35371
35372         [BZ #14576]
35373         * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
35374         * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
35375         Likewise.
35376         * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
35377         Likewise.
35378
35379 2012-09-13  Joseph Myers  <joseph@codesourcery.com>
35380
35381         * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
35382         * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35383         * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35384         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35385
35386 2012-09-12  Joseph Myers  <joseph@codesourcery.com>
35387
35388         [BZ #14518]
35389         * include/rounding-mode.h: New file.
35390         * sysdeps/generic/get-rounding-mode.h: Likewise.
35391         * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
35392         * stdlib/strtod_l.c: Include <rounding-mode.h>.
35393         (MAX_VALUE): New macro.
35394         (MIN_VALUE): Likewise.
35395         (overflow_value): New function.
35396         (underflow_value): Likewise.
35397         (round_and_return): Use overflow_value and underflow_value to
35398         determine return values in overflow and underflow cases.  Use
35399         round_away to determine rounding depending on rounding mode.
35400         (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
35401         determine return values in overflow and underflow cases.
35402         * stdlib/tst-strtod-round.c: Include <fenv.h>.
35403         (struct test_results): New structure.
35404         (struct test): Use struct test_results to store expected results
35405         for all rounding modes.
35406         (TEST): Include expected results for all rounding modes.
35407         (test_in_one_mode): New function.
35408         (do_test): Use test_in_one_mode to compute and check results.
35409         Check results for all rounding modes.
35410         * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
35411         $(link-libm).
35412
35413 2012-12-09  Allan McRae  <allan@archlinux.org>
35414
35415         * sysdeps/i386/fpu/libm-test-ulps: Update
35416
35417 2012-09-11  Joseph Myers  <joseph@codesourcery.com>
35418
35419         * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
35420         (_G_int32_t): Likewise.
35421         (_G_uint16_t): Likewise.
35422         (_G_uint32_t): Likewise.
35423         (_G_HAVE_BOOL): Likewise.
35424         (_G_HAVE_ATEXIT): Likewise.
35425         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35426         (_G_HAVE_IO_FILE_OPEN): Likewise.
35427         * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
35428         (_G_int32_t): Likewise.
35429         (_G_uint16_t): Likewise.
35430         (_G_uint32_t): Likewise.
35431         (_G_HAVE_BOOL): Likewise.
35432         (_G_HAVE_ATEXIT): Likewise.
35433         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35434         (_G_HAVE_IO_FILE_OPEN): Likewise.
35435         * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
35436         (_G_int32_t): Likewise.
35437         (_G_uint16_t): Likewise.
35438         (_G_uint32_t): Likewise.
35439         (_G_HAVE_BOOL): Likewise.
35440         (_G_HAVE_ATEXIT): Likewise.
35441         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35442         (_G_HAVE_IO_FILE_OPEN): Likewise.
35443
35444 2012-09-11  H.J. Lu  <hongjiu.lu@intel.com>
35445
35446         * csu/libc-tls.c: Update copyright years.
35447
35448 2012-09-10  Joseph Myers  <joseph@codesourcery.com>
35449
35450         * libioP.h [_G_USING_THUNKS]: Make code unconditional.
35451         [!_G_USING_THUNKS]: Remove conditional code.
35452         * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
35453         * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
35454
35455         * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
35456         [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
35457         * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35458         (_G_VTABLE_LABEL_PREFIX): Likewise.
35459         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35460         * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35461         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35462         (_G_VTABLE_LABEL_PREFIX): Likewise.
35463         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
35464         * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35465         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35466         (_G_VTABLE_LABEL_PREFIX): Likewise.
35467         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
35468
35469 2012-09-10  H.J. Lu  <hongjiu.lu@intel.com>
35470
35471         * libio/Makefile: Include ../Makeconfig before tests.
35472         (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
35473         only if $(build-shared) is yes.
35474
35475         * iconv/gconv_db.c: Update copyright years.
35476
35477 2012-09-10  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35478
35479         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
35480         unwind info if defined PIC. Fix special cases description.
35481         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
35482
35483         * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
35484         DP_HI_MASK entry.
35485         * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
35486
35487 2012-09-07  H.J. Lu  <hongjiu.lu@intel.com>
35488
35489         * scripts/check-local-headers.sh: Add "shopt -s nullglob".
35490
35491         * iconv/gconv_db.c (free_derivation): Check if deriv->steps
35492         is NULL.
35493
35494         * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
35495         (LDLIBS-tst-chk4): This.
35496         (LDFLAGS-tst-chk5): Renamed to ...
35497         (LDLIBS-tst-chk5): This.
35498         (LDFLAGS-tst-chk6): Renamed to ...
35499         (LDLIBS-tst-chk6): This.
35500         (LDFLAGS-tst-lfschk4): Renamed to ...
35501         (LDLIBS-tst-lfschk4): This.
35502         (LDFLAGS-tst-lfschk5): Renamed to ...
35503         (LDLIBS-tst-lfschk5): This.
35504         (LDFLAGS-tst-lfschk6): Renamed to ...
35505         (LDLIBS-tst-lfschk6): This.
35506
35507         * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
35508         on $(common-objpfx)soversions.mk.
35509
35510 2012-09-07  Joseph Myers  <joseph@codesourcery.com>
35511
35512         [BZ #10014]
35513         * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
35514         example host name.
35515
35516 2012-09-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
35517
35518         * malloc/arena.c (arena_get_retry): New function that gets
35519         another arena for the caller to try its request on.
35520         * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
35521         current arena cannot fulfill the request.
35522         (__libc_memalign): Likewise.
35523         (__libc_memalign): Likewise.
35524         (__libc_pvalloc): Likewise.
35525         (__libc_calloc): Likewise.
35526
35527 2012-09-05  John Tobey  <john.tobey@gmail.com>
35528
35529         [BZ #13542]
35530         * manual/arith.texi (Operations on Complex): Fix description
35531         of carg branch cut.
35532
35533 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
35534
35535         [BZ #10014]
35536         * manual/socket.texi (Host Addresses): Use www.gnu.org as example
35537         host name.
35538
35539         [BZ #10038]
35540         * manual/memory.texi (Memory): Make order of menu items match
35541         order of sections.
35542
35543 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35544
35545         * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
35546         (_dl_initial_dtv): New.  Defined if SHARED isn't defined.
35547         (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
35548
35549 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35550
35551         * csu/libc-tls.c (static_dtv): Renamed to ...
35552         (_dl_static_dtv): This.  Make it global.
35553         (_dl_initial_dtv): Removed.
35554         (__libc_setup_tls): Updated.
35555         * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
35556         (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
35557         DL_INITIAL_DTV.
35558
35559 2012-09-06  Petr Machata  <pmachata@redhat.com>
35560
35561         * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
35562         (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
35563         (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
35564         (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
35565
35566 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35567
35568         [BZ #14545]
35569         * csu/libc-tls.c (_dl_initial_dtv): New variable.
35570         * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
35571         freeing dtv[-1].
35572
35573 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35574
35575         [BZ #14544]
35576         * Makeconfig (link-static-before-libc): Replace $(+prector)
35577         with $(+prectorT).
35578         (link-static-after-libc): Replace $(+postctor) with
35579         $(+postctorT).
35580         (link-bounded): Replace $(+prector)/$(+postctor) with
35581         $(+prectorT)/$(+postctorT).
35582         (+prectorT): New macro.
35583         (+postctorT): Likewise.
35584
35585 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
35586
35587         * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
35588         (round_str): Handle values above the maximum for IBM long double
35589         as inexact.
35590         * stdlib/tst-strtod-round.c (tests): Regenerated.
35591
35592 2012-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
35593
35594         * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
35595         assembler flag.
35596         * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
35597         zarch_nohighgprs around the zarch optimized routines.
35598         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
35599         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
35600         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
35601         for zarch.
35602
35603 2012-09-05  David S. Miller  <davem@davemloft.net>
35604
35605         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35606
35607         * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
35608         (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
35609         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
35610         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
35611         entries.
35612
35613 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35614
35615         * malloc/arena.c: Fold copyright years.
35616         * malloc/mcheck.c, malloc/memusage.c: Likewise.
35617
35618 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35619
35620         * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
35621
35622 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35623
35624         * manual/contrib.texi (Contributors): Fix typo.  Complete entry.
35625
35626 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35627
35628         * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
35629         change internal state upon failure.
35630
35631 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35632
35633         * malloc/mcheck.c (mcheck_check_all): Fix typo.
35634         * malloc/memusage.c (mmap): Likewise.
35635         (mmap64, mremap): Likewise.  Adjust name in comment.
35636
35637 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
35638
35639         * libio/fileops.c: Fix typos in comments.
35640         * libio/oldfileops.c: Likewise.
35641         * libio/wfileops.c: Likewise.
35642
35643 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
35644
35645         [BZ #1349]
35646         * malloc/Makefile (tests): Add tst-malloc-usable test case.
35647         (tst-malloc-usable-ENV): Set environment for test case.
35648         * malloc/hooks.c (malloc_check_get_size): New function to get
35649         requested size.
35650         * malloc/malloc.c (musable): Use malloc_check_get_size.
35651         * malloc/tst-malloc-usable.c: New test case.
35652
35653 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
35654
35655         * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
35656
35657 2012-09-05  Allan McRae  <allan@archlinux.org>
35658
35659         [BZ #13966]
35660         * configure.in (CXX_SYSINCLUDES): Use compiler output to
35661         determine header location.
35662         * configure: Regenerated.
35663
35664 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
35665
35666         * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
35667         float format.
35668         * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
35669         LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
35670         format.
35671         (test): Regenerate.
35672
35673 2012-09-04  David S. Miller  <davem@davemloft.net>
35674
35675         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
35676         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
35677         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
35678
35679 2012-09-04  Florian Weimer  <fweimer@redhat.com>
35680
35681         * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
35682         failures.
35683
35684         * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
35685
35686 2012-09-04  Joseph Myers  <joseph@codesourcery.com>
35687
35688         [BZ #9914]
35689         * libio/iogetdelim.c: Include <limits.h>.
35690         (_IO_getdelim): Avoid integer overflow in testing whether cur_len
35691         + len + 1 would overflow.
35692
35693 2012-09-03  Andreas Jaeger  <aj@suse.de>
35694
35695         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35696         * sysdeps/i386/fpu/libm-test-ulps: Update.
35697
35698 2012-09-03  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35699
35700         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
35701         Add s_sinf-sse2, s_conf-sse2.
35702
35703         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
35704         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
35705         * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
35706         * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
35707
35708         * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
35709         for using routine as __sinf_ia32.
35710         Use macro for function declaration and weak_alias.
35711         * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
35712         for using routine as __cosf_ia32.
35713         Use macro for function declaration and weak_alias.
35714
35715         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
35716         * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
35717
35718         * sysdeps/x86_64/fpu/s_sinf.S: New file.
35719         * sysdeps/x86_64/fpu/s_cosf.S: New file.
35720         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35721
35722         * math/libm-test.inc (cos_test): Add more test cases.
35723         (sin_test): Likewise.
35724         (sincos_test): Likewise.
35725
35726 2012-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
35727
35728         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
35729         (IFUNC_RESOLVE): Make pointers to the specialized implementations
35730         hidden.
35731         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
35732
35733 2012-09-02  H.J. Lu  <hongjiu.lu@intel.com>
35734
35735         [BZ #14538]
35736         * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
35737         first element of the GOT.
35738         (elf_machine_load_address): Return the difference between
35739         the runtime address of _DYNAMIC and elf_machine_dynamic ().
35740
35741 2012-09-01  Allan McRae  <allan@archlinux.org>
35742
35743         [BZ #13412]
35744         * configure.in (AWK): Require gawk version 3.0 or later.
35745         * configure: Regenerated.
35746
35747 2012-09-01  Joseph Myers  <joseph@codesourcery.com>
35748
35749         * sysdeps/unix/sysv/linux/kernel-features.h
35750         (__ASSUME_POSIX_CPU_TIMERS): Remove.
35751         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
35752         [__NR_clock_getres]: Make code unconditional.
35753         [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
35754         (clock_getcpuclockid): Remove code left unreachable by removal of
35755         conditionals.
35756         * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
35757         code unconditional.
35758         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
35759         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35760         * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
35761         Make code unconditional.
35762         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
35763         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35764         * sysdeps/unix/sysv/linux/clock_settime.c
35765         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
35766         conditional code.
35767         [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
35768         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35769
35770 2012-08-29  H.J. Lu  <hongjiu.lu@intel.com>
35771
35772         [BZ #14476]
35773         * Makefile (install): Also pass LD_SO=$(ld.so-version) to
35774         scripts/test-installation.pl.
35775
35776         * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
35777         and $ld_so_version if it is set.
35778
35779 2012-08-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
35780
35781         [BZ #14516]
35782         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
35783         failure if reading from procfs failed.
35784         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
35785
35786 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
35787
35788         * sysdeps/unix/sysv/linux/kernel-features.h
35789         (__ASSUME_STAT64_SYSCALL): Remove all definitions.
35790         * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
35791         Remove conditional code.
35792         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35793         * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
35794         Remove conditional code.
35795         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35796         * sysdeps/unix/sysv/linux/i386/fxstat.c
35797         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35798         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35799         * sysdeps/unix/sysv/linux/i386/fxstatat.c
35800         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35801         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35802         * sysdeps/unix/sysv/linux/i386/lxstat.c
35803         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35804         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35805         * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
35806         Remove conditional code.
35807         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35808         * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
35809         Remove conditional code.
35810         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35811         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
35812         <kernel-features.h>.
35813         [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
35814         Remove.
35815         * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
35816         Remove conditional code.
35817         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35818         * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
35819         Remove conditional.
35820
35821 2012-08-27  Mike Frysinger  <vapier@gentoo.org>
35822
35823         [BZ #5400]
35824         * NEWS: Add fixed bug number.
35825
35826 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
35827
35828         [BZ #14519]
35829         * stdlib/strtod_l.c (round_and_return): Return -0.0 for
35830         underflowing exponent in case of negative sign.
35831         * stdlib/tst-strtod-round-data: Add more tests.
35832         * stdlib/tst-strtod-round.c (tests): Regenerated.
35833
35834         [BZ #3479]
35835         * stdlib/strtod_l.c (NDIG): Remove.
35836         (HEXNDIG): Likewise.
35837         (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
35838         smallest representable value.
35839         (____STRTOF_INTERNAL): Use all fractional decimal digits that may
35840         lie within an exact representation of 1/2 ulp of the result.
35841         * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
35842         unconditionally.
35843         (TENS_P9_IDX): Define unconditionally.
35844         (TENS_P9_SIZE): Likewise.
35845         (TENS_P10_IDX): Likewise.
35846         (TENS_P10_SIZE): Likewise.
35847         [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
35848         to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
35849         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
35850         entries for 10^2^13 and 10^2^14.
35851         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
35852         (TENS_P13_IDX): Define.
35853         (TENS_P13_SIZE): Likewise.
35854         (TENS_P14_IDX): Likewise.
35855         (TENS_P14_SIZE): Likewise.
35856         (_fpioconst_pow10): Change array size to
35857         FPIOCONST_POW10_ARRAY_SIZE.  Make entries for 10^2^9 and 10^2^10
35858         unconditional.
35859         (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
35860         1024]: Add entries for 10^2^13 and 10^2^14.
35861         [LAST_POW10 > _LAST_POW10]: Remove #error.
35862         * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
35863         (_fpioconst_pow10): Change array size to
35864         FPIOCONST_POW10_ARRAY_SIZE.
35865         * stdlib/gen-fpioconst.c: New file.
35866         * stdlib/gen-tst-strtod-round.c: Likewise.
35867         * stdlib/tst-strtod-round-data: Likewise.
35868         * stdlib/tst-strtod-round.c: Likewise.
35869         * stdlib/Makefile (tests): Add tst-strtod-round.
35870
35871         [BZ #14459]
35872         * stdlib/strtod_l.c: Include <stdint.h>.
35873         (NDEBUG): Do not define.
35874         (round_and_return): Change EXPONENT parameter to type intmax_t.
35875         Rearrange calculations to avoid internal overflow possibilities.
35876         (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
35877         Rearrange calculations to avoid internal overflow possibilities.
35878         Assert that number fits inside MPNSIZE limbs.
35879         (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
35880         Change DIG_NO, INT_NO and LEAD_ZERO to type size_t.  Rearrange
35881         calculations and add assertions to avoid internal overflow
35882         possibilities.  Add casts to avoid signed/unsigned operations.
35883         * stdlib/tst-strtod-overflow.c: New file.
35884         * stdlib/Makefile (tests): Add tst-strtod-overflow.
35885
35886 2012-08-25  Marek Polacek  <polacek@redhat.com>
35887
35888         * time/time.h: Fix some typos in comments.
35889
35890 2012-08-23  Roland McGrath  <roland@hack.frob.com>
35891
35892         * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
35893         * posix/tst-rfc3484-2.c: Likewise.
35894         * posix/tst-rfc3484-3.c: Likewise.
35895
35896 2012-08-23  Steve McIntyre  <steve.mcintyre@linaro.org>
35897
35898         * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
35899         (EF_ARM_ABI_FLOAT_HARD): Likewise.
35900
35901 2012-08-23  Joseph Myers  <joseph@codesourcery.com>
35902
35903         * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
35904         #include of fxstatat64.c.
35905
35906 2012-08-22  Roland McGrath  <roland@hack.frob.com>
35907
35908         * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
35909         * shadow/getspent_r.c: Likewise.
35910         * shadow/getspnam.c: Likewise.
35911         * shadow/getspnam_r.c: Likewise.
35912         * gshadow/getsgent.c: Likewise.
35913         * gshadow/getsgent_r.c: Likewise.
35914         * gshadow/getsgnam.c: Likewise.
35915         * gshadow/getsgnam_r.c: Likewise.
35916         * inet/getnetbyad.c: Likewise.
35917         * inet/getnetbyad_r.c: Likewise.
35918         * inet/getnetbynm.c: Likewise.
35919         * inet/getnetbynm_r.c: Likewise.
35920         * inet/getnetent.c: Likewise.
35921         * inet/getnetent_r.c: Likewise.
35922         * inet/getproto.c: Likewise.
35923         * inet/getproto_r.c: Likewise.
35924         * inet/getprtent.c: Likewise.
35925         * inet/getprtent_r.c: Likewise.
35926         * inet/getprtname.c: Likewise.
35927         * inet/getprtname_r.c: Likewise.
35928         * inet/getrpcbyname.c: Likewise.
35929         * inet/getrpcbyname_r.c: Likewise.
35930         * inet/getrpcbynumber.c: Likewise.
35931         * inet/getrpcbynumber_r.c: Likewise.
35932         * inet/getrpcent.c: Likewise.
35933         * inet/getrpcent_r.c: Likewise.
35934         * inet/getaliasent.c: Likewise.
35935         * inet/getaliasent_r.c: Likewise.
35936         * inet/getaliasname.c: Likewise.
35937         * inet/getaliasname_r.c: Likewise.
35938         * nscd/getgrgid_r.c: Likewise.
35939         * nscd/getgrnam_r.c: Likewise.
35940         * nscd/gethstbyad_r.c: Likewise.
35941         * nscd/gethstbynm3_r.c: Likewise.
35942         * nscd/getpwnam_r.c: Likewise.
35943         * nscd/getpwuid_r.c: Likewise.
35944         * nscd/getsrvbynm_r.c: Likewise.
35945         * nscd/getsrvbypt_r.c: Likewise.
35946         * nscd/gai.c: Likewise.
35947
35948         * configure.in (build_nscd): New substituted variable, set
35949         by --disable-build-nscd and defaults to $use_nscd.
35950         * configure: Regenerated.
35951         * config.make.in (build-nscd): New substituted variable.
35952         * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
35953         Change conditional to require [$(build-nscd) = yes] as well.
35954         * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
35955
35956         [BZ# 13696]
35957         * configure.in (use_nscd): New substituted variable, set by
35958         --disable-nscd.  If enabled, define USE_NSCD.
35959         * configure: Regenerated.
35960         * config.h.in: Add USE_NSCD.
35961         * config.make.in (use-nscd): New substituted variable.
35962         * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
35963         (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
35964         (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
35965         * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
35966         (CFLAGS-getgrnam_r.c): Likewise.
35967         (CFLAGS-initgroups.c): Likewise.
35968         * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
35969         * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
35970         Variables removed.
35971         * inet/getnetgrent_r.c
35972         (nscd_setnetgrent): New function, broken out of ...
35973         (setnetgrent): ... here.  Call it.
35974         (innetgr): Conditionalize nscd bits on [USE_NSCD].
35975         (nscd_getnetgrent): Conditionalize on [USE_NSCD].
35976         (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
35977         * nscd/Makefile (routines, aux): Move definitions after include of
35978         Makeconfig.  Conditionalize on [$(use-nscd) != no].
35979         * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
35980         Conditionalize on [USE_NSCD].
35981         (is_nscd, nscd_init_cb): Likewise.
35982         (nss_load_library): Conditionalize init callback on [USE_NSCD].
35983         * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
35984         * nss/nss_db/db-init.c: Likewise.
35985         * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
35986         [USE_NSCD].
35987         * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
35988         (make_request): Use it.
35989         (cache_valid_p): New function.
35990         (__check_pf): Use it.
35991         * NEWS: Add item for --disable-nscd.
35992
35993 2012-08-22  Dmitry V. Levin  <ldv@altlinux.org>
35994
35995         * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
35996         to support sed >= 4.2.1-20-ga9bf076.
35997         * configure: Regenerated.
35998
35999 2012-08-22  Roland McGrath  <roland@hack.frob.com>
36000
36001         * csu/libc-start.c (apply_irel): Move extern declarations inside here.
36002         Conditionalize whole body on [IREL].
36003
36004 2012-08-22  Jeff Law <law@redhat.com>
36005
36006         [BZ #14505]
36007         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
36008         if the family is PF_UNSPEC.
36009
36010 2012-08-22  Mike Frysinger  <vapier@gentoo.org>
36011
36012         * Makerules (lib-version): Rename from V.
36013         (install-lib-nosubdir): Change V to lib-version.
36014
36015 2012-08-22  Will Schmidt  <will_schmidt@vnet.ibm.com>
36016
36017         [BZ #14252]
36018         * powerpc32/power6/wcschr.c: New file.
36019         * powerpc32/power6/wcscpy.c: New file.
36020         * powerpc32/power6/wcsrchr.c: New file.
36021         * powerpc64/power6/wcschr.c: New file.
36022         * powerpc64/power6/wcscpy.c: New file.
36023         * powerpc64/power6/wcsrchr.c: New file.
36024
36025 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
36026
36027         * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
36028         (two_way_short_needle): Use it.
36029         * string/strstr.c (AVAILABLE1_USES_J): Define.
36030         * string/strcasestr.c: Likewise.
36031
36032         * string/str-two-way.h (two_way_short_needle): Use pointers instead of
36033         array references.
36034         * string/strcasestr.c (TOLOWER): Make side-effect safe.
36035
36036         [BZ #11607]
36037         * NEWS: Add an entry.
36038         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
36039         define their defaults.
36040         (two_way_short_needle): Detect end-of-string on-the-fly.
36041         * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
36042         (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
36043         * string/bug-strcasestr1.c: New test.
36044         * string/Makefile: Run it.
36045
36046 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
36047
36048         [BZ #11607]
36049         * string/str-two-way.h (two_way_short_needle): Optimize matching of
36050         the first character.
36051
36052 2012-08-21  Roland McGrath  <roland@hack.frob.com>
36053
36054         * csu/elf-init.c (__libc_csu_irel): Function removed.
36055         * csu/libc-start.c (apply_irel): New function.
36056         (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
36057
36058 2012-08-21  Joseph Myers  <joseph@codesourcery.com>
36059
36060         * sysdeps/unix/sysv/linux/kernel-features.h
36061         (__ASSUME_FADVISE64_64_SYSCALL): Remove.
36062         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
36063         <kernel-features.h>.
36064         [__NR_fadvise64_64]: Make code unconditional.
36065         [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
36066         [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
36067         !__NR_fadvise64_64)]: Likewise.
36068         [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
36069         !__NR_fadvise64_64))]: Likewise.
36070         [__NR_fadvise64]: Make code unconditional.
36071         [!__NR_fadvise64]: Remove conditional code.
36072         * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
36073         <kernel-features.h>.
36074         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36075         unconditional.
36076         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36077         conditional code.
36078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
36079         not include <kernel-features.h>.
36080         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36081         unconditional.
36082         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36083         conditional code.
36084         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
36085         include <kernel-features.h>.
36086         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36087         unconditional.
36088         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36089         conditional code.
36090
36091 2012-08-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
36092
36093         * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
36094         slight instruction rearrangements per scrollpipe analysis.
36095         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
36096
36097 2012-08-20  Roland McGrath  <roland@hack.frob.com>
36098
36099         * manual/syslog.texi (syslog; vsyslog, closelog):
36100         Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
36101         Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
36102
36103         * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
36104         DSOCAPS to match condition on defining it.
36105
36106 2012-08-20  Joseph Myers  <joseph@codesourcery.com>
36107
36108         * sysdeps/unix/sysv/linux/kernel-features.h
36109         (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
36110         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
36111         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36112         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36113         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
36114         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36115         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36116         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
36117         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36118         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36119
36120         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
36121         __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
36122
36123         * sysdeps/unix/sysv/linux/kernel-features.h
36124         (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
36125         * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
36126         unconditional.
36127         [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36128         * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
36129         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
36130         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36131         * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
36132         Make code unconditional.
36133         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36134         (__mmap64) [!__NR_mmap2]: Likewise.
36135         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
36136         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
36137         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36138         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
36139         [__NR_mmap2]: Make code unconditional.
36140         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36141         (__mmap64) [!__NR_mmap2]: Likewise.
36142
36143 2012-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
36144
36145         * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
36146
36147 2012-08-18  Andreas Jaeger  <aj@suse.de>
36148
36149         * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
36150
36151 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
36152
36153         * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
36154         * include/unistd.h (__have_sock_cloexec): Likewise.
36155         (__have_pipe2): Likewise.
36156         (__have_dup3): Likewise.
36157
36158 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
36159
36160         [BZ #9685]
36161         * include/unistd.h (__have_pipe2): Change define into an extern int.
36162         (__have_dup3): Likewise.
36163         * socket/have_sock_cloexec.c: Include fcntl.h.
36164         (__have_pipe2): New variable.
36165         (__have_dup3): Likewise.
36166
36167 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
36168
36169         * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
36170
36171 2012-08-17  Marek Polacek  <polacek@redhat.com>
36172
36173         * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
36174         ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
36175
36176 2012-08-17  Roland McGrath  <roland@hack.frob.com>
36177
36178         * configure.in: Add AC_SUBST for sysheaders.
36179         * configure: Regenerated.
36180         * config.make.in (sysheaders): New substituted variable.
36181
36182         * sysdeps/unix/mkfifo.c: Moved ...
36183         * sysdeps/posix/mkfifo.c: ... here.
36184         * sysdeps/unix/mkfifoat.c: Moved ...
36185         * sysdeps/posix/mkfifoat.c: ... here.
36186
36187         * sysdeps/unix/utime.c: Moved ...
36188         * sysdeps/posix/utime.c: ... here.
36189
36190         * sysdeps/unix/time.c: Moved ...
36191         * sysdeps/posix/time.c: ... here.
36192         * sysdeps/unix/sysv/linux/time.c: Adjust #include.
36193         * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
36194
36195         * sysdeps/unix/nice.c: Moved ...
36196         * sysdeps/posix/nice.c: ... here.
36197
36198         * sysdeps/unix/alarm.c: Moved ...
36199         * sysdeps/posix/alarm.c: ... here.
36200
36201         * intl/Makefile ($(codeset_mo)): Depend on the input file.
36202
36203 2012-08-17  Jeff Law <law@redhat.com>
36204
36205         * intl/Makefile (codeset_mo): New variable.
36206         ($(codeset_mo)): New target.
36207         (tst-codeset.out): Depend on that.  Remove explicit rule.
36208         (tst-gettext3.out, tst-gettext5.out): Likewise.
36209         (LOCPATH-ENV, tst-codeset-ENV): New variables.
36210         (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
36211         * intl/tst-codeset.sh: Remove.
36212         * intl/tst-gettext3.sh: Likewise.
36213         * intl/tst-gettext5.sh: Likewise.
36214
36215 2012-08-17  Roland McGrath  <roland@hack.frob.com>
36216
36217         * sysdeps/unix/inet/syscalls.list: File removed.  Move contents into ...
36218         * sysdeps/unix/syscalls.list: ... here.
36219
36220         * sysdeps/posix/getaddrinfo.c
36221         (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
36222         (gaiconf_init, gaiconf_reload): Use them.
36223         [!_STATBUF_ST_NSEC]
36224         (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
36225         Define using time_t rather than struct timespec.
36226
36227         * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
36228         (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
36229         Macros removed.
36230         * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
36231         [!NO_THREADS].
36232         (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
36233         (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
36234         Likewise.
36235
36236         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
36237         __libc_cleanup_push argument.
36238
36239         * bits/param.h: New file.
36240         * misc/sys/param.h: New file.
36241         * include/sys/param.h: New file.
36242         * misc/Makefile (headers): Add bits/param.h.
36243         * sysdeps/generic/sys/param.h: File removed.
36244         * sysdeps/unix/sysv/linux/bits/param.h: New file.
36245         * sysdeps/unix/sysv/linux/sys/param.h: File removed.
36246         * sysdeps/mach/hurd/bits/param.h: New file.
36247         * sysdeps/mach/hurd/sys/param.h: File removed.
36248
36249         * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
36250         last change.
36251
36252         * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
36253         [_IO_MTSAFE_IO].
36254         * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
36255         (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
36256         New macros.
36257
36258         * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
36259         * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
36260         rather than -D_IO_MTSAFE_IO conditionally.
36261         * stdio-common/Makefile (CPPFLAGS): Likewise.
36262         * wcsmbs/Makefile (CPPFLAGS): Likewise.
36263         * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
36264         Use $(libio-mtsafe).
36265         * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
36266         of -D_IO_MTSAFE_IO.
36267         (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
36268         (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
36269         (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
36270         (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
36271         (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
36272         (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
36273         (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
36274         (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
36275         (CFLAGS-fread_u_chk.c): Likewise.
36276         (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
36277         (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
36278         (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
36279         (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
36280         * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
36281         * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
36282         * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
36283         * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
36284         * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
36285
36286         * libio/Makefile: Test [$(libc-reentrant) = yes]
36287         instead of [$(filter %REENTRANT, $(defines)) nonempty].
36288
36289         * Makeconfig
36290         [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
36291         * sysdeps/pthread/configure: File removed.
36292         * sysdeps/pthread/Makeconfig: New file.
36293         * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
36294         * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
36295
36296 2012-08-16  Gary Benson  <gbenson@redhat.com>
36297
36298         * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
36299         unmapping the first object in a namespace.
36300
36301 2012-08-16  Roland McGrath  <roland@hack.frob.com>
36302
36303         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
36304         (__internal_setnetgrent): ... this.  Add internal_function to
36305         definition.  Add libc_hidden_def.
36306         (setnetgrent): Update caller.
36307         (internal_endnetgrent): Renamed to ...
36308         (__internal_endnetgrent): ... this.  Add internal_function to
36309         definition.  Add libc_hidden_def.
36310         (endnetgrent): Update caller.
36311         (internal_getnetgrent_r): Renamed to ...
36312         (__internal_getnetgrent_r): ... this.  Add internal_function to
36313         definition.  Add libc_hidden_def.
36314         (__getnetgrent_r): Update caller.
36315         * inet/netgroup.h: Update declarations.  Add libc_hidden_proto uses.
36316
36317 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
36318
36319         * stdlib/longlong.h: Update from GCC.
36320
36321 2012-08-16  Roland McGrath  <roland@hack.frob.com>
36322
36323         * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
36324         on _QL, which is set by umul_ppmm but never used.
36325         * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
36326         variables, which are set by GMP macros but never used.
36327         * stdio-common/_itowa.c (_itowa): Likewise.
36328         * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
36329         * stdlib/mod_1.c (mpn_mod_1): Likewise.
36330
36331 2012-08-16  Carlos O'Donell  <carlos_odonell@mentor.com>
36332
36333         * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
36334         struct La_sh_regs is not constant.
36335         * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
36336         <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
36337         and struct La_sparc64_regs are not constant.
36338
36339 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
36340
36341         * sysdeps/unix/sysv/linux/kernel-features.h
36342         (__ASSUME_POSIX_TIMERS): Remove.
36343         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
36344         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36345         * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
36346         Make code unconditional.
36347         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36348         * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
36349         Make code unconditional.
36350         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36351         * sysdeps/unix/sysv/linux/clock_nanosleep.c
36352         [__ASSUME_POSIX_TIMERS]: Make code unconditional.
36353         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36354         * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
36355         Make code unconditional.
36356         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36357         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
36358         (__libc_missing_posix_timers): Remove.
36359
36360 2012-08-15  Roland McGrath  <roland@hack.frob.com>
36361
36362         * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
36363         check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
36364
36365         * bits/libc-lock.h (__rtld_lock_initialize): New macro.
36366
36367         * elf/dl-sym.c: Include <stdlib.h>.
36368
36369         * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
36370         constants, which avoids warnings in 32-bit builds.
36371
36372         * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
36373         (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
36374
36375         * misc/lseek.c: File moved to ...
36376         * io/lseek.c: ... here.
36377
36378         * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
36379
36380         * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
36381         shifting LEN more than 31 bits at once.
36382
36383 2012-08-15  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
36384
36385         [BZ #14195]
36386         * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
36387         segmentation fault for a case of two empty input strings.
36388         * string/test-strncasecmp.c (check1): Renamed to...
36389         (bz12205): ...this.
36390         (bz14195): Add new testcase for two empty input strings and N > 0.
36391         (test_main): Call new testcase, adapt for renamed function.
36392
36393 2012-08-15  Andreas Jaeger  <aj@suse.de>
36394
36395         [BZ #14090]
36396         * crypt/md5test2.c: New test, based on test supplied by Serge
36397         Belyshev <belyshev@depni.sinp.msu.ru>.
36398         * crypt/Makefile (xtests): Add md5test-giant..
36399         * crypt/Makefile ($(objpfx)md5test-giant): Add.
36400
36401 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
36402
36403         [BZ #14090]
36404         * crypt/md5.c (md5_process_block): Don't assume the buffer
36405         length is less than 2**32.
36406         * crypt/sha512.c (sha512_process_block): Don't assume the buffer
36407         length is less than 2**64.
36408
36409 2012-08-15  Roland McGrath  <roland@hack.frob.com>
36410
36411         * string/str-two-way.h: Include <sys/param.h>.
36412         (MAX): Macro removed.
36413
36414         * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
36415         Move #define and #undef of memmove to just before and after
36416         including <string.h>.
36417
36418         * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
36419         [!NOT_IN_libc]: Move #define and #undef of memmove to just before
36420         and after including <string.h>.  Move declarations of
36421         __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
36422         to before #include "string/memmove.c".
36423
36424         * include/dirent.h: Declare __getdirentries.
36425
36426         * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
36427         using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
36428
36429 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
36430
36431         * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
36432         * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
36433         * sysdeps/i386/configure: Regenerated.
36434         * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
36435         STABS_CURRENT_FILE, and STABS_FUN.
36436         (END): Remove call to STABS_FUN_END.
36437         (STABS_CURRENT_FILE1): Delete.
36438         (STABS_CURRENT_FILE): Likewise.
36439         (STABS_FUN): Likewise.
36440         (STABS_FUN_END): Likewise.
36441         (STABS_FUN2): Likewise.
36442         * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
36443         * sysdeps/x86_64/configure: Regenerated.
36444
36445 2012-08-14  Roland McGrath  <roland@hack.frob.com>
36446
36447         * elf/dl-open.c: Include <atomic.h>.
36448         * elf/dl-lookup.c: Likewise.
36449
36450 2012-08-14  Joseph Myers  <joseph@codesourcery.com>
36451
36452         * sysdeps/unix/sysv/linux/kernel-features.h
36453         (__ASSUME_CLONE_THREAD_FLAGS): Remove.
36454         * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
36455         unconditionally.
36456         * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
36457         unconditionally.
36458         * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
36459         condition on __ASSUME_CLONE_THREAD_FLAGS.
36460
36461 2012-08-14  Andreas Jaeger  <aj@suse.de>
36462
36463         * sysdeps/i386/fpu/libm-test-ulps: Update.
36464
36465 2012-08-13  Maxim Kuvyrkov  <maxim@codesourcery.com>
36466
36467         * include/atomic.h (atomic_exchange_and_add): Split into ...
36468         (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
36469         New atomic macros.
36470
36471 2012-08-13  Markus Trippelsdorf  <markus@trippelsdorf.de>
36472
36473         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36474
36475 2012-08-13  Jeff Law <law@redhat.com>
36476
36477         * manual/stdio.texi (snprintf): Clarify handling of the trailing
36478         null byte in the output string.
36479
36480 2012-08-10  Joseph Myers  <joseph@codesourcery.com>
36481
36482         * sysdeps/unix/sysv/linux/kernel-features.h
36483         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
36484         [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
36485         (__ASSUME_ARG_MAX_STACK_BASED): Define.
36486         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
36487         [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
36488         !__ASSUME_ARG_MAX_STACK_BASED.  Compare version with
36489         __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
36490
36491 2012-08-09  Jeff Law <law@redhat.com>
36492
36493         [BZ #13939]
36494         * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
36495         When avoid_arena is set, don't retry in the that arena.  Pick the
36496         next one, whatever it might be.
36497         (arena_get2): New parameter avoid_arena, pass through to reused_arena.
36498         (arena_lock): Pass in new parameter to arena_get2.
36499         * malloc/malloc.c (__libc_memalign): Pass in new parameter to
36500         arena_get2.
36501         (__libc_malloc): Unify retrying after main arena failure with
36502         __libc_memalign version.
36503         (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
36504
36505 2012-08-09  H.J. Lu  <hongjiu.lu@intel.com>
36506
36507         [BZ #14166]
36508         * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
36509         to __redirect_strstr.
36510         (__strstr_sse42): Use typeof __redirect_strstr.
36511         (__strstr_ia32): Likewise.
36512         (__libc_strstr): New prototype.
36513         (strstr): Renamed to ...
36514         (__libc_strstr): This.
36515         (strstr): New strong alias of __libc_strstr.
36516         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
36517         * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
36518         __redirect_time.
36519         Include <time.h>.
36520         (__libc_time): New prototype.
36521         (time_ifunc): Replace time with __libc_time.
36522         (time): New strong alias and hidden definition of __libc_time.
36523         (__GI_time): Remove strong alias.
36524         * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
36525         Include <stddef.h>.
36526         (memmove): Redefined to __redirect_memmove.
36527         (__memmove_sse2): Use typeof __redirect_memmove.
36528         (__memmove_ssse3): Likewise.
36529         (__memmove_ssse3_back): Likewise.
36530         (__libc_memmove): New prototype.
36531         (memmove): Renamed to ...
36532         (__libc_memmove): This.
36533         (memmove): New strong alias of __libc_memmove.
36534
36535 2012-08-08  Mark Salter  <msalter@redhat.com>
36536
36537         * elf/elf.h
36538         (R_MN10300_TLS_GD): Define.
36539         (R_MN10300_TLS_LD): Likewise.
36540         (R_MN10300_TLS_LDO): Likewise.
36541         (R_MN10300_TLS_GOTIE): Likewise.
36542         (R_MN10300_TLS_IE): Likewise.
36543         (R_MN10300_TLS_LE): Likewise.
36544         (R_MN10300_TLS_DTPMOD): Likewise.
36545         (R_MN10300_TLS_DTPOFF): Likewise.
36546         (R_MN10300_TLS_TPOFF): Likewise.
36547         (R_MN10300_SYM_DIFF): Likewise.
36548         (R_MN10300_ALIGN): Likewise.
36549         (R_MN10300_NUM): Update.
36550
36551 2012-08-08  Joseph Myers  <joseph@codesourcery.com>
36552
36553         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
36554         Remove.
36555
36556 2012-08-08  Roland McGrath  <roland@hack.frob.com>
36557
36558         * sysdeps/posix/fdopendir.c: Include <stddef.h>.
36559
36560         * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
36561         sysdeps/unix -> sysdeps/posix move.
36562         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
36563
36564 2012-08-07      Allan McRae     <allan@archlinux.org>
36565
36566         [BZ #14303]
36567         * sunrpc/rpc_main.c (SVR4_CPP): Remove.
36568         (SUNOS_CPP): Likewise.
36569         (find_cpp): Fall back to selecting system cpp when /lib/cpp is
36570         not found.
36571         (open_input): Call CPP using execvp.
36572
36573 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
36574
36575         * sysdeps/unix/sysv/linux/kernel-features.h
36576         (__ASSUME_PROT_GROWSUPDOWN): Remove.
36577         (__ASSUME_NO_CLONE_DETACHED): Likewise.
36578         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
36579         (__ASSUME_WAITID_SYSCALL): Likewise.
36580         * sysdeps/unix/sysv/linux/dl-execstack.c
36581         (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
36582         code unconditional.
36583         (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
36584         conditional code.
36585         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
36586         [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
36587         (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
36588         code.
36589         * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
36590         unconditional.
36591         [__ASSUME_WAITID_SYSCALL]: Likewise.
36592         [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
36593
36594 2012-08-07  Roland McGrath  <roland@hack.frob.com>
36595
36596         * sysdeps/unix/closedir.c: Renamed to ...
36597         * sysdeps/posix/closedir.c: ... here.
36598         * sysdeps/unix/dirfd.c: Renamed to ...
36599         * sysdeps/posix/dirfd.c: ... here.
36600         * sysdeps/unix/dirstream.h: Renamed to ...
36601         * sysdeps/posix/dirstream.h: ... here.
36602         * sysdeps/unix/fdopendir.c: Renamed to ...
36603         * sysdeps/posix/fdopendir.c: ... here.
36604         * sysdeps/unix/opendir.c: Renamed to ...
36605         * sysdeps/posix/opendir.c: ... here.
36606         * sysdeps/unix/readdir.c: Renamed to ...
36607         * sysdeps/posix/readdir.c: ... here.
36608         * sysdeps/unix/readdir_r.c: Renamed to ...
36609         * sysdeps/posix/readdir_r.c: ... here.
36610         * sysdeps/unix/rewinddir.c: Renamed to ...
36611         * sysdeps/posix/rewinddir.c: ... here.
36612         * sysdeps/unix/seekdir.c: Renamed to ...
36613         * sysdeps/posix/seekdir.c: ... here.
36614         * sysdeps/unix/telldir.c: Renamed to ...
36615         * sysdeps/posix/telldir.c: ... here.
36616         * sysdeps/unix/sysv/linux/opendir.c: Update #include.
36617         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
36618         * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
36619         * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
36620
36621         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
36622         * bits/fcntl.h: ... here.
36623
36624         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
36625         not 0.
36626         (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
36627         [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
36628         (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
36629         (struct flock): Move l_start, l_len to the beginning.
36630         Use __pid_t for l_pid.
36631         [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
36632         [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
36633         [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
36634         (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
36635         [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
36636         [__USE_LARGEFILE64] (struct flock64): New type.
36637         (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
36638
36639         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
36640         * bits/dirent.h: ... here.
36641
36642         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
36643         [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
36644
36645 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
36646
36647         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
36648         Change from 2.6.0 to 2.6.16.
36649         * sysdeps/unix/sysv/linux/configure: Regenerated.
36650         * sysdeps/unix/sysv/linux/kernel-features.h
36651         (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
36652         (__ASSUME_TGKILL): Define conditional on architectures, not kernel
36653         version.
36654         (__ASSUME_UTIMES): Likewise.
36655         (__ASSUME_CLONE_STOPPED): Remove.
36656         (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
36657         architectures, not kernel version.
36658         (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
36659         (__ASSUME_NO_CLONE_DETACHED): Likewise.
36660         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
36661         (__ASSUME_WAITID_SYSCALL): Likewise.
36662         [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
36663         condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
36664         * README: State 2.6.16 as minimum Linux kernel version.  Do not
36665         refer to older versions.
36666
36667 2012-08-06  Roland McGrath  <roland@hack.frob.com>
36668
36669         * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
36670         Define alphasort64 as an alias.
36671         * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
36672         Define versionsort64 as an alias.
36673         * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
36674         Define scandir64 as an alias.
36675         * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
36676         Define scandirat64 as an alias.
36677         * dirent/alphasort64.c (alphasort64):
36678         Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
36679         * dirent/versionsort64.c: Likewise.
36680         * dirent/scandir64.c: Likewise.
36681         * dirent/scandirat64.c: Likewise.
36682         * sysdeps/wordsize-64/alphasort.c: File removed.
36683         * sysdeps/wordsize-64/alphasort64.c: File removed.
36684         * sysdeps/wordsize-64/scandir.c: File removed.
36685         * sysdeps/wordsize-64/scandir64.c: File removed.
36686         * sysdeps/wordsize-64/scandirat.c: File removed.
36687         * sysdeps/wordsize-64/scandirat64.c: File removed.
36688         * sysdeps/wordsize-64/versionsort.c: File removed.
36689         * sysdeps/wordsize-64/versionsort64.c: File removed.
36690         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
36691         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
36692         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
36693         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
36694         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
36695         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
36696         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
36697         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
36698
36699         * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
36700         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
36701         [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
36702         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36703         [defined __arch64__ || defined __sparcv9]
36704         (__INO_T_MATCHES_INO64_T): New macro.
36705         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36706         [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
36707         * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
36708         * sysdeps/unix/sysv/linux/bits/dirent.h
36709         [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
36710         (_DIRENT_MATCHES_DIRENT64): New macro.
36711
36712         * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
36713         Define lockf64 as an alias.
36714         * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
36715         Define fseeko64 as an alias.
36716         * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
36717         Define ftello64 as an alias.
36718         * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
36719         Define _IO_fgetpos64 and fgetpos64 as aliases.
36720         * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
36721         Define _IO_fsetpos64 and fsetpos64 as aliases.
36722         * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
36723         Conditionalize body on this.
36724         * libio/fseeko64.c: Likewise.
36725         * libio/ftello64.c: Likewise.
36726         * libio/iofgetpos64.c: Likewise.
36727         * libio/iofsetpos64.c: Likewise.
36728         * sysdeps/wordsize-64/lockf.c: File removed.
36729         * sysdeps/wordsize-64/lockf64.c: File removed.
36730         * sysdeps/wordsize-64/fseeko.c: File removed.
36731         * sysdeps/wordsize-64/fseeko64.c: File removed.
36732         * sysdeps/wordsize-64/ftello.c: File removed.
36733         * sysdeps/wordsize-64/ftello64.c: File removed.
36734         * sysdeps/wordsize-64/iofgetpos.c: File removed.
36735         * sysdeps/wordsize-64/iofgetpos64.c: File removed.
36736         * sysdeps/wordsize-64/iofsetpos.c: File removed.
36737         * sysdeps/wordsize-64/iofsetpos64.c: File removed.
36738         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
36739         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
36740         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
36741         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
36742         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
36743         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
36744         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
36745         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
36746         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
36747         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
36748
36749         * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
36750         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
36751         [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
36752         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36753         [defined __arch64__ || defined __sparcv9]
36754         (__OFF_T_MATCHES_OFF64_T): New macro.
36755         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36756         [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
36757         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
36758         (__OFF_T_MATCHES_OFF64_T): New macro.
36759
36760 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
36761
36762         * stdlib/secure-getenv.c (__secure_getenv): Replace
36763         GLIBC_2_16 with GLIBC_2_17.
36764
36765 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
36766
36767         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
36768         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
36769
36770 2012-08-03  David S. Miller  <davem@davemloft.net>
36771
36772         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36773
36774 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
36775
36776         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
36777         Remove.
36778         (__ASSUME_CORRECT_SI_PID): Likewise.
36779         (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
36780         (__ASSUME_TMPFS_NAME): Likewise.
36781         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
36782         [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
36783         * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
36784         (HAVE_AUX_SECURE): Make definition unconditional.
36785         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
36786         [!__ASSUME_TMPFS_NAME]: Remove conditional code.
36787
36788 2012-08-03  Roland McGrath  <roland@hack.frob.com>
36789
36790         * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
36791         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
36792         * sysdeps/mach/hurd/eloop-threshold.h: New file.
36793         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
36794         __eloop_threshold instead of SYMLOOP_MAX.
36795
36796         * sysdeps/generic/eloop-threshold.h: New file.
36797         * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
36798         of MAXSYMLINKS.
36799         * elf/chroot_canon.c (chroot_canon): Likewise.
36800
36801 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
36802
36803         [BZ #13717]
36804         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
36805         Change to 2.6.0 everywhere.
36806         * sysdeps/unix/sysv/linux/configure: Regenerated.
36807         * sysdeps/unix/sysv/linux/kernel-features.h
36808         (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
36809         (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
36810         kernel versions.
36811         (__ASSUME_POSIX_TIMERS): Define unconditionally.
36812         (__ASSUME_FUTEX_REQUEUE): Remove.
36813         (__ASSUME_STATFS64): Define unconditionally.
36814         (__ASSUME_AT_SECURE): Likewise.
36815         (__ASSUME_CORRECT_SI_PID): Likewise.
36816         (__ASSUME_TGKILL): Define without depending on kernel version for
36817         i386.
36818         (__ASSUME_UTIMES): Likewise.
36819         (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
36820         kernel version.
36821         (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
36822         (__ASSUME_TMPFS_NAME): Likewise.
36823         * README: Update reference to Linux kernel versions.
36824
36825 2012-08-02  Marek Polacek  <polacek@redhat.com>
36826
36827         [BZ# 14150]
36828         * configure.in (libc_cv_asm_type_prefix): Remove test.  Replace
36829         libc_cv_asm_type_prefix with %.
36830         * configure: Regenerated.
36831         * include/libc-symbols.h: Remove comment about
36832         ASM_TYPE_DIRECTIVE_PREFIX.  Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
36833         (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
36834         (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
36835         (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
36836         (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
36837         * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
36838         [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
36839         [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
36840         * elf/tst-unique2mod1.c: Likewise.
36841         * elf/tst-unique1mod2.c: Likewise.
36842         * elf/tst-unique1mod1.c: Likewise.
36843         * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
36844         * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
36845         Replace ASM_TYPE_DIRECTIVE with .type.
36846         * sysdeps/s390/s390-64/sysdep.h: Likewise.
36847         * sysdeps/i386/sysdep.h: Likewise.
36848         * sysdeps/x86_64/sysdep.h: Likewise.
36849         * sysdeps/sh/sysdep.h: Likewise.
36850         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
36851         Do not define ASM_TYPE_DIRECTIVE.
36852         * sysdeps/powerpc/sysdep.h: Likewise.
36853         * sysdeps/powerpc/powerpc32/sysdep.h:
36854         Replace ASM_TYPE_DIRECTIVE with .type.
36855         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
36856         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
36857         * sysdeps/i386/fpu/e_powf.S: Likewise.
36858         * sysdeps/i386/fpu/e_expl.S: Likewise.
36859         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
36860         * sysdeps/i386/fpu/e_acosh.S: Likewise.
36861         * sysdeps/i386/fpu/e_pow.S: Likewise.
36862         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
36863         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
36864         * sysdeps/i386/fpu/s_expm1.S: Likewise.
36865         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
36866         * sysdeps/i386/fpu/e_log2.S: Likewise.
36867         * sysdeps/i386/fpu/e_log2l.S: Likewise.
36868         * sysdeps/i386/fpu/e_scalb.S: Likewise.
36869         * sysdeps/i386/fpu/e_powl.S: Likewise.
36870         * sysdeps/i386/fpu/e_log10f.S: Likewise.
36871         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
36872         * sysdeps/i386/fpu/e_logl.S: Likewise.
36873         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
36874         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
36875         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
36876         * sysdeps/i386/fpu/e_log2f.S: Likewise.
36877         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
36878         * sysdeps/i386/fpu/e_log.S: Likewise.
36879         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
36880         * sysdeps/i386/fpu/e_logf.S: Likewise.
36881         * sysdeps/i386/fpu/e_log10l.S: Likewise.
36882         * sysdeps/i386/fpu/e_atanh.S: Likewise.
36883         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
36884         * sysdeps/i386/fpu/e_log10.S: Likewise.
36885         * sysdeps/i386/fpu/s_frexp.S: Likewise.
36886         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
36887         * sysdeps/i386/fpu/s_asinh.S: Likewise.
36888         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
36889         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
36890         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
36891         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
36892         * sysdeps/i386/i686/strtok.S: Likewise.
36893         * sysdeps/i386/i386-mcount.S: Likewise.
36894         * sysdeps/i386/strtok.S: Likewise.
36895         * sysdeps/x86_64/fpu/e_expl.S: Likewise.
36896         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
36897         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
36898         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
36899         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
36900         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
36901         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
36902         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
36903         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
36904         * sysdeps/x86_64/_mcount.S: Likewise.
36905         * sysdeps/x86_64/strtok.S: Likewise.
36906         * sysdeps/sh/_mcount.S: Likewise.
36907
36908 2012-08-01  Roland McGrath  <roland@hack.frob.com>
36909
36910         * libio/iofopen.c: Include <fcntl.h>.
36911         [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
36912         (_IO_fopen64, fopen64): Define as aliases.
36913         * libio/iofopen64.c: Include <fcntl.h>.
36914         [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
36915         Conditionalize body on this.
36916         * sysdeps/wordsize-64/iofopen.c: File removed.
36917         * sysdeps/wordsize-64/iofopen64.c: File removed.
36918
36919 2012-08-01  Marek Polacek  <polacek@redhat.com>
36920
36921         * libc/Makeconfig: Use elf in place of binfmt-subdir.
36922         Use dlfcn directly instead of a variable.
36923         (binfmt-subdir): Do not define.
36924         (dlfcn): Likewise.
36925
36926 2012-08-01  Joseph Myers  <joseph@codesourcery.com>
36927
36928         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
36929         Remove all definitions.
36930         * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
36931         <kernel-features.h>.
36932         [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
36933         (miss_F_GETOWN_EX): Remove all definitions.
36934         [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
36935         macro definition.
36936         [!__ASSUME_FCNTL64]: Remove conditional code.
36937         [__ASSUME_FCNTL64]: Make code unconditional.
36938         * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
36939         <kernel-features.h>.
36940         [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
36941         (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
36942         (lockf64) [__NR_fcntl64]: Make code unconditional.
36943         (lockf64) [__ASSUME_FCNTL64]: Likewise.
36944
36945         * sysdeps/unix/sysv/linux/kernel-features.h
36946         (__ASSUME_VFORK_SYSCALL): Remove all definitions.
36947         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
36948         Make code unconditional.
36949         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36950         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36951         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
36952         [__NR_vfork]: Make code unconditional.
36953         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36954         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36955         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
36956         [__NR_vfork]: Make code unconditional.
36957         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36958         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36959
36960 2012-08-01  Roland McGrath  <roland@hack.frob.com>
36961
36962         * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
36963         (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
36964
36965         * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36966         Define mkstemp64 as an alias.
36967         * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36968         Define mkstemps64 as an alias.
36969         * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36970         Define mkostemp64 as an alias.
36971         * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36972         Define mkostemps64 as an alias.
36973         * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
36974         Conditionalize body on this.
36975         * misc/mkostemp64.c: Likewise.
36976         * misc/mkostemps64.c: Likewise.
36977         * misc/mkstemps64.c: Likewise.
36978         * sysdeps/wordsize-64/mkstemp64.c: File removed.
36979         * sysdeps/wordsize-64/mkostemp64.c: File removed.
36980         * sysdeps/wordsize-64/mkostemp.c: File removed.
36981         * sysdeps/wordsize-64/mkstemp.c: File removed.
36982         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
36983         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
36984         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
36985         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
36986
36987         [BZ #14138]
36988         * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
36989         * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
36990         * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
36991         * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
36992
36993         * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
36994         compat_symbol macros from <shlib-compat.h> rather than the underlying
36995         default_symbol_version and symbol_version macros, so that DEFAULT
36996         lines in shlib-versions are respected.
36997         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
36998
36999 2012-08-01  Florian Weimer  <fweimer@redhat.com>
37000
37001         * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
37002         Declare with warn_unused_result.
37003         (setgid, setregid, setegid, setresgid): Likewise.
37004         * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
37005         Likewise.
37006         * WUR-REPORT: Remove set*id functions.
37007
37008 2012-07-31  Pino Toscano  <toscano.pino@tiscali.it>
37009
37010         * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
37011
37012 2012-07-31  Roland McGrath  <roland@hack.frob.com>
37013
37014         [BZ #10191]
37015         * include/sys/socket.h (__libc_accept, __libc_accept4):
37016         Add attribute_hidden.
37017         * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
37018
37019         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
37020         use of PTR_MANGLE.
37021         * inet/getnetgrent_r.c (setup): Likewise.
37022
37023         * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
37024
37025 2012-07-31  David S. Miller  <davem@davemloft.net>
37026
37027         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37028
37029 2012-07-31  Joseph Myers  <joseph@codesourcery.com>
37030
37031         [BZ #13629]
37032         * math/s_clog.c (__clog): Use __log1p if larger part has absolute
37033         value between 1.0 and 2.0 and smaller part has absolute value less
37034         than 1.0.
37035         * math/s_clog10.c (__clog10): Likewise.
37036         * math/s_clog10f.c (__clog10f): Likewise.
37037         * math/s_clog10l.c (__clog10l): Likewise.
37038         * math/s_clogf.c (__clogf): Likewise.
37039         * math/s_clogl.c (__clogl): Likewise.
37040         * math/libm-test.inc (clog_test): Add more tests.
37041         (clog10_test): Likewise.
37042         * sysdeps/i386/fpu/libm-test-ulps: Update.
37043         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37044
37045 2012-07-31  Florian Weimer  <fweimer@redhat.com>
37046
37047         * stdlib/tst-secure-getenv.c: Use printf for error reporting.
37048         Exit with zero in case no suitable GID is found, and write a
37049         message to standard error.
37050
37051 2012-07-30  Roland McGrath  <roland@hack.frob.com>
37052
37053         * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
37054         rather than to 1.
37055         (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
37056         (MAXPATHLEN): Removed.
37057         (NOGROUP, NODEV): New macros.
37058         (setbit, clrbit, isset, isclr): New macros.
37059         (howmany, roundup, powerof2): New macros.
37060         (DEV_BSIZE): New macro.
37061
37062         * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
37063         * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
37064
37065         * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
37066         definition on [!__NO_LONG_DOUBLE_MATH].
37067
37068         * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
37069         PTR_MANGLE and PTR_DEMANGLE.
37070
37071         * socket/accept4.c (accept4): Rename to __libc_accept4.
37072         Define accept4 as a weak alias.
37073
37074         * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
37075         on [_DIRENT_HAVE_D_TYPE].
37076         * io/ftw.c (ftw_dir): Likewise.
37077
37078         * io/xmknod.c (__xmknod): Don't check PATH for being null.
37079
37080         * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
37081
37082         * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
37083         Use the BSD numbers rather than the arbitrary ones we had.
37084         (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
37085         (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
37086         (SIGXCPU, SIGXFSZ): New macros.
37087         (_NSIG): Now 32.
37088
37089         * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
37090         initializer on [_LIBC_REENTRANT].
37091
37092         * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
37093         definitions inside [_POSIX_MAPPED_FILES].
37094
37095         * posix/regex.c: Include <sys/param.h> for MIN/MAX.
37096
37097         * dirent/opendir.c: Include <fcntl.h>.
37098
37099         * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
37100         (__libc_getspecific): Likewise.
37101         (__libc_key_create): Likewise.
37102
37103         * stdio-common/tmpfile64.c: Include <fcntl.h> first.
37104         [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
37105         * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
37106         (tmpfile64): Define as alias.
37107         * sysdeps/wordsize-64/tmpfile.c: File removed.
37108         * sysdeps/wordsize-64/tmpfile64.c: File removed.
37109         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
37110         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
37111
37112         * stdio-common/vfscanf.c: Include <stdbool.h>.
37113         * nss/makedb.c: Likewise.
37114         * stdio-common/_i18n_number.h: Likewise.
37115         * argp/argp-help.c: Likewise.
37116         * posix/wordexp.c: Likewise.
37117         * sysdeps/posix/spawni.c: Likewise.
37118         * nss/nss_files/files-initgroups.c: Likewise.
37119         * stdio-common/reg-modifier.c: Include <stdlib.h>.
37120         * nss/nss_files/files-initgroups.c: Likewise.
37121         * nss/nss_db/db-netgrp.c: Likewise.
37122         * nss/nss_db/db-initgroups.c: Likewise.
37123         * io/fchmodat.c: Include <sys/stat.h>.
37124
37125         * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
37126         __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
37127
37128         * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
37129         [HAVE_MMAP].
37130
37131         * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
37132         Add multiple inclusion protection.
37133
37134 2012-07-27  David S. Miller  <davem@davemloft.net>
37135
37136         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37137
37138 2012-07-27  Gary Benson  <gbenson@redhat.com>
37139
37140         [BZ #14298]
37141         * elf/rtld.c: Include <stap-probe.h>.
37142         (dl_main): Added static probes "init_start" and "init_complete".
37143         * elf/dl-load.c: Include <stap-probe.h>.
37144         (lose): Take new parameter "nsid".
37145         Added static probe "map_failed".
37146         (_dl_map_object_from_fd): Pass namespace id to lose.
37147         Added static probe "map_start".
37148         (open_verify): Pass namespace id to lose.
37149         * elf/dl-open.c: Include <stap-probe.h>.
37150         (dl_open_worker) Added static probes "map_complete", "reloc_start"
37151         and "reloc_complete".
37152         * elf/dl-close.c: Include <stap-probe.h>.
37153         (_dl_close_worker): Added static probes "unmap_start" and
37154         "unmap_complete".
37155         * elf/rtld-debugger-interface.txt: New file documenting the above.
37156
37157 2012-07-26  Roland McGrath  <roland@hack.frob.com>
37158
37159         * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
37160         rather than a string variable.
37161         * sunrpc/rpc_main.c (h_output): Likewise.
37162         * sunrpc/rpc_svcout.c (write_real_program): Likewise.
37163
37164 2012-07-26  Pino Toscano  <toscano.pino@tiscali.it>
37165
37166         * inet/check_native.c: New file.
37167
37168 2012-07-26  Joseph Myers  <joseph@codesourcery.com>
37169
37170         [BZ #13629]
37171         * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
37172         if larger part has absolute value 1.0.
37173         * math/s_clog10.c (__clog10): Likewise.
37174         * math/s_clog10f.c (__clog10f): Likewise.
37175         * math/s_clog10l.c (__clog10l): Likewise.
37176         * math/s_clogf.c (__clogf): Likewise.
37177         * math/s_clogl.c (__clogl): Likewise.
37178         * math/libm-test.inc (clog_test): Add more tests.
37179         (clog10_test): Likewise.
37180         * sysdeps/i386/fpu/libm-test-ulps: Update.
37181         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37182
37183         * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
37184         (pltexit): Likewise.
37185         (La_regs): Likewise.
37186         (La_retval): Likewise.
37187         (int_retval): Likewise.
37188         Update #error for removed macros to refer only to definitions in
37189         tst-audit.h.
37190         * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
37191         macro.
37192         (pltexit): Likewise.
37193         (La_regs): Likewise.
37194         (La_retval): Likewise.
37195         (int_retval): Likewise.
37196         * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
37197         macro.
37198         (pltexit): Likewise.
37199         (La_regs): Likewise.
37200         (La_retval): Likewise.
37201         (int_retval): Likewise.
37202         * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
37203         macro.
37204         (pltexit): Likewise.
37205         (La_regs): Likewise.
37206         (La_retval): Likewise.
37207         (int_retval): Likewise.
37208         * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
37209         macro.
37210         (pltexit): Likewise.
37211         (La_regs): Likewise.
37212         (La_retval): Likewise.
37213         (int_retval): Likewise.
37214         * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
37215         macro.
37216         (pltexit): Likewise.
37217         (La_regs): Likewise.
37218         (La_retval): Likewise.
37219         (int_retval): Likewise.
37220         * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
37221         macro.
37222         (pltexit): Likewise.
37223         (La_regs): Likewise.
37224         (La_retval): Likewise.
37225         (int_retval): Likewise.
37226         * sysdeps/generic/tst-audit.h: Update comment to refer only to
37227         macro definitions in tst-audit.h.
37228         * sysdeps/i386/tst-audit.h: New file.
37229         * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
37230         * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
37231         * sysdeps/s390/s390-32/tst-audit.h: Likewise.
37232         * sysdeps/s390/s390-64/tst-audit.h: Likewise.
37233         * sysdeps/sh/tst-audit.h: Likewise.
37234         * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
37235         * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
37236         * sysdeps/x86_64/tst-audit.h: Likewise.
37237
37238 2012-07-26  Andreas Jaeger  <aj@suse.de>
37239
37240         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
37241         ptrace.
37242
37243         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
37244         new value PTRACE_EVENT_SECCOMP from Linux 3.5.
37245         (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
37246         PTRACE_O_MASK.
37247         * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
37248         * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
37249         * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
37250
37251         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
37252         value.
37253
37254         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
37255         _sigsys.
37256         (si_call_addr, si_syscall, si_arch): Define new macro.
37257         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
37258         _sigsys.
37259         (si_call_addr, si_syscall, si_arch): Define new marcro.
37260         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
37261         _sigsys.
37262         (si_call_addr, si_syscall, si_arch): Define new macro.
37263         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
37264         _sigsys.
37265         (si_call_addr, si_syscall, si_arch): Define new macro.
37266
37267 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
37268
37269         [BZ #13717]
37270         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
37271         Change to 2.4.21 where previously 2.4.1.
37272         * sysdeps/unix/sysv/linux/configure: Regenerated.
37273         * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
37274         __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
37275         Linux kernel version.
37276         (__ASSUME_STD_AUXV): Remove.
37277         [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
37278         kernel version.
37279         [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
37280         (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
37281         (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
37282         (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
37283         (__ASSUME_NETLINK_SUPPORT): Likewise.
37284         * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
37285         (__no_netlink_support): Remove conditional definition.
37286         * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
37287         Remove.
37288         (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
37289         [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
37290         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
37291         (if_nameindex_ioctl): Remove.
37292         (if_nameindex_netlink): Do not handle __no_netlink_support.
37293         (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
37294         code.
37295         * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
37296         Remove conditional code.
37297         (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
37298         code.
37299         (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
37300         unconditional.
37301         [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
37302         [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
37303         * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
37304         Remove.
37305         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
37306         [!__ASSUME_STD_AUXV]: Remove conditional code.
37307         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
37308         [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
37309         [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
37310         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
37311         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
37312         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
37313         code.
37314         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
37315         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
37316         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
37317         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
37318         conditional code.
37319         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
37320         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
37321         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
37322         code.
37323         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
37324         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
37325         conditional code.
37326         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
37327         (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37328         code unconditional.
37329         (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37330         conditional code.
37331         (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37332         unconditional.
37333         (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37334         conditional code.
37335         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
37336         (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37337         unconditional.
37338         (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37339         conditional code.
37340         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
37341         (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37342         code unconditional.
37343         (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37344         conditional code.
37345         (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37346         unconditional.
37347         (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37348         conditional code.
37349         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
37350         (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37351         code unconditional.
37352         (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37353         conditional code.
37354         (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37355         unconditional.
37356         (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37357         conditional code.
37358
37359 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
37360
37361         * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
37362         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
37363         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
37364         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
37365         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
37366         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
37367         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
37368         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
37369         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
37370         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
37371         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
37372         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
37373         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
37374         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
37375         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
37376         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
37377         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
37378         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
37379         * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
37380         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
37381         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
37382         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
37383         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
37384
37385 2012-07-25  Florian Weimer  <fweimer@redhat.com>
37386
37387         * Versions.def: Add GLIBC_2.17.
37388         * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
37389         * include/stdlib.h: Rename __secure_getenv to secure_getenv.
37390         Introduce __libc_secure_getenv.
37391         * stdlib/Versions (2.17): Add secure_getenv
37392         (GLIBC_PRIVATE): Add __libc_secure_getenv.
37393         * stdlib/secure-getenv.c: Rename __secure_getenv to
37394         __libc_secure_getenv.  Add secure_getenv alias.  Add compatibility
37395         symbol __secure_getenv for GLIBC_2.0.
37396         * stdlib/tst-secure-getenv.c: New.
37397         * stdlib/Makefile (tests): Add testcase.
37398         * manual/startup.texi (Environment Access): Document
37399         secure_getenv.
37400         * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
37401         __libc_secure_getenv.
37402         * inet/ruserpass.c (ruserpass): Likewise.
37403         * malloc/mtrace.c (mtrace): Likewise.
37404         * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
37405         * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
37406         * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
37407         * sysdeps/posix/tempname.c: Likewise.  Evaluate
37408         HAVE_SECURE_GETENV.
37409         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
37410         __secure_getenv to __libc_secure_getenv.
37411         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
37412         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
37413         Likewise.
37414         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
37415         Likewise.
37416         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
37417         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
37418         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
37419         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
37420         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
37421         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
37422         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
37423
37424 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
37425
37426         * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
37427         (struct La_i86_retval): Likewise.
37428         (struct La_x86_64_regs): Likewise.
37429         (struct La_x86_64_retval): Likewise.
37430         (struct La_x32_regs): Likewise.
37431         (struct La_x32_retval): Likewise.
37432         (struct La_ppc32_regs): Likewise.
37433         (struct La_ppc32_retval): Likewise.
37434         (struct La_ppc64_regs): Likewise.
37435         (struct La_ppc64_retval): Likewise.
37436         (struct La_sh_regs): Likewise.
37437         (struct La_sh_retval): Likewise.
37438         (struct La_s390_32_regs): Likewise.
37439         (struct La_s390_32_retval): Likewise.
37440         (struct La_s390_64_regs): Likewise.
37441         (struct La_s390_64_retval): Likewise.
37442         (struct La_sparc32_regs): Likewise.
37443         (struct La_sparc32_retval): Likewise.
37444         (struct La_sparc64_regs): Likewise.
37445         (struct La_sparc64_retval): Likewise.
37446         (struct audit_ifaces): Remove architecture-specific pltenter and
37447         pltexit members.
37448         * sysdeps/i386/ldsodefs.h: New file.
37449         * sysdeps/powerpc/ldsodefs.h: Likewise.
37450         * sysdeps/s390/ldsodefs.h: Likewise.
37451         * sysdeps/sh/ldsodefs.h: Likewise.
37452         * sysdeps/sparc/ldsodefs.h: Likewise.
37453         * sysdeps/x86_64/ldsodefs.h: Likewise.
37454
37455 2012-07-25  Marek Polacek  <polacek@redhat.com>
37456
37457         [BZ #6808]
37458         * math/libm-test.inc (yn_test): Add another test.
37459         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
37460         to ERANGE when the result is +-Inf.
37461         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
37462         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
37463         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
37464         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
37465
37466 2012-07-24  Joseph Myers  <joseph@codesourcery.com>
37467
37468         * conform/data/time.h-data (NULL): Use macro-constant.  Require
37469         equal to 0.
37470         (CLOCKS_PER_SEC): Use macro instead of constant.  Specify type as
37471         clock_t.
37472         [ISO11] (TIME_UTC): Use macro-int-constant.  Require value > 0.
37473
37474 2012-07-23  Thomas Schwinge  <thomas@codesourcery.com>
37475
37476         * configure.in <sysdeps resolving>: Correct printing
37477         Implies_before.
37478         * configure: Regenerate.
37479
37480 2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
37481
37482         * math/w_ilogb.c: Include <limits.h>.
37483         * math/w_ilogbl.c: Likewise.
37484
37485 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
37486
37487         * manual/lang.texi (__va_copy): Document primarily as ISO C99
37488         va_copy.  Document allowing for unavailable va_copy only as
37489         pre-C99 compatibility.
37490         * manual/string.texi (Copying and Concatenation): Use va_copy
37491         instead of __va_copy in concat example.
37492
37493 2012-07-20  Pino Toscano  <toscano.pino@tiscali.it>
37494
37495         * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
37496         (__sendto): Use create_address_port.  Initialize APORT and deallocate
37497         it if not null.
37498
37499         * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
37500         with O_NOLINK passed to __file_name_lookup.
37501
37502         * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
37503         with O_NOLINK passed to __file_name_lookup.
37504
37505         * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
37506         negative N or less than NGIDS.
37507
37508         * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
37509         type to string_t.  Set ERANGE as errno and return it if NAME is not big
37510         enough.  Use memcpy instead of strncpy.
37511
37512 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
37513
37514         * elf/Makefile (check-data): Remove.
37515         (localplt.data): New vpath directive.
37516         ($(objpfx)check-localplt.out): Use localplt.data from vpath
37517         instead of $(check-data).
37518         * scripts/data/localplt-generic.data: Move to ...
37519         * sysdeps/generic/localplt.data: ... here.
37520         * scripts/data/localplt-i386-linux-gnu.data: Move to ...
37521         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
37522         * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
37523         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
37524         ... here.
37525         * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
37526         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
37527         ... here.
37528         * scripts/data/localplt-s390-linux-gnu.data: Move to ...
37529         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
37530         ... here.
37531         * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
37532         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
37533         ... here.
37534         * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
37535         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
37536         ... here.
37537         * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
37538         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
37539         ... here.
37540
37541 2012-07-19 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37542
37543         * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
37544         PPC32 and PPC64 files.
37545         * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
37546         * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
37547
37548 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37549
37550         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
37551         __makecontext_ret to ...
37552         * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
37553         ... here and call exit if uc_link is NULL.  New file.
37554         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
37555         __makecontext_ret.S.
37556         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
37557         __makecontext_ret to ...
37558         * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
37559         ... here and call exit if uc_link is NULL.  New file.
37560         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
37561         __makecontext_ret.S.
37562
37563 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37564
37565         * elf/elf.h (R_390_IRELATIVE): New definition.
37566         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
37567         resolver function for IFUNC symbols.  Support R_390_IRELATIVE.
37568         (elf_machine_lazy_rel): Support R_390_IRELATIVE.
37569         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
37570         (elf_machine_lazy_rel): Likewise.
37571         * sysdeps/s390/dl-irel.h: New file.
37572         * sysdeps/s390/s390-64/memcpy.S: New asm code.
37573         * sysdeps/s390/s390-64/memset.S: New asm code.
37574         * sysdeps/s390/s390-64/memcmp.S: New asm code.
37575         * sysdeps/s390/s390-64/multiarch/memset.S: New file.
37576         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
37577         * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
37578         * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
37579         * sysdeps/s390/s390-64/multiarch/Makefile: New file.
37580         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
37581         * sysdeps/s390/s390-32/multiarch/Makefile: New file.
37582         * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
37583         * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
37584         * sysdeps/s390/s390-32/multiarch/memset.S: New file.
37585         * sysdeps/s390/s390-32/memcpy.S: New asm code.
37586         * sysdeps/s390/s390-32/memset.S: New asm code.
37587         * sysdeps/s390/s390-32/memcmp.S: New asm code.
37588
37589 2012-07-17  Marek Polacek  <polacek@redhat.com>
37590
37591         [BZ #14349]
37592         * sysdeps/s390/s390-32/configure.in: Remove TLS check.
37593         * sysdeps/s390/s390-64/configure.in: Likewise.
37594         * sysdeps/sparc/configure.in: Likewise.
37595         * sysdeps/powerpc/powerpc32/configure.in: Likewise.
37596         * sysdeps/powerpc/powerpc64/configure.in: Likewise.
37597         * sysdeps/i386/configure.in: Likewise.
37598         * sysdeps/x86_64/configure.in: Likewise.
37599         * sysdeps/sh/configure.in: Likewise.
37600         * sysdeps/s390/s390-32/configure: Regenerated.
37601         * sysdeps/s390/s390-64/configure: Likewise.
37602         * sysdeps/x86_64/configure: Likewise.
37603         * sysdeps/sh/configure: Likewise.
37604         * sysdeps/powerpc/powerpc64/configure: Likewise.
37605         * sysdeps/powerpc/powerpc32/configure: Likewise.
37606         * sysdeps/sparc/configure: Likwise.
37607         * sysdeps/i386/configure: Likewise.
37608
37609         * elf/dl-open.c: Comment fixes.
37610
37611 2012-07-17  Joseph Myers  <joseph@codesourcery.com>
37612
37613         * Makefile [CXX] (check-data): Remove.
37614         [CXX] (c++-types.data): New vpath directive.
37615         [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
37616         vpath.  Do not allow for C++ type data being missing.
37617         * scripts/data/c++-types-alpha-linux-gnu.data: Move to
37618         ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
37619         * scripts/data/c++-types-ia64-linux-gnu.data: Move to
37620         ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
37621         * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
37622         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
37623         * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
37624         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
37625         ... here.
37626         * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
37627         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
37628         ... here.
37629         * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
37630         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
37631         ... here.
37632         * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
37633         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
37634         ... here.
37635         * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
37636         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
37637         ... here.
37638         * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
37639         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
37640         ... here.
37641         * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
37642         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
37643         ... here.
37644         * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
37645         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
37646
37647         * elf/tls-macros.h (TLS_LE): Move architecture-specific
37648         definitions to architecture-specific files.
37649         (TLS_IE): Likewise.
37650         (TLS_LD): Likewise.
37651         (TLS_GD): Likewise.
37652         * sysdeps/i386/tls-macros.h: New file.
37653         * sysdeps/powerpc/tls-macros.h: Likewise.
37654         * sysdeps/s390/s390-32/tls-macros.h: Likewise.
37655         * sysdeps/s390/s390-64/tls-macros.h: Likewise.
37656         * sysdeps/sh/tls-macros.h: Likewise.
37657         * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
37658         * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
37659         * sysdeps/x86_64/tls-macros.h: Likewise.
37660
37661 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
37662
37663         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
37664         zero value for regular exit case.
37665
37666         * sysdeps/unix/sysv/linux/x86_64/__start_context.S
37667         (__start_context): Preserve zero value for regular exit case.
37668
37669 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
37670             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37671
37672         * manual/setjmp.texi (setcontext): Clarify normal process
37673         termination when uc_link is the null pointer.
37674         * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
37675         exit call.
37676
37677 2012-07-16  Andreas Schwab  <schwab@linux-m68k.org>
37678
37679         * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
37680         preprocessor.  Test for each exception mask separately.
37681
37682 2012-07-16  Andreas Jaeger  <aj@suse.de>
37683
37684         * po/ru.po: Update from translation team.
37685
37686 2012-07-15  Joseph Myers  <joseph@codesourcery.com>
37687
37688         * conform/data/string.h-data (NULL): Use macro-constant.  Require
37689         equal to 0.
37690         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
37691         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
37692         (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
37693         (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
37694         [ISO || ISO99 || ISO11] (*_t): Do not allow.
37695
37696 2012-07-13  Andreas Jaeger  <aj@suse.de>
37697
37698         * po/fr.po: Update from translation team.
37699
37700 2012-07-12  Marek Polacek  <polacek@redhat.com>
37701
37702         [BZ #14173]
37703         * math/libm-test.inc (yn_test): Add test for BZ #14173.
37704         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
37705         loop condition.
37706
37707 2012-07-12  Joseph Myers  <joseph@codesourcery.com>
37708
37709         [BZ #13717]
37710         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
37711         Change to 2.4.1 where previously 2.4.0.
37712         * sysdeps/unix/sysv/linux/configure: Regenerated.
37713         * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
37714         (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
37715         version.
37716         [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
37717         (__ASSUME_AT_CLKTCK): Remove.
37718         (__ASSUME_AT_PAGESIZE): Likewise.
37719         (__ASSUME_AT_XID): Likewise.
37720         (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
37721         [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
37722         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
37723         unconditionally.
37724         (HAVE_AUX_PAGESIZE): Likewise.
37725         * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
37726         [__ASSUME_AT_CLKTCK]: Make code unconditional.
37727         [!__ASSUME_AT_CLKTCK]: Remove conditional code.
37728
37729 2012-07-12  Jeroen van Bemmel  <jvb127@gmail.com>
37730
37731         [BZ #14307]
37732         * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
37733         the temporary buffer used to invoke __gethostbyname2_r,
37734         __gethostbyaddr_r and gethostbyname4_r to make room for struct
37735         host_data / struct gaih_addrtuple.
37736         * resolv/nss_dns/dns-host.c (global scope): Move definition of
37737         implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
37738         header file nss/nsswitch.h.
37739         * nss/nsswitch.h (global scope): Add definition of implementation
37740         constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
37741         resolv/nss_dns/dns-host.c).
37742
37743 2012-07-11  Andreas Jaeger  <aj@suse.de>
37744
37745         * po/fr.po: Update from translation team.
37746
37747         * po/sv.po: Update from translation team
37748         * po/fr.po: Another update from translation team.
37749
37750 2012-07-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37751
37752         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
37753         for subnormals or multiply small sinh result by itself.
37754         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
37755         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
37756
37757 2012-07-11  David S. Miller  <davem@davemloft.net>
37758
37759         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37760
37761 2012-07-10  Andreas Schwab  <schwab@linux-m68k.org>
37762
37763         [BZ #14347]
37764         * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
37765         (INTERNAL_MARK): Shift it here.
37766
37767 2012-07-10  Marek Polacek  <polacek@redhat.com>
37768
37769         [BZ #14151]
37770         * configure.in (libc_cv_asm_global_directive): Remove test.  Replace
37771         libc_cv_asm_global_directive with .globl.
37772         * configure: Regenerated.
37773         * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
37774         with .globl.
37775         * sysdeps/i386/configure: Regenerated.
37776         * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
37777         with .globl.
37778         * sysdeps/x86_64/configure: Regenerated.
37779         * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
37780         * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
37781         * elf/tst-unique2mod2.c: Likewise.
37782         * elf/tst-unique2mod1.c: Likewise.
37783         * elf/tst-unique1mod2.c: Likewise.
37784         * elf/tst-unique1mod1.c: Likewise.
37785         * sysdeps/s390/s390-32/sysdep.h: Likewise.
37786         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
37787         * sysdeps/s390/s390-64/sysdep.h: Likewise.
37788         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
37789         * sysdeps/mach/sysdep.h: Likewise.
37790         * sysdeps/i386/sysdep.h: Likewise.
37791         * sysdeps/i386/i386-mcount.S: Likewise.
37792         * sysdeps/x86_64/_mcount.S: Likewise.
37793         * sysdeps/x86_64/sysdep.h: Likewise.
37794         * sysdeps/sh/_mcount.S: Likewise.
37795         * sysdeps/sh/sysdep.h: Likewise.
37796         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
37797         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
37798         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
37799         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
37800         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
37801         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
37802         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
37803         * locale/localeinfo.h: Likewise.
37804         (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
37805         (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
37806
37807 2012-07-09  Roland McGrath  <roland@hack.frob.com>
37808
37809         [BZ #14336]
37810         * manual/charset.texi (Extended Char Intro): Word use fix, "operating
37811         system".
37812         * manual/message.texi (The Uniforum approach): Likewise.
37813         * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
37814         (glibc iconv Implementation): Likewise.
37815
37816 2012-07-09  Joseph Myers  <joseph@codesourcery.com>
37817
37818         [BZ #14337]
37819         * math/s_clog.c (__clog): Avoid scaling a value down where that
37820         could result in underflow.
37821         * math/s_clog10.c (__clog10): Likewise.
37822         * math/s_clog10f.c (__clog10f): Likewise.
37823         * math/s_clog10l.c (__clog10l): Likewise.
37824         * math/s_clogf.c (__clogf): Likewise.
37825         * math/s_clogl.c (__clogl): Likewise.
37826         * math/libm-test.inc (clog_test): Add more tests.
37827         (clog10_test): Likewise.
37828         * sysdeps/i386/fpu/libm-test-ulps: Update.
37829         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37830
37831 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
37832
37833         [BZ #14283]
37834         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
37835         by 7 not 8 to examine high bit of fractional part.
37836
37837         [BZ #14042]
37838         * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
37839         for call to __mcount_internal.
37840         * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
37841         (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
37842         * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
37843
37844 2012-07-06  Joseph Myers  <joseph@codesourcery.com>
37845
37846         [BZ #14154]
37847         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
37848         approximation for values within 0x1p-13f of an odd multiple of
37849         pi/4.
37850         * math/libm-test.inc (tan_test): Do not allow spurious underflow
37851         exception.  Add more tests.
37852         * sysdeps/i386/fpu/libm-test-ulps: Update.
37853
37854         [BZ #6778]
37855         * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
37856         inputs and return -1 for them.  Do not check for +Inf in case not
37857         reachable for +Inf.
37858         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
37859         * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
37860         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
37861         and return -1 for them.  Do not check for +Inf in case not
37862         reachable for +Inf.
37863         * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
37864         define.
37865         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
37866         and return -1 for them.  Do not check for +Inf in case not
37867         reachable for +Inf.
37868         * math/libm-test.inc (expm1_test): Add more tests.  Do not allow
37869         spurious underflow.
37870         * sysdeps/i386/fpu/libm-test-ulps: Update.
37871         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37872
37873 2012-07-06  Mike Frysinger  <vapier@gentoo.org>
37874
37875         * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
37876
37877 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
37878
37879         [BZ #14157]
37880         [BZ #14331]
37881         * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
37882         could result in spurious underflow.  Scale down values above
37883         DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
37884         * math/s_csqrtf.c (__csqrtf): Likewise.
37885         * math/s_csqrtl.c (__csqrtl): Likewise.
37886         * math/libm-test.inc (csqrt_test): Add more tests.  Do not allow
37887         spurious underflow.
37888         * sysdeps/i386/fpu/libm-test-ulps: Update.
37889         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37890
37891 2012-07-04  Andreas Schwab  <schwab@linux-m68k.org>
37892
37893         * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
37894         xopen-msg.sed.
37895         * catgets/xopen-msg.awk: New file.
37896         * catgets/xopen-msg.sed: Removed.
37897
37898         * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
37899         po2text.sed.
37900         * intl/po2test.awk: New file.
37901         * intl/po2test.sed: Removed.
37902
37903 2012-07-04  Joseph Myers  <joseph@codesourcery.com>
37904
37905         [BZ #14328]
37906         * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
37907         or multiply small sinh result by itself.
37908         * math/s_ctanf.c (__ctanf): Likewise.
37909         * math/s_ctanh.c (__ctanh): Likewise.
37910         * math/s_ctanhf.c (__ctanhf): Likewise.
37911         * math/s_ctanhl.c (__ctanhl): Likewise.
37912         * math/s_ctanl.c (__ctanl): Likewise.
37913         * math/libm-test.inc (ctan_test_tonearest): New function.
37914         (ctan_test_towardzero): Likewise.
37915         (ctan_test_downward): Likewise.
37916         (ctan_test_upward): Likewise.
37917         (ctanh_test_tonearest): Likewise.
37918         (ctanh_test_towardzero): Likewise.
37919         (ctanh_test_downward): Likewise.
37920         (ctanh_test_upward): Likewise.
37921         (main): Call these new functions.
37922         * sysdeps/i386/fpu/libm-test-ulps: Update.
37923         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37924
37925 2012-07-03  Mike Frysinger  <vapier@gentoo.org>
37926
37927         * .gitignore: Delete /ports entry.
37928
37929 2012-07-03  Andreas Jaeger  <aj@suse.de>
37930
37931         * po/bg.po: Update from translation team.
37932         * po/cs.po: Likewise.
37933         * po/de.po: Likewise.
37934         * po/hr.po: Likewise.
37935         * po/nl.pl: Likewise.
37936         * po/pl.po: Likewise.
37937         * po/vi.po: Likewise.
37938
37939 2012-07-03  Joseph Myers  <joseph@codesourcery.com>
37940
37941         * Makeconfig [!+link] (+link-before-libc): New variable.
37942         [!+link] (+link-after-libc): Likewise.
37943         [!+link] (+link-tests): Likewise.
37944         [!+link] (+link): Define in terms of $(+link-before-libc) and
37945         $(+link-after-libc).
37946         [!+link-static] (+link-static-before-libc): New variable.
37947         [!+link-static] (+link-static-after-libc): Likewise.
37948         [!+link-static] (+link-static-tests): Likewise.
37949         [!+link-static] (+link-static): Define in terms of
37950         $(+link-static-before-libc) and $(+link-static-after-libc).
37951         [build-shared] (link-libc-before-gnulib): New variable.
37952         [build-shared] (link-libc-tests): Likewise.
37953         [build-shared] (link-libc): Define in terms of
37954         $(link-libc-before-gnulib).
37955         [!build-shared] (link-libc-tests): New variable.
37956         (link-libc-static-tests): New variable.
37957         [!gnulib] (gnulib-arch): New variable.
37958         [!gnulib] (gnulib-tests): Likewise.
37959         [!gnulib] (static-gnulib-arch): Likewise.
37960         [!gnulib] (static-gnulib-tests): Likewise.
37961         [!gnulib] (gnulib): Use $(gnulib-arch).  Do not use $(libgcc_eh).
37962         Define with "=" instead of ":=".
37963         [!gnulib] (static-gnulib): Use $(static-gnulib-arch).  Do not use
37964         -lgcc_eh $(libunwind).  Define with "=" instead of ":=".
37965         * Rules (binaries-all-notests): New variable.
37966         (binaries-all-tests): Likewise.
37967         (binaries-static-notests): Likewise.
37968         (binaries-static-tests): Likewise.
37969         (binaries-all): Define using $(binaries-all-notests) and
37970         $(binaries-all-tests).
37971         (binaries-static): Define using $(binaries-static-notests) and
37972         $(binaries-static-tests).
37973         (binaries-shared-tests): New variable.
37974         (binaries-shared-notests): Likewise.
37975         (binaries-shared): Remove variable.
37976         ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
37977         ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
37978         ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
37979         ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
37980         ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
37981         ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
37982         * elf/Makefile (sln-modules): New variable.
37983         (extra-objs): Add $(sln-modules:=.o).
37984         (ldconfig-modules): Add static-stubs.
37985         ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
37986         * elf/static-stubs.c: New file.
37987
37988         [BZ #14283]
37989         * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
37990         by 7 not 8 to examine high bit of fractional part.  Use volatile
37991         variables when splitting into final array of floats if
37992         __FLT_EVAL_METHOD__ != 0.
37993         * math/libm-test.inc (cos_test): Add another test.
37994         (sin_test): Likewise.
37995         * sysdeps/i386/fpu/libm-test-ulps: Update.
37996
37997         [BZ #14273]
37998         * math/libm-test.inc (cosh_test): Add more tests.
37999
38000         * version.h (RELEASE): Set to "development".
38001         (VERSION): Set to "2.16.90".
38002
38003 2012-06-30  Carlos O'Donell  <carlos_odonell@mentor.com>
38004
38005         * NEWS: Update copyright. Remove last-updated date.
38006         Mention math library bug fixes and timezone data changes.
38007         * README: Mention GNU/Hurd, x32, and HPPA support status.
38008
38009 2012-06-28  Thomas Schwinge  <thomas@codesourcery.com>
38010
38011         * manual/contrib.texi (Contributors): Sort alphabetically by last name.
38012
38013 2012-06-27  Andreas Jaeger  <aj@suse.de>
38014
38015         * manual/contrib.texi (Contributors): Add Samuel Thibault.
38016
38017 2012-06-25  Andreas Jaeger  <aj@suse.de>
38018
38019         * sysdeps/s390/fpu/libm-test-ulps: Update.
38020
38021 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
38022             Thomas Schwinge  <thomas@codesourcery.com>
38023
38024         * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
38025         * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
38026         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
38027         fanotify_mark.
38028
38029 2012-06-23  Thomas Schwinge  <thomas@codesourcery.com>
38030
38031         * sysdeps/mach/start.c: Remove file.
38032         * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
38033         * sysdeps/i386/init-first.c: Fix comment regarding start.S.
38034         * sysdeps/sh/init-first.c: Likewise.
38035
38036         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
38037         registers for frame unwinding purposes, add CFI directives.
38038         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
38039         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
38040         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
38041         Likewise.
38042
38043         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
38044         __fortify_fail returning.
38045         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
38046
38047         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
38048         sysdeps/sh/____longjmp_chk.S.
38049         * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
38050         on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
38051         * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
38052         (gen-as-const-headers): Append sigaltstack-offsets.sym.
38053
38054         * sysdeps/sh/abort-instr.h: New file.
38055         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
38056         process in case exit returns.
38057
38058         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
38059         initialize the GOT register before use.
38060
38061         * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
38062         calculation of ARGC > 4.
38063
38064         * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
38065         meaningful names to some local labels.
38066
38067 2012-06-22  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
38068             Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38069
38070         * sysdeps/unix/sysv/linux/sh/bits/atomic.h
38071         (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
38072         (__arch_compare_and_exchange_val_16_acq): Likewise.
38073         (__arch_compare_and_exchange_val_32_acq): Likewise.
38074         (atomic_exchange_and_add): Fix gUSA sequence.
38075         (atomic_add): Likewise.
38076         (atomic_add_negative): Likewise.
38077         (atomic_add_zero): Likewise.
38078         (atomic_bit_test_set): Likewise.
38079
38080 2012-06-22  Andreas Schwab  <schwab@redhat.com>
38081
38082         [BZ #13579]
38083         * include/link.h (struct link_map): Add l_free_initfini.
38084         * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
38085         l_initfini.
38086         * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
38087         * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
38088         * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
38089         set.
38090
38091 2012-06-22  Carlos O'Donell  <carlos_odonell@mentor.com>
38092
38093         * configure.in: Use AC_LANG_SOURCE.
38094         * configure: Regenerate.
38095
38096 2012-06-22  Roland McGrath  <roland@hack.frob.com>
38097
38098         * configure.in (libc_cv_localstatedir): New substituted variable.
38099         * configure: Regenerated.
38100         * config.make.in (localstatedir): New variable, substituted from
38101         libc_cv_localstatedir.
38102         * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
38103         * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
38104         ${prefix}/var to /var when we change ${prefix}/etc to /etc.
38105         * sysdeps/gnu/configure: Regenerated.
38106
38107 2012-06-21  Jeff Law  <law@redhat.com>
38108
38109         [BZ #14277]
38110         * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
38111         free.  Simplify list management for _LIBC case.
38112
38113 2012-06-21  Joseph Myers  <joseph@codesourcery.com>
38114
38115         [BZ #14273]
38116         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
38117         Clear sign bit of 64-bit integer value before comparing against
38118         overflow value.
38119
38120         * sysdeps/mach/configure: Regenerated.
38121
38122 2012-06-21  H.J. Lu  <hongjiu.lu@intel.com>
38123
38124         [BZ #14278]
38125         * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
38126
38127 2012-06-21  Jeff Law  <law@redhat.com>
38128
38129         [BZ #13882]
38130         * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection.  Use
38131         uint16_t for elements in the "seen" array to avoid char overflows.
38132         * elf/dl-fini.c (_dl_sort_fini): Likewise.
38133         * elf/dl-open.c (dl_open_worker): Likewise.
38134
38135 2012-06-21  Carlos O'Donell  <carlos_odonell@mentor.com>
38136
38137         * scripts/list-sources.sh: Scan PORTS for translations.
38138         * po/libc.pot: Regenerated.
38139
38140 2012-06-21  Andreas Jaeger  <aj@suse.de>
38141
38142         [BZ #12194]
38143         * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
38144         warning.
38145         * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
38146         * bits/byteswap-16.h (__bswap_16): Likewise.
38147         * bits/byteswap.h (__bswap_constant_16): Likewise.
38148
38149 2012-06-18  H.J. Lu  <hongjiu.lu@intel.com>
38150
38151         [BZ #14117]
38152         * sysdeps/i386/fpu_control.h: Removed.
38153         * sysdeps/x86_64/fpu_control.h: Moved to ...
38154         * sysdeps/x86/fpu_control.h: Here.
38155
38156         * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
38157         (_FPU_SETCW): Likewise.
38158
38159 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
38160
38161         [BZ #14117]
38162         * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
38163         * sysdeps/x86/fpu/bits/mathinline.h: This.
38164         * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
38165
38166         [BZ #14050]
38167         [BZ #14117]
38168         * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
38169         functions if __x86_64__ is defined.
38170
38171 2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
38172
38173         * string/endian.h: Add !__ASSEMBLER__ condition for including
38174         conversion interfaces.
38175
38176 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
38177
38178         [BZ #14241]
38179         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
38180         of ABS(x) in calculating zero to negative powers other than odd
38181         integers.
38182         * math/libm-test.inc (pow_test): Add more tests.
38183
38184 2012-06-15  Andreas Jaeger  <aj@suse.de>
38185
38186         * manual/contrib.texi (Contributors): Update entry of Liubov
38187         Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
38188         Machado Filho.
38189
38190 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
38191
38192         * string/string.h: Add __wur to GNU version of strerror_r.
38193
38194 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
38195
38196         [BZ #14229]
38197         * string/Makefile (tests): Add tst-strtok_r.
38198         * string/tst-strtok_r.c: New file.
38199         * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
38200         RAX_LP/RDX_LP on SAVE_PTR.
38201
38202 2012-06-14  Roland McGrath  <roland@hack.frob.com>
38203
38204         * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
38205
38206 2012-06-14  Joseph Myers  <joseph@codesourcery.com>
38207
38208         * libm_test.inc (csqrt_test): Allow more spurious underflow
38209         exceptions.
38210         (j0_test): Likewise.
38211         (j1_test): Likewise.
38212         (y0_test): Likewise.
38213         (y1_test): Likewise.
38214
38215 2012-06-13  Carlos O'Donell  <carlos_odonell@mentor.com>
38216
38217         * po/Makefile (libc.pot): Use UTF-8 charset.
38218
38219 2012-06-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
38220
38221         [BZ #14210]
38222         Suppress sign-conversion warning from FD_SET.
38223         See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
38224         * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
38225         not unsigned long int.
38226         * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
38227
38228 2012-06-12  H.J. Lu  <hongjiu.lu@intel.com>
38229
38230         [BZ #14050]
38231         [BZ #14117]
38232         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
38233         __extern_always_inline instead of __extern_inline.
38234         (__signbitf): Support __SSE2_MATH__ and C++ namespace.
38235         (__signbit): Likewise.
38236         (__signbitl): Support C++ namespace.
38237         (lrintf): New inline function.
38238         (lrint): Likewise.
38239         (llrintf): Likewise.
38240         (llrint): Likewise.
38241         (fmaxf): Likewise.
38242         (fmax): Likewise.
38243         (fminf): Likewise.
38244         (fmin): Likewise.
38245         (rint): Likewise.
38246         (rintf): Likewise.
38247         (ceil): Likewise.
38248         (ceilf): Likewise.
38249         (floor): Likewise.
38250         (floorf): Likewise.
38251         (nearbyint): Likewise.
38252         (nearbyintf): Likewise.
38253
38254 2012-06-12  Thomas Schwinge  <thomas@codesourcery.com>
38255
38256         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
38257         non-default versions.
38258
38259 2012-06-11  Roland McGrath  <roland@hack.frob.com>
38260
38261         [BZ #14218]
38262         * manual/argp.texi (Argp): Reword argp_parse description slightly.
38263
38264 2012-06-09  Thomas Schwinge  <thomas@codesourcery.com>
38265
38266         * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
38267         (FE_UPWARD, FE_DOWNWARD): Don't define.
38268         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
38269         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
38270
38271         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
38272         reading it.
38273         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
38274         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
38275
38276 2012-06-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38277
38278         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
38279         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
38280         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
38281         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
38282
38283 2012-06-06  H.J. Lu  <hongjiu.lu@intel.com>
38284
38285         [BZ #14117]
38286         * sysdeps/i386/fpu/bits/fenv.h: Removed.
38287         * sysdeps/i386/fpu/Implies: New file.
38288         * sysdeps/x86_64/fpu/Implies: Likewise.
38289         * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
38290         * sysdeps/x86/fpu/bits/fenv.h: This.
38291
38292         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
38293         __SSE_MATH__.
38294
38295 2012-06-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
38296
38297         [BZ #14134]
38298         * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
38299         character 0xffff that matches the last element of the
38300         conversion table.
38301
38302 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38303
38304         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
38305         fmodl commit.
38306
38307 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38308
38309         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
38310         values higher than 25.6283.
38311
38312 2012-06-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38313
38314         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
38315         subnormal exponent extraction and add some __builtin_expect.
38316         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
38317         Fix for subnormal mantissa calculation.
38318
38319 2012-06-04  Mike Frysinger  <vapier@gentoo.org>
38320
38321         * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
38322         cpu2 is -1 and errno is not ENOSYS.
38323
38324 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
38325
38326         [BZ #14117]
38327         * sysdeps/i386/i486/bits/string.h: Renamed to ...
38328         * sysdeps/x86/bits/string.h: This.
38329         * sysdeps/x86_64/bits/string.h: Removed.
38330
38331         * sysdeps/i386/i486/bits/string.h: Define inline functions only
38332         if not compiling for x86-64, but compiling for >= i486.
38333
38334         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
38335         * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
38336
38337         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
38338         New macro from Linux kernel 3.4.0.
38339         (FP_XSTATE_MAGIC2): Likewise.
38340         (FP_XSTATE_MAGIC2_SIZE): Likewise.
38341         (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
38342         (struct _fpx_sw_bytes): New struct.
38343         (struct _xsave_hdr): Likewise.
38344         (struct _ymmh_state): Likewise.
38345         (struct _xstate): Likewise.
38346
38347         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
38348         * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
38349         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
38350         * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
38351         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
38352         * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
38353
38354         * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
38355         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
38356         * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
38357         * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
38358         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
38359         * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
38360
38361 2012-06-04  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
38362
38363         [BZ #13743]
38364         * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
38365         * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
38366         (sysdep_headers): Include sys/platform/ppc.h.
38367         * sysdeps/powerpc/test-gettimebase.c: Test for
38368         __ppc_get_timebase() to catch future ISA opcode/insn changes.
38369         * manual/Makefile (appendices): Include platform.texi.
38370         * manual/contrib.texi (Contributors): Update @node pointers.
38371         * manual/maint.texi (Maintenance): Likewise.
38372         (Platform): New node.
38373         * manual/platform.texi: New file.  Document the new features.
38374
38375 2012-06-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
38376             Jakub Jelinek  <jakub@redhat.com>
38377
38378         [BZ #14188]
38379         * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
38380         where __builtin_expect is unavailable.
38381
38382 2012-06-03  David S. Miller  <davem@davemloft.net>
38383
38384         * stdlib/longlong.h: Updated from GCC.
38385
38386 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
38387
38388         [BZ #14042]
38389         * sysdeps/powerpc/powerpc32/mcount.c: New file.
38390         * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
38391         __mcount_internal.
38392         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
38393         (GLIBC_2.16): Likewise.
38394
38395 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38396
38397         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
38398
38399 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
38400
38401         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
38402         (default-abi): New variable.
38403         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
38404         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
38405         variable.
38406         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
38407         Likewise.
38408         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
38409         Likewise.
38410         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
38411         Likewise.
38412
38413         * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
38414         definition.  Document in comment.
38415
38416 2012-06-01  David S. Miller  <davem@davemloft.net>
38417
38418         * stdlib/longlong.h: Updated from GCC.
38419
38420 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38421
38422         [BZ #14117]
38423         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
38424         Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
38425         sys/debugreg.h sys/io.h here.
38426         * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
38427         sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
38428         sys/io.h.
38429         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
38430         Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
38431         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
38432         * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
38433         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
38434         * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
38435
38436         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
38437         Define only if __x86_64__ is defined.
38438
38439 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
38440
38441         [BZ #14048]
38442         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
38443         Use int64_t for variable i.
38444         * math/libm-test.inc (fmod_test): Add more tests.
38445
38446         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
38447         z computation is not scheduled after fetestexcept.
38448         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
38449         Use math_force_eval instead of asm to ensure calculation scheduled
38450         before exception test.
38451         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
38452         Ensure a1 + u.d computation is not scheduled after fetestexcept.
38453
38454 2012-06-01  Aurelien Jarno  <aurelien@aurel32.net>
38455
38456         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
38457         computation is not scheduled after fetestexcept.
38458
38459 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38460
38461         [BZ #14117]
38462         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
38463         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
38464
38465 2012-06-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38466
38467         * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
38468         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
38469
38470 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
38471
38472         [BZ #14117]
38473         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
38474         <bits/wordsize.h>.
38475         (__WCHAR_MIN): Support __WORDSIZE == 64.
38476         (__WCHAR_MAX): Likewise.
38477
38478         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
38479         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
38480
38481         [BZ #14183]
38482         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
38483         Defined with __SWORD_TYPE if __x86_64__ isn't defined.
38484
38485         [BZ #14117]
38486         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
38487         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
38488
38489         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
38490         * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
38491
38492         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
38493         Defined to 1 if __x86_64__ isn't defined.
38494         (_STAT_VER_LINUX_OLD): New.
38495         (st_atime): Remove duplicate.
38496         (st_mtime): Likewise.
38497         (st_ctime): Likewise.
38498
38499 2012-05-31  David S. Miller  <davem@davemloft.net>
38500
38501         * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
38502         entries.
38503
38504 2012-06-01  Andreas Schwab  <schwab@linux-m68k.org>
38505
38506         * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
38507         gen-libm-test.pl.
38508
38509         [BZ #14132]
38510         * elf/dl-reloc.c: Include <_itoa.h>.
38511         (_dl_reloc_bad_type): Remove use of INTUSE.
38512         * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
38513         * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
38514         * stdio-common/psiginfo.c (psiginfo): Likewise.
38515         * stdio-common/psignal.c (psignal): Likewise.
38516         * string/strsignal.c (strsignal): Likewise.
38517         * include/signal.h (_sys_siglist): Declare hidden proto.
38518         * stdio-common/itoa-digits.c: Include <_itoa.h>.  Replace
38519         INTVARDEF with libc_hidden_data_def.
38520         * stdio-common/itoa-udigits.c: Likewise.
38521         * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
38522         (_itoa_lower_digits_internal): Remove declaration.
38523         (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
38524         * sysdeps/gnu/siglist.c (_sys_siglist_internal)
38525         (_sys_sigabbrev_internal): Remove aliases.
38526         (_sys_siglist): Define hidden alias.
38527
38528 2012-05-31  Markus Trippelsdorf  <markus@trippelsdorf.de>
38529
38530         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
38531         bits/sysctl.h.
38532
38533 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
38534
38535         [BZ #14117]
38536         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
38537         * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
38538
38539         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
38540         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
38541         * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
38542         * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
38543         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
38544         * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
38545
38546         * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
38547         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
38548         * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
38549
38550         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
38551         with __addr.
38552         (insw): Likewise.
38553         (insl): Likewise.
38554         (outsb): Likewise.
38555         (outsw): Likewise.
38556         (outsl): Likewise.
38557
38558         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
38559         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
38560         * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
38561
38562         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
38563         * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
38564         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
38565         * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
38566         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
38567         * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
38568
38569         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
38570         * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
38571
38572         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
38573         * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
38574
38575         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
38576         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
38577         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
38578
38579         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
38580         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
38581         to ...
38582         * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
38583
38584         * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
38585         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
38586         * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
38587
38588         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
38589         for x86-64.
38590         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
38591
38592 2012-05-31  Joseph Myers  <joseph@codesourcery.com>
38593
38594         * math/math.h (M_El): Use two more decimal places.
38595         (M_LOG2El): Likewise.
38596         (M_LOG10El): Likewise.
38597         (M_LN2l): Likewise.
38598         (M_LN10l): Likewise.
38599         (M_PIl): Likewise.
38600         (M_PI_2l): Likewise.
38601         (M_PI_4l): Likewise.
38602         (M_1_PIl): Likewise.
38603         (M_2_PIl): Likewise.
38604         (M_2_SQRTPIl): Likewise.
38605         (M_SQRT2l): Likewise.
38606         (M_SQRT1_2l): Likewise.
38607
38608 2012-05-31  David S. Miller  <davem@davemloft.net>
38609
38610         * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
38611         values between float registers.
38612         * sysdeps/sparc/sparc64/memset.S: Likewise.
38613         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
38614
38615 2012-05-31  Mike Frysinger  <vapier@gentoo.org>
38616
38617         * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
38618         -D_FORTIFY_SOURCE=1.
38619         (CPPFLAGS-tst-longjmp_chk.c): Define.
38620         (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
38621         (CPPFLAGS-tst-longjmp_chk2.c): Define.
38622         * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
38623         CFLAGS-tst-wchar-h.c.
38624
38625 2012-05-31  Marek Polacek  <polacek@redhat.com>
38626
38627         [BZ #14132]
38628         * include/mntent.h (__setmntent_internal, __getmntent_r_internal
38629         __endmntent_internal): Remove declaration.
38630         (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
38631         (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
38632         * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
38633
38634 2012-05-30  David S. Miller  <davem@davemloft.net>
38635
38636         * sysdeps/sparc/sparc32/soft-fp/q_util.c
38637         (___Q_simulate_exceptions): Use real FP ops rather than writing
38638         into the %fsr.
38639         * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
38640         Likewise.
38641
38642 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38643
38644         [BZ #14117]
38645         * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
38646         * sysdeps/x86/bits/xtitypes.h: This.
38647
38648         * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
38649         * sysdeps/x86/bits/wordsize.h: This.
38650
38651         * sysdeps/i386/bits/huge_vall.h: Renamed to ...
38652         * sysdeps/x86/bits/huge_vall.h: This.
38653
38654         * sysdeps/i386/bits/select.h: Removed.
38655         * sysdeps/x86_64/bits/select.h: Renamed to ...
38656         * sysdeps/x86/bits/select.h: This.
38657
38658         * sysdeps/i386/bits/setjmp.h: Removed.
38659         * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
38660         * sysdeps/x86/bits/setjmp.h: This.
38661
38662         * sysdeps/i386/bits/mathdef.h: Removed.
38663         * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
38664         * sysdeps/x86/bits/mathdef.h: This.
38665
38666 2012-05-30  Andreas Schwab  <schwab@linux-m68k.org>
38667
38668         [BZ #14132]
38669         * include/sys/socket.h (__connect_internal)
38670         (__libc_sa_len_internal): Remove declaration.
38671         (__connect, __libc_sa_len): Declare hidden_proto.
38672         (SA_LEN): Remove use of INTUSE.
38673         * socket/connect.c: Add libc_hidden_def.
38674         * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
38675         * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
38676         * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
38677         alias.
38678         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
38679         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
38680         * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
38681         of adding _internal alias.
38682
38683 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38684
38685         [BZ #14117]
38686         * sysdeps/i386/bits/link.h: Removed.
38687         * sysdeps/i386/bits/linkmap.h: Likewise.
38688         * sysdeps/x86_64/bits/link.h: Renamed to ...
38689         * sysdeps/x86/bits/link.h: This.
38690         * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
38691         * sysdeps/x86/bits/linkmap.h: This.
38692
38693         * sysdeps/i386/bits/endian.h: Removed.
38694         * sysdeps/x86_64/bits/endian.h: Renamed to ...
38695         * sysdeps/x86/bits/endian.h: This.
38696
38697         * sysdeps/i386/bits/byteswap.h: Removed.
38698         * sysdeps/i386/bits/byteswap-16.h: Likewise.
38699         * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
38700         * sysdeps/x86/bits/byteswap.h: This.
38701         * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
38702         * sysdeps/x86/bits/byteswap-16.h: This.
38703         * sysdeps/i386/Implies: Add x86.
38704         * sysdeps/x86_64/Implies: Likewise.
38705
38706 2012-05-30  David S. Miller  <davem@davemloft.net>
38707
38708         * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
38709         (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
38710         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
38711         (FP_TRAPPING_EXCEPTIONS): Define.
38712         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
38713         (FP_TRAPPING_EXCEPTIONS): Define.
38714         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
38715         subnormals only when inexact has been signalled or underflow
38716         exceptions are enabled.
38717         (_FP_PACK_CANONICAL): Likewise.
38718
38719 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38720
38721         [BZ #14183]
38722         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
38723         Defined with __UWORD_TYPE if __x86_64__ isn't defined.
38724
38725 2012-05-30  Richard Henderson  <rth@twiddle.net>
38726
38727         * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
38728         with #ifndef NOT_IN_libc.
38729
38730         * scripts/abilist.awk: Accept 8 fields.  Handle Alpha functions
38731         marked to avoid plt entry.
38732
38733 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38734
38735         [BZ #14112]
38736         * Makeconfig (default-abi): New macro.
38737         (abi-includes): Likewise.
38738         ($(common-objpfx)soversions.mk): Remove WORDSIZE check.  Use
38739         $(abi-$(default-abi)-lib-soname) for soname if defined.
38740         ($(common-objpfx)gnu/lib-names.stmp): Generate from
38741         abi-variants.
38742         * Makefile (installed-stubs): Likewise.
38743         * include/stubs-biarch.h: Removed.
38744         * scripts/lib-names.awk: Only handle one library at a time.
38745         * scripts/soversions.awk: Remove WORDSIZE support.
38746         * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
38747         entries.
38748         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
38749         Removed.
38750         (syscall-list-default-condition): Likewise.
38751         (syscall-list-default-condition): Likewise.
38752         (syscall-list-includes): Likewise.
38753         ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
38754         syscall-list-* with abi-*.  Handle undefined abi-variants.
38755         * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
38756         * sysdeps/unix/sysv/linux/i386/Implies: New file.
38757         * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
38758         * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
38759         * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
38760         * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
38761         Removed.
38762         (syscall-list-32-options): Likewise.
38763         (syscall-list-32-condition): Likewise.
38764         (syscall-list-64-options): Likewise.
38765         (syscall-list-64-condition): Likewise.
38766         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
38767         macro.
38768         * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
38769         Renamed to ...
38770         (abi-*): This.
38771         (abi-64-ld-soname): New macro.
38772         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
38773         * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
38774         Renamed to ...
38775         (abi-*): This.
38776         * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
38777         * sysdeps/x86_64/x32/shlib-versions: Likewise.
38778
38779 2012-05-30  Joseph Myers  <joseph@codesourcery.com>
38780
38781         * sysdeps/unix/sysv/linux/kernel-features.h
38782         (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
38783         * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
38784         include <kernel-features.h>.
38785         [!__NR_ftruncate64]: Remove conditional code.
38786         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38787         [__NR_ftruncate64]: Make code unconditional.
38788         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38789         * sysdeps/unix/sysv/linux/truncate64.c: Do not
38790         include <kernel-features.h>.
38791         [!__NR_ftruncate64]: Remove conditional code.
38792         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38793         [__NR_ftruncate64]: Make code unconditional.
38794         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38795         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
38796         include <kernel-features.h>.
38797         [!__NR_ftruncate64]: Remove conditional code.
38798         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38799         [__NR_ftruncate64]: Make code unconditional.
38800         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38801         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
38802         include <kernel-features.h>.
38803         [!__NR_ftruncate64]: Remove conditional code.
38804         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38805         [__NR_ftruncate64]: Make code unconditional.
38806         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38807
38808         * configure.in (libc_cv_fpie): Weaken to a compile test using
38809         LIBC_TRY_CC_OPTION.
38810         * configure: Regenerated.
38811
38812 2012-05-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
38813
38814         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
38815         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
38816         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
38817         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
38818         Refreshed.
38819         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
38820         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
38821         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
38822         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
38823         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
38824         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
38825         Refreshed.
38826
38827 2012-05-27  David S. Miller  <davem@davemloft.net>
38828
38829         * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
38830         (___Q_zero): New.
38831         (__Q_simulate_exceptions): Return void.  Change to simulate
38832         exceptions by writing into the %fsr.
38833         * sysdeps/sparc/sparc64/soft-fp/qp_util.c
38834         (__Qp_handle_exceptions): Likewise.
38835         (numbers): Delete.
38836         * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
38837         __Qp_handle_exceptions.
38838         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
38839         __Qp_handle_exceptions.
38840         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
38841         as unused and give dummy FP_RND_NEAREST initializer.
38842         (FP_INHIBIT_RESULTS): Define.
38843         (___Q_simulate_exceptions): Update declaration.
38844         (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
38845         formatting.
38846         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
38847         as unused and give dummy FP_RND_NEAREST initializer.
38848         (__Qp_handle_exceptions): Update declaration.
38849         (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
38850         formatting.
38851
38852 2012-05-27  Thomas Schwinge  <thomas@codesourcery.com>
38853
38854         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
38855         the temporary FPU control word.
38856         * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
38857         * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
38858         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
38859         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
38860         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
38861         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
38862         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
38863         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
38864         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
38865         * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
38866         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
38867
38868 2012-05-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38869
38870         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
38871         fields.
38872
38873 2012-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
38874
38875         * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
38876         * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
38877         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
38878         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
38879         Likewise.
38880         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
38881         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
38882         Likewise.
38883
38884 2012-05-27  Ulrich Drepper  <drepper@gmail.com>
38885
38886         * po/h.po: Update from translation team.
38887
38888 2012-05-26  Andreas Schwab  <schwab@linux-m68k.org>
38889
38890         * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
38891
38892         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
38893         handling of denormals.
38894         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
38895         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
38896         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
38897         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
38898         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
38899         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
38900         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
38901         Likewise.
38902
38903 2012-05-26  Marek Polacek  <polacek@redhat.com>
38904
38905         [BZ #14152]
38906         * math/libm-test.inc (fma_test): Don't always expect underflow
38907         exception.
38908
38909 2012-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
38910
38911         [BZ #12416]
38912         * elf/tst-execstack.c: Include stackinfo.h.
38913         (do_test): Adjust test case to ensure that pthread_getattr_np
38914         behaviour remains the same after marking stack executable.
38915
38916 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
38917
38918         * sysdeps/unix/sysv/linux/kernel-features.h
38919         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
38920         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
38921         kernel-features.h.
38922         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
38923         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
38924         * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
38925         kernel-features.h.
38926         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
38927         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
38928
38929 2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
38930
38931         * configure.in: Define the default includes to being none.
38932         * configure: Regenerated.
38933
38934 2012-05-25  Roland McGrath  <roland@hack.frob.com>
38935
38936         * sysdeps/x86_64/__longjmp.S: Add a static probe here.
38937         * sysdeps/x86_64/setjmp.S: Likewise.
38938         * sysdeps/i386/bsd-setjmp.S: Likewise.
38939         * sysdeps/i386/bsd-_setjmp.S: Likewise.
38940         * sysdeps/i386/setjmp.S: Likewise.
38941         * sysdeps/i386/__longjmp.S: Likewise.
38942         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
38943         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
38944
38945         * include/stap-probe.h: New file.
38946         * configure.in: Handle --enable-systemtap.
38947         * configure: Regenerated.
38948         * config.h.in (USE_STAP_PROBE): New #undef.
38949         * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
38950         * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
38951         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
38952
38953 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
38954
38955         [BZ #13717]
38956         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
38957         to 2.4.0 where earlier.
38958         * sysdeps/unix/sysv/linux/configure: Regenerated.
38959         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
38960         <kernel-features.h>.
38961         [__ASSUME_32BITUIDS]: Make code unconditional.
38962         [!__ASSUME_32BITUIDS]: Remove conditional code.
38963         * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
38964         <kernel-features.h>.
38965         [__ASSUME_32BITUIDS]: Make code unconditional.
38966         [!__ASSUME_32BITUIDS]: Remove conditional code.
38967         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
38968         [__ASSUME_32BITUIDS]: Make code unconditional.
38969         (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
38970         * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
38971         <kernel-features.h>.
38972         [__ASSUME_32BITUIDS]: Make code unconditional.
38973         [!__ASSUME_32BITUIDS]: Remove conditional code.
38974         * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
38975         <kernel-features.h>.
38976         [__ASSUME_32BITUIDS]: Make code unconditional.
38977         [!__ASSUME_32BITUIDS]: Remove conditional code.
38978         * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
38979         <kernel-features.h>.
38980         [__ASSUME_32BITUIDS]: Make code unconditional.
38981         [!__ASSUME_32BITUIDS]: Remove conditional code.
38982         * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
38983         <kernel-features.h>.
38984         [__ASSUME_32BITUIDS]: Make code unconditional.
38985         [!__ASSUME_32BITUIDS]: Remove conditional code.
38986         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
38987         <kernel-features.h>.
38988         [__ASSUME_32BITUIDS]: Make code unconditional.
38989         [!__ASSUME_32BITUIDS]: Remove conditional code.
38990         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
38991         <kernel-features.h>.
38992         [__ASSUME_32BITUIDS]: Make code unconditional.
38993         [!__ASSUME_32BITUIDS]: Remove conditional code.
38994         * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
38995         <kernel-features.h>.
38996         [__ASSUME_32BITUIDS]: Make code unconditional.
38997         [!__ASSUME_32BITUIDS]: Remove conditional code.
38998         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
38999         <kernel-features.h>.
39000         [__ASSUME_32BITUIDS]: Make code unconditional.
39001         [!__ASSUME_32BITUIDS]: Remove conditional code.
39002         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
39003         <kernel-features.h>.
39004         [__ASSUME_32BITUIDS]: Make code unconditional.
39005         [!__ASSUME_32BITUIDS]: Remove conditional code.
39006         * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
39007         <kernel-features.h>.
39008         [__ASSUME_32BITUIDS]: Make code unconditional.
39009         [!__ASSUME_32BITUIDS]: Remove conditional code.
39010         * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
39011         <kernel-features.h>.
39012         [__NR_setresgid] (__setresgid): Do not declare.
39013         [__ASSUME_32BITUIDS]: Make code unconditional.
39014         [!__ASSUME_32BITUIDS]: Remove conditional code.
39015         * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
39016         <kernel-features.h>.
39017         [__NR_setresuid] (__setresuid): Do not declare.
39018         [__ASSUME_32BITUIDS]: Make code unconditional.
39019         [!__ASSUME_32BITUIDS]: Remove conditional code.
39020         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
39021         <kernel-features.h>.
39022         [__ASSUME_32BITUIDS]: Make code unconditional.
39023         [!__ASSUME_32BITUIDS]: Remove conditional code.
39024         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
39025         <kernel-features.h>.
39026         [__ASSUME_32BITUIDS]: Make code unconditional.
39027         [!__ASSUME_32BITUIDS]: Remove conditional code.
39028         * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
39029         <kernel-features.h>.
39030         [__ASSUME_32BITUIDS]: Make code unconditional.
39031         [!__ASSUME_32BITUIDS]: Remove conditional code.
39032         * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
39033         <kernel-features.h>.
39034         [__ASSUME_32BITUIDS]: Make code unconditional.
39035         [!__ASSUME_32BITUIDS]: Remove conditional code.
39036         * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
39037         <kernel-features.h>.
39038         [__ASSUME_32BITUIDS]: Make code unconditional.
39039         [!__ASSUME_32BITUIDS]: Remove conditional code.
39040         * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
39041         <kernel-features.h>.
39042         [__ASSUME_32BITUIDS]: Make code unconditional.
39043         [!__ASSUME_32BITUIDS]: Remove conditional code.
39044         * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
39045         <kernel-features.h>.
39046         [__ASSUME_32BITUIDS]: Make code unconditional.
39047         [!__ASSUME_32BITUIDS]: Remove conditional code.
39048         * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
39049         <kernel-features.h>.
39050         [__ASSUME_32BITUIDS]: Make code unconditional.
39051         [!__ASSUME_32BITUIDS]: Remove conditional code.
39052         * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
39053         <kernel-features.h>.
39054         [__ASSUME_32BITUIDS]: Make code unconditional.
39055         [!__ASSUME_32BITUIDS]: Remove conditional code.
39056         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
39057         <kernel-features.h>.
39058         [__ASSUME_32BITUIDS]: Make code unconditional.
39059         [!__ASSUME_32BITUIDS]: Remove conditional code.
39060         * sysdeps/unix/sysv/linux/kernel-features.h
39061         (__ASSUME_SETRESUID_SYSCALL): Remove.
39062         (__ASSUME_SETRESGID_SYSCALL): Likewise.
39063         (__ASSUME_32BITUIDS): Likewise.
39064         (__ASSUME_LDT_WORKS): Likewise.
39065         (__ASSUME_O_DIRECTORY): Likewise.
39066         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
39067         architecture but not kernel version.
39068         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
39069         (__ASSUME_MMAP2_SYSCALL): Likewise.
39070         (__ASSUME_STAT64_SYSCALL): Likewise.
39071         (__ASSUME_IPC64): Likewise.
39072         * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
39073         <kernel-features.h>.
39074         [__ASSUME_32BITUIDS]: Make code unconditional.
39075         [!__ASSUME_32BITUIDS]: Remove conditional code.
39076         * sysdeps/unix/sysv/linux/opendir.c: Do not include
39077         <kernel-features.h>.
39078         [__ASSUME_O_DIRECTORY]: Make code unconditional.
39079         * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
39080         132096]: Remove conditional code.
39081         [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
39082         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
39083         <kernel-features.h>.
39084         [__ASSUME_32BITUIDS]: Make code unconditional.
39085         [!__ASSUME_32BITUIDS]: Remove conditional code.
39086         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
39087         <kernel-features.h>.
39088         [__ASSUME_32BITUIDS]: Make code unconditional.
39089         [!__ASSUME_32BITUIDS]: Remove conditional code.
39090         * sysdeps/unix/sysv/linux/setegid.c: Do not include
39091         <kernel-features.h>.
39092         [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
39093         unconditional.
39094         (__setresgid): Do not declare.
39095         [__ASSUME_32BITUIDS]: Make code unconditional.
39096         [!__ASSUME_32BITUIDS]: Remove conditional code.
39097         * sysdeps/unix/sysv/linux/seteuid.c: Do not include
39098         <kernel-features.h>.
39099         [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
39100         unconditional.
39101         (__setresuid): Do not declare.
39102         [__ASSUME_32BITUIDS]: Make code unconditional.
39103         [!__ASSUME_32BITUIDS]: Remove conditional code.
39104         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
39105         <kernel-features.h>.
39106         [__ASSUME_32BITUIDS]: Make code unconditional.
39107         [!__ASSUME_32BITUIDS]: Remove conditional code.
39108         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
39109         <kernel-features.h>.
39110         [__ASSUME_32BITUIDS]: Make code unconditional.
39111         [!__ASSUME_32BITUIDS]: Remove conditional code.
39112
39113 2012-05-25  Richard Henderson  <rth@twiddle.net>
39114
39115         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
39116         dl_hwcap to ifunc resolver.
39117         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
39118         elf_ifunc_invoke.
39119         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
39120         dl_hwcap to ifunc resolver.
39121         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
39122
39123 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39124
39125         [BZ #14153]
39126         * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
39127         for |x| <= 2**-26, not 2**-57.
39128         * math/libm-test.inc (acos_test): Do not allow spurious underflow
39129         exception.
39130
39131 2012-05-24  Jeff Law  <law@redhat.com>
39132
39133         * stdio-common/Makefile (tests): Add bug25.
39134         * stdio-common/bug25.c: New test.
39135
39136 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
39137
39138         [BZ #13576]
39139         * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
39140         multiple of MALLOC_ALIGNMENT in size.
39141         (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
39142
39143 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39144
39145         * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
39146         Require >= 256.
39147         (FILENAME_MAX): Use macro-int-constant.
39148         (FOPEN_MAX): Use macro-int-constant.  Require >= 8.
39149         (_IOFBF): Use macro-int-constant.
39150         (_IOLBF): Likewise.
39151         (_IONBF): Likewise.
39152         (SEEK_CUR): Likewise.
39153         (SEEK_END): Likewise.
39154         (SEEK_SET): Likewise.
39155         (TMP_MAX): Likewise.
39156         (EOF): Use macro-int-constant.  Require < 0.
39157         (NULL): Use macro-constant.  Require == 0.
39158         (stdin): Require type to be FILE *.
39159         (stdout): Likewise.
39160         (stderr): Likewise.
39161         * conform/data/stdlib.h-data (EXIT_FAILURE): Use
39162         macro-int-constant.
39163         (EXIT_SUCCESS): Likewise.
39164         (NULL): Use macro-constant.  Require == 0.
39165         (RAND_MAX): Use macro-int-constant.
39166         [ISO99 || ISO11] (lldiv_t): Require also for these standards.
39167         [C99-based standards] (strtof): Require function.
39168         [C99-based standards] (strtold): Likewise.
39169         [C99-based standards] (strtoll): Likewise.
39170         [C99-based standards] (strtoull): Likewise.
39171         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
39172         [ISO || ISO99 || ISO11] (limits.h): Likewise.
39173         [ISO || ISO99 || ISO11] (math.h): Likewise.
39174         [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
39175         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
39176         [ISO || ISO99 || ISO11] (*_t): Do not allow.
39177
39178 2012-05-24  Andreas Schwab  <schwab@linux-m68k.org>
39179
39180         [BZ #14132]
39181         * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
39182         * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
39183         * intl/dgettext.c (DCGETTEXT): Likewise.
39184         * intl/gettext.c (DCGETTEXT): Likewise.
39185         * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
39186         * posix/regex_internal.h (gettext): Likewise.
39187         * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
39188         Remove declaration.
39189         * include/argz.h (__argz_count_internal)
39190         (__argz_stringify_internal): Remove declaration.
39191         (__argz_count, __argz_stringify): Declare hidden proto.
39192         * intl/dcgettext.c: Remove use of INTDEF.
39193         * string/argz-count.c: Replace INTDEF with libc_hidden_def.
39194         * string/argz-stringify.c: Likewise.
39195         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
39196         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
39197         Declare hidden proto.
39198         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
39199         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
39200         Declare hidden proto.
39201         * include/stdio.h (__asprintf_internal): Don't declare.
39202         (__asprintf): Don't define as macro.  Declare hidden proto.
39203         * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
39204         (__fsetlocking): Declare hidden proto.
39205         * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
39206         (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
39207         hidden proto.
39208         (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
39209         (_IO_setlinebuf): Remove use of INTUSE.
39210         (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
39211         (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
39212         (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
39213         Remove declaration.
39214         * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
39215         (_IO_do_flush): Remove use of INTUSE.
39216         (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
39217         (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
39218         (_IO_adjust_column, _IO_least_wmarker)
39219         (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
39220         (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
39221         (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
39222         (_IO_default_doallocate, _IO_wdefault_doallocate)
39223         (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
39224         (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
39225         (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
39226         (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
39227         (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
39228         (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
39229         (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
39230         (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
39231         (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
39232         (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
39233         (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
39234         (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
39235         (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
39236         proto.
39237         (_IO_flush_all_internal, _IO_adjust_column_internal)
39238         (_IO_default_uflow_internal, _IO_default_finish_internal)
39239         (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
39240         (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
39241         (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
39242         (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
39243         (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
39244         (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
39245         (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
39246         (_IO_file_xsgetn_internal, _IO_file_stat_internal)
39247         (_IO_file_close_internal, _IO_file_close_it_internal)
39248         (_IO_file_underflow_internal, _IO_file_overflow_internal)
39249         (_IO_file_init_internal, _IO_file_attach_internal)
39250         (_IO_file_fopen_internal, _IO_file_read_internal)
39251         (_IO_file_sync_internal, _IO_file_seek_internal)
39252         (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
39253         (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
39254         (_IO_str_underflow_internal, _IO_str_overflow_internal)
39255         (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
39256         (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
39257         (_IO_list_all_internal, _IO_link_in_internal)
39258         (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
39259         (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
39260         (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
39261         (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
39262         (_IO_do_write_internal, _IO_padn_internal)
39263         (_IO_getline_info_internal, _IO_getline_internal)
39264         (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
39265         (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
39266         (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
39267         (_IO_vfscanf_internal, _IO_vfprintf_internal)
39268         (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
39269         (_IO_init_internal, _IO_un_link_internal): Don't declare.
39270         * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
39271         with libc_hidden_ver, remove use of INTUSE.
39272         * libio/genops.c: Likewise.
39273         * libio/freopen.c: Likewise.
39274         * libio/freopen64.c: Likewise.
39275         * libio/iofclose.c: Likewise.
39276         * libio/iofdopen.c: Likewise.
39277         * libio/iofflush.c: Likewise.
39278         * libio/iofflush_u.c: Likewise.
39279         * libio/iofgets.c: Likewise.
39280         * libio/iofgets_u.c: Likewise.
39281         * libio/iofopen.c: Likewise.
39282         * libio/iofopncook.c: Likewise.
39283         * libio/iofread.c: Likewise.
39284         * libio/iofread_u.c: Likewise.
39285         * libio/ioftell.c: Likewise.
39286         * libio/iofwrite.c: Likewise.
39287         * libio/iogetline.c: Likewise.
39288         * libio/iogets.c: Likewise.
39289         * libio/iogetwline.c: Likewise.
39290         * libio/iopadn.c: Likewise.
39291         * libio/iopopen.c: Likewise.
39292         * libio/ioseekoff.c: Likewise.
39293         * libio/ioseekpos.c: Likewise.
39294         * libio/iosetbuffer.c: Likewise.
39295         * libio/iosetvbuf.c: Likewise.
39296         * libio/ioungetc.c: Likewise.
39297         * libio/ioungetwc.c: Likewise.
39298         * libio/iovdprintf.c: Likewise.
39299         * libio/iovsprintf.c: Likewise.
39300         * libio/iovsscanf.c: Likewise.
39301         * libio/memstream.c: Likewise.
39302         * libio/obprintf.c: Likewise.
39303         * libio/oldfileops.c: Likewise.
39304         * libio/oldiofclose.c: Likewise.
39305         * libio/oldiofdopen.c: Likewise.
39306         * libio/oldiofopen.c: Likewise.
39307         * libio/oldiopopen.c: Likewise.
39308         * libio/oldstdfiles.c: Likewise.
39309         * libio/putc.c: Likewise.
39310         * libio/setbuf.c: Likewise.
39311         * libio/setlinebuf.c: Likewise.
39312         * libio/stdfiles.c: Likewise.
39313         * libio/strops.c: Likewise.
39314         * libio/vasprintf.c: Likewise.
39315         * libio/vscanf.c: Likewise.
39316         * libio/vsnprintf.c: Likewise.
39317         * libio/vswprintf.c: Likewise.
39318         * libio/wfiledoalloc.c: Likewise.
39319         * libio/wfileops.c: Likewise.
39320         * libio/wgenops.c: Likewise.
39321         * libio/wmemstream.c: Likewise.
39322         * libio/wstrops.c: Likewise.
39323         * libio/__fpurge.c: Likewise.
39324         * libio/__fsetlocking.c: Likewise.
39325         * assert/assert.c: Likewise.
39326         * debug/fgets_chk.c: Likewise.
39327         * debug/fgets_u_chk.c: Likewise.
39328         * debug/fread_chk.c: Likewise.
39329         * debug/fread_u_chk.c: Likewise.
39330         * debug/gets_chk.c: Likewise.
39331         * debug/obprintf_chk.c: Likewise.
39332         * debug/vasprintf_chk.c: Likewise.
39333         * debug/vdprintf_chk.c: Likewise.
39334         * debug/vsnprintf_chk.c: Likewise.
39335         * debug/vsprintf_chk.c: Likewise.
39336         * malloc/mtrace.c: Likewise.
39337         * misc/error.c: Likewise.
39338         * misc/syslog.c: Likewise.
39339         * stdio-common/asprintf.c: Likewise.
39340         * stdio-common/fxprintf.c: Likewise.
39341         * stdio-common/getw.c: Likewise.
39342         * stdio-common/isoc99_fscanf.c: Likewise.
39343         * stdio-common/isoc99_scanf.c: Likewise.
39344         * stdio-common/isoc99_vfscanf.c: Likewise.
39345         * stdio-common/isoc99_vscanf.c: Likewise.
39346         * stdio-common/isoc99_vsscanf.c: Likewise.
39347         * stdio-common/printf-prs.c: Likewise.
39348         * stdio-common/printf_fp.c: Likewise.
39349         * stdio-common/printf_fphex.c: Likewise.
39350         * stdio-common/printf_size.c: Likewise.
39351         * stdio-common/putw.c: Likewise.
39352         * stdio-common/scanf.c: Likewise.
39353         * stdio-common/sprintf.c: Likewise.
39354         * stdio-common/tmpfile.c: Likewise.
39355         * stdio-common/vfprintf.c: Likewise.
39356         * stdio-common/vfscanf.c: Likewise.
39357         * stdlib/strfmon_l.c: Likewise.
39358         * sunrpc/openchild.c: Likewise.
39359         * sunrpc/xdr_stdio.c: Likewise.
39360         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
39361         * sysdeps/mach/hurd/tmpfile.c: Likewise.
39362
39363 2012-05-24  Roland McGrath  <roland@hack.frob.com>
39364
39365         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
39366
39367         * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
39368         in the third column, to generate for the shared library an IFUNC
39369         that uses _dl_vdso_vsym.
39370         * Makerules (COMPILE.c, compile-stdin.c): New variables.
39371         * Makeconfig (object-suffixes-noshared): New variable.
39372
39373         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
39374         (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
39375         (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
39376         (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
39377
39378         [BZ #14132]
39379         * include/sys/time.h (__gettimeofday): Remove macro.
39380         (__gettimeofday, gettimeofday): Add libc_hidden_proto.
39381         * time/gettimeofday.c (__gettimeofday): Remove #undef.
39382         Remove INTDEF.
39383         (__gettimeofday): Add libc_hidden_def.
39384         (gettimeofday): Add libc_hidden_weak.
39385         * sysdeps/mach/gettimeofday.c: Likewise.
39386         * sysdeps/posix/gettimeofday.c: Likewise.
39387         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
39388         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
39389         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
39390         (__gettimeofday_internal): Remove strong_alias.
39391         (__gettimeofday): Add libc_hidden_def.
39392         (gettimeofday): Add libc_hidden_weak.
39393         * sysdeps/unix/syscalls.list (gettimeofday):
39394         Remove __gettimeofday_internal alias.
39395
39396 2012-05-24  Daniel Jacobowitz  <drow@false.org>
39397             H.J. Lu  <hongjiu.lu@intel.com>
39398
39399         [BZ #12495]
39400         * malloc/malloc.c (SMALLBIN_CORRECTION): New.
39401         (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
39402         (largebin_index_32_big): New.
39403         (largebin_index): Use it for 16-byte alignment.
39404         (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ.  Don't update
39405         correction with front_misalign.
39406
39407 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
39408
39409         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
39410         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
39411         Likewise.
39412         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
39413         Likewise.
39414         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
39415         Likewise.
39416         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
39417         Likewise.
39418         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
39419         Likewise.
39420         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
39421         Likewise.
39422         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
39423         Likewise.
39424         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
39425         Likewise.
39426         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
39427         Likewise.
39428         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
39429         Likewise.
39430         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
39431         Likewise.
39432         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
39433         Likewise.
39434
39435         * scripts/data/c++-types-x32-linux-gnu.data: New file.
39436         * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
39437
39438 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39439
39440         [BZ #10846]
39441         [BZ #14036]
39442         * math/libm-test.inc (exp_test): Add test from bug 14036.
39443         (pow_test): Add test from bug 10846.
39444
39445         * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
39446         and other flags.
39447         (special_function): Do not include flags in test name.
39448         (parse_args): Likewise.
39449         * sysdeps/i386/fpu/libm-test-ulps: Update.
39450         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
39451         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
39452         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
39453         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39454
39455         * math/gen-libm-test.pl (%beautify): Add entries for underflow
39456         exceptions.
39457         * math/libm-test.inc ("Philosophy"): Update comment about
39458         exception testing.
39459         (UNDERFLOW_EXCEPTION): New macro.
39460         (UNDERFLOW_EXCEPTION_OK): Likewise.
39461         (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
39462         (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
39463         (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
39464         (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
39465         (INVALID_EXCEPTION_OK): Update value.
39466         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
39467         (OVERFLOW_EXCEPTION_OK): Likewise.
39468         (IGNORE_ZERO_INF_SIGN): Likewise.
39469         (test_exceptions): Handle underflow exceptions.
39470         (acos_test): Update for underflow exception expectations.
39471         (cexp_test): Likewise.
39472         (clog_test): Likewise.
39473         (clog10_test): Likewise.
39474         (csqrt_test): Likewise.
39475         (ctan_test): Likewise.
39476         (ctanh_test): Likewise.
39477         (exp_test): Likewise.
39478         (exp10_test): Likewise.
39479         (exp2_test): Likewise.
39480         (expm1_test): Likewise.
39481         (fma_test): Likewise.
39482         (j0_test): Likewise.
39483         (jn_test): Likewise.
39484         (nexttoward_test): Likewise.
39485         (pow_test): Likewise.
39486         (scalbn_test): Likewise.
39487         (scalbln_test): Likewise.
39488         (tan_test): Likewise.
39489         (y1_test): Likewise.
39490         * sysdeps/i386/fpu/libm-test-ulps: Update.
39491         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39492
39493 2012-05-23  David S. Miller  <davem@davemloft.net>
39494
39495         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
39496         (__libc_sigaction): Remove unused local variables.
39497
39498 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39499
39500         * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
39501
39502 2012-05-23  Paul Eggert  <eggert@cs.ucla.edu>
39503
39504         mktime: avoid signed integer overflow
39505         * time/mktime.c (__mktime_internal): Do not mishandle the case
39506         where diff == INT_MIN.
39507
39508         mktime: simplify computation of average
39509         * time/mktime.c (ranged_convert): Use new time_t_avg function
39510         instead of rolling our own (probably-slower) code.
39511
39512         mktime: do not assume signed right shift propagates sign bit
39513         * time/mktime.c (isdst_differ): New static function.
39514         (__mktime_internal): No need to normalize tm_isdst now.
39515         (__mktime_internal, not_equal_tm): Use isdst_differ to compare
39516         tm_isdst values.
39517
39518         mktime: merge another wrapv change from gnulib
39519         * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
39520         from some compilers.
39521
39522         mktime: remove incorrect attempt at unusual arithmetics
39523         * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
39524         The code didn't really work on such machines anyway.
39525         (TYPE_MINIMUM): Assume two's complement.
39526         (twos_complement_arithmetic): Verify that long_int and time_t
39527         are two's complement (or unsigned, in the latter case).
39528
39529         mktime: check signed shifts on long_int and time_t, too
39530         * time/mktime.c (SHR): Check that shifts work as desired
39531         on the types long_int and time_t too, as SHR is used on
39532         such types.
39533
39534         mktime: do not assume 'long' is wide enough
39535         * time/mktime.c (verify): Move decl up.
39536         (long_int): New type.
39537         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
39538         to remove assumption in the code that 'long' is wide enough to
39539         store year values.  This assumption is not true on x32 and on
39540         some non-glibc platforms.
39541
39542         mktime: merge wrapv change from gnulib
39543         * time/mktime.c (WRAPV): New macro.
39544         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
39545         (guess_time_tm, __mktime_internal): Do not assume that signed
39546         integer overflow wraps around; modern compilers generate code
39547         where this assumption is no longer valid.
39548
39549 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39550
39551         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
39552         Replace "jmp L(pseudo_end)" with "ret".
39553         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
39554         Likewise.
39555
39556 2012-05-23  Andreas Jaeger  <aj@suse.de>
39557
39558         * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
39559         * sysdeps/unix/sysv/linux/poll.c: Remove file.
39560
39561 2012-05-23  Andreas Jaeger  <aj@suse.de>
39562             Maximilian Attems  <max@stro.at>
39563
39564         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
39565         New macros.
39566
39567 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39568
39569         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
39570         code so that pseudo_end is just ret and the stack pointer is
39571         correct also for static library in error case.
39572
39573 2012-05-23  Joseph Myers  <joseph@codesourcery.com>
39574
39575         * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
39576         move to syscalls.list.
39577         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
39578         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
39579         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
39580         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
39581
39582         * manual/install.texi (Running make install): Do not mention Linux
39583         kernel version for which pt_chown is not needed.
39584         (Linux): Do not mention problems with nscd with 2.0 kernels.
39585         * INSTALL: Regenerated.
39586
39587 2012-05-23  Andreas Jaeger  <aj@suse.de>
39588
39589         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
39590         (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
39591         macro.
39592         * sysdeps/unix/sysv/linux/s390/bits/mman.h
39593         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39594         * sysdeps/unix/sysv/linux/sh/bits/mman.h
39595         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39596         * sysdeps/unix/sysv/linux/i386/bits/mman.h
39597         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39598         * sysdeps/unix/sysv/linux/sparc/bits/mman.h
39599         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39600         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
39601         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39602         * sysdeps/unix/sysv/linux/bits/in.h
39603         (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
39604
39605 2012-05-22  Roland McGrath  <roland@hack.frob.com>
39606
39607         * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
39608         (PREPARE_VERSION): Just use assert instead, it will be elided
39609         under [NDEBUG] anyway.
39610
39611 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39612
39613         * sysdeps/unix/sysv/linux/Makefile: Include
39614         $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
39615         (sysdep_routines): Remove sysctl.
39616         * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
39617         * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
39618         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
39619         * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
39620         * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
39621
39622 2012-05-22  Andreas Jaeger  <aj@suse.de>
39623
39624         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
39625         that pseudo_end is just ret and the stack pointer is correct also
39626         for static library in error case.
39627
39628 2012-05-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
39629
39630         [BZ #14122]
39631         * nss/nsswitch.c (defconfig_entries): New variable.
39632         (__nss_database_lookup): Don't leak defconfig entries.
39633         (nss_parse_service_list): Don't leak on error paths.
39634         (free_database_entries): New function.
39635         (free_defconfig): New function.
39636         (free_mem): Move common code to free_database_entries.
39637
39638 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39639
39640         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
39641         Add arch_prctl.
39642         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
39643
39644         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
39645         (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
39646         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
39647         New macro.
39648         (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
39649         (INTERNAL_SYSCALL_TYPES): Likewise.
39650         (LOAD_ARGS_TYPES_[1-6]): Likewise.
39651         (LOAD_REGS_TYPES_[1-6]): Likewise.
39652         (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
39653         (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
39654
39655 2012-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39656
39657         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
39658         copysignl for GLIBC_2_0.
39659         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
39660         finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
39661         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
39662         logbl for GLIBC_2_0.
39663         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
39664         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
39665
39666 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39667
39668         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
39669         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
39670
39671         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
39672         Use "neg %eax".
39673
39674         * time/mktime.c: Update copyright years.
39675
39676 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39677
39678         mktime: merge comment-quoting-style change from gnulib
39679         * time/mktime.c: Quote 'like this' in comments.
39680         The GNU coding standards suggest that we no longer quote `like this',
39681         as "`" and "'" are typically rendered asymmetrically nowadays.
39682         The typical gnulib style is to quote 'like this' when quoting
39683         code, and "like this" when quoting English.
39684
39685         * time/mktime.c (compile-command): Add "-I.".
39686
39687         mktime: merge mktime-internal.h change from gnulib
39688         * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
39689
39690         mktime: merge time_r change from gnulib
39691         * time/mktime.c [!_LIBC]: Do not include "time_r.h".
39692
39693         mktime: merge DEBUG change from gnulib
39694         * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
39695         case system <time.h> has a #define.
39696
39697         mktime: merge <sys/types.h> change from gnulib
39698         * time/mktime.c: Do not include <sys/types.h>; no longer needed,
39699         since <time.t> is now guaranteed to define time_t.
39700
39701         mktime: merge HAVE_CONFIG_H change from gnulib
39702         * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
39703
39704 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39705
39706         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
39707         Use "neg %eax".
39708
39709         * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
39710         __rlim_t cast.
39711         (struct rusage): Use anonymous union to pad each field to
39712         __syscall_slong_t.
39713
39714 2012-05-21  David S. Miller  <davem@davemloft.net>
39715
39716         * Makefules (o-iterator): Remove .s cases.
39717         (compile-command.s): Delete.
39718         (COMPILE.s): Delete.
39719         * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
39720
39721 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
39722
39723         * configure.in (libc_cv_predef_stack_protector): Only consider
39724         "foobar" and "__stack_chk_fail" lines in libc_undefs.
39725         * configure: Regenerated.
39726
39727 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39728
39729         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
39730         New macro.  Use R*LP on int and pointer.
39731         (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
39732         * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
39733         * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
39734         * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
39735
39736         * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
39737         [__WORDSIZE_TIME64_COMPAT32] instead of
39738         [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
39739         (struct utmp): Likewise.
39740         * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
39741         * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
39742         Renamed to ...
39743         (__WORDSIZE_TIME64_COMPAT32): This.
39744         * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
39745         * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
39746         * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
39747         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
39748         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
39749         (__WORDSIZE_TIME64_COMPAT32): New macro.
39750
39751 2012-05-21  Andreas Jaeger  <aj@suse.de>
39752
39753         * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
39754         only if [SHARED]. Add prototype for __wcschr_ia32.
39755
39756 2012-05-21  Roland McGrath  <roland@hack.frob.com>
39757
39758         * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
39759         of %rbp unmolested in the jmp_buf while mangling the low bits.
39760         * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
39761         unmolested high bits of %rbp while demangling the low bits.
39762         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
39763
39764 2012-05-21  Andreas Jaeger  <aj@suse.de>
39765
39766         * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
39767         * sunrpc/svc_simple.c: Use it for registerrpc.
39768         * sunrpc/xcrypt.c: Use it for passwd2des.
39769
39770         * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
39771
39772 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39773
39774         * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
39775         Don't define if [__SYSCALL_WORDSIZE != 32].
39776         * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
39777         New macro.
39778
39779 2012-05-21  Bruno Haible  <bruno@clisp.org>
39780             Andreas Jaeger  <aj@suse.de>
39781
39782         [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
39783         * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
39784         inptr and inend for must_buffer_ch.
39785         * wcsmbs/tst-mbsnrtowcs.c: Remove file.
39786         * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
39787         * stdio-common/Makefile (tests): Remove bug15.
39788         (bug15-ENV): Remove macro.
39789         * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
39790         anymore.
39791
39792 2012-05-19  Andreas Jaeger  <aj@suse.de>
39793             Roland McGrath  <roland@hack.frob.com>
39794
39795         * manual/contrib.texi: Completely rewritten. It contains now an
39796         alphabetical list of contributors and their contributions.
39797
39798 2012-05-21  Richard Henderson  <rth@twiddle.net>
39799
39800         * misc/getauxval.c (__getauxval): Use unsigned long int.
39801         * misc/sys/auxv.h: Include <sys/cdefs.h>.
39802         (getauxval): Use unsigned long int.
39803
39804 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39805
39806         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
39807
39808 2012-05-21  Roland McGrath  <roland@hack.frob.com>
39809
39810         * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
39811         (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
39812         __alignof__ (long double).
39813
39814 2012-05-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39815
39816         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39817
39818 2012-05-20  Richard Henderson  <rth@twiddle.net>
39819
39820         * misc/getauxval.c: New file.
39821         * misc/sys/auxv.h: New file.
39822         * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
39823         (routines): Add getauxval.
39824         * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
39825         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
39826         * elf/dl-sysdep.c (_dl_auxv): Remove.
39827         (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
39828         * elf/dl-support.c (_dl_auxv): New variable.
39829         (_dl_aux_init): Initialize it.
39830         * manual/startup.texi (Auxiliary Vector): New node.
39831         * sysdeps/generic/bits/hwcap.h: New file.
39832         * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
39833         * sysdeps/powerpc/sysdep.h: ... here.  Include it.
39834         * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
39835         * sysdeps/sparc/sysdep.h: ... here.  Include it.
39836         * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
39837         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
39838         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
39839         Update.
39840         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
39841         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
39842         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
39843         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
39844         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
39845         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
39846         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
39847         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
39848
39849 2012-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39850
39851         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39852
39853 2012-05-19  David S. Miller  <davem@davemloft.net>
39854
39855         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39856
39857 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
39858
39859         [BZ #14123]
39860         * math/s_ccosh.c: Include <float.h>
39861         (__ccosh): Avoid internal overflow calculating sinh and cosh
39862         values before multiplying by sin and cos values.
39863         * math/s_ccoshf.c: Likewise.
39864         * math/s_ccoshl.c: Likewise.
39865         * math/s_csin.c: Likewise.
39866         * math/s_csinf.c: Likewise.
39867         * math/s_csinl.c: Likewise.
39868         * math/s_csinh.c: Likewise.
39869         * math/s_csinhf.c: Likewise.
39870         * math/s_csinhl.c: Likewise.
39871         * math/libm-test.inc (ccos_test): Add more tests.
39872         (ccosh_test): Likewise.
39873         (csin_test): Likewise.
39874         (csinh_test): Likewise.
39875         * sysdeps/i386/fpu/libm-test-ulps: Update.
39876         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39877
39878 2012-05-19  H.J. Lu  <hongjiu.lu@intel.com>
39879
39880         * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
39881         * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
39882
39883         * sysdeps/x86_64/x32/_itoa.h: Add comment.
39884
39885 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
39886
39887         * sysdeps/powerpc/soft-fp/Makefile: Remove file.
39888         * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
39889         * sysdeps/powerpc/soft-fp/Versions: Likewise.
39890         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
39891         * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
39892         * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
39893         * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
39894         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
39895         * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
39896         * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
39897         * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
39898         * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
39899         * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
39900         * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
39901         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
39902         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
39903         * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
39904         * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
39905         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
39906         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
39907         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
39908         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
39909         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
39910         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
39911         * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
39912         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
39913         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
39914         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
39915         * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
39916         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
39917         * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
39918
39919 2012-05-18  Andreas Jaeger  <aj@suse.de>
39920
39921         * csu/.gitignore: Delete.
39922
39923 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39924
39925         * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
39926         (timex): Use __syscall_slong_t.
39927
39928 2012-05-18  Andreas Jaeger  <aj@suse.de>
39929             Carlos O'Donell  <carlos_odonell@mentor.com>
39930
39931         * manual/install.texi (Configuring and compiling): Update
39932         description about files modified in the source directory.
39933         * INSTALL: Regenerated.
39934
39935 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39936
39937         * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
39938         value.  Use "or" to set return value to -1.
39939         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
39940         negate return value.
39941
39942 2012-05-18  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
39943
39944         * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
39945         (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
39946         failure if the compiler has Graphite support disabled.
39947         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
39948         Likewise.
39949         * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
39950         (CFLAGS-memmove.c): Likewise.
39951         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
39952         Likewise.
39953
39954 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39955
39956         * sysdeps/x86_64/x32/_itoa.h: New file.
39957
39958         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
39959         getdents system call only if kernel and user dirents have the
39960         same d_ino and d_off.
39961
39962         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
39963         LLONG_MAX != LONG_MAX.
39964         (_itoa_word): Use _ITOA_WORD_TYPE on value.
39965         (_fitoa_word): Likewise.
39966
39967         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
39968         years.
39969         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
39970         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
39971         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
39972
39973         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
39974         include <bits/wordsize.h>.  Check __x86_64__ instead of
39975         __WORDSIZE.
39976         (sigcontext): Use "__uint64_t" instead of "unsigned long int"
39977         if __x86_64__ is defined.  Use anonymous union on fpstate.
39978
39979         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
39980         anonymous union.
39981
39982 2012-05-18  Andreas Schwab  <schwab@linux-m68k.org>
39983
39984         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
39985         INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
39986         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
39987         Refer to _rtld_local_ro instead of _rtld_global_ro.
39988         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
39989         Likewise.
39990         * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
39991         Likewise.
39992         * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
39993         Likewise.
39994         * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
39995         * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
39996         of _rtld_global, and rtld_progname instead of _dl_argv[0].
39997
39998         * sysdeps/powerpc/powerpc32/dl-machine.c
39999         (__elf_machine_runtime_setup) [PROF]: Don't reference
40000         _dl_prof_resolve.
40001
40002 2012-05-18  Andreas Jaeger  <aj@suse.de>
40003
40004         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
40005         function only available for GCCs before 3.4 since GCC 3.4
40006         introduced a builtin.
40007         (lrint): Likewise.
40008         (llrintf): Likewise.
40009         (llrint): Likewise.
40010         (fmaxf): Likewise.
40011         (fmax): Likewise.
40012         (fminf): Likewise.
40013         (fmin): Likewise.
40014         (rint): Likewise.
40015         (rintf): Likewise.
40016         (nearbyint): Likewise.
40017         (nearbyintf): Likewise.
40018         (ceil): Likewise.
40019         (ceilf): Likewise.
40020         (floor): Likewise.
40021         (floorf): Likewise.
40022
40023 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40024
40025         * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
40026         on both fields and cast pointer to __syscall_ulong_t.
40027
40028         * bits/types.h (__fsword_t): New type.
40029         * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
40030         sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
40031         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40032         (__FSWORD_T_TYPE): Likewise.
40033         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40034         (__FSWORD_T_TYPE): Likewise.
40035         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40036         (__FSWORD_T_TYPE): Likewise.
40037         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
40038         (__FSWORD_T_TYPE): Likewise.
40039         * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
40040         __SWORD_TYPE with __fsword_t.
40041         (statfs64): Likewise.
40042
40043 2012-05-17  David S. Miller  <davem@davemloft.net>
40044
40045         * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
40046
40047 2012-05-17  Andreas Jaeger  <aj@suse.de>
40048
40049         * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
40050         warning.
40051
40052 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40053
40054         * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
40055
40056 2012-05-17  Andreas Jaeger  <aj@suse.de>
40057
40058         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
40059         when it is used.
40060
40061 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
40062
40063         * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
40064
40065 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40066
40067         * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
40068         * sysdeps/x86_64/tst-mallocalign1.c: New file.
40069
40070 2012-05-17  Andreas Jaeger  <aj@suse.de>
40071             Carlos O'Donell  <carlos_odonell@mentor.com>
40072
40073         [BZ #14059]
40074         * sysdeps/x86_64/multiarch/init-arch.h
40075         (bit_YMM_Usable): Rename to...
40076         (bit_AVX_Usable): ... this.
40077         (bit_FMA4_Usable): New macro.
40078         (bit_XMM_state): New macro.
40079         (bit_YMM_state): New macro.
40080         [__ASSEMBLER__] (index_YMM_Usable): Rename to...
40081         [__ASSEMBLER__] (index_AVX_Usable): ... this.
40082         [__ASSEMBLER__] (index_FMA4_Usable): New macro.
40083         (CPUID_OSXSAVE): New macro.
40084         (CPUID_AVX): New macro.
40085         (CPUID_FMA4): New macro.
40086         (index_YMM_Usable): Rename to...
40087         (index_AVX_Usable): ... this.
40088         (HAS_AVX): Use HAS_ARCH_FEATURE.
40089         (HAS_FMA4): Likewise.
40090         (HAS_YMM_USABLE): Remove.
40091         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
40092         Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
40093         are present.
40094         * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
40095         * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
40096         * sysdeps/x86_64/multiarch/Makefile: Likewise.
40097         * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
40098         * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
40099
40100 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
40101
40102         * math/libm-test.c: Support platforms without multiple rounding modes.
40103         * math/bug-nextafter.c: Support platforms without FP exceptions.
40104         * math/bug-nexttoward.c: Likewise.
40105         * math/test-fenv.c: Likewise.
40106         * math/test-misc.c: Likewise.
40107         * stdlib/bug-getcontext.c: Likewise.
40108
40109 2012-05-17  Andreas Jaeger  <aj@suse.de>
40110
40111         * manual/examples/search.c (critter_cmp): Change signature to
40112         avoid warnings.
40113         * manual/string.texi (Collation Functions): Likewise.
40114
40115 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40116
40117         * bits/types.h: Fold copyright years.
40118         * bits/typesizes.h: Likewise.
40119         * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
40120         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
40121         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
40122         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
40123         * time/time.h: Likewise.
40124
40125 2012-05-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
40126
40127         [BZ #208]
40128         * malloc.c (int_mallinfo): Add parameter to accumulate statistics
40129         in instead of returning them.  Return void.
40130         (__libc_mallinfo): Accumulate over all arenas.
40131         (__malloc_stats): Adjust for change in int_mallinfo interface.
40132
40133 2012-05-16  Roland McGrath  <roland@hack.frob.com>
40134
40135         [BZ #10375]
40136         * configure.in (NM): Add AC_CHECK_TOOL for it.
40137         (libc_extra_cflags): New substituted variable.
40138         Check for -fstack-protector being used implicitly.
40139         * configure: Regenerated.
40140         * config.make.in (config-extra-cflags): New variable,
40141         gets @libc_extra_cflags@.
40142         * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
40143
40144         [BZ #10375]
40145         * configure.in: Check for _FORTIFY_SOURCE being predefined.
40146         (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
40147         * configure: Regenerated.
40148         * config.make.in (CPPUNDEFS): New substituted variable.
40149         * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
40150         * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
40151         * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
40152
40153 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40154
40155         * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
40156         (mq_attr): Use __syscall_slong_t.
40157
40158 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40159
40160         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
40161         Check __x86_64__ instead of __WORDSIZE.
40162         (_STAT_VER_LINUX): Likewise.
40163         (stat): Check __x86_64__ instead of __WORDSIZE.  Use
40164         __syscall_ulong_t and __syscall_slong_t.
40165         (stat64): Likewise.
40166
40167 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40168
40169         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
40170
40171 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40172
40173         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
40174
40175 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40176
40177         * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
40178         __syscall_ulong_t.
40179
40180         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
40181         include <bits/wordsize.h>.  Check __x86_64__ instead of
40182         __WORDSIZE.
40183         (greg_t): Use "__extension__ long long int" if __x86_64__ is
40184         defined.
40185         (mcontext_t): Replace "unsigned long" with "unsigned long long".
40186
40187         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
40188         include <bits/wordsize.h>.  Check __x86_64__ instead of
40189         __WORDSIZE.
40190         (user_regs_struct): Use "__extension__ unsigned long long"
40191         instead of "unsigned long" if __x86_64__ is defined.
40192         (user): Likewise.  Pad after pointer field if __ILP32__ is
40193         defined.
40194
40195 2012-05-16  Joseph Myers  <joseph@codesourcery.com>
40196
40197         * configure.in (makeinfo): Require version 4.5 or later.  Allow
40198         versions 5 to 9.
40199         * configure: Regenerated.
40200         * manual/install.texi (texinfo): Increase version requirement to
40201         4.5 or later.
40202         * INSTALL: Regenerated.
40203
40204         * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
40205
40206 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40207
40208         * sysdeps/x86_64/x32/gmp-mparam.h: New file.
40209
40210         * sysdeps/x86_64/x32/ffs.c: New file.
40211
40212         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
40213         __syscall_ulong_t.
40214         (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
40215         defined.  Use __syscall_ulong_t.
40216         (shminfo): Use __syscall_ulong_t.
40217         (shm_info): Likewise.
40218
40219         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
40220         __syscall_ulong_t.
40221
40222         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
40223         <bits/wordsize.h>.
40224         (msgqnum_t): Use __syscall_ulong_t.
40225         (msglen_t): Likewise.
40226         (msqid_ds): Check __x86_64__ instead of __WORDSIZE.  Use
40227         __syscall_ulong_t.
40228
40229         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
40230         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
40231
40232         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
40233
40234         * sysdeps/x86_64/x32/divdi3.c: New dummy file.
40235         * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
40236
40237         * sysvipc/sys/msg.h (msgbuf): Replace long int with
40238         __syscall_slong_t.
40239
40240         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
40241         include <bits/wordsize.h>.  Check __x86_64__ instead of
40242         __WORDSIZE.
40243
40244         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
40245         "unsigned long long int" if __x86_64__ is defined.
40246         (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
40247
40248         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
40249         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
40250         (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
40251
40252         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
40253         <stdint.h>.
40254         (GET_PC): Cast to uintptr_t first.
40255         (GET_FRAME): Likewise.
40256         (GET_STACK): Likewise.
40257
40258         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
40259         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
40260         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
40261         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
40262         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
40263         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
40264         * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
40265         * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
40266         * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
40267         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
40268         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
40269         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
40270         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
40271         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
40272         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
40273         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
40274         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
40275         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
40276         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
40277         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
40278         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
40279         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
40280         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
40281         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
40282         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
40283         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
40284         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
40285         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
40286         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
40287
40288 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
40289
40290         * Makerules (+depfiles): Also collect depfiles from .oS in
40291         $(extra-objs).
40292         * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
40293         .oS, $(libnldbl-routines)).
40294
40295         * Makerules (native-compile-mkdep-flags): Define.
40296         * sunrpc/Makefile (extra-objs): Add $(addprefix
40297         cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
40298         ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
40299         of $(compile-mkdep-flags).  Depend on $(before-compile) instead of
40300         calling $(make-target-directory).
40301
40302 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40303
40304         * bits/types.h (__snseconds_t): Removed.
40305         * time/time.h (struct timespec): Replace __snseconds_t with
40306         __syscall_slong_t.
40307         * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
40308         * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
40309         Likewise.
40310         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40311         (__SNSECONDS_T_TYPE): Likewise.
40312         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40313         (__SNSECONDS_T_TYPE): Likewise.
40314         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40315         (__SNSECONDS_T_TYPE): Likewise.
40316
40317 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40318
40319         * sysdeps/mach/hurd/bits/typesizes.h
40320         (__SYSCALL_SLONG_TYPE): New macro.
40321         (__SYSCALL_ULONG_TYPE): Likewise.
40322
40323 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40324
40325         * bits/types.h (__syscall_slong_t): New type.
40326         (__syscall_ulong_t): Likewise.
40327
40328         * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
40329         (__SYSCALL_ULONG_TYPE): Likewise.
40330         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40331         (__SYSCALL_SLONG_TYPE): Likewise.
40332         (__SYSCALL_ULONG_TYPE): Likewise.
40333         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40334         (__SYSCALL_SLONG_TYPE): Likewise.
40335         (__SYSCALL_ULONG_TYPE): Likewise.
40336         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40337         (__SYSCALL_SLONG_TYPE): Likewise.
40338         (__SYSCALL_ULONG_TYPE): Likewise.
40339
40340 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40341
40342         * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
40343         Add sigaltstack-offsets.sym.
40344         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
40345         <sigaltstack-offsets.h>.
40346         (CALL_FAIL): Use RSP_LP to operate on stack.  Use RDI_LP on
40347         longjmp_msg pointer.
40348         (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC.  Use
40349         R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
40350         signal stack.
40351         * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
40352
40353 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
40354
40355         * elf/stackguard-macros.h: Remove file.
40356         * sysdeps/generic/stackguard-macros.h: New file.
40357         * sysdeps/i386/stackguard-macros.h: Likewise.
40358         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
40359         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
40360         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
40361         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
40362         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
40363         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
40364         * sysdeps/x86_64/stackguard-macros.h: Likewise.
40365         * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
40366         <elf/stackguard-macros.h>.
40367
40368         [BZ #14109]
40369         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
40370         __aligned__ in attribute.
40371         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
40372         (gregset_t): Likewise.
40373
40374 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40375
40376         * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
40377         * sysdeps/x86_64/64/Implies-after: Here.  New file.
40378         * sysdeps/x86_64/x32/Implies-after: New file.
40379
40380 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40381
40382         * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
40383         and access return value for _dl_profile_fixup.  Use R10_LP to
40384         load frame size.
40385
40386 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40387
40388         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
40389
40390 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40391
40392         * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
40393         * sysdeps/x86_64/x32/sysdep.h: New file.
40394
40395 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40396
40397         * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
40398         * sysdeps/x86_64/setjmp.S: Likewise.
40399
40400 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40401
40402         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
40403         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
40404         * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
40405         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
40406         remove unused global constant.
40407
40408 2012-05-15  Chris Metcalf  <cmetcalf@tilera.com>
40409
40410         * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
40411         include of <not-cancel.h>.
40412
40413 2012-05-15  Roland McGrath  <roland@hack.frob.com>
40414
40415         * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
40416
40417 2012-05-15  Jeff Law  <law@redhat.com>
40418             Andreas Jaeger  <aj@suse.de>
40419
40420         [BZ #13594]
40421         * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
40422         out from...
40423         * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
40424         * nscd/nscd-client.h: Add __nscd_acquire_maplock.
40425         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
40426         code changing __hst_map_handle.map.
40427
40428 2012-05-15  Roland McGrath  <roland@hack.frob.com>
40429
40430         * configure.in (sysnames): Look for Implies-before and Implies-after
40431         files.
40432         * configure: Regenerated.
40433
40434 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40435
40436         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
40437         8-byte data alignment with LP_SIZE alignment.
40438
40439 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40440
40441         * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
40442         into R10_LP.
40443
40444 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40445
40446         * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
40447
40448 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40449
40450         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
40451         * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
40452         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
40453         Likewise.
40454         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
40455
40456 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40457
40458         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
40459         (stackinfo_sub_sp): Likewise.
40460
40461 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40462
40463         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
40464         RAX_LP.
40465
40466 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40467
40468         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
40469         into R*_LP.
40470
40471 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40472
40473         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
40474         sizes into R*_LP.
40475
40476 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40477
40478         * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
40479
40480 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40481
40482         * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
40483         into R11_LP and load __x86_64_shared_cache_size_half into
40484         R8_LP.
40485
40486 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40487
40488         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
40489         R8_LP.
40490
40491 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40492
40493         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
40494         logb for POWER7.
40495         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
40496         logbf for POWER7.
40497         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
40498         logbl for POWER7.
40499         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
40500         powerpc32/power7/fpu/s_logb.c via #include.
40501         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
40502         powerpc32/power7/fpu/s_logbf.c via #include.
40503         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
40504         powerpc32/power7/fpu/s_logbl.c via #include.
40505
40506 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
40507
40508         * README.libm: Remove file.
40509
40510 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40511
40512         * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
40513         count for x32.  Use R*_LP and omit operand-size suffix.
40514
40515 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40516
40517         * shlib-versions: Move x86_64-.*-linux.* entries to ...
40518         * sysdeps/x86_64/64/shlib-versions: Here.  New file.
40519         * sysdeps/x86_64/x32/shlib-versions: New file.
40520
40521 2012-05-14  Roland McGrath  <roland@hack.frob.com>
40522
40523         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
40524         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
40525         Use _dl_fatal_printf instead.
40526
40527 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
40528
40529         * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
40530         set if not set by the user.  Do not allow for being unset.
40531         * sysdeps/unix/sysv/linux/configure: Regenerated.
40532
40533 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40534
40535         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
40536         the `q' suffix from lea and replace .quad with ASM_ADDR.
40537
40538 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40539
40540         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
40541         the `q' suffix from xor/rol instructions.  Use $2*LP_SIZE+1
40542         instead of $17.
40543         (PTR_DEMANGLE): Likewise.
40544
40545 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40546
40547         * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
40548         (LP_OP): Likewise.
40549         (ASM_ADDR): Likewise.
40550         (RAX_LP): Likewise.
40551         (RBP_LP): Likewise.
40552         (RBX_LP): Likewise.
40553         (RCX_LP): Likewise.
40554         (RDI_LP): Likewise.
40555         (RSI_LP): Likewise.
40556         (RSP_LP): Likewise.
40557         (R8_LP): Likewise.
40558         (R9_LP): Likewise.
40559         (R10_LP): Likewise.
40560         (R10_LP): Likewise.
40561         (R11_LP): Likewise.
40562         (R12_LP): Likewise.
40563         (R13_LP): Likewise.
40564         (R14_LP): Likewise.
40565         (R15_LP): Likewise.
40566
40567 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40568
40569         * sysdeps/x86_64/x32/dl-machine.h: New file.
40570
40571 2012-05-14  Andreas Jaeger  <aj@suse.de>
40572
40573         * manual/Makefile (subdir): Remove export of subdir.
40574         (all): Remove target.
40575         (.PHONY): Remove all from list.
40576         (mkinstalldirs): Remove.
40577         (.PHONY): Remove installdirs from list.
40578         ($(inst_infodir)/libc.info): Use make-target-directory.
40579         (installdirs): Remove.
40580         (subdir_%): Remove.
40581         (glibc-targets): Remove.
40582         (lib): Remove.
40583         (stubs): Remove.
40584         ($(objpfx)stubs ../po/manual.pot): Remove.
40585         ($(objpfx)stamp%): Remove.
40586         (make-target-directory): Remove.
40587         (subdir_install): Remove.
40588         (routines): Remove.
40589         (aux): Remove.
40590         (sources): Remove.
40591         (objects): Remove.
40592         (headers): Remove.
40593
40594         [BZ #13750]
40595         * manual/.gitignore: Remove, it's not needed anymore.
40596         * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
40597         all files in it.
40598         * manual/Makefile (dvi, pdf, info, html): Depend on files in build
40599         directory.
40600         (texis): Renamed to $(objpfx)texis.
40601         (texis-path): New, contains path to generated files.
40602         (chapters.%): Use texis-path for complete path, add extra argument
40603         libc-texinfo.sh.
40604         (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
40605         (libc/index.html, summary.texi): Add $(objpfx) as prefix.
40606         (summary,texi, stamp-summary): Use complete path of
40607         files. Generate files in build dir.
40608         (dir-add.texi): Build in build dir.
40609         (libm-err.texi,stamp-libm-err): Likewise.
40610         (version.texi, stamp-version): Likewise.
40611         (.%c.texi): Likewise.
40612         (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
40613         (mostlyclean): Remove target.
40614         (realclean): Remove target.
40615         (generated): Add new variable with contents from mostlyclean and
40616         realclean, remove entries duplicated in common-mostlyclean, add
40617         stamp-libm-err and stamp-version.
40618         (generated-dirs): Add libc directory.
40619         ($(inst_infodir)/libc.info): Install files from build dir.
40620
40621         * manual/install.texi (Configuring and compiling): Adjust since
40622         the info files are not part of the tar ball anymore.
40623
40624 2012-05-14  Andreas Jaeger  <aj@suse.de>
40625
40626         * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
40627         variable.
40628
40629 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
40630
40631         [BZ #13717]
40632         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
40633         to 2.2.0 where earlier.
40634         * sysdeps/unix/sysv/linux/configure: Regenerated.
40635         * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
40636         Remove conditional code.
40637         [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
40638         * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
40639         Remove conditional code.
40640         [!__NR_lchown]: Likewise.
40641         [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40642         [__NR_lchown]: Likewise.
40643         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
40644         comment referencing __ASSUME_LCHOWN_SYSCALL.
40645         * sysdeps/unix/sysv/linux/i386/sigaction.c
40646         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40647         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40648         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
40649         Remove conditional code.
40650         [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
40651         (__protocol_available): Remove #if 0 code.
40652         * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
40653         conditional code.
40654         [__ASSUME_SIOCGIFNAME]: Make code unconditional.
40655         * sysdeps/unix/sysv/linux/kernel-features.h
40656         (__ASSUME_GETCWD_SYSCALL): Don't define.
40657         (__ASSUME_REALTIME_SIGNALS): Likewise.
40658         (__ASSUME_PREAD_SYSCALL): Likewise.
40659         (__ASSUME_PWRITE_SYSCALL): Likewise.
40660         (__ASSUME_POLL_SYSCALL): Likewise.
40661         (__ASSUME_LCHOWN_SYSCALL): Likewise.
40662         (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
40663         non-SPARC.
40664         (__ASSUME_SIOCGIFNAME): Don't define.
40665         (__ASSUME_MSG_NOSIGNAL): Likewise.
40666         (__ASSUME_SENDFILE): Define unconditionally.
40667         (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
40668         * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
40669         conditional code.
40670         [__ASSUME_POLL_SYSCALL]: Make code unconditional.
40671         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
40672         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
40673         (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40674         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
40675         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
40676         (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40677         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
40678         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40679         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40680         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
40681         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40682         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40683         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
40684         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40685         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40686         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
40687         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40688         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40689         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
40690         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40691         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40692         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
40693         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40694         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40695         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
40696         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40697         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40698         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
40699         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40700         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40701         * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
40702         Remove conditional code.
40703         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40704         * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
40705         Remove conditional code.
40706         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40707         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
40708         [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
40709         * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
40710         Remove conditional code.
40711         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40712         * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
40713         Remove conditional code.
40714         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40715         * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
40716         Remove conditional code.
40717         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40718         * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
40719         Remove conditional code.
40720         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40721         * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
40722         Remove conditional code.
40723         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40724         * sysdeps/unix/sysv/linux/sh/pwrite64.c
40725         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40726         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40727         * sysdeps/unix/sysv/linux/sigaction.c
40728         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40729         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40730         * sysdeps/unix/sysv/linux/sigpending.c
40731         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40732         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40733         * sysdeps/unix/sysv/linux/sigprocmask.c
40734         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40735         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40736         * sysdeps/unix/sysv/linux/sigsuspend.c
40737         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40738         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40739         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
40740         (__libc_missing_rt_sigs): Remove.
40741         (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
40742         (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
40743         * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
40744         Remove conditional code.
40745         [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
40746         * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
40747         return 1.
40748         * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
40749         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
40750         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
40751         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
40752
40753 2012-05-14  Andreas Jaeger  <aj@suse.de>
40754
40755         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
40756         it's not used in glibc.
40757         (__coshm1): Likewise.
40758         (__acosh1p): Likewise.
40759         (__sgn): Likewise.
40760
40761         * manual/string.texi (Copying and Concatenation): Add missing
40762         variable in concat example.
40763         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
40764
40765 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40766
40767         [BZ #14103]
40768         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
40769         __builtin_clzl with __builtin_clzll.
40770
40771 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40772
40773         [BZ #14104]
40774         * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
40775         libc_freeres_ptr.
40776
40777 2012-05-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
40778
40779         * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
40780         * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
40781         * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
40782         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
40783
40784 2012-05-14  Mike Frysinger  <vapier@gentoo.org>
40785
40786         * NEWS: Update ia64 info.
40787
40788 2012-05-12  Andreas Schwab  <schwab@linux-m68k.org>
40789
40790         * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
40791         used as bcopy.
40792
40793 2012-05-12  Thomas Schwinge  <thomas@codesourcery.com>
40794
40795         * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
40796         * sysdeps/unix/syscalls.list (dup3): Likewise.
40797         * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
40798         * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
40799
40800 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
40801
40802         * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
40803         "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
40804
40805 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
40806
40807         * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
40808         thread pointer.
40809         (TLS_IE): Use mov/add instead of movq/addq to load thread
40810         pointer.
40811         (TLS_GD_PREFIX): New.
40812         (TLS_GD): Use it.
40813
40814 2012-05-11  David S. Miller  <davem@davemloft.net>
40815
40816         * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
40817         * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
40818         (_FPU_SETCW): Likewise.
40819
40820 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40821
40822         * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
40823         is 32-byte aligned.
40824
40825 2012-05-11  Andreas Schwab  <schwab@linux-m68k.org>
40826
40827         [BZ #11837]
40828         * iconvdata/gb18030.c: Update tables.
40829         (BODY for FROM_LOOP): Update.  Handle two-byte encoded non-BMP
40830         characters specially.
40831         (BODY for TO_LOOP): Add encoding of missing ranges.
40832
40833 2012-05-11  Thomas Schwinge  <thomas@codesourcery.com>
40834
40835         [BZ #13673]
40836         * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
40837         * sysdeps/mach/hurd/dup3.c: Likewise.
40838         * sysdeps/mach/hurd/readlinkat.c: Likewise.
40839         * sysdeps/powerpc/memmove.c:: Likewise.
40840
40841 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40842
40843         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
40844         R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
40845
40846 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40847
40848         * elf/elf.h (R_X86_64_RELATIVE64): New.
40849         (R_X86_64_NUM): Updated.
40850         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
40851         R_X86_64_RELATIVE64.  Always use Elf64_Addr with R_X86_64_64.
40852         (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
40853         * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
40854         tst-quad1pie tst-quad2pie
40855         (modules-names): Add tst-quadmod1 tst-quadmod2.
40856         ($(objpfx)tst-quad1): New dependency.
40857         ($(objpfx)tst-quad2): Likewise.
40858         ($(objpfx)tst-quad1pie): Likewise.
40859         ($(objpfx)tst-quad2pie): Likewise.
40860         * sysdeps/x86_64/tst-quad1.c: New file.
40861         * sysdeps/x86_64/tst-quad1pie.c: New file.
40862         * sysdeps/x86_64/tst-quad2.c: Likewise.
40863         * sysdeps/x86_64/tst-quad2pie.c: Likewise.
40864         * sysdeps/x86_64/tst-quadmod1.S: Likewise.
40865         * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
40866         * sysdeps/x86_64/tst-quadmod2.S: Likewise.
40867         * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
40868
40869 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40870
40871         * io/fcntl.h (mode_t, off_t, pid_t): Define types.
40872         (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
40873         * streams/stropts.h (t_scalar_t): Define type.
40874
40875         * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
40876         (_PATH_PRESERVE): Set to "/var/lib".
40877         (_PATH_RWHODIR): Set to "/var/spool/rwho".
40878
40879         * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
40880         instead of int.
40881
40882         * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
40883         if __dir_mkfile succeeded.
40884
40885         * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
40886         checking for _hurd_dtablesize.  Unlock it right after having
40887         finished _hurd_dtable allocation.
40888
40889 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40890
40891         * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
40892         * sysdeps/mach/hurd/configure: Regenerated.
40893         * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
40894         special-casing to...
40895         * sysdeps/gnu/configure.in: ... this new file.
40896         * sysdeps/unix/sysv/linux/configure: Regenerated.
40897         * sysdeps/gnu/configure: New generated file.
40898
40899         * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
40900         for Linux: use nsec instead of usec, as well as:
40901         [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
40902         members of type struct timespec.
40903         [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
40904         New macros.
40905         (struct stat64): Likewise.
40906         (_STATBUF_ST_NSEC): New macro.
40907         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
40908
40909         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
40910         __strtoul_internal rather than strtoul.
40911
40912 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40913
40914         * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
40915         and reject them.
40916
40917 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40918
40919         * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
40920         which preserves existing values.
40921         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
40922
40923 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40924
40925         * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
40926         TIMEOUT values.  Return EINVAL for NFDS values either negative or
40927         greater than FD_SETSIZE.
40928
40929 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40930
40931         * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
40932         allocated, call __vm_protect to finish enabling the existing space, and
40933         pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
40934         allocate the remainder.
40935
40936 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40937
40938         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
40939         address port.  Set ADDR_LEN to 0 when not filling ADDRARG.
40940
40941 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40942
40943         * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
40944         sysdeps/mach/hurd/readlink.c.
40945
40946         * posix/tst-sysconf.c (posix_options): Only use
40947         _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
40948         _POSIX_SYNCHRONIZED_IO when they are defined
40949         * sysdeps/mach/hurd/bits/posix_opt.h:
40950         (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
40951         (_XOPEN_REALTIME): Undefine macro.
40952         (_XOPEN_REALTIME_THREADS): Undefine macro.
40953         (_XOPEN_SHM): Undefine macro.
40954         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
40955         macro to -1.
40956         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
40957         macro to -1.
40958         (_POSIX_ASYNC_IO): Undefine macro.
40959         (_POSIX_PRIORITIZED_IO): Undefine macro.
40960         (_POSIX_SPIN_LOCKS): Define macro to -1.
40961
40962         * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
40963         SA_NODEFER, SA_RESETHAND.
40964         * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
40965         O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
40966         F_DUPFD_CLOEXEC.
40967
40968 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40969
40970         * elf/Makefile (pldd-modules): Define unconditionally.
40971
40972 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40973
40974         * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
40975
40976 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40977
40978         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
40979         Return ENOENT when name is empty.
40980         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
40981
40982 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40983
40984         * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
40985
40986         * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
40987
40988 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40989
40990         Fix mlock in all cases except non-readable pages.
40991         * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
40992         instead of VM_PROT_ALL as parameter to __vm_wire function.
40993
40994         * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
40995         (__mkdir): When path is `/', just fail with EEXIST.
40996         * sysdeps/mach/hurd/mkdirat.c: Likewise.
40997
40998 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40999
41000         * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
41001         <sys/uio.h> (for writev).
41002         * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
41003         and <sys/param.h> (for MIN).
41004
41005 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
41006
41007         * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
41008         REQUESTED_TIME.  Properly set the remaining time and return EINTR
41009         if interrupted.
41010
41011 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41012
41013         * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
41014         Depend on against $(link-rpcuserlibs).
41015
41016 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41017
41018         * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
41019         (__libc_stack_end): Do not use attribute_relro.
41020         * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
41021         * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
41022         to libthread-provided value.
41023         * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
41024         attribute_relro.
41025
41026 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41027
41028         [BZ #3748]
41029         * bits/libc-lock.h (__libc_once_get): New macro.
41030         * sysdeps/mach/bits/libc-lock.h: Likewise.
41031         * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
41032         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
41033         instead of using implementation details.
41034
41035         * libio/fileops.c: Unconditionally include <kernel-features.h>.
41036         * libio/freopen.c: Likewise.
41037         * libio/freopen64.c: Likewise.
41038         * misc/syslog.c: Likewise.
41039         * nscd/connections.c: Likewise.
41040         * nscd/netgroupcache.c: Likewise.
41041         * sysdeps/posix/getcwd.c: Likewise.
41042
41043 2012-05-10  Roland McGrath  <roland@hack.frob.com>
41044
41045         * math/w_ilogbf.c: Add #include <limits.h>.
41046
41047 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41048
41049         * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
41050         path instead of returning without unlocking.
41051
41052         * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
41053         immediate-write ioctls.
41054         * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
41055
41056 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41057
41058         * sysdeps/mach/hurd/i386/init-first.c (init): Use
41059         __builtin_frame_address instead of making assumptions about the
41060         location of the return address relative to DATA.  Force early load of
41061         the return address.
41062         (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
41063         __builtin_frame_address.
41064
41065         dup3 for GNU Hurd.
41066         * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
41067         * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c.  Evolve it to
41068         implement dup3 and do some further code clean-ups.
41069         * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
41070         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
41071
41072 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41073
41074         * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
41075
41076         * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
41077         HURD_CRITICAL_END around holding _hurd_dtable_lock.
41078         * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
41079         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
41080         HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
41081         d->port.lock.
41082
41083         * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
41084         instead of setjmp/longjmp to restore the signal mask.  Call sigsetjmp
41085         when handler == SIG_ERR, not when handler != SIG_ERR.
41086
41087 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41088
41089         * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
41090         (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
41091         definitions.
41092
41093         accept4 for GNU Hurd.
41094         * include/sys/socket.h (__libc_accept4): New prototype.
41095         * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c.  Evolve it
41096         to implement __libc_accept4.
41097         * sysdeps/mach/hurd/accept.c (accept): Reimplement using
41098         __libc_accept4.
41099         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
41100
41101         * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
41102         * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
41103         * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
41104         signal-defines.sym.
41105
41106 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41107
41108         * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
41109
41110 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41111
41112         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
41113         assertion on O_CLOEXEC flag.
41114         * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
41115         * hurd/intern-fd.c: Likewise.
41116         * hurd/port2fd.c: Likewise.
41117
41118 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41119
41120         [BZ #3906]
41121         * bits/in.h (IPV6_PKTINFO): Define new macro.
41122         (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
41123
41124 2012-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41125
41126         [BZ #13954]
41127         [BZ #13955]
41128         [BZ #13956]
41129         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
41130         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
41131         * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
41132         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
41133         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
41134         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
41135         * math/libm-test.inc (logb_test) : Additional logb tests.
41136
41137 2012-05-09  Andreas Schwab  <schwab@linux-m68k.org>
41138             Andreas Jaeger  <aj@suse.de>
41139
41140         * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
41141         * configure: Regenerated.
41142         * config.h.in (LINK_OBSOLETE_RPC): New macro.
41143         * config.make.in (link-obsolete-rpc): New substituted variable.
41144         * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
41145         libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
41146         * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
41147         (shared-only-routines): Don't set it under [link-obsolete-rpc],
41148         so that libc.a contains the symbols.
41149         * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
41150         * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
41151         * sunrpc/auth_none.c: Likewise.
41152         * sunrpc/auth_unix.c: Likewise.
41153         * sunrpc/authdes_prot.c: Likewise.
41154         * sunrpc/authuxprot.c: Likewise.
41155         * sunrpc/clnt_gen.c: Likewise.
41156         * sunrpc/clnt_perr.c: Likewise.
41157         * sunrpc/clnt_raw.c: Likewise.
41158         * sunrpc/clnt_simp.c: Likewise.
41159         * sunrpc/clnt_tcp.c: Likewise.
41160         * sunrpc/clnt_udp.c: Likewise.
41161         * sunrpc/clnt_unix.c: Likewise.
41162         * sunrpc/des_crypt.c: Likewise.
41163         * sunrpc/des_soft.c: Likewise.
41164         * sunrpc/get_myaddr.c: Likewise.
41165         * sunrpc/key_call.c: Likewise.
41166         * sunrpc/key_prot.c: Likewise.
41167         * sunrpc/netname.c: Likewise.
41168         * sunrpc/pm_getmaps.c: Likewise.
41169         * sunrpc/pm_getport.c: Likewise.
41170         * sunrpc/pmap_clnt.c: Likewise.
41171         * sunrpc/pmap_prot.c: Likewise.
41172         * sunrpc/pmap_prot2.c: Likewise.
41173         * sunrpc/pmap_rmt.c: Likewise.
41174         * sunrpc/publickey.c: Likewise.
41175         * sunrpc/rpc_cmsg.c: Likewise.
41176         * sunrpc/rpc_common.c: Likewise.
41177         * sunrpc/rpc_dtable.c: Likewise.
41178         * sunrpc/rpc_prot.c: Likewise.
41179         * sunrpc/rpc_thread.c: Likewise.
41180         * sunrpc/rtime.c: Likewise.
41181         * sunrpc/svc.c: Likewise.
41182         * sunrpc/svc_auth.c: Likewise.
41183         * sunrpc/svc_raw.c: Likewise.
41184         * sunrpc/svc_run.c: Likewise.
41185         * sunrpc/svc_tcp.c: Likewise.
41186         * sunrpc/svc_udp.c: Likewise.
41187         * sunrpc/svc_unix.c: Likewise.
41188         * sunrpc/svcauth_des.c: Likewise.
41189         * sunrpc/xcrypt.c: Likewise.
41190         * sunrpc/xdr.c: Likewise.
41191         * sunrpc/xdr_array.c: Likewise.
41192         * sunrpc/xdr_float.c: Likewise.
41193         * sunrpc/xdr_intXX_t.c: Likewise.
41194         * sunrpc/xdr_mem.c: Likewise.
41195         * sunrpc/xdr_rec.c: Likewise.
41196         * sunrpc/xdr_ref.c: Likewise.
41197         * sunrpc/xdr_sizeof.c: Likewise.
41198         * sunrpc/xdr_stdio.c: Likewise.
41199
41200 2012-05-10  Roland McGrath  <roland@hack.frob.com>
41201
41202         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
41203         change.  Update copyright years.
41204
41205 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
41206
41207         * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
41208
41209 2012-05-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
41210             Joseph Myers  <joseph@codesourcery.com>
41211             Paul Pluzhnikov  <ppluzhnikov@google.com>
41212
41213         [BZ #14012]
41214         * sunrpc/Makefile [cross-compiling] (headers): Enable additions
41215         requiring rpcgen.
41216         [cross-compiling] (extra-libs): Likewise.
41217         [cross-compiling] (extra-libs-others): Likewise.
41218         [cross-compiling] (librpcsvc-routines): Likewise.
41219         [cross-compiling] (librpcsvc-inhibit-o): Likewise.
41220         [cross-compiling] (omit-deps): Likewise.
41221         (sunrpc-CPPFLAGS): New variable.
41222         (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
41223         (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
41224         (cross-rpcgen-objs): New variable.
41225         (extra-objs): Append $(cross-rpcgen-objs).
41226         ($(cross-rpcgen-objs)): New rule.
41227         ($(objpfx)cross-rpcgen): Likewise.
41228         (rpcgen-cmd): Define to use $(built-program-file).  Expand
41229         comment.
41230         ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
41231         ($(objpfx)x%.stmp): Likewise.
41232         * sunrpc/proto.h [IS_IN_build] (_): Define.
41233         [IS_IN_build] (_libc_intl_domainname): Likewise.
41234
41235 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
41236
41237         * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
41238         Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
41239         and R_X86_64_TPOFF64.
41240
41241 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
41242
41243         * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
41244         sysdeps/unix/sysv/syscalls.list.
41245         (stime): Likewise.
41246         (utime): Likewise.
41247         * sysdeps/unix/sysv/syscalls.list: Remove file.
41248
41249 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
41250
41251         [BZ #3440]
41252         * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
41253         (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
41254         (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
41255         (__LC_IDENTIFICATION): Make these macros useful in #if
41256         expressions, as required by C99.
41257
41258 2012-05-10  Andreas Schwab  <schwab@linux-m68k.org>
41259
41260         * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
41261         $(addsuffix .os,$(rpc-compat-routines)).  Move include ../Rules
41262         after this.
41263
41264 2012-05-09  H.J. Lu  <hongjiu.lu@intel.com>
41265
41266         * stdlib/longlong.h: Updated from GCC.
41267
41268 2012-05-09  Andreas Jaeger  <aj@suse.de>
41269
41270         * nscd/nscd.c (run_modes): Make named enum, reorder so that
41271         default is first entry.
41272         (run_mode): Set type.
41273         (main): Remove informal message about syslog.
41274         (options): Fix typo.
41275
41276         [BZ #14053]
41277         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
41278         to asm.
41279         (lrint): Likewise.
41280         (llrintf): Likewise.
41281         (llrint): Likewise.
41282         (rint): Likewise.
41283         (rintf): Likewise.
41284         (nearbyint): Likewise.
41285         (nearbyintf): Likewise.
41286
41287 2012-05-09  Andreas Jaeger  <aj@suse.de>
41288             Pedro Alves  <palves@redhat.com>
41289
41290         * nscd/nscd.c (run_mode): Use enum.
41291         (main): Cleanup coding style issue.
41292
41293 2012-05-09  Alexandre Oliva  <aoliva@redhat.com>
41294             Andreas Jaeger  <aj@suse.de>
41295
41296         * nscd/nscd.c (go_background): Replaced with...
41297         (run_mode): ... this.
41298         (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
41299         (options): Add -F --foreground.
41300         (main): Implement it.
41301         (parse_opt): Parse it.
41302
41303 2012-05-09  Andreas Jaeger  <aj@suse.de>
41304
41305         [BZ #14083]
41306         * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
41307         !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
41308         -Wconversion warning.
41309         (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
41310         Likewise.
41311
41312 2012-05-09  Joseph Myers  <joseph@codesourcery.com>
41313
41314         * conform/data/locale.h-data (NULL): Use macro-constant.  Require
41315         == 0.
41316         (LC_ALL): Use macro-int-constant.
41317         (LC_COLLATE): Likewise.
41318         (LC_CTYPE): Likewise.
41319         (LC_MESSAGES): Likewise.
41320         (LC_MONETARY): Likewise.
41321         (LC_NUMERIC): Likewise.
41322         (LC_TIME): Likewise.
41323         [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
41324         (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
41325         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41326         * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
41327         Specify type.
41328         [C99-based standards] (float_t): Expect type.
41329         [C99-based standards] (double_t): Expect type.
41330         [C99-based standards] (HUGE_VALF): Use macro-constant.  Specify
41331         type.
41332         [C99-based standards] (HUGE_VALL): Likewise.
41333         [C99-based standards] (INFINITY): Likewise.
41334         [C99-based standards] (NAN): Likewise.
41335         [C99-based standards] (FP_INFINITE): Use macro-int-constant.
41336         [C99-based standards] (FP_NAN): Likewise.
41337         [C99-based standards] (FP_NORMAL): Likewise.
41338         [C99-based standards] (FP_SUBNORMAL): Likewise.
41339         [C99-based standards] (FP_ZERO): Likewise.
41340         [C99-based standards] (FP_FAST_FMA): Use
41341         optional-macro-int-constant.  Specify type.  Require == 1.
41342         [C99-based standards] (FP_FAST_FMAF): Likewise.
41343         [C99-based standards] (FP_FAST_FMAL): Likewise.
41344         [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
41345         [C99-based standards] (FP_ILOGBNAN): Likewise.
41346         [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
41347         Specify type.
41348         [C99-based standards] (MATH_ERREXCEPT): Likewise.
41349         [C99-based standards] (math_errhandling): Specify type.
41350         [ISO99 || ISO11] (signgam): Do not allow.
41351         [non-C99-based standards] (copysignf): Do not allow.
41352         [non-C99-based standards] (exp2f): Likewise.
41353         [non-C99-based standards] (log2f): Likewise.
41354         [non-C99-based standards] (modff): Allow.
41355         [non-C99-based standards] (erff): Do not allow.
41356         [non-C99-based standards] (erfcf): Likewise.
41357         [non-C99-based standards] (gammaf): Likewise.
41358         [non-C99-based standards] (hypotf): Likewise.
41359         [non-C99-based standards] (j0f): Likewise.
41360         [non-C99-based standards] (j1f): Likewise.
41361         [non-C99-based standards] (jnf): Likewise.
41362         [non-C99-based standards] (lgammaf): Likewise.
41363         [non-C99-based standards] (tgammaf): Likewise.
41364         [non-C99-based standards] (y0f): Likewise.
41365         [non-C99-based standards] (y1f): Likewise.
41366         [non-C99-based standards] (ynf): Likewise.
41367         [non-C99-based standards] (isnanf): Likewise.
41368         [non-C99-based standards] (acoshf): Likewise.
41369         [non-C99-based standards] (asinhf): Likewise.
41370         [non-C99-based standards] (atanhf): Likewise.
41371         [non-C99-based standards] (cbrtf): Likewise.
41372         [non-C99-based standards] (expm1f): Likewise.
41373         [non-C99-based standards] (ilogbf): Likewise.
41374         [non-C99-based standards] (log1pf): Likewise.
41375         [non-C99-based standards] (logbf): Likewise.
41376         [non-C99-based standards] (nextafterf): Likewise.
41377         [non-C99-based standards] (remainderf): Likewise.
41378         [non-C99-based standards] (rintf): Likewise.
41379         [non-C99-based standards] (scalbf): Likewise.
41380         [non-C99-based standards] (copysignl): Likewise.
41381         [non-C99-based standards] (exp2l): Likewise.
41382         [non-C99-based standards] (log2l): Likewise.
41383         [non-C99-based standards] (modfl): Allow.
41384         [non-C99-based standards] (erfl): Do not allow.
41385         [non-C99-based standards] (erfcl): Likewise.
41386         [non-C99-based standards] (gammal): Likewise.
41387         [non-C99-based standards] (hypotl): Likewise.
41388         [non-C99-based standards] (j0l): Likewise.
41389         [non-C99-based standards] (j1l): Likewise.
41390         [non-C99-based standards] (jnl): Likewise.
41391         [non-C99-based standards] (lgammal): Likewise.
41392         [non-C99-based standards] (tgammal): Likewise.
41393         [non-C99-based standards] (y0l): Likewise.
41394         [non-C99-based standards] (y1l): Likewise.
41395         [non-C99-based standards] (ynl): Likewise.
41396         [non-C99-based standards] (isnanl): Likewise.
41397         [non-C99-based standards] (acoshl): Likewise.
41398         [non-C99-based standards] (asinhl): Likewise.
41399         [non-C99-based standards] (atanhl): Likewise.
41400         [non-C99-based standards] (cbrtl): Likewise.
41401         [non-C99-based standards] (expm1l): Likewise.
41402         [non-C99-based standards] (ilogbl): Likewise.
41403         [non-C99-based standards] (log1pl): Likewise.
41404         [non-C99-based standards] (logbl): Likewise.
41405         [non-C99-based standards] (nextafterl): Likewise.
41406         [non-C99-based standards] (remainderl): Likewise.
41407         [non-C99-based standards] (rintl): Likewise.
41408         [non-C99-based standards] (scalbl): Likewise.
41409         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41410         [non-C99-based standards] (FP_*): Do not allow.
41411         [C99-based standards] (FP_*): Change to
41412         FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
41413         * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41414         allow.
41415         * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
41416         (SIG_ERR): Likewise.
41417         [X/Open-based standards] (SIG_HOLD): Likewise.
41418         (SIG_IGN): Likewise.
41419         (SIGABRT): Use macro-int-constant.  Specify type.  Require
41420         positive value.
41421         (SIGFPE): Likewise.
41422         (SIGILL): Likewise.
41423         (SIGINT): Likewise.
41424         (SIGSEGV): Likewise.
41425         (SIGTER): Likewise.
41426         [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
41427         [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
41428         [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
41429         [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
41430         [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
41431         [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
41432         [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
41433         [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
41434         [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
41435         [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
41436         [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
41437         [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
41438         [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
41439         [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
41440         [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
41441         [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
41442         [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
41443         [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
41444         [X/Open-based standards] (SIGTRAP): Likewise.
41445         [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
41446         [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
41447         [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
41448         [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
41449         * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41450         allow.
41451
41452 2012-05-08  Ian Wienand  <ianw@vmware.com>
41453
41454         [BZ #14080]
41455         * time/tzset.c (__tzset_parse_tz): Update default rules for
41456         daylight time changes in the Energy Policy Act of 2005.
41457
41458 2012-05-09  Andreas Jaeger  <aj@suse.de>
41459
41460         [BZ #13983]
41461         * elf/ldconfig.c (parse_conf): Change string to make clear that
41462         ldconfig only issued a warning if ld.so.conf does not exist.
41463
41464 2012-05-08  David S. Miller  <davem@davemloft.net>
41465
41466         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
41467         movxtod instead of popping the value on the stack.
41468
41469         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41470
41471 2012-05-08  Carlos O'Donell  <carlos_odonell@mentor.com>
41472
41473         * config.h.in: Add HAVE_ARM_PCS_VFP.
41474
41475 2012-05-08  Roland Mc Grath  <roland@hack.frob.com>
41476
41477         [BZ #13979]
41478         * include/features.h: Warn if user requests __FORTIFY_SOURCE
41479         checking but the checks are disabled for any reason.
41480
41481 2012-05-08  H.J. Lu  <hongjiu.lu@intel.com>
41482
41483         * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
41484         and ELF64_R_TYPE with ELFW(R_TYPE).
41485
41486 2012-05-08  Joseph Myers  <joseph@codesourcery.com>
41487
41488         * sysdeps/unix/sysv/syscalls.list (pause): Remove.
41489         (ulimit): Likewise.
41490
41491         * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
41492         (settimeofday): Likewise.
41493
41494 2012-05-08  Mike Frysinger  <vapier@gentoo.org>
41495
41496         * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1.  Add
41497         a struct th_u2 inside the union, and move tu_block/tu_code into
41498         a new th_u3 union of tu_block/tu_code inside of that.  Move
41499         th_data[1] into the th_u2 as tu_data[0].  Change tu_stuff[1] to
41500         tu_stuff[0].  Add a new tu_padding[4] to keep sizeof() the same.
41501         (th_block): Change to th_u1.th_u2.th_u3.tu_block.
41502         (th_code): Change to th_u1.th_u2.th_u3.tu_code.
41503         (th_stuff): Change to th_u1.tu_stuff.
41504         (th_data): Define.
41505         (th_msg): Change to th_u1.th_u2.tu_data.
41506
41507 2012-05-07  David S. Miller  <davem@davemloft.net>
41508
41509         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41510
41511         [BZ #14074]
41512         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
41513         (SETUP_PIC_REG): Use it.
41514         (SETUP_PIC_REG_LEAF): Use it.
41515
41516 2012-05-07  Joseph Myers  <joseph@codesourcery.com>
41517
41518         [BZ #13885]
41519         [BZ #13923]
41520         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41521         USE_AS_EXPM1L.
41522         (EXPL_FINITE): Likewise.
41523         (FLDLOG): Likewise.
41524         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
41525         * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
41526         e_expl.S.
41527         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41528         USE_AS_EXPM1L.
41529         (EXPL_FINITE): Likewise.
41530         (FLDLOG): Likewise.
41531         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
41532         * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
41533         e_expl.S.
41534         * math/libm-test.inc (expm1_test): Add more tests.  Do not disable
41535         test of -max_value argument for long double.
41536         * sysdeps/i386/fpu/libm-test-ulps: Update.
41537         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41538
41539 2012-05-06  David S. Miller  <davem@davemloft.net>
41540
41541         * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
41542         quad soft-float symbols whose references which are compiler
41543         generated.
41544         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
41545
41546 2012-05-06  Joseph Myers  <joseph@codesourcery.com>
41547
41548         [BZ #13884]
41549         [BZ #13914]
41550         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41551         USE_AS_EXP10L.
41552         (EXPL_FINITE): Likewise.
41553         (FLDLOG): Likewise.
41554         (c0): Likewise.
41555         (c1): Likewise.
41556         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
41557         Adjust comments for base varying.
41558         (__expl_finite): Change alias to EXPL_FINITE.
41559         * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
41560         e_expl.S.
41561         * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
41562         * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
41563         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
41564         * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
41565         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41566         USE_AS_EXP10L.
41567         (EXPL_FINITE): Likewise.
41568         (FLDLOG): Likewise.
41569         (c0): Likewise.
41570         (c1): Likewise.
41571         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
41572         Adjust comments for base varying.
41573         (__expl_finite): Change alias to EXPL_FINITE.
41574         * math/libm-test.inc (exp10_test): Add more tests.  Do not disable
41575         tests for bugs.
41576         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
41577
41578         [BZ #14064]
41579         * math/libm-test.inc (check_float_internal): Correct ulp
41580         calculation for subnormal expected results.
41581
41582 2012-05-06  Andreas Jaeger  <aj@suse.de>
41583
41584         * Makeconfig (+math-flags): New, set to -frounding-math.
41585         (+cflags): Add +math-flags so that all of glibc gets compiled with
41586         it.
41587
41588         * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
41589
41590 2012-05-05  Joseph Myers  <joseph@codesourcery.com>
41591
41592         * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
41593         Disable one test.
41594
41595         [BZ #13787]
41596         [BZ #13922]
41597         [BZ #14036]
41598         * sysdeps/i386/fpu/e_expl.S (csat): New constant.
41599         (__ieee754_expl): Allow for and saturate large arguments.
41600         * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
41601         (u_threshold): Likewise.
41602         (__exp): Call __ieee754_exp before checking for overflow and
41603         underflow.
41604         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
41605         (u_threshold): Likewise.
41606         (__expf): Call __ieee754_expf before checking for overflow and
41607         underflow.
41608         * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
41609         (u_threshold): Likewise.
41610         (__expl): Call __ieee754_expl before checking for overflow and
41611         underflow.
41612         * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
41613         (__ieee754_expl): Allow for and saturate large arguments.
41614         * math/libm-test.inc (exp_test): Add another test.  Do not allow
41615         missing overflow exception on overflow.
41616         (expm1_test): Do not allow missing overflow exception on overflow.
41617
41618         * sysdeps/i386/fpu/e_expl.c: Move to ...
41619         * sysdeps/i386/fpu/e_expl.S: ... here.  Write directly in assembly
41620         rather than using inline asm.
41621         * sysdeps/x86_64/fpu/e_expl.c: Remove file.
41622         * sysdeps/x86_64/fpu/e_expl.S: Copy from
41623         sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
41624
41625         * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
41626         (nice): Likewise.
41627         (poll): Likewise.
41628         (signal): Likewise.
41629         (time): Likewise.
41630         (times): Likewise.
41631
41632 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41633
41634         * sysdeps/unix/syscalls.list (adjtime): Add entry from
41635         sysdeps/unix/common/syscalls.list.
41636         (fchmod): Likewise.
41637         (fchown): Likewise.
41638         (ftruncate): Likewise.
41639         (getrusage): Likewise.
41640         (gettimeofday): Likewise.
41641         (setpgid): Likewise.
41642         (setregid): Likewise.
41643         (setreuid): Likewise.
41644         (sigaction): Likewise.
41645         (truncate): Likewise.
41646         (vhangup): Likewise.
41647         * sysdeps/unix/common/syscalls.list: Remove file.
41648         * sysdeps/unix/bsd/Implies: Don't include unix/common.
41649         * sysdeps/unix/sysv/linux/Implies: Likewise.
41650
41651 2012-05-04  H.J. Lu  <hongjiu.lu@intel.com>
41652
41653         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
41654         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
41655         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
41656         Moved to ...
41657         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
41658         Here.
41659         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
41660         to ...
41661         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
41662         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
41663         to ...
41664         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
41665         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
41666         to ...
41667         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
41668         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
41669         to ...
41670         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
41671         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
41672         to ...
41673         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
41674         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
41675         to ...
41676         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
41677         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
41678         to ...
41679         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
41680         Here.
41681         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
41682         to ...
41683         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
41684         Here.
41685         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
41686         to ...
41687         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
41688         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
41689         Moved to ...
41690         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
41691         Here.
41692         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
41693         to ...
41694         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
41695
41696 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41697
41698         * sysdeps/unix/common/bits/dirent.h: Remove file.
41699         * sysdeps/unix/common/bits/fcntl.h: Likewise.
41700
41701         * sysdeps/unix/bsd/bits/dirent.h: Remove file.
41702         * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
41703         * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
41704         * sysdeps/unix/bsd/isatty.c: Likewise.
41705         * sysdeps/unix/bsd/tcdrain.c: Likewise.
41706         * sysdeps/unix/bsd/tcgetattr.c: Likewise.
41707         * sysdeps/unix/bsd/tcsetattr.c: Likewise.
41708
41709 2012-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41710
41711         [BZ #13563]
41712         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
41713         long double comparison inaccuracies.
41714         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
41715         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41716
41717 2012-05-04  Andreas Schwab  <schwab@linux-m68k.org>
41718
41719         * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
41720         * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
41721
41722 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41723
41724         [BZ #14049]
41725         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
41726         nonzero digits before rounding a hex value.
41727         * stdlib/tst-strtod.c (tests): Add another test.
41728
41729 2012-05-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
41730
41731         * sysdeps/s390/fpu/libm-test-ulps: Update.
41732
41733 2012-05-03  Andreas Jaeger  <aj@suse.de>
41734
41735         * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
41736         does not get optimized out.
41737         (malloc_opt_barrier): New.
41738
41739 2012-05-03  Andreas Jaeger  <aj@suse.de>
41740             Roland McGrath  <roland@hack.frob.com>
41741
41742         * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
41743         intermediate file deletion.
41744         (generated): Add .symlist files.
41745
41746 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
41747
41748         [BZ #13775]
41749         * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
41750         Redirect under this condition.
41751         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
41752         [__USE_GNU] (__dprintf_chk): Not under this condition.
41753         [__USE_GNU] (__vdprintf_chk): Likewise.
41754         * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
41755         under this condition.
41756         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
41757         [__USE_XOPEN2K8] (dprintf): Define under this condition.
41758         [__USE_XOPEN2K8] (vdprintf): Likewise.
41759         [__USE_GNU] (__dprintf_chk): Not under this condition.
41760         [__USE_GNU] (__vdprintf_chk): Likewise.
41761         [__USE_GNU] (dprintf): Likewise.
41762         [__USE_GNU] (vdprintf): Likewise.
41763
41764 2012-05-03  Roland McGrath  <roland@hack.frob.com>
41765
41766         * elf/Makefile (common-generated): Set this instead of generated for
41767         .dyn, .phdr, .jmprel files.  Remove $(common-objpfx) from the
41768         $(all-built-dso)-derived lists.
41769
41770 2012-05-03  Andreas Jaeger  <aj@suse.de>
41771
41772         * sysdeps/i386/fpu/libm-test-ulps: Update.
41773
41774         * FAQ: Removed.
41775         * FAQ.in: Likewise.
41776         * scripts/gen-FAQ.pl: Likewise.
41777         * manual/install.texi (Installation): Point to online location of
41778         FAQ.
41779         * Makefile (files-for-dist): Remove FAQ.
41780         (FAQ): Remove.
41781
41782 2012-05-02  Allan McRae  <allan@archlinux.org>
41783
41784         * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
41785         (LDFLAGS-reldepmod5.so): Likewise.
41786         (LDFLAGS-reldep6mod1.so): Likewise.
41787         (LDFLAGS-reldep6mod4.so): Likewise.
41788         (LDFLAGS-reldep8mod3.so): Likewise.
41789         (LDFLAGS-unload4mod1.so): Likewise.
41790         (LDFLAGS-unload4mod2.so): Likewise.
41791         (LDFLAGS-tst-initorder): Likewise.
41792         (LDFLAGS-tst-initordera2.so): Likewise.
41793         (LDFLAGS-tst-initordera3.so): Likewise.
41794         (LDFLAGS-tst-initordera4.so): Likewise.
41795         (LDFLAGS-tst-initorderb2.so): Likewise.
41796         (LDFLAGS-noload): Likewise.
41797         (LDFLAGS-next): Likewise.
41798         (LDFLAGS-order2mod1.so): Likewise.
41799         (LDFLAGS-order2mod2.so): Likewise.
41800         (LDFLAGS-tst-initorder2): Likewise.
41801         (LDFLAGS-tst-initorder2a.so): Likewise.
41802         (LDFLAGS-tst-initorder2b.so): Likewise.
41803         (LDFLAGS-tst-initorder2c.so): Likewise.
41804         * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
41805
41806 2012-05-02  David S. Miller  <davem@davemloft.net>
41807
41808         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41809
41810 2012-05-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
41811
41812         [BZ #14055]
41813         * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
41814
41815 2012-05-02  Andreas Jaeger  <aj@suse.de>
41816
41817         * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
41818         since we manipulate rounding mode.
41819         (CPPFLAGS-test-idouble.c): Likewise.
41820         (CPPFLAGS-test-ifloat.c): Likewise.
41821         (CFLAGS-test-ldouble.c): Likewise.
41822         (CFLAGS-test-double.c): Likewise.
41823         (CFLAGS-test-float.c): Likewise.
41824         (CFLAGS-test-misc.c): Likewise.
41825         (CFLAGS-test-test-fenv.c): Likewise.
41826
41827 2012-05-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41828
41829         [BZ #2550]
41830         [BZ #2570]
41831         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
41832         comparisons to determine direction to adjust input.
41833
41834 2012-05-01  Roland McGrath  <roland@hack.frob.com>
41835
41836         * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
41837         output to the target.
41838
41839         * scripts/localplt.awk: New file.
41840         * elf/Makefile ($(objpfx)check-localplt): Target removed.
41841         (check-localplt-CFLAGS): Variable removed.
41842         ($(all-built-dso:=.jmprel)): New static pattern rule.
41843         (generated): Add those targets.
41844         (localplt-built-dso): New variable.
41845         ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
41846
41847         * elf/check-localplt.c: File removed.
41848
41849         * scripts/check-execstack.awk: New file.
41850         * elf/Makefile ($(objpfx)check-execstack): Target removed.
41851         (check-execstack-CFLAGS): Variable removed.
41852         ($(objpfx)check-execstack.h): Target removed.
41853         ($(objpfx)execstack-default): New target.
41854         (generated): Add that instead of check-execstack.h.
41855         ($(all-built-dso:=.phdr)): New static pattern rule.
41856         (generated): Add those targets.
41857         * elf/check-execstack.c: File removed.
41858
41859         * scripts/check-textrel.awk: New file.
41860         * elf/Makefile ($(objpfx)check-textrel): Target removed.
41861         (check-textrel-CFLAGS): Variable removed.
41862         (all-built-dso): Use := to define.o
41863         ($(all-built-dso:=.dyn)): New static pattern rule.
41864         (generated): Add those targets.
41865         ($(objpfx)check-textrel.out): Use the script on the .dyn files.
41866         * config.make.in (READELF): New substituted variable.
41867         * elf/check-textrel.c: File removed.
41868
41869 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
41870
41871         * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41872         allow.
41873         * conform/data/ctype.h-data [C99-based standards] (isblank):
41874         Expect function.
41875         (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
41876         (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
41877         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41878         * conform/data/errno.h-data (EDOM): Use macro-int-constant.
41879         Specify type.  Require positive value.
41880         (EILSEQ): Likewise.
41881         (ERANGE): Likewise.
41882         [ISO || POSIX] (EILSEQ): Do not expect.
41883         [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
41884         Specify type.  Require positive value.
41885         [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
41886         [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
41887         [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
41888         [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
41889         [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
41890         [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
41891         [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
41892         [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
41893         [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
41894         [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
41895         [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
41896         [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
41897         [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
41898         [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
41899         [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
41900         [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
41901         [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
41902         [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
41903         [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
41904         [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
41905         [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
41906         [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
41907         [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
41908         [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
41909         [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
41910         [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
41911         [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
41912         [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
41913         [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
41914         [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
41915         [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
41916         [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
41917         [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
41918         [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
41919         [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
41920         [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
41921         [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
41922         [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
41923         [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
41924         [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
41925         [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
41926         [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
41927         [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
41928         [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
41929         [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
41930         [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
41931         [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
41932         [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
41933         [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
41934         [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
41935         [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
41936         [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
41937         [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
41938         [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
41939         [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
41940         [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
41941         [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
41942         [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
41943         [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
41944         [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
41945         [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
41946         [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
41947         [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
41948         [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
41949         [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
41950         [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
41951         [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
41952         [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
41953         [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
41954         [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
41955         [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
41956         [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
41957         [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
41958         [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
41959         [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
41960         [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
41961         * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
41962         Require >= 2.
41963         (FLT_ROUNDS): Expect as macro, not constant.
41964         (FLT_MANT_DIG): Use macro-int-constant.
41965         (DBL_MANT_DIG): Likewise.
41966         (LDBL_MANT_DIG): Likewise.
41967         (FLT_DIG): Likewise.
41968         (DBL_DIG): Likewise.
41969         (LDBL_DIG): Likewise.
41970         (FLT_MIN_EXP): Use macro-int-constant.  Require < 0.
41971         (DBL_MIN_EXP): Likewise.
41972         (LDBL_MIN_EXP): Likewise.
41973         (FLT_MAX_EXP): Use macro-int-constant.
41974         (DBL_MAX_EXP): Likewise.
41975         (LDBL_MAX_EXP): Likewise.
41976         (FLT_MAX_10_EXP): Likewise.
41977         (DBL_MAX_10_EXP): Likewise.
41978         (LDBL_MAX_10_EXP): Likewise.
41979         (FLT_MAX): Use macro-constant.
41980         (DBL_MAX): Likewise.
41981         (LDBL_MAX): Likewise.
41982         (FLT_EPSILON): Use macro-constant.  Give upper bound.
41983         (DBL_EPSILON): Likewise.
41984         (LDBL_EPSILON): Likewise.
41985         (FLT_MIN): Likewise.
41986         (DBL_MIN): Likewise.
41987         (LDBL_MIN): Likewise.
41988         [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
41989         [C99-based standards] (FLT_EVAL_METHOD): Likewise.
41990         [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
41991         [ISO11] (FLT_HAS_SUBNORM): Likewise.
41992         [ISO11] (LDBL_HAS_SUBNORM): Likewise.
41993         [ISO11] (DBL_DECIMAL_DIG): Likewise.
41994         [ISO11] (FLT_DECIMAL_DIG): Likewise.
41995         [ISO11] (LDBL_DECIMAL_DIG): Likewise.
41996         [ISO11] (DBL_TRUE_MIN): Use macro-constant.
41997         [ISO11] (FLT_TRUE_MIN): Likewise.
41998         [ISO11] (LDBL_TRUE_MIN): Likewise.
41999         [ISO || ISO99 || ISO11] (*_t): Do not allow.
42000         * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
42001         (SCHAR_MIN): Use macro-int-constant.  Specify type.
42002         (SCHAR_MAX): Likewise.
42003         (UCHAR_MAX): Likewise.
42004         (CHAR_MIN): Likewise.
42005         (CHAR_MAX): Likewise.
42006         (MB_LEN_MAX): Use macro-int-constant.
42007         (SHRT_MIN): Use macro-int-constant.  Specify type.
42008         (SHRT_MAX): Likewise.
42009         (USHRT_MAX): Likewise.
42010         (INT_MAX): Likewise.
42011         (INT_MIN): Use macro-int-constant.  Specify type.  Make upper
42012         bound negative.
42013         (UINT_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42014         bound with "U".
42015         (LONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42016         bound with "L".
42017         (LONG_MIN): Use macro-int-constant.  Specify type.  Make upper
42018         bound negative.  Suffix upper bound with "L".
42019         (ULONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42020         bound with "UL".
42021         [C99-based standards] (LLONG_MIN): Use macro-int-constant.
42022         Specify type.
42023         [C99-based standards] (LLONG_MAX): Likewise.
42024         [C99-based standards] (ULLONG_MAX): Likewise.
42025         * conform/data/stddef.h-data (NULL): Use macro-constant.  Require
42026         == 0.
42027         [ISO11] (max_align_t): Require type.
42028         [ISO || ISO99 || ISO11] (*_t): Do not allow.
42029
42030         * conform/conformtest.pl ($CFLAGS_namespace): Define separately
42031         from $CFLAGS, without defining away __attribute__ calls.
42032         (checknamespace): Use $CFLAGS_namespace.
42033
42034         * conform/conformtest.pl (@keywords): Only include C99 keywords
42035         for standards based on C99 or C11.
42036
42037         * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
42038         Disable tests.
42039         * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
42040         UNIX98]: Likewise.
42041
42042         * conform/conformtest.pl: Handle "macro-int-constant" and test for
42043         usability of symbols in #if.
42044
42045         * conform/conformtest.pl: If macro or constant types start
42046         "promoted:", expect the symbol to be of the following type
42047         promoted by the integer promotions.
42048
42049         * conform/conformtest.pl: Parse all "constant" and "macro" lines
42050         in one place.  Also handle "macro-constant".
42051
42052         * conform/conformtest.pl: Only accept expected macro values with
42053         "==".  Parse all "macro" lines in one place.
42054         * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
42055
42056         * conform/conformtest.pl: Handle braced types on "constant" lines
42057         instead of handling "typed-constant".
42058         * conform/data/signal.h-data: Use "constant" instead of
42059         "typed-constant".
42060
42061         * conform/conformtest.pl: Handle "optional-" at start of lines in
42062         one place rather than duplicating several cases.  Handle each
42063         format of "macro" line with initial "optional-".
42064
42065         * conform/conformtest.pl: Only accept expected constant or
42066         optional-constant values with "==".  Parse all "constant" lines in
42067         one place.  Parse all "optional-constant" lines in one place.
42068         * conform/data/cpio.h-data: Use "==" form on "constant" lines.
42069         * conform/data/fmtmsg.h-data: Likewise.
42070         * conform/data/netinet/in.h-data: Likewise.
42071         * conform/data/tar.h-data: Likewise.
42072         * conform/data/limits.h-data: Use "==" form on "constant" and
42073         "optional-constant" lines.
42074
42075         * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
42076         Use -std=c99 for XOPEN2K.
42077         (@knownproblems): Remove.
42078         (newtoken): Don't check %isknown.
42079
42080         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
42081         Do not expect macro.
42082         [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
42083         [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
42084         [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
42085         [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
42086         [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
42087         [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
42088         [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
42089         [XPG3 || XPG4 || UNIX98] (isless): Likewise.
42090         [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
42091         [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
42092         [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
42093         [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
42094         [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
42095         [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
42096         [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
42097         [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
42098         [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
42099         [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
42100         [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
42101         [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
42102         [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
42103         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
42104         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
42105         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
42106         [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
42107         [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
42108         [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
42109         [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
42110         [XPG3 || XPG4 || UNIX98] (log2): Likewise.
42111         [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
42112         [XPG3] (acosh): Likewise.
42113         [XPG3] (asinh): Likewise.
42114         [XPG3] (atanh): Likewise.
42115         [XPG3] (cbrt): Likewise.
42116         [XPG3] (expm1): Likewise.
42117         [XPG3] (ilogb): Likewise.
42118         [XPG3] (log1p): Likewise.
42119         [XPG3] (logb): Likewise.
42120         [XPG3] (nextafter): Likewise.
42121         [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
42122         [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
42123         [XPG3] (remainder): Likewise.
42124         [XPG3] (rint): Likewise.
42125         [XPG3 || XPG4 || UNIX98] (round): Likewise.
42126         [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
42127         [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
42128         [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
42129         [XPG3 || XPG4 || UNIX98] (lround): Likewise.
42130         [XPG3 || XPG4 || UNIX98] (llround): Likewise.
42131         [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
42132         [UNIX98 || XOPEN2K] (scalb): Expect.
42133         [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
42134         [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
42135         [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
42136         [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
42137         [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
42138         [XPG3 || XPG4 || UNIX98] (fma): Likewise.
42139         [XPG3 || XPG4 || UNIX98] (nan): Likewise.
42140         [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
42141         [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
42142         [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
42143         [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
42144         [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
42145         [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
42146         [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
42147         [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
42148         [XPG3 || XPG4 || UNIX98] (expf): Likewise.
42149         [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
42150         [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
42151         [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
42152         [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
42153         [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
42154         [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
42155         [XPG3 || XPG4 || UNIX98] (logf): Likewise.
42156         [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
42157         [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
42158         [XPG3 || XPG4 || UNIX98] (modff): Likewise.
42159         [XPG3 || XPG4 || UNIX98] (powf): Likewise.
42160         [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
42161         [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
42162         [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
42163         [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
42164         [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
42165         [XPG3 || XPG4 || UNIX98] (erff): Likewise.
42166         [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
42167         [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
42168         [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
42169         [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
42170         [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
42171         [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
42172         [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
42173         [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
42174         [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
42175         [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
42176         [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
42177         [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
42178         [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
42179         [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
42180         [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
42181         [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
42182         [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
42183         [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
42184         [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
42185         [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
42186         [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
42187         [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
42188         [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
42189         [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
42190         [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
42191         [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
42192         [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
42193         [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
42194         [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
42195         [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
42196         [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
42197         [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
42198         [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
42199         [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
42200         [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
42201         [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
42202         [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
42203         [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
42204         [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
42205         [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
42206         [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
42207         [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
42208         [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
42209         [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
42210         [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
42211         [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
42212         [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
42213         [XPG3 || XPG4 || UNIX98] (expl): Likewise.
42214         [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
42215         [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
42216         [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
42217         [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
42218         [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
42219         [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
42220         [XPG3 || XPG4 || UNIX98] (logl): Likewise.
42221         [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
42222         [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
42223         [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
42224         [XPG3 || XPG4 || UNIX98] (powl): Likewise.
42225         [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
42226         [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
42227         [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
42228         [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
42229         [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
42230         [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
42231         [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
42232         [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
42233         [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
42234         [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
42235         [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
42236         [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
42237         [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
42238         [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
42239         [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
42240         [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
42241         [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
42242         [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
42243         [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
42244         [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
42245         [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
42246         [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
42247         [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
42248         [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
42249         [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
42250         [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
42251         [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
42252         [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
42253         [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
42254         [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
42255         [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
42256         [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
42257         [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
42258         [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
42259         [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
42260         [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
42261         [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
42262         [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
42263         [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
42264         [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
42265         [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
42266         [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
42267         [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
42268         [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
42269         [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
42270
42271         * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
42272         _XOPEN_SOURCE_EXTENDED for XPG4.
42273
42274         * conform/conformtest.pl: Handle "symbol" lines for allow-header.
42275
42276         * Makeconfig (localtime): Remove variable.
42277         (inst_localtime-file): Likewise.
42278
42279 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
42280
42281         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
42282         Update.
42283         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
42284         Update.
42285         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
42286         Update.
42287         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
42288         Update.
42289         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
42290         Update.
42291         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
42292         Update.
42293         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
42294         Update.
42295         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
42296         Update.
42297         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
42298         Update.
42299
42300 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
42301
42302         [BZ #2550]
42303         [BZ #2570]
42304         * math/s_nexttowardf.c (__nexttowardf): Use floating-point
42305         comparisons to determine direction to adjust input.
42306         * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
42307         * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
42308         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
42309         Likewise.
42310         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
42311         Likewise.
42312         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
42313         Likewise.
42314         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
42315         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
42316         Likewise.
42317         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
42318         Likewise.
42319         * math/libm-test.inc (nexttoward_test): Add more tests.
42320
42321 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
42322
42323         [BZ #14040]
42324         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
42325         in version GLIBC_2.1, not GLIBC_2.0.
42326         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
42327         Likewise.
42328
42329 2012-04-30  Joseph Myers  <joseph@codesourcery.com>
42330
42331         [BZ #13942]
42332         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
42333         (1 - x) * (1 + x).
42334         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
42335         * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
42336         * math/libm-test.inc (acos_test): Add more tests.
42337         (asin_test): Likewise.
42338         * sysdeps/i386/fpu/libm-test-ulps: Update.
42339         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42340
42341         [BZ #14034]
42342         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
42343         of square root.
42344         * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
42345         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
42346         * math/libm-test.inc (acos_test_tonearest): New function.
42347         (acos_test_towardzero): Likewise.
42348         (acos_test_downward): Likewise.
42349         (acos_test_upward): Likewise.
42350         (asin_test_tonearest): Likewise.
42351         (asin_test_towardzero): Likewise.
42352         (asin_test_downward): Likewise.
42353         (asin_test_upward): Likewise.
42354         (main): Call the new functions.
42355         * sysdeps/i386/fpu/libm-test-ulps: Update.
42356         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
42357
42358         [BZ #13884]
42359         [BZ #13924]
42360         * math/e_exp10.c: Include <float.h>.
42361         (__ieee754_exp10): Handle underflow here rather than multiplying
42362         large negative argument by M_LN10.
42363         * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
42364         of __ieee754_expf.
42365         * math/e_exp10l.c: Include <float.h>.
42366         (__ieee754_exp10l): Handle underflow here rather than multiplying
42367         large negative argument by M_LN10l.
42368         * math/libm-test.inc (exp10_test): Add another test.  Do not allow
42369         spurious overflow exception on underflow.
42370
42371 2012-04-29  Marek Polacek  <polacek@redhat.com>
42372
42373         * misc/sys/cdefs.h (__attribute_artificial__): New macro.
42374         (__fortify_function): New macro.
42375         (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
42376         * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
42377         __extern_always_inline.
42378         * libio/bits/stdio2.h: Likewise.
42379         * libio/bits/stdio.h: Likewise.
42380         * string/string.h: Likewise.
42381         * string/bits/string3.h: Likewise.
42382         * include/stdio.h: Likewise.
42383         * stdlib/bits/stdlib.h: Likewise.
42384         * stdlib/stdlib.h: Likewise.
42385         * rt/bits/mqueue2.h: Likewise.
42386         * rt/mqueue.h: Likewise.
42387         * posix/bits/unistd.h: Likewise.
42388         * posix/unistd.h: Likewise.
42389         * io/bits/poll2.h: Likewise.
42390         * io/bits/fcntl2.h: Likewise.
42391         * io/fcntl.h: Likewise.
42392         * io/sys/poll.h: Likewise.
42393         * misc/bits/syslog.h: Likewise.
42394         * misc/bits/syslog-ldbl.h: Likewise.
42395         * misc/sys/syslog.h: Likewise.
42396         * socket/bits/socket2.h: Likewise.
42397         * socket/sys/socket.h: Likewise.
42398         * debug/tst-chk1.c: Likewise.
42399         * wcsmbs/bits/wchar2.h: Likewise.
42400         * wcsmbs/bits/wchar-ldbl.h: Likewise.
42401         * wcsmbs/wchar.h: Likewise.
42402
42403 2012-04-29  Andreas Jaeger  <aj@suse.de>
42404
42405         * Makerules (tests): Remove enable-check-abi protection.
42406         (check-abi-warn): Remove.
42407         (check-abi-%): Remove check-abi-warn usage.
42408
42409         * configure.in: Remove check-abi configure option.
42410         * configure: Regenerated.
42411         * config.make.in (enable-check-abi): Remove.
42412
42413 2012-04-28  Andreas Schwab  <schwab@linux-m68k.org>
42414
42415         [BZ #14033]
42416         * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
42417         double functions to double *_finite functions.
42418
42419         [BZ #13941]
42420         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
42421         (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
42422         LDBL_MIN_EXP.
42423         * stdio-common/Makefile (tests): Add tst-sprintf3.
42424         * stdio-common/tst-sprintf3.c: New file.
42425
42426         * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
42427         ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
42428
42429 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
42430
42431         * conform/conformtest.pl: Remove duplicate typed-constant
42432         handling.
42433
42434 2012-04-28  David S. Miller  <davem@davemloft.net>
42435
42436         * Makerules (%.abilist): Add vpath on sysdep_dirs.
42437         (check-abi-%): Remove AWK script prerequisite and explicit
42438         abilist directory.
42439         (check-abi): Rewrite to just diff the symlist with the abilist.
42440         (config-tls, config-abi-config): Delete, no longer used.
42441         (update-abi-%): Remove AWK script and explicit abilist directory.
42442         (update-abi): Rewrite to simply compare and conditionally copy the
42443         symlist and the sysdep abilist file.  Remove update-abi-config
42444         checks.
42445         * abilist/ld.abilist: Remove.
42446         * abilist/libBrokenLocale.abilist: Remove.
42447         * abilist/libanl.abilist: Remove.
42448         * abilist/libcrypt.abilist: Remove.
42449         * abilist/libdl.abilist: Remove.
42450         * abilist/librt.abilist: Remove.
42451         * abilist/libthread_db.abilist: Remove.
42452         * abilist/libutil.abilist: Remove.
42453         * scripts/extract-abilist.awk: Remove.
42454         * scripts/merge-abilist.awk: Remove.
42455         * sysdeps/generic/libcidn.abilist: New file.
42456         * sysdeps/generic/libnss_compat.abilist: New file.
42457         * sysdeps/generic/libnss_db.abilist: New file.
42458         * sysdeps/generic/libnss_dns.abilist: New file.
42459         * sysdeps/generic/libnss_files.abilist: New file.
42460         * sysdeps/generic/libnss_hesiod.abilist: New file.
42461         * sysdeps/generic/libnss_nis.abilist: New file.
42462         * sysdeps/generic/libnss_nisplus.abilist: New file.
42463         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
42464         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
42465         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
42466         file.
42467         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
42468         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
42469         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
42470         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
42471         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
42472         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
42473         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
42474         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
42475         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
42476         file.
42477         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
42478         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
42479         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
42480         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
42481         file.
42482         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
42483         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
42484         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
42485         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
42486         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
42487         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
42488         file.
42489         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
42490         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
42491         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
42492         file.
42493         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
42494         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
42495         New file.
42496         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
42497         New file.
42498         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
42499         New file.
42500         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
42501         New file.
42502         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
42503         New file.
42504         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
42505         New file.
42506         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
42507         New file.
42508         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
42509         New file.
42510         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
42511         New file.
42512         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
42513         New file.
42514         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
42515         New file.
42516         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
42517         New file.
42518         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
42519         New file.
42520         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
42521         file.
42522         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
42523         New file.
42524         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
42525         New file.
42526         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
42527         file.
42528         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
42529         New file.
42530         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
42531         New file.
42532         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
42533         file.
42534         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
42535         New file.
42536         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
42537         New file.
42538         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
42539         New file.
42540         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
42541         New file.
42542         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
42543         New file.
42544         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
42545         New file.
42546         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
42547         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
42548         file.
42549         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
42550         New file.
42551         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
42552         file.
42553         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
42554         file.
42555         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
42556         file.
42557         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
42558         file.
42559         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
42560         file.
42561         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
42562         New file.
42563         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
42564         file.
42565         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
42566         file.
42567         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
42568         New file.
42569         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
42570         file.
42571         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
42572         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
42573         file.
42574         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
42575         New file.
42576         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
42577         file.
42578         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
42579         file.
42580         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
42581         file.
42582         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
42583         file.
42584         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
42585         file.
42586         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
42587         New file.
42588         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
42589         file.
42590         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
42591         file.
42592         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
42593         New file.
42594         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
42595         file.
42596         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
42597         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
42598         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
42599         file.
42600         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
42601         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
42602         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
42603         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
42604         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
42605         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
42606         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
42607         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
42608         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
42609         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
42610         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
42611         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
42612         file.
42613         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
42614         New file.
42615         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
42616         file.
42617         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
42618         file.
42619         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
42620         file.
42621         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
42622         file.
42623         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
42624         file.
42625         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
42626         New file.
42627         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
42628         New file.
42629         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
42630         file.
42631         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
42632         New file.
42633         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
42634         file.
42635         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
42636         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
42637         file.
42638         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
42639         New file.
42640         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
42641         file.
42642         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
42643         file.
42644         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
42645         file.
42646         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
42647         file.
42648         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
42649         file.
42650         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
42651         New file.
42652         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
42653         New file.
42654         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
42655         file.
42656         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
42657         New file.
42658         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
42659         file.
42660
42661 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
42662
42663         * conform/conformtest.pl: Fix typo in handling typed-constant from
42664         allow-header.
42665
42666 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
42667
42668         * README: Cut down references to pre-2.6 Linux kernels and
42669         Linuxthreads.  Update lists of configurations in libc and ports
42670         and sort alphabetically.  Say "or newer" with Linux kernel version
42671         requirements.
42672
42673         * config.h.in [IS_IN_build]: Allow compiling without optimization.
42674
42675 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
42676
42677         [BZ #887]
42678         * math/libm-test.inc (logb_test_downward): New test to expose
42679         erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
42680         rounding mode.
42681
42682 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
42683
42684         [BZ #14027]
42685         * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
42686         to be done.
42687         * math/fraiseexcpt.c (__feraiseexcept): Likewise.
42688         * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
42689
42690 2012-04-26  Joseph Myers  <joseph@codesourcery.com>
42691
42692         * sysdeps/unix/i386/brk.S: Remove file.
42693         * sysdeps/unix/i386/dl-brk.S: Likewise.
42694         * sysdeps/unix/i386/pipe.S: Likewise.
42695         * sysdeps/unix/i386/sigreturn.S: Likewise.
42696         * sysdeps/unix/i386/syscall.S: Likewise.
42697         * sysdeps/unix/i386/vfork.S: Likewise.
42698         * sysdeps/unix/i386/wait.S: Likewise.
42699
42700         * sysdeps/unix/common/tcsendbrk.c: Move to ...
42701         * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
42702
42703         * configure.in (arm*-none*): Do not allow without
42704         --enable-hacker-mode.
42705         (netbsd*): Remove case setting base_os.
42706         (386bsd*): Likewise.
42707         (freebsd*): Likewise.
42708         (bsdi*): Likewise.
42709         (osf*): Likewise.
42710         (sunos*): Likewise.
42711         (ultrix*): Likewise.
42712         (newsos*): Likewise.
42713         (dynix*): Likewise.
42714         (*bsd*): Likewise.
42715         (sysv*): Likewise.
42716         (isc*): Likewise.
42717         (esix*): Likewise.
42718         (sco*): Likewise.
42719         (minix*): Likewise.
42720         (irix4*): Likewise.
42721         (irix6*): Likewise.
42722         (solaris[2-9]*): Likewise.
42723         (none): Likewise.
42724         * configure: Regenerated.
42725
42726 2012-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42727
42728         [BZ #11521]
42729         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
42730         overflow or cancellation in calculating denominator.
42731         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
42732         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
42733         down expression to avoid unexpected rounding in newer GCCs.
42734         * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
42735
42736 2012-04-26  David S. Miller  <davem@davemloft.net>
42737
42738         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
42739         long-double compat symbols.
42740         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
42741         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
42742         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
42743         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
42744         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
42745         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
42746         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
42747         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
42748         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
42749         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
42750         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
42751         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
42752         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
42753
42754 2012-04-25  David S. Miller  <davem@davemloft.net>
42755
42756         * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
42757         HWCAP_* values only after the memory barriers have been defined.
42758         (atomic_full_barrier): Define.
42759         (atomic_read_barrier): Define.
42760         (atomic_write_barrier): Define.
42761
42762 2012-04-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
42763
42764         * shlib-versions: Add libgcc_s version information.
42765         * sysdeps/generic/libgcc_s.h: Remove.
42766         * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
42767         libgcc_s.h.
42768         * sysdeps/gnu/unwind-resume.c: Likewise.
42769         * scripts/test-installation.pl: Remove libgcc_s from link_libs.
42770
42771 2012-04-25  David S. Miller  <davem@davemloft.net>
42772
42773         * sysdeps/unix/sparc/brk.S: Delete.
42774         * sysdeps/unix/sparc/dl-brk.S: Delete.
42775         * sysdeps/unix/sparc/pipe.S: Delete.
42776         * sysdeps/unix/sparc/sysdep.S: Delete.
42777         * sysdeps/unix/sparc/sysdep.h: Delete.
42778         * sysdeps/unix/sparc/vfork.S: Delete.
42779         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
42780         (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
42781         * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
42782         (ret_ERRVAL, r0, r1, MOVE): Define.
42783         (JUMPTARGET): Remove.
42784         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
42785         sysdeps/unix/sparc/sysdep.h
42786         (ENTRY, END): Remove.
42787         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
42788
42789 2012-04-25  Joseph Myers  <joseph@codesourcery.com>
42790
42791         * Makerules (native-compile): Use $(BUILD_LDFLAGS).
42792         (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
42793         -DIS_IN_build.
42794
42795         * timezone/README: Update upstream location and email address for
42796         tzcode and tzdata.
42797         * timezone/zdump.c: Update from tzcode 2012b.
42798         * timezone/zic.c: Likewise.
42799
42800         * configure.in (libc_cv_as_needed): Remove test.
42801         * configure: Regenerated.
42802         * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
42803         conditional definition.
42804         [$(have-as-needed) != yes] (no-as-needed): Likewise.
42805         [$(have-as-needed) != yes] (libgcc_eh): Likewise.
42806         * config.make.in (have-as-needed): Remove variable.
42807
42808 2012-04-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
42809             Paul Pluzhnikov  <ppluzhnikov@google.com>
42810
42811         * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
42812         strings correctly.
42813
42814 2012-04-25  Chung-Lin Tang  <cltang@codesourcery.com>
42815
42816         * sysdeps/sh/memcpy.S: Remove include of endian.h, change
42817         preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
42818         * sysdeps/sh/strlen.S: Likewise.
42819
42820 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42821
42822         * sysdeps/unix/fork.S: Remove file.
42823         * sysdeps/unix/i386/fork.S: Likewise.
42824         * sysdeps/unix/sparc/fork.S: Likewise.
42825
42826         * sysdeps/unix/system.c: Remove file.
42827         * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
42828
42829         * sysdeps/unix/getegid.S: Remove file.
42830         * sysdeps/unix/geteuid.S: Likewise.
42831
42832 2012-04-24  Roland McGrath  <roland@hack.frob.com>
42833
42834         * scripts/check-localplt.awk: New file.
42835         * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
42836         of diff.
42837         * scripts/data/localplt-generic.data: Add a comment.
42838
42839         * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
42840         NODE when __dir_mkfile failed.
42841         * sysdeps/mach/hurd/symlinkat.c: Likewise.
42842         Reported by Ludovic Courtès <ludo@gnu.org>.
42843
42844 2012-04-24  Andreas Jaeger  <aj@suse.de>
42845
42846         * Makerules (common-clean): Also remove gen-as-const-headers
42847         files.
42848
42849 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42850
42851         * Makerules (native-compile): Do not change working directory for
42852         build.  Use $(OUTPUT_OPTION) in command.
42853         (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
42854
42855 2012-04-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42856
42857         [BZ #13886]
42858         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
42859         sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
42860         * math/libm-test.inc (floor_test): Add more tests.
42861         * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
42862
42863 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42864
42865         * sysdeps/unix/getdents.c: Remove file.
42866         * sysdeps/unix/sysv/getdents.c: Likewise.
42867         * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
42868
42869         * sysdeps/unix/syscalls.list (madvise): Add syscall from
42870         sysdeps/unix/mman/syscalls.list.
42871         (mmap): Likewise.
42872         (mprotect): Likewise.
42873         (msync): Likewise.
42874         (munmap): Likewise.
42875         * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
42876         * sysdeps/unix/mman/syscalls.list: Remove.
42877         * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
42878
42879         * configure.in (libc_cv_libgcc_s_suffix): Remove test.
42880         (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
42881         * configure: Regenerated.
42882         * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
42883         $(libgcc_s_suffix).
42884         * config.make.in (libgcc_s_suffix): Remove variable.
42885
42886 2012-04-23  Joseph Myers  <joseph@codesourcery.com>
42887
42888         * sysdeps/unix/sysv/gethostname.c: Move to ...
42889         * sysdeps/posix/gethostname.c: ... here.
42890
42891         * sysdeps/unix/execve.S: Remove file.
42892
42893         * sysdeps/unix/_exit.S: Remove file.
42894
42895 2012-04-23  Andreas Jaeger  <aj@suse.de>
42896
42897         [BZ #13739]
42898         * manual/Makefile: Remove make dist support, there's no
42899         need for a stand-alone documentation tar ball.
42900         (TEXI2DVI): Define always, it's not in Makeconfig.
42901         (dist): Removed.
42902         (tar-it): Removed.
42903         (edition): Removed.
42904         (glibc-doc-$(edition).tar): Removed
42905         (%.Z): Removed.
42906         (%.gz): Removed.
42907         (%.uu): Removed.
42908         (ETAGS): Remove, it's in Makeconfig.
42909         (move-if-change): Remove, it's in Makeconfig.
42910
42911 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
42912
42913         [BZ #13970]
42914         * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
42915         (strtod, strtof, strtold, strtol, strtoul, strtoq)
42916         (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
42917         (strtod_l, strtof_l, strtold_l): Remove __wur.
42918         It is not necessarily an error to ignore strtol's return value.
42919         One can reliably look at the stored endptr to decide whether
42920         the number had valid syntax.
42921
42922 2012-04-21  Andreas Jaeger  <aj@suse.de>
42923
42924         [BZ #13739]
42925         * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
42926
42927 2012-04-21  Joseph Myers  <joseph@codesourcery.com>
42928
42929         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
42930         * sysdeps/unix/sysv/Versions: Remove file.
42931
42932 2012-04-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
42933
42934         [BZ #13927]
42935         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
42936
42937 2012-04-21  Nick Alcock  <nick.alcock@oracle.com>
42938
42939         [BZ #7064]
42940         * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
42941         version from __vm86.
42942
42943 2012-04-20  Joseph Myers  <joseph@codesourcery.com>
42944
42945         * sysdeps/unix/common/lxstat.c: Remove file.
42946         * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
42947
42948         * sysdeps/unix/sysv/Makefile: Remove file.
42949
42950         * sysdeps/unix/sysv/direct.h: Remove file.
42951
42952         * sysdeps/unix/sysv/bits/dirent.h: Remove file.
42953         * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
42954         * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
42955         * sysdeps/unix/sysv/bits/signum.h: Likewise.
42956         * sysdeps/unix/sysv/bits/stat.h: Likewise.
42957         * sysdeps/unix/sysv/bits/utmp.h: Likewise.
42958         * sysdeps/unix/sysv/bits/utsname.h: Likewise.
42959
42960         * sysdeps/unix/sysv/setrlimit.c: Remove file.
42961
42962         * sysdeps/unix/xmknod.c: Remove file.
42963         * sysdeps/unix/syscalls.list (sys_mknod): Remove.
42964
42965         * sysdeps/unix/sysv/settimeofday.c: Remove file.
42966
42967         * sysdeps/unix/sysv/i386/time.S: Remove file.
42968
42969         * sysdeps/unix/fxstat.c: Remove file.
42970         * sysdeps/unix/xstat.c: Likewise.
42971         * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
42972
42973         * sysdeps/unix/sysv/sigaction.c: Remove file.
42974
42975         * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
42976         (sysdep_headers): Remove variable.
42977         [termio.h not in sysdep_headers] (generated): Likewise.
42978         [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
42979         * sysdeps/unix/sysv/sysv_termio.h: Remove file.
42980         * sysdeps/unix/sysv/tcdrain.c: Likewise.
42981         * sysdeps/unix/sysv/tcflow.c: Likewise.
42982         * sysdeps/unix/sysv/tcflush.c: Likewise.
42983         * sysdeps/unix/sysv/tcgetattr.c: Likewise.
42984         * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
42985         * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
42986         * sysdeps/unix/sysv/tcsetattr.c: Likewise.
42987         * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
42988
42989         * sysdeps/unix/siglist.c: Remove file.
42990
42991         * sysdeps/unix/getppid.S: Remove file.
42992
42993         * sysdeps/unix/mkdir.c: Remove file.
42994         * sysdeps/unix/rmdir.c: Likewise.
42995
42996 2012-04-19  Andreas Schwab  <schwab@linux-m68k.org>
42997
42998         * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
42999         ERR_MAX value.
43000         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
43001         errlist-compat value.
43002
43003 2012-04-18  David S. Miller  <davem@davemloft.net>
43004
43005         * sysdeps/generic/memcopy.h (reg_char): Delete.
43006         * debug/strcat_chk.c: Use char, not reg_char.
43007         * debug/strcpy_chk.c: Likewise.
43008         * debug/strncat_chk.c: Likewise.
43009         * debug/strncpy_chk.c: Likewise.
43010         * string/memchr.c: Likewise.
43011         * string/memrchr.c: Likewise.
43012         * string/rawmemchr.c: Likewise.
43013         * string/strcat.c: Likewise.
43014         * string/strchr.c: Likewise.
43015         * string/strchrnul.c: Likewise.
43016         * string/strcmp.c: Likewise.
43017         * string/strcpy.c: Likewise.
43018         * string/strncat.c: Likewise.
43019         * string/strncmp.c: Likewise.
43020         * string/strncpy.c: Likewise.
43021
43022 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43023
43024         * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
43025         __builtin_memcopy is called when src and dest ranges are known to not
43026         overlap.
43027
43028 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43029
43030         * sysdeps/powerpc/powerpc64/power6/wordcopy.c
43031         (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
43032         fwd_align_merge macro call.
43033         (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
43034         bwd_align_merge macro call.
43035         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
43036
43037 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43038
43039         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
43040         bwd_align_merge macros.
43041         (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
43042         (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
43043         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
43044
43045 2012-04-18  David S. Miller  <davem@davemloft.net>
43046
43047         * sysdeps/sparc/sparc64/memcopy.h: Delete.
43048
43049 2012-04-18  Andreas Jaeger  <aj@suse.de>
43050
43051         [BZ# 6794]
43052         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
43053         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
43054         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43055
43056         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
43057         * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
43058         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43059
43060         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
43061         * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
43062         Adjust for changed ldbl-128 files.
43063
43064         * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
43065         * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
43066         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43067
43068 2012-04-17  David S. Miller  <davem@davemloft.net>
43069
43070         * sysdeps/sparc/sparc32/memcopy.h: Delete.
43071
43072 2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
43073
43074         * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
43075         * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
43076         * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
43077         * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
43078         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
43079         * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
43080
43081 2012-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
43082
43083         [BZ #6794]
43084         * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
43085         * math/libm-test.inc: Add ilogb errno and exception tests.
43086         * math/w_ilogb.c: New file: ilogb wrapper.
43087         * math/w_ilogbf.c: New file: ilogbf wrapper.
43088         * math/w_ilogbl.c: New file: ilogbl wrapper.
43089         * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
43090         * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
43091         * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
43092         exception being thrown with 0.0 as argument.
43093         * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
43094         * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
43095         exception being thrown with 0.0 as argument.
43096         * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
43097         * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
43098         exception being thrown with 0.0 as argument.
43099         * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
43100         * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
43101         exception being thrown with 0.0 as argument.
43102         * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
43103         * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
43104         * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
43105         * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
43106         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
43107         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
43108         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
43109         * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
43110         * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
43111
43112 2012-04-17  Petr Baudis  <pasky@ucw.cz>
43113
43114         * include/sys/uio.h: Change __vector to __iovec to avoid clash
43115         with altivec.
43116
43117 2012-04-16  Marek Polacek  <polacek@redhat.com>
43118
43119         * elf/pldd-xx.c: Rename static_assert to pldd_assert.
43120
43121 2012-04-16  Marek Polacek  <polacek@redhat.com>
43122
43123         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
43124         operands of fdivp instruction.
43125
43126 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
43127
43128         * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
43129         * elf/tst-auditmod3b.c: Likewise.
43130         * elf/tst-auditmod4b.c: Likewise.
43131         * elf/tst-auditmod5b.c: Likewise.
43132         * elf/tst-auditmod6b.c: Likewise.
43133         * elf/tst-auditmod6c.c: Likewise.
43134         * elf/tst-auditmod7b.c: Likewise.
43135         * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
43136         * sysdeps/x86_64/preconfigure.in: Likewise.
43137         * sysdeps/x86_64/preconfigure: Regenerated.
43138
43139 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
43140
43141         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
43142         __ILP32__.
43143
43144 2012-04-13  Antoine Balestrat <merkil33@gmail.com>
43145
43146         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
43147         (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
43148
43149 2012-04-13  Chris Leonard  <cjlhomeaddress@gmail.com>
43150
43151         [BZ #13973]
43152         * locale/iso-639.def: Fix gl language name. Spotted by
43153         Yaron Shahrabani.
43154
43155 2012-04-12  Roland McGrath  <roland@hack.frob.com>
43156
43157         [BZ #2074]
43158         * libio/libio.h (__io_write_fn): Update comment.
43159
43160 2012-04-12  Petr Baudis  <pasky@ucw.cz>
43161
43162         [BZ #2074]
43163         * stdio.texi (Hook Functions): The user provided writer function
43164         is not allowed to return -1.
43165
43166 2012-04-11  David S. Miller  <davem@davemloft.net>
43167
43168         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43169
43170 2012-04-11  Mike Frysinger  <vapier@gentoo.org>
43171
43172         * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
43173         Add a leading slash to rtkaio.
43174
43175 2012-04-11  Jim Meyering  <meyering@redhat.com>
43176
43177         [BZ #11959]
43178         * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
43179         It is not necessarily an error to ignore fwrite's return
43180         value.  One can reliably use ferror to test for errors after
43181         the fact.
43182
43183 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
43184
43185         * bits/types.h (__snseconds_t): New type.
43186         * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
43187
43188         * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
43189         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
43190         (__SNSECONDS_T_TYPE): Likewise.
43191         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
43192         (__SNSECONDS_T_TYPE): Likewise.
43193         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
43194         (__SNSECONDS_T_TYPE): Likewise.
43195
43196 2012-04-10  Andreas Jaeger  <aj@suse.de>
43197
43198         [BZ #2636]
43199         * manual/time.texi (Processor Time): Return type of times is
43200         elapsed real time since an arbitrary point in the past.
43201         (CPU Time): Move CLK_TCK from here...
43202         (Processor Time): ...to here.  Correct description.
43203         * manual/conf.texi (Constants for Sysconf): Correct description of
43204         _SC_CLK_TCK.
43205
43206 2012-04-10  David S. Miller  <davem@davemloft.net>
43207
43208         [BZ #13967]
43209         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
43210         where the is a gap between DT_REL(A) and DT_JMPREL.
43211
43212 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
43213
43214         * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
43215         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
43216         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
43217
43218 2012-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
43219
43220         * elf/dl-support.c (_dl_inhibit_cache): New variable.
43221         * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
43222         (dl_main): Handle --inhibit-cache.
43223         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
43224         _dl_inhibit_cache.
43225         * elf/dl-load.c (_dl_map_object): Use it.
43226         * elf/Makefile: Define SYSCONFDIR when building rtld.c.
43227
43228 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
43229
43230         [BZ #13872]
43231         * sysdeps/i386/fpu/e_powl.S (p78): New object.
43232         (__ieee754_powl): Saturate large exponents rather than testing for
43233         overflow of y*log2(x).
43234         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
43235         * math/libm-test.inc (pow_test): Do not permit spurious overflow
43236         exceptions.
43237
43238         [BZ #11521]
43239         * math/s_ctan.c: Include <float.h>.
43240         (__ctan): Avoid internal overflow or cancellation in calculating
43241         denominator.
43242         * math/s_ctanf.c: Likewise.
43243         * math/s_ctanl.c: Likewise.
43244         * math/s_ctanh.c: Likewise.
43245         * math/s_ctanhf.c: Likewise.
43246         * math/s_ctanhl.c: Likewise.
43247         * math/libm-test.inc (ctan_test): Add more tests.
43248         (ctanh_test): Likewise.
43249         * sysdeps/i386/fpu/libm-test-ulps: Update.
43250         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43251
43252 2012-04-09  Andreas Jaeger  <aj@suse.de>
43253
43254         [BZ #6894]
43255         * manual/filesys.texi (Directory Entries): Mention that d_namlen
43256         is an optional BSD extension.
43257
43258         [BZ #10254]
43259         * manual/stdio.texi (Opening Streams): Document additional fopen
43260         parameters.
43261
43262 2012-04-09  Roland McGrath  <roland@hack.frob.com>
43263
43264         * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
43265         %eax without telling the compiler.
43266
43267 2012-04-09  Carlos O'Donell  <carlos_odonell@mentor.com>
43268
43269         [BZ # 13963]
43270         * manual/install.texi: Use sourceware.org.
43271
43272 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
43273
43274         [BZ #13873]
43275         * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
43276         (__ieee754_pow): Generate overflow and underflow using huge*huge
43277         and tiny*tiny rather than just returning constant infinity or zero
43278         for large exponents.
43279         * math/libm-test.inc (pow_test): Require overflow exceptions for
43280         applicable cases of large exponents.
43281
43282         [BZ #706]
43283         * sysdeps/i386/fpu/e_pow.S (p10): New object.
43284         (__ieee754_pow): Use iterative multiplication algorithm only for
43285         integer exponents with absolute value below 1024.  Check for odd
43286         integer exponents when using algorithm for real exponents.
43287         * math/libm-test.inc (pow_test): Add more tests.
43288         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
43289
43290 2012-04-08  Joseph Myers  <joseph@codesourcery.com>
43291
43292         [BZ #13705]
43293         * math/libm-test.inc (exp_test): Do not allow overflow exception
43294         on underflow test.
43295
43296 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
43297
43298         [BZ #13705]
43299         * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
43300         instead of __kernel_standard_f.
43301
43302 2012-04-08  Mike Frysinger  <vapier@gentoo.org>
43303
43304         * sysdeps/i386/i686/memset_chk.S: Update copyright year.
43305         * sysdeps/x86_64/memset_chk.S: Likewise.
43306
43307 2012-04-08  Andreas Jaeger  <aj@suse.de>
43308
43309         [BZ #10153]
43310         * manual/startup.texi (Environment Access): Describe return value
43311         for putenv and setenv.
43312
43313         [BZ #6895]
43314         * manual/filesys.texi (Directory Entries): Add description for
43315         DT_LNK.
43316
43317         [BZ #6890]
43318         * manual/filesys.texi (Directory Entries): Clarify that it's file
43319         system not operating system in the description of DT_UNKNOWN.
43320
43321         [BZ #6578]
43322         * manual/syslog.texi (closelog): Fix reference, it's openlog.
43323
43324 2012-04-08  Stephen Compall  <s11@member.fsf.org>
43325
43326         [BZ #6649]
43327         * manual/llio.texi (Opening and Closing Files): Add cross
43328         reference to explain mode argument.
43329
43330 2012-04-07  Mike Frysinger  <vapier@gentoo.org>
43331
43332         * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
43333         * sysdeps/x86_64/memset_chk.S: Likewise.
43334
43335 2012-04-07  David S. Miller  <davem@davemloft.net>
43336
43337         * elf/elf.h (R_SPARC_WDISP10): Define.
43338         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
43339         R_SPARC_SIZE32.
43340         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
43341         R_SPARC_SIZE64 and R_SPARC_H34.
43342
43343 2012-04-07  Carlos O'Donell  <carlos_odonell@mentor.com>
43344
43345         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
43346         conditions and remove no longer applicable assertion.
43347
43348 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
43349
43350         * bits/byteswap.h: Include <features.h>.
43351         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
43352         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
43353
43354 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
43355
43356         * bits/byteswap.h (__bswap_16): Removed.
43357         Include <bits/byteswap-16.h> to get __bswap_16.
43358         * sysdeps/i386/bits/byteswap.h: Likewise.
43359         * sysdeps/s390/bits/byteswap.h: Likewise.
43360         * sysdeps/x86_64/bits/byteswap.h: Likewise.
43361         * bits/byteswap-16.h: New file.
43362         * sysdeps/i386/bits/byteswap-16.h: Likewise.
43363         * sysdeps/s390/bits/byteswap-16.h: Likewise.
43364         * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
43365         * string/Makefile (headers): Add bits/byteswap-16.h.
43366
43367 2012-04-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
43368
43369         [BZ #13895]
43370         * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
43371         extra indirection.
43372         * nss/Makefile (tests-static, tests): Add tst-nss-static.
43373         * nss/tst-nss-static.c: New.
43374
43375 2012-04-06  Robert Millan  <rmh@gnu.org>
43376
43377         [BZ #6486]
43378         * manual/llio.texi (File Position Primitive): lseek
43379         refers to WHENCE when it really means OFFSET.
43380
43381 2012-04-06  Andreas Jaeger  <aj@suse.de>
43382
43383         * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
43384         strncmp declarations.
43385
43386         * abilist/libc.abilist: Add __poll and __ppoll.
43387
43388 2012-04-05  David S. Miller  <davem@davemloft.net>
43389
43390         * scripts/check-local-headers.sh: Accept a host triplet in the
43391         path matched by the exclude regexp.
43392
43393         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
43394         definition.
43395         * sysdeps/powerpc/powerpc32/dl-machine.h
43396         (ELF_MACHINE_PLTREL_OVERLAP): Delete.
43397         * sysdeps/s390/s390-32/dl-machine.h
43398         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43399         * sysdeps/sparc/sparc32/dl-machine.h
43400         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43401         * sysdeps/sparc/sparc64/dl-machine.h
43402         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43403
43404         * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
43405         lazy binding.
43406         * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
43407         undefined symbol errors.
43408
43409         * elf/rtld.c (dl_main): Skip VDSO when checking for unused
43410         DT_NEEDED entries.
43411
43412 2012-04-05  Michael Matz  <matz@suse.de>
43413
43414         [BZ #13592]
43415         * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
43416
43417 2012-04-05  Andreas Jaeger  <aj@suse.de>
43418
43419         [BZ #13908]
43420         * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
43421         comment.
43422
43423 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43424
43425         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
43426         which ROUND is no valid rounding mode.
43427
43428 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43429
43430         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
43431         read again.
43432         * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
43433
43434 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43435
43436         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
43437         an exception using FPU order intentionally.
43438
43439 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43440
43441         * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
43442         * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
43443         * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
43444         * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
43445
43446 2012-04-05  Simon Josefsson  <simon@josefsson.org>
43447
43448         [BZ #12340]
43449         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
43450         EINVAL when BUFLEN is too smal.
43451
43452 2012-04-05  Thomas Schwinge  <thomas@codesourcery.com>
43453
43454         [BZ #13553]
43455         * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
43456         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
43457
43458 2012-04-03  Andreas Jaeger  <aj@suse.de>
43459
43460         [BZ #13938]
43461         * manual/setjmp.texi (System V contexts): Fix sentence.
43462
43463         [BZ #13926]
43464         * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
43465         New macro for this case.
43466         [!__GNUC__] (__bswap_64): New inline function for this case.
43467         * sysdeps/x86_64/bits/byteswap.h: Likewise.
43468         * bits/byteswap.h: Likewise.
43469         * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
43470         ull, guard with __GLIBC_HAVE_LONG_LONG.
43471
43472         * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
43473         __GLIBC_HAVE_LONG_LONG.
43474
43475         * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
43476         Include <features.h> for __GLIBC_HAVE_LONG_LONG.
43477
43478 2012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
43479
43480         [BZ #13691]
43481         * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
43482         inptr and inend, rather than using last_ch.
43483
43484 2012-04-02  David S. Miller  <davem@davemloft.net>
43485
43486         With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
43487         * stdio-common/printf-parse.h (read_int): Change return type to
43488         'int', return -1 on INT_MAX overflow.
43489         * stdio-common/vfprintf.c (vfprintf): Validate width and precision
43490         against overflow of INT_MAX.  Set errno to EOVERFLOW when 'done'
43491         overflows INT_MAX.  Check for overflow of in-format-string precision
43492         values properly.  Use EOVERFLOW rather than ERANGE throughout.  Use
43493         SIZE_MAX not INT_MAX for integer overflow test.
43494         * stdio-common/printf-parsemb.c: If read_int signals an overflow,
43495         skip the construct in the format string but do not record anything.
43496         * stdio-common/bug22.c: Adjust to test both width/prevision
43497         INT_MAX overflow as well as total length INT_MAX overflow.  Check
43498         explicitly for proper errno values.
43499
43500 2012-04-02  Thomas Schwinge  <thomas@codesourcery.com>
43501
43502         * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
43503         CHAR_MAX.
43504         * string/test-strcmp.c [! WIDE]: Likewise.
43505         * time/tst-mktime2.c: Likewise for INT_MAX.
43506         * string/test-string.h: #include <sys/param.h> for MIN.
43507
43508         * csu/init-first.c (__libc_init_first): Call __ctype_init.
43509         * sysdeps/i386/init-first.c (init): Likewise.
43510         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
43511         * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
43512         * sysdeps/sh/init-first.c (init): Likewise.
43513
43514 2012-04-01  Ulrich Drepper  <drepper@gmail.com>
43515
43516         * po/ru.po: Update from translation team.
43517         * po/vi.po: Likewise.
43518
43519 2012-03-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
43520
43521         * resolv/nss_dns/dns-host.c: Merge copyright years.
43522
43523 2012-03-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43524
43525         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
43526         Optimize memcpy with prefetch if
43527         DATA_CACHE_SIZE_HALF <= len <  SHARED_CACHE_SIZE_HALF and
43528         src, dst pointers have unequal 16 byte alignments.
43529
43530 2012-03-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
43531
43532         [BZ #13928]
43533         * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
43534         from a CNAME entry and return the minimum ttl for the query.
43535         (gaih_getanswer_slice): Likewise.
43536
43537 2012-03-30  Jeff Law  <law@redhat.com>
43538
43539         * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
43540         due to long keys.
43541         * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
43542         * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
43543
43544         * resolv/nss_dns/dns-host.c: Update copyright year.
43545
43546 2012-03-30  Ulrich Drepper  <drepper@gmail.com>
43547
43548         * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
43549         requests to save a system call.  Fix check that all bytes are sent.
43550
43551         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
43552         comments for sendmmsg.
43553
43554 2012-03-30  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
43555
43556         [BZ #13691]
43557         * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
43558         with only 1 character between 0x0041 and 0x01b0.
43559         * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
43560         * wcsmbs/tst-mbsnrtowcs.c: New file.
43561
43562 2012-03-29  David S. Miller  <davem@davemloft.net>
43563
43564         * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
43565         small copies by hand.
43566
43567 2012-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
43568
43569         [BZ #13761]
43570         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
43571         (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
43572         group memberships.
43573
43574 2012-03-28  David S. Miller  <davem@davemloft.net>
43575
43576         * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
43577         that branches into memcpy.
43578         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
43579         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
43580         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
43581         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
43582         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
43583         bits.
43584         * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
43585         implementation too.
43586         * sysdeps/sparc/mempcpy.S: New file.
43587
43588         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
43589         the IFUNC routine in the libc case.
43590         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
43591
43592         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
43593         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
43594         * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
43595         * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
43596         * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
43597         * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
43598         * sysdeps/sparc/sparc64/rtld-memset.c: New file.
43599         * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
43600
43601         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
43602         loop to 256 bytes instead of 64 bytes and fix test signedness.
43603
43604         * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
43605         * sysdeps/sparc/sparc32/Makefile: rather than here...
43606         * sysdeps/sparc/sparc64/Makefile: and here.
43607
43608 2012-03-28  Ulrich Drepper  <drepper@gmail.com>
43609
43610         * malloc/mallocbug.c: Avoid warnings about unused variables.
43611
43612 2012-02-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
43613
43614         [BZ #13760]
43615         * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
43616         in the right place. Discard and retry query if response is
43617         larger than input buffer size.
43618
43619 2012-03-28  Joseph Myers  <joseph@codesourcery.com>
43620
43621         [BZ #369]
43622         [BZ #2678]
43623         [BZ #3866]
43624         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
43625         x for large integer exponent.
43626         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
43627         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.  Adjust
43628         sign of result as needed afterwards.
43629         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
43630         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
43631         result for underflowing pow the same as for overflow.
43632         (__kernel_standard_l): Handle powl overflow and underflow here
43633         rather than calling __kernel_standard.
43634         * math/libm-test.inc (pow_test): Add more tests.
43635
43636         [BZ #3868]
43637         [BZ #13879]
43638         [BZ #13910]
43639         [BZ #13911]
43640         [BZ #13912]
43641         [BZ #13913]
43642         [BZ #13915]
43643         [BZ #13916]
43644         [BZ #13917]
43645         [BZ #13918]
43646         [BZ #13919]
43647         [BZ #13920]
43648         [BZ #13921]
43649         * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
43650         * sysdeps/ieee754/k_standard.c: Include <float.h>.
43651         (__kernel_standard_l): New function.
43652         * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
43653         __kernel_standard.
43654         * math/w_acosl.c (__acosl): Likewise.
43655         * math/w_asinl.c (__asinl): Likewise.
43656         * math/w_atan2l.c (__atan2l): Likewise.
43657         * math/w_atanhl.c (__atanhl): Likewise.
43658         * math/w_coshl.c (__coshl): Likewise.
43659         * math/w_exp10l.c (__exp10l): Likewise.
43660         * math/w_exp2l.c (__exp2l): Likewise.
43661         * math/w_fmodl.c (__fmodl): Likewise.
43662         * math/w_hypotl.c (__hypotl): Likewise.
43663         * math/w_j0l.c (__j0l, __y0l): Likewise.
43664         * math/w_j1l.c (__j1l, __y1l): Likewise.
43665         * math/w_jnl.c (__jnl, __ynl): Likewise.
43666         * math/w_lgammal.c (__lgammal): Likewise.
43667         * math/w_log10l.c (__log10l): Likewise.
43668         * math/w_log2l.c (__log2l): Likewise.
43669         * math/w_logl.c (__logl): Likewise.
43670         * math/w_powl.c (__powl): Likewise.
43671         * math/w_remainderl.c (__remainderl): Likewise.
43672         * math/w_scalbl.c (sysv_scalbl): Likewise.
43673         * math/w_sinhl.c (__sinhl): Likewise.
43674         * math/w_sqrtl.c (__sqrtl): Likewise.
43675         * math/w_tgammal.c (__tgammal): Likewise.
43676         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
43677         * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
43678         * math/libm-test.inc (acos_test): Add more tests.
43679         (acosh_test): Likewise.
43680         (asin_test): Likewise.
43681         (atanh_test): Likewise.
43682         (exp_test): Likewise.
43683         (exp10_test): Likewise.
43684         (exp2_test): Likewise.
43685         (expm1_test): Likewise.
43686         (lgamma_test): Likewise.
43687         (log_test): Likewise.
43688         (log10_test): Likewise.
43689         (log1p_test): Likewise.
43690         (log2_test): Likewise.
43691         (pow_test): Do not allow some spurious overflow exceptions.
43692         (sqrt_test): Add more tests.
43693         (tgamma_test): Likewise.
43694         (y0_test): Likewise.
43695         (y1_test): Likewise.
43696         (yn_test): Likewise.
43697
43698 2012-03-27  Anton Blanchard  <anton@samba.org>
43699
43700         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
43701         MAP_HUGETLB.
43702         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
43703         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
43704         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
43705
43706 2012-03-27  David S. Miller  <davem@davemloft.net>
43707
43708         * conform/Makefile: Run run-conformtest.sh using $(BASH).
43709
43710         * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
43711         have-as-vis3 check.
43712
43713 2012-03-27  Andreas Jaeger  <aj@suse.de>
43714
43715         * sysdeps/x86_64/elf/configure.in: Moved to ...
43716         * sysdeps/x86_64/configure.in: ... here.
43717         * sysdeps/x86_64/elf/start.S: Moved to ...
43718         * sysdeps/x86_64/start.S: ... here.
43719         * sysdeps/x86_64/elf/configure: Delete.
43720
43721         * sysdeps/x86_64/configure.in: Merge contents from
43722         sysdeps/i386/configure.in (without i686 check).
43723
43724         * sysdeps/i386/elf/Versions: Merge into ...
43725         * sysdeps/i386/Versions: ... this.
43726         * sysdeps/i386/elf/Versions: Delete file.
43727         * sysdeps/i386/elf/start.S: Moved to ...
43728         * sysdeps/i386/start.S: ...here.
43729         * sysdeps/i386/elf/configure.in: Merge into...
43730         * sysdeps/i386/configure.in: ...here.
43731         * sysdeps/i386/elf/configure.in: Delete file.
43732         * sysdeps/i386/elf/configure: Delete file.
43733
43734         * sysdeps/generic/elf/backtracesyms.c: Moved to ...
43735         * debug/backtracesyms.c: ... here.
43736         * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
43737         * debug/backtracesymsfd.c: ... here.
43738         * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
43739         * sysdeps/generic/ifunc-sel.h: ... here.
43740
43741         * sysdeps/unix/i386/start.c: Delete file.
43742         * sysdeps/unix/sparc/start.c: Delete file.
43743         * sysdeps/unix/start.c: Delete file.
43744
43745         * sysdeps/sh/elf/configure.in: Moved to ...
43746         * sysdeps/sh/configure.in: ... here.
43747         * sysdeps/sh/elf/start.S: Moved to ...
43748         * sysdeps/sh/start.S: ... here.
43749         * sysdeps/sh/elf/configure: Delete file.
43750
43751         * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
43752         * sysdeps/powerpc/powerpc64/bzero.S: ... here.
43753         * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
43754         * sysdeps/powerpc/powerpc64/entry.h: ... here.
43755         * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
43756         * sysdeps/powerpc/powerpc64/start.S: here.
43757         * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
43758         * sysdeps/powerpc/powerpc64/Makefile: ... this.
43759         * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
43760         * sysdeps/powerpc/powerpc64/configure.in: ... this.
43761         * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
43762
43763         * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
43764         * sysdeps/powerpc/powerpc32/bzero.S: ... here.
43765         * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
43766         * sysdeps/powerpc/powerpc32/start.S: ... here.
43767         * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
43768         * sysdeps/powerpc/powerpc32/configure.in: ... this.
43769         * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
43770
43771         * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
43772         * sysdeps/powerpc/ifunc-sel.h: ... here.
43773         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
43774         * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
43775
43776         * sysdeps/sparc/elf/configure.in: Moved to ...
43777         * sysdeps/sparc/configure.in: ... here.
43778         * sysdeps/sparc/elf/configure: Delete file.
43779         * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
43780         * sysdeps/sparc/sparc32/start.S: ... here.
43781         * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
43782         * sysdeps/sparc/sparc64/start.S: ... here.
43783         * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
43784         * sysdeps/sparc/sparc32/Makefile: ... this.
43785         * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
43786         * sysdeps/sparc/sparc64/Makefile: ... this.
43787
43788         * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
43789         * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
43790         * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
43791         * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
43792         * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
43793         * sysdeps/s390/s390-32/setjmp.S: ... here.
43794         * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
43795         * sysdeps/s390/s390-32/configure.in: ... here.
43796         * sysdeps/s390/s390-32/elf/configure: Delete file.
43797         * sysdeps/s390/s390-32/elf/start.S: Moved to ...
43798         * sysdeps/s390/s390-32/start.S: ... here.
43799
43800         * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
43801         * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
43802         * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
43803         * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
43804         * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
43805         * sysdeps/s390/s390-64/setjmp.S: ... here.
43806         * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
43807         * sysdeps/s390/s390-64/configure.in: ... here
43808         * sysdeps/s390/s390-64/elf/configure: Delete file.
43809         * sysdeps/s390/s390-64/elf/start.S: Moved to ...
43810         * sysdeps/s390/s390-64/start.S: ... here.
43811         * sysdeps/s390/s390-64/elf/configure: Delete.
43812
43813         * configure.in: Remove support for elf directories in sysdeps.
43814
43815         * configure: Regenerated.
43816         * sysdeps/i386/configure: Regenerated.
43817         * sysdeps/powerpc/powerpc32/configure: Regenerated.
43818         * sysdeps/powerpc/powerpc64/configure: Regenerated.
43819         * sysdeps/s390/s390-32/configure: Regenerated.
43820         * sysdeps/s390/s390-64/configure: Regenerated.
43821         * sysdeps/sh/configure: Regenerated.
43822         * sysdeps/sparc/configure: Regenerated.
43823         * sysdeps/x86_64/configure: Regenerated.
43824
43825 2012-03-26  Andreas Schwab  <schwab@linux-m68k.org>
43826
43827         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43828
43829         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
43830         denormal result into account.
43831
43832 2012-03-25  Roland McGrath  <roland@hack.frob.com>
43833
43834         * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
43835         Reported by Allan McRae <allan@archlinux.org>.
43836
43837 2012-03-23  Jeff Law  <law@redhat.com>
43838
43839         * nss/getnssent.c (__nss_getent): Fix typo.
43840
43841 2012-03-23  David S. Miller  <davem@davemloft.net>
43842
43843         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43844
43845 2012-03-23  H.J. Lu  <hongjiu.lu@intel.com>
43846
43847         * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
43848         to pad to uint64_t for each field.
43849         (dl_tls_index): Replace unsigned long with uint64_t.
43850
43851 2012-03-23  Daniel Jacobowitz  <dmj@google.com>
43852         Paul Pluzhnikov  <ppluzhnikov@google.com>
43853
43854         [BZ #6528]
43855         * grp/Makefile (otherlibs): Don't set it.
43856         * inet/Makefile (otherlibs): Likewise.
43857         * login/Makefile (otherlibs): Likewise.
43858         * nscd/Makefile (otherlibs): Likewise.
43859         * posix/Makefile (otherlibs): Likewise.
43860         * pwd/Makefile (otherlibs): Likewise.
43861         * rt/Makefile (otherlibs): Likewise.
43862         * sunrpc/Makefile (otherlibs): Likewise.
43863         * nss/Makefile (otherlibs): Likewise.
43864         Add libnss_files to routines and static-only-routines.
43865         ($(objpfx)getent): Remove rule.
43866         * resolv/Makefile: Add libnss_dns and libresolv to routines and
43867         static-only-routines.
43868
43869 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
43870
43871         [BZ #13892]
43872         * math/s_cexp.c: Include <float.h>.
43873         (__cexp): Handle exp result overflowing not necessarily
43874         overflowing both real and imaginary parts of result.
43875         * math/s_cexpf.c: Likewise.
43876         * math/s_cexpl.c: Likewise.
43877         * math/libm-test.inc (cexp_test): Add more tests.
43878         * sysdeps/i386/fpu/libm-test-ulps: Update.
43879         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43880
43881 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43882
43883         * include/link.h (ELFW): New macro.
43884         * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
43885         Replace ELF64_R_TYPE with ELFW(R_TYPE).
43886
43887 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43888
43889         * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
43890         with uint64_t.
43891
43892 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43893
43894         * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
43895         declaration.
43896         (struct La_x32_retval): Likewise.
43897
43898 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43899
43900         * sysdeps/x86_64/preconfigure.in: New file.
43901         * sysdeps/x86_64/preconfigure: New generated file.
43902
43903 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
43904
43905         [BZ #13824]
43906         * math/e_exp2l.c: Include <float.h>.
43907         (__ieee754_exp2l): Handle overflow and underflow cases
43908         separately.  Only pass fractional part of argument to
43909         __ieee754_expl.
43910         * math/libm-test.inc (exp2_test): Add more tests.
43911
43912         * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
43913         negating x to take absolute value.
43914         * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
43915         Likewise.
43916         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
43917         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
43918         Likewise.
43919         * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
43920         computing low part if x was negated.
43921         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
43922
43923 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43924
43925         * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
43926         la_x32_gnu_pltexit.
43927         (pltexit): Cast int_retval to ptrdiff_t.
43928         * elf/tst-auditmod3b.c: Likewise.
43929         * elf/tst-auditmod4b.c: Likewise.
43930         * elf/tst-auditmod5b.c: Likewise.
43931         * elf/tst-auditmod6b.c: Likewise.
43932         * elf/tst-auditmod6c.c: Likewise.
43933         * elf/tst-auditmod7b.c: Likewise.
43934
43935         * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
43936         and x32_gnu_pltexit.
43937
43938         * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
43939         __ELF_NATIVE_CLASS.
43940         (La_x32_regs): New macro.
43941         (La_x32_retval): Likewise.
43942         (la_x32_gnu_pltenter): New function prototype.
43943         (la_x32_gnu_pltexit): Likewise.
43944
43945 2012-03-21  Andreas Schwab  <schwab@linux-m68k.org>
43946
43947         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
43948         exponent.
43949
43950         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43951
43952         * configure.in (libc_cv_cc_nofma): Check for option to disable
43953         generation of FMA instructions.
43954         * configure: Regenerate.
43955         * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
43956         * sysdeps/ieee754/dbl-64/Makefile: New file.
43957         * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
43958         Remove brandred-fma4.
43959         (CFLAGS-brandred-fma4.c): Remove.
43960         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
43961         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
43962         define.
43963         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
43964         define.
43965
43966 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43967
43968         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
43969         LLONG_MAX != LONG_MAX.
43970         (_itoa_word): Use _ITOA_WORD_TYPE on value.
43971         (_fitoa_word): Likewise.
43972         * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
43973         LLONG_MAX != LONG_MAX.
43974         * stdio-common/_itowa.h: Include <_itoa.h>.
43975         (_itowa_word): Use _ITOA_WORD_TYPE on value.
43976         (_itowa): New macro.  Defined only if _ITOA_NEEDED is false.
43977         * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro.  Defined
43978         only if not defined.
43979         (_ITOA_WORD_TYPE): Likewise.
43980         (_itoa_word): Use _ITOA_WORD_TYPE on value.
43981         Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
43982
43983 2012-03-21  David S. Miller  <davem@davemloft.net>
43984
43985         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43986
43987 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43988
43989         * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
43990         of x86_64 when setting libc_cv_slibdir, libdir and
43991         libc_cv_localedir.
43992         * sysdeps/unix/sysv/linux/configure: Regenerated.
43993
43994 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
43995
43996         * manual/lang.texi (Old Varargs): Remove section.
43997         (How Variadic): Update menu.
43998         (va_start): Do not mention varargs.h.
43999
44000 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
44001             Joseph Myers  <joseph@codesourcery.com>
44002
44003         * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
44004         link test.
44005         * configure: Regenerated.
44006
44007 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
44008
44009         * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
44010         * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
44011         conformtest.pl
44012
44013 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
44014
44015         * NOTES: Remove.
44016         * Makefile (files-for-dist): Remove NOTES.
44017         (NOTES): Remove rule.
44018         * README: Don't refer to NOTES.
44019         * manual/creature.texi: Don't include macros.texi.
44020         * manual/intro.texi (creature.texi): Remove comment referring to
44021         NOTES.
44022
44023         * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
44024         * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
44025         * configure: Regenerated.
44026         * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
44027         LIBC_TRY_CC_OPTION.
44028         (libc_cv_as_i686): Likewise.
44029         (libc_cv_cc_avx): Likewise.
44030         (libc_cv_cc_sse2avx): Likewise.
44031         (libc_cv_cc_fma4): Likewise.
44032         (libc_cv_cc_novzeroupper): Likewise.
44033         * sysdeps/i386/configure: Regenerated.
44034
44035         [BZ #13883]
44036         * sysdeps/i386/fpu/s_cexp.S: Remove.
44037         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
44038         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
44039         * math/libm-test.inc (cexp_test): Add more tests.
44040         * sysdeps/i386/fpu/libm-test-ulps: Update.
44041         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44042
44043 2012-03-21  Allan McRae  <allan@archlinux.org>
44044
44045         * timezone/Makefile: Do not install iso3166.tab and zone.tab
44046
44047 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
44048
44049         [BZ #13871]
44050         * math/w_exp2.c: Do not include <float.h>.
44051         (o_threshold, u_threshold): Remove.
44052         (__exp2): Calculate result before checking finiteness and calling
44053         __kernel_standard.
44054         * math/w_exp2f.c: Likewise.
44055         * math/w_exp2l.c: Likewise.
44056         * math/libm-test.inc (exp2_test): Require overflow exception for
44057         1e6 input.
44058
44059         [BZ #3866]
44060         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
44061         range of signed 64-bit integers before using fistpll.  Remove
44062         checks for whether integers fit in mantissa bits.
44063         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
44064         the range of signed 32-bit integers before using fistpl.  Remove
44065         checks for whether integers fit in mantissa bits.
44066         * sysdeps/i386/fpu/e_powl.S (p64): New object.
44067         (__ieee754_powl): Test for y outside the range of signed 64-bit
44068         integers before using fistpll.  Reduce 64-bit values to 63-bit
44069         ones as needed.
44070         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
44071         divide-by-zero is raised for zero to large negative powers.
44072         * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
44073         (__ieee754_powl): Test for y outside the range of signed 64-bit
44074         integers before using fistpll.  Reduce 64-bit values to 63-bit
44075         ones as needed.
44076         * math/libm-test.inc (pow_test): Add more tests.
44077
44078 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44079
44080         * debug/backtracesymsfd.c: Include <_itoa.h> instead of
44081         <stdio-common/_itoa.h>.
44082         * debug/segfault.c: Likewise.
44083         * elf/dl-cache.c: Likewise.
44084         * elf/dl-minimal.c: Likewise.
44085         * elf/dl-misc.c: Likewise.
44086         * elf/dl-sysdep.c: Likewise.
44087         * elf/dl-version.c: Likewise.
44088         * elf/rtld.c: Likewise.
44089         * hurd/hurdsock.c: Likewise.
44090         * hurd/lookup-retry.c: Likewise.
44091         * malloc/malloc.c: Likewise.
44092         * malloc/mtrace.c: Likewise.
44093         * nscd/nscd_getgr_r.c: Likewise.
44094         * nscd/nscd_getpw_r.c: Likewise.
44095         * nscd/nscd_getserv_r.c: Likewise.
44096         * posix/getopt_init.c: Likewise.
44097         * posix/wordexp.c: Likewise.
44098         * stdio-common/_itoa.c: Likewise.
44099         * stdio-common/printf_fphex.c: Likewise.
44100         * stdio-common/vfprintf.c: Likewise.
44101         * string/_strerror.c: Likewise.
44102         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
44103         * sysdeps/i386/i686/hp-timing.h: Likewise.
44104         * sysdeps/mach/_strerror.c: Likewise.
44105         * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
44106         * sysdeps/mach/hurd/sethostid.c: Likewise.
44107         * sysdeps/mach/hurd/xmknodat.c: Likewise.
44108         * sysdeps/mach/xpg-strerror.c: Likewise.
44109         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
44110         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
44111         * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
44112         * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
44113         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
44114         * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
44115         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
44116         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
44117         * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
44118         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
44119         * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
44120         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
44121         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
44122         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
44123         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
44124         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
44125         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
44126         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
44127         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
44128         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
44129         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
44130
44131         * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
44132
44133         * stdio-common/_itoa.h: Moved to ...
44134         * sysdeps/generic/_itoa.h: Here.
44135
44136         * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
44137
44138         * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
44139         instead of "_itoa.h" and "_itowa.h".
44140         * stdio-common/vfprintf.: Likewise.
44141
44142 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44143
44144         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
44145         <bits/wordsize.h>.
44146         (__signbitf): Check __x86_64__ instead of __WORDSIZE.
44147         (__signbit): Likwise.
44148         (llrintf): Likwise.
44149         (llrint): Likwise.
44150
44151 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44152
44153         * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
44154         __WORDSIZE != 64.
44155
44156 2012-03-20  Joseph Myers  <joseph@codesourcery.com>
44157
44158         * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
44159         OVERFLOW_EXCEPTION_OK.
44160         * math/libm-test.inc ("Philosophy"): Update comment about
44161         exception testing.
44162         (OVERFLOW_EXCEPTION): Define.
44163         (OVERFLOW_EXCEPTION_OK): Likewise.
44164         (INVALID_EXCEPTION_OK): Renumber.
44165         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
44166         (IGNORE_ZERO_INF_SIGN): Likewise.
44167         (test_exceptions): Handle FE_OVERFLOW.
44168         (exp10_test): Expect overflow exceptions.
44169         (exp2_test): Likewise.
44170         (expm1_test): Likewise.
44171         (nextafter_test): Likewise.
44172         (pow_test): Likewise.
44173         (scalbn_test): Likewise.
44174         (scalbln_test): Likewise.
44175
44176 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44177
44178         * sysdeps/x86_64/bits/atomic.h
44179         (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
44180         64bit integer.
44181         (atomic_exchange_acq): Likewise.
44182         (__arch_exchange_and_add_body): Likewise.
44183         (__arch_add_body): Likewise.
44184         (atomic_add_negative): Likewise.
44185         (atomic_add_zero): Likewise.
44186
44187 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44188
44189         * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
44190         (fenv_t): Check __x86_64__ instead of __WORDSIZE.
44191
44192 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44193
44194         * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
44195         Check __x86_64__ instead of __WORDSIZE.
44196
44197 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44198
44199         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
44200
44201 2012-03-19  David S. Miller  <davem@davemloft.net>
44202
44203         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44204
44205         * sysdeps/sparc/fpu/fenv_private.h: New file.
44206         * sysdeps/sparc/fpu/math_private.h: Use it.
44207         (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
44208         Remove.
44209         (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
44210         (libc_feholdexcept_setroundl): Remove.
44211         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
44212         Remove.
44213         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
44214         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
44215
44216 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44217
44218         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
44219         int64_t instead of long int.
44220         (INSERT_WORDS64): Likwise.
44221
44222 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44223
44224         * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
44225         _Unwind_GetCFA return to _Unwind_Ptr first.
44226
44227 2012-03-19  Joseph Myers  <joseph@codesourcery.com>
44228
44229         [BZ #13629]
44230         * math/s_clog.c: Include <float.h>.
44231         (__clog): Scale large or subnormal inputs.
44232         * math/s_clogf.c: Likewise.
44233         * math/s_clogl.c: Likewise.
44234         * math/s_clog10.c: Include <float.h>.
44235         (M_LOG10_2): Define.
44236         (__clog10): Scale large or subnormal inputs.
44237         * math/s_clog10f.c: Likewise.
44238         * math/s_clog10l.c: Likewise.
44239         * math/libm-test.inc (clog_test): Add more tests.
44240         (clog10_test): Likewise.
44241         * sysdeps/i386/fpu/libm-test-ulps: Update.
44242         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44243
44244         [BZ #11451]
44245         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
44246         x and y.
44247         * math/libm-test.inc (atan2_test): Add another test.
44248
44249         * Makerules (common-objdir-compile): Remove.
44250         * sysdeps/unix/Makefile (config-generated): Do not add
44251         $(unix-generated) to variable.
44252         [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
44253         [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
44254         Remove rule.
44255         [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
44256         Likewise.
44257         [generic bits/local_lim.h] (before-compile): Do not append to
44258         variable.
44259         [generic bits/local_lim.h] (common-generated): Likewise.
44260         [generic sys/param.h] (before-compile): Do not append to variable.
44261         [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
44262         [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
44263         [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
44264         [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
44265         include.
44266         [generic sys/param.h] (sys/param.h-includes): Remove variable.
44267         [generic sys/param.h] (sys/param.h-includes): Remove rule.
44268         [generic sys/param.h] ($(addprefix
44269         $(common-objpfx),$(sys/param.h-includes))): Likewise.
44270         [generic sys/param.h] (common-generated): Do not append to
44271         variable.
44272         [generic sys/param.h] (sysdep_headers): Likewise.
44273         [generic bits/errno.h] (before-compile): Do not append to
44274         variable.
44275         [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
44276         rule.
44277         [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
44278         [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
44279         [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
44280         [generic bits/errno.h] (common-generated): Do not append to
44281         variable.
44282         [generic bits/ioctls.h] (before-compile): Do not append to
44283         variable.
44284         [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
44285         rule.
44286         [generic bits/ioctls.h] (ioctl-includes): Remove variable.
44287         [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
44288         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
44289         rule.
44290         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
44291         [generic bits/ioctls.h] (bits_termios.h): Remove variable.
44292         [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
44293         [generic bits/ioctls.h] (common-generated): Do not append to
44294         variable.
44295         [generic sys/syscall.h] (syscall.h): Remove variable.
44296         [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
44297         rule.
44298         [generic sys/syscall.h] (before-compile): Do not append to
44299         variable.
44300         [generic sys/syscall.h] (common-generated): Likewise.
44301         * sysdeps/unix/errnos-tmpl.c: Remove file.
44302         * sysdeps/unix/errnos.awk: Likewise.
44303         * sysdeps/unix/ioctls-tmpl.c: Likewise.
44304         * sysdeps/unix/ioctls.awk: Likewise.
44305         * sysdeps/unix/mk-local_lim.c: Likewise.
44306         * sysdeps/unix/snarf-ioctls: Likewise.
44307
44308 2012-03-19  Richard Henderson  <rth@twiddle.net>
44309
44310         * sysdeps/i386/fpu/fenv_private.h: New file.
44311         * sysdeps/i386/fpu/math_private.h: Use it.
44312         (math_opt_barrier, math_force_eval): Remove.
44313         (libc_feholdexcept_setround_53bit): Remove.
44314         (libc_feupdateenv_53bit): Remove.
44315         * sysdeps/x86_64/fpu/math_private.h: Likewise.
44316         (math_opt_barrier, math_force_eval): Remove.
44317         (libc_feholdexcept): Remove.
44318         (libc_feholdexcept_setround): Remove.
44319         (libc_fetestexcept, libc_fesetenv): Remove.
44320         (libc_feupdateenv_test): Remove.
44321         (libc_feupdateenv, libc_feholdsetround): Remove.
44322         (libc_feresetround): Remove.
44323
44324         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
44325         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
44326
44327         * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
44328         (libc_feupdateenv_test, libc_feupdateenv_testf): New.
44329         (libc_feupdateenv_testl): New.
44330         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
44331         (libc_feupdateenv_testf): New.
44332         (libc_feupdateenv): Use libc_feupdateenv_test.
44333         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
44334         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
44335
44336         * sysdeps/generic/math_private.h (libc_feholdsetround): New.
44337         (libc_feholdsetroundf, libc_feholdsetroundl): New.
44338         (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
44339         (libc_feresetround_noex): New.
44340         (libc_feresetround_noexf): New.
44341         (libc_feresetround_noexl): New.
44342         (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
44343         (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
44344         (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
44345         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
44346         SET_RESTORE_ROUND.
44347         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
44348         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
44349         (__cos): Likewise.
44350         * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
44351         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
44352         SET_RESTORE_ROUND_NOEX.
44353         * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
44354         SET_RESTORE_ROUND_NOEXF.
44355         * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
44356         * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
44357         (libc_feholdsetroundf): New.
44358         (libc_feresetround, libc_feresetroundf): New.
44359
44360         * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
44361         (libc_feholdexcept_setround_53bit): Convert from macro to function.
44362         (libc_feupdateenv_53bit): Likewise.  Don't force _FPU_EXTENDED.
44363
44364         * sysdeps/generic/math_private.h: Include <fenv.h>.
44365         (default_libc_feholdexcept): New.
44366         (default_libc_feholdexcept_setround): New.
44367         (default_libc_fesetenv, default_libc_feupdateenv): New.
44368         (libc_feholdexcept): Only define if undefined.
44369         (libc_feholdexceptf, libc_feholdexceptl): Likewise.
44370         (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
44371         (libc_feholdexcept_setroundl): Likewise.
44372         (libc_feholdexcept_setround_53bit): Likewise.
44373         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
44374         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
44375         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
44376         (libc_feupdateenv_53bit): Likewise.
44377         * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
44378         (libc_feholdexcept): Convert from macro to inline function.
44379         (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
44380         (libc_fesetenv, libc_feupdateenv): Likewise.
44381
44382         * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
44383         not previously defined.
44384         (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
44385         (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
44386         (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
44387         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
44388         * sysdeps/ieee754/flt-32/math_private.h: New file.
44389         * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
44390         math_private.h below SET_FLOAT_WORD.
44391         (__isnan, __isinf_ns, __finite): Remove.
44392         (__isnanf, __isinf_nsf, __finitef): Remove.
44393
44394 2012-03-18  Andreas Schwab  <schwab@linux-m68k.org>
44395
44396         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44397
44398 2012-03-17  David S. Miller  <davem@davemloft.net>
44399
44400         [BZ #6471]
44401         * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
44402         for 2.16.
44403
44404 2012-03-16  David S. Miller  <davem@davemloft.net>
44405
44406         * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
44407         warnings.
44408
44409         [BZ #6471]
44410         * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
44411         properly.
44412         * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
44413         * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
44414         sysdep_routines when subdir is sysvipc.
44415         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
44416         __getshmlba helper.
44417
44418         * sysdeps/sparc/fpu/libm-test/ulps: Update.
44419
44420 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44421
44422         * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
44423         [__LP64__].
44424
44425 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44426
44427         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
44428         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
44429         (__lround): Renamed to ...
44430         (__llround): This.  Replace long int with long long int.
44431         Define lround functions as aliases of llround functions.
44432         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
44433
44434 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44435
44436         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
44437         Use greg_t on sp.  Use unsigned int on idx_uc_link.  Cast
44438         adresses to uintptr_t.  Replace "long int" and "unsigned long
44439         int" with "greg_t" on va_arg.
44440
44441 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44442
44443         * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
44444         * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
44445
44446         * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
44447         Move e_machine check before EI_CLASS check.  Handle x32
44448         libraries.  Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
44449         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
44450         SKIP_EM_IA_64 and include
44451         <sysdeps/unix/sysv/linux/i386/readelflib.c>.
44452
44453         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
44454         Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
44455         (add_system_dir): New macro.
44456
44457         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
44458         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
44459
44460 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
44461
44462         [BZ #2551]
44463         [BZ #2552]
44464         [BZ #2553]
44465         [BZ #2554]
44466         [BZ #2562]
44467         [BZ #2563]
44468         [BZ #2565]
44469         [BZ #2566]
44470         [BZ #2576]
44471         * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
44472         (y0): Likewise.
44473         * math/w_j0f.c (j0f): Likewise.
44474         (y0f): Likewise.
44475         * math/w_j0l.c (__j0l): Likewise.
44476         (__y0l): Likewise.
44477         * math/w_j1.c (j1): Likewise.
44478         (y1): Likewise.
44479         * math/w_j1f.c (j1f): Likewise.
44480         (y1f): Likewise.
44481         * math/w_j1l.c (__j1l): Likewise.
44482         (__y1l): Likewise.
44483         * math/w_jn.c (jn): Likewise.
44484         (yn): Likewise.
44485         * math/w_jnf.c (jnf): Likewise.
44486         (ynf): Likewise.
44487         * math/w_jnl.c (__jnl): Likewise.
44488         (__ynl): Likewise.
44489         * math/libm-test.inc (j0_test): Add more tests.
44490         (j1_test): Likewise.
44491         (jn_test): Likewise.  Add trailing semicolon to existing test.
44492         (y0_test): Likewise.
44493         (y1_test): Likewise.
44494         * sysdeps/i386/fpu/libm-test-ulps: Update.
44495         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44496
44497         [BZ #13851]
44498         [BZ #13854]
44499         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
44500         libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
44501         * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
44502         * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
44503         (__tanl): Set errno for infinite argument.
44504         * sysdeps/i386/fpu/mptan.c: Remove.
44505         * sysdeps/i386/fpu/s_tan.S: Likewise.
44506         * sysdeps/i386/fpu/s_tanl.S: Likewise.
44507         * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
44508         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
44509         * math/libm-test.inc (tan_test): Add more tests and enable more
44510         tests for double and long double.
44511         * sysdeps/i386/fpu/libm-test-ulps: Update.
44512         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44513
44514 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
44515
44516         * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
44517         (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
44518
44519 2012-03-16  Roland McGrath  <roland@hack.frob.com>
44520
44521         * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
44522         * configure.in: Use it for both main tree and add-ons.
44523         * configure: Regenerated.
44524
44525 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44526
44527         * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
44528
44529 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
44530
44531         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
44532         in comment.
44533
44534         [BZ #13851]
44535         * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
44536         * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
44537         * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
44538         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
44539         * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
44540         infinite argument.
44541         * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
44542         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
44543         != 0 for prec == 2.
44544         * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
44545         * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
44546         * sysdeps/i386/fpu/s_cosl.S: Likewise.
44547         * sysdeps/i386/fpu/s_sincosl.S: Likewise.
44548         * sysdeps/i386/fpu/s_sinl.S: Likewise.
44549         * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
44550         * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
44551         * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
44552         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
44553         * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
44554         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
44555         * math/libm-test.inc (cos_test): Add more tests and enable more
44556         tests for long double.
44557         (sin_test): Likewise.
44558         (sincos_test): Likewise.
44559         * sysdeps/i386/fpu/libm-test-ulps: Update.
44560         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44561
44562 2012-03-16  David S. Miller  <davem@davemloft.net>
44563
44564         * sysdeps/sparc/fpu/math_private.h: New file.
44565
44566 2012-03-15  David S. Miller  <davem@davemloft.net>
44567
44568         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
44569         file.
44570         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
44571         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
44572         file.
44573         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
44574         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
44575         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
44576         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
44577         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
44578         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
44579         sysdep routines.
44580         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
44581
44582         * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
44583         * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
44584
44585         * sysdeps/sparc/sparc-ifunc.h: New file.
44586         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
44587         sparc-ifunc.h
44588         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
44589         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
44590         Likewise.
44591         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
44592         Likewise.
44593         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
44594         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
44595         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
44596         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
44597         Likewise.
44598         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
44599         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
44600         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
44601         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
44602         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
44603         Likewise.
44604         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
44605         Likewise.
44606         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
44607         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
44608         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
44609         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
44610         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
44611         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
44612         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
44613         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
44614         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
44615         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
44616         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
44617         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
44618         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
44619         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
44620         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
44621         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
44622         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
44623         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
44624         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
44625         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
44626         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
44627         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
44628         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
44629         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
44630
44631 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
44632
44633         * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
44634         scaling.
44635         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44636
44637 2012-03-15  Andreas Jaeger  <aj@suse.de>
44638
44639         [BZ #13852]
44640         * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
44641         ieee754/flt-32 implementation for sin, cos and sincos.
44642         * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
44643         * sysdeps/i386/fpu/s_cosf.S: Likewise.
44644         * sysdeps/i386/fpu/s_sincosf.S: Likewise.
44645         * sysdeps/i386/fpu/s_sinf.S: Likewise.
44646         * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
44647         ieee754/flt-32 implementation for tan.
44648
44649         * math/libm-test.inc (cos_test): Enable some large input tests for
44650         float as well
44651         (sin_test): Likewise.
44652         (sincos_test): Likewise.
44653         (tan_test): Add tests for large input.
44654
44655         * sysdeps/i386/fpu/libm-test-ulps: Update.
44656
44657 2012-03-15  Andreas Jaeger  <aj@suse.de>
44658
44659         [BZ #13658]
44660         * math/libm-test.inc (cos_test): Add more test cases.
44661         (sin_test): Likewise.
44662         (sincos_test): Likewise.
44663
44664 2012-03-15  Andreas Jaeger  <aj@suse.de>
44665
44666         [BZ #13837]
44667         * math/libm-test.inc (cos_test): Add a test case for large input
44668         value.
44669         (sin_test): Likewise.
44670         (sincos_test): Likewise.
44671
44672 2012-03-15  Andreas Jaeger  <aj@suse.de>
44673             Joseph Myers  <joseph@codesourcery.com>
44674
44675         [BZ #13658]
44676         * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
44677         x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
44678         * sysdeps/i386/fpu/branred.c: Likewise.
44679         * sysdeps/i386/fpu/dosincos.c: Likewise.
44680         * sysdeps/i386/fpu/mpa.c: Likewise.
44681         * sysdeps/i386/fpu/s_cos.S: Likewise.
44682         * sysdeps/i386/fpu/s_sin.S: Likewise.
44683         * sysdeps/i386/fpu/s_sincos.S: Likewise.
44684         * sysdeps/i386/fpu/sincos32.c: Likewise.
44685
44686         * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
44687         Define.
44688         (libc_feupdateenv_53bit): Define.
44689         * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
44690         Define.
44691         (libc_feupdateenv_53bit): Define.
44692
44693         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
44694         53 bit (without extend i386 double precision).
44695
44696         * math/libm-test.inc (sincos_test): Add tests for large input.
44697         (sin): Likewise.
44698         (cos): Likewise.
44699
44700         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
44701
44702 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
44703
44704         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44705
44706 2012-03-15  David S. Miller  <davem@davemloft.net>
44707
44708         * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
44709         * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
44710         * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
44711         * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
44712         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
44713         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
44714         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
44715         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
44716         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
44717         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
44718         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
44719         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
44720         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
44721         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
44722         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
44723         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
44724         file.
44725         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
44726         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
44727         file.
44728         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
44729         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
44730         file.
44731         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
44732         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
44733         file.
44734         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
44735         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
44736         fmin/fmax sysdep routines.
44737         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
44738
44739 2012-03-14  David S. Miller  <davem@davemloft.net>
44740
44741         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
44742         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
44743         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
44744         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
44745         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
44746         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
44747         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
44748         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
44749         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
44750         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
44751         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
44752         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
44753         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
44754         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
44755         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
44756         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
44757         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
44758         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
44759         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
44760         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
44761         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
44762         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
44763         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
44764         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
44765         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
44766         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
44767         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
44768         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
44769         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
44770         routines.
44771         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
44772         file.
44773         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
44774         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
44775         file.
44776         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
44777         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
44778         file.
44779         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
44780         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
44781         file.
44782         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
44783         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
44784         file.
44785         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
44786         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
44787         file.
44788         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
44789         file.
44790         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
44791         file.
44792         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
44793         file.
44794         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
44795         New file.
44796         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
44797         file.
44798         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
44799         file.
44800         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
44801         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
44802         file.
44803         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
44804         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
44805         file.
44806         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
44807         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
44808         file.
44809         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
44810         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
44811         VIS3 routines.
44812
44813         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
44814         New file.
44815
44816         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44817
44818         * sysdeps/sparc/configure.in: New file.
44819         * sysdeps/sparc/configure: Generate.
44820         * configure.in (libc_cv_sparc_as_vis3): Substitute.
44821         * configure: Regenerate.
44822         * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
44823         * config.make.in (have-as-vis3): New.
44824         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
44825         available use -Av9d instead of -Av9a.
44826         * sysdeps/sparc/sparc64/Makefile: Likewise.
44827         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
44828         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
44829         New file.
44830         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
44831         file.
44832         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
44833         New file.
44834         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
44835         file.
44836         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
44837         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
44838         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
44839         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
44840         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
44841
44842         * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
44843         fzeros/fnegs to load 0x80000000 into a float register instead of
44844         using the stack.
44845         * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
44846
44847 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
44848
44849         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
44850         bits/syscall.h.
44851         ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
44852         ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
44853         ($(inst_includedir)/bits/syscall.h): Remove rule.
44854         ($(objpfx)bits/syscall.d): Include instead of
44855         $(objpfx)syscall-list.d.
44856         (generated): Change syscall-list.h and syscall-list.d to
44857         bits/syscall.h and bits/syscall.d.
44858
44859 2012-03-14  Roland McGrath  <roland@hack.frob.com>
44860
44861         [BZ #13846]
44862         * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
44863
44864 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
44865
44866         [BZ #13841]
44867         * math/s_csqrt.c: Include <float.h>.
44868         (__csqrt): Scale large or subnormal inputs.
44869         * math/s_csqrtf.c: Likewise.
44870         * math/s_csqrtl.c: Likewise.
44871         * math/libm-test.inc (csqrt_test): Add more tests.
44872         * sysdeps/i386/fpu/libm-test-ulps: Update.
44873         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44874
44875         [BZ #13840]
44876         * math/libm-test.inc (hypot_test): Add more tests.
44877
44878 2012-03-13  David S. Miller  <davem@davemloft.net>
44879
44880         [BZ #13840]
44881         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
44882         double-precision for the calculation instead of scaling.
44883
44884 2012-03-13  Joseph Myers  <joseph@codesourcery.com>
44885
44886         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
44887         manipulate bits before adding and subtracting TWO52[sx].
44888         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
44889         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
44890         Likewise.
44891         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
44892
44893 2012-03-13  David S. Miller  <davem@davemloft.net>
44894
44895         * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
44896         * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
44897         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
44898         rtld-global-offsets.h
44899         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
44900
44901         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
44902         large parameters.
44903
44904         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
44905
44906         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
44907         'err' in the ifdef scope in which it is actually used.
44908
44909         * nss/nss_db/db-init.c: Include string.h
44910
44911 2012-03-12  David S. Miller  <davem@davemloft.net>
44912
44913         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
44914         masking out of the most significant byte of random value used.
44915         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
44916         Fix coding style in previous change.
44917
44918         * sysdeps/unix/sysv/linux/kernel-features.h
44919         (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
44920         (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
44921         expression.
44922         (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
44923         later.
44924
44925 2012-03-11  David S. Miller  <davem@davemloft.net>
44926
44927         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
44928         (__makecontext): Fix signedness of pointer casts setting up 'sp'.
44929         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
44930         for 'resultvar' otherwise things get truncated on 64-bit.
44931
44932         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
44933         Fix masking out of the most significant byte of random value used.
44934
44935         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44936
44937 2012-03-10  Andreas Schwab  <schwab@linux-m68k.org>
44938
44939         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44940
44941 2012-03-09  David S. Miller  <davem@davemloft.net>
44942
44943         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
44944         variables with appropriate CPP guards.
44945         * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
44946         from the frame pointer, not the stack pointer.  Correct layout
44947         comments.  Fix test on resulting framesize and the management of
44948         the outregs buffer for pltexit.  Preserve floating point return
44949         values across _dl_call_pltexit call.
44950         * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
44951         framesize and the management of the outregs buffer for pltexit.
44952         Preserve floating point return values across _dl_call_pltexit
44953         call.
44954         * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
44955         (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
44956         (la_sparc64_gnu_pltexit): New functions.
44957         (print_exit): Fix format string for return register value.
44958
44959 2012-03-10  Joseph Myers  <joseph@codesourcery.com>
44960
44961         * sunrpc/Makefile (others): Add rpcgen.
44962         ($(objpfx)rpcgen): Remove special build rule and dependency on
44963         libc.
44964         * sunrpc/rpcgen.c: New file.
44965
44966 2012-03-09  Paul Eggert  <eggert@cs.ucla.edu>
44967
44968         [BZ #13673]
44969         * posix/bug-regex33.c: Replace FSF snail mail address with URL.
44970         * stdio-common/bug-vfprintf-nargs.c: Likewise.
44971         * sysdeps/i386/crti.S: Likewise.
44972         * sysdeps/i386/crtn.S: Likewise.
44973         * sysdeps/powerpc/powerpc32/crti.S: Likewise.
44974         * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
44975         * sysdeps/powerpc/powerpc64/crti.S: Likewise.
44976         * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
44977         * sysdeps/sh/crti.S: Likewise.
44978         * sysdeps/sh/crtn.S: Likewise.
44979         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
44980
44981         [BZ #13673]
44982         * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
44983         with URL.
44984         * locale/programs/locfile-kw.gperf: Likewise.
44985         * locale/programs/charmap-kw.h: Regenerated.
44986         * locale/programs/locfile-kw.h: Likewise.
44987
44988         [BZ #13673]
44989         * intl/plural.y: Replace FSF snail mail address with URL.
44990         * intl/plural.c: Regenerated.
44991
44992 2012-03-09  Richard Henderson  <rth@twiddle.net>
44993
44994         * include/math_private.h: Remove file.
44995         * math/math_private.h: Move file ...
44996         * sysdeps/generic/math_private.h: ... here.
44997
44998         * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
44999         * sysdeps/powerpc/fpu/math_private.h: Likewise.
45000         * sysdeps/x86_64/fpu/math_private.h: Likewise.
45001
45002         * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
45003         and <math_private.h>.
45004         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
45005         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
45006         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
45007         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
45008         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
45009         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
45010         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
45011         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
45012         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
45013         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
45014         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
45015         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
45016         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
45017         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
45018         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
45019         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
45020         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
45021         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
45022         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
45023         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
45024         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
45025         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
45026         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
45027         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
45028         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
45029         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
45030         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
45031         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
45032         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
45033         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
45034         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
45035         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
45036         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
45037         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
45038         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
45039         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
45040         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
45041         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
45042         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
45043         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
45044         * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
45045         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
45046         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
45047         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
45048         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
45049         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
45050         * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
45051         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
45052         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
45053         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
45054         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
45055         * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
45056         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
45057         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
45058         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
45059         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
45060         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
45061         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
45062         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
45063         * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
45064         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
45065         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
45066         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
45067         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
45068         * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
45069         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
45070         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
45071         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
45072         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
45073         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
45074         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
45075         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
45076         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
45077         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
45078         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
45079         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
45080         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
45081         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
45082         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
45083         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
45084         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
45085         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
45086         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
45087         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
45088         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
45089         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
45090         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
45091         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
45092         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
45093         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
45094         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
45095         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
45096         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
45097         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
45098         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
45099         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
45100         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
45101         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
45102         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
45103         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
45104         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
45105         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
45106         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
45107         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
45108         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
45109         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
45110         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
45111         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
45112         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
45113         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
45114         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
45115         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
45116         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
45117         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
45118         * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
45119         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
45120         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
45121         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
45122         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
45123         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
45124         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
45125         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
45126         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
45127         * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
45128         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
45129         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
45130         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
45131         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
45132         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
45133         * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
45134         * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
45135         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
45136         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
45137         * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
45138         * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
45139         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
45140         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
45141         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
45142         * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
45143         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
45144         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
45145         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
45146         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
45147         * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
45148         * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
45149         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
45150         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
45151         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
45152         * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
45153         * sysdeps/ieee754/k_standard.c: Likewise.
45154         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
45155         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
45156         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
45157         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
45158         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
45159         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
45160         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
45161         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
45162         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
45163         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
45164         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
45165         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
45166         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
45167         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
45168         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
45169         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
45170         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
45171         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
45172         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
45173         * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
45174         * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
45175         * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
45176         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
45177         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
45178         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
45179         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
45180         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
45181         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
45182         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
45183         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
45184         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
45185         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
45186         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
45187         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
45188         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
45189         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
45190         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
45191         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
45192         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
45193         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
45194         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
45195         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
45196         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
45197         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
45198         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
45199         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
45200         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
45201         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
45202         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
45203         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
45204         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
45205         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
45206         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
45207         * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
45208         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
45209         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
45210         * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
45211         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
45212         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
45213         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
45214         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
45215         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
45216         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
45217         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
45218         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
45219         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
45220         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
45221         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
45222         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
45223         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
45224         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
45225         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
45226         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
45227         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
45228         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
45229         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
45230         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
45231         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
45232         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
45233         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
45234         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
45235         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
45236         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
45237         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
45238         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
45239         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
45240         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
45241         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
45242         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
45243         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
45244         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
45245         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
45246         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
45247         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
45248         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
45249         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
45250         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
45251         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
45252         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
45253         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
45254         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
45255         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
45256         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
45257         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
45258         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
45259         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
45260         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
45261         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
45262         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
45263         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
45264         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
45265         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
45266         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
45267         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
45268         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
45269         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
45270         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
45271         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
45272         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
45273         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
45274         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
45275         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
45276         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
45277         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
45278         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
45279         * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
45280         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
45281         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
45282         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
45283         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
45284         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
45285         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
45286         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
45287         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
45288         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
45289         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
45290         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
45291         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
45292         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
45293         * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
45294         * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
45295         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
45296         * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
45297         * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
45298         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
45299         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
45300         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
45301         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
45302         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
45303         * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
45304         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
45305         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
45306         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
45307         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
45308         * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
45309         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
45310         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
45311         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
45312         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
45313         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
45314         * sysdeps/ieee754/s_lib_version.c: Likewise.
45315         * sysdeps/ieee754/s_matherr.c: Likewise.
45316         * sysdeps/ieee754/s_signgam.c: Likewise.
45317         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
45318         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
45319         * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
45320         * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
45321         * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
45322         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
45323         * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
45324         * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
45325         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
45326         * sysdeps/powerpc/fpu/s_rint.c: Likewise.
45327         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
45328         * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
45329         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
45330         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
45331         * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
45332         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
45333         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
45334         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
45335         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
45336         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
45337         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
45338
45339 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
45340
45341         * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
45342         * sunrpc/rpc_main.c: Likewise.
45343         * sunrpc/rpc_svcout.c: Likewise.
45344
45345 2012-03-09  David S. Miller  <davem@davemloft.net>
45346
45347         * include/math_private.h: New file.
45348
45349 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
45350
45351         * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
45352         * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
45353         * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
45354         from <bits/socket_type.h>.
45355         (enum __socket_type): Don't define here.
45356         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
45357         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45358         bits/socket_type.h.
45359
45360         [BZ #13566]
45361         * libio/stdio.h (gets): Always declare for C++ up to C++11 without
45362         checking __USE_GNU.
45363
45364         * Makerules ($(inst_includedir)/%.h): New rule.
45365         * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
45366         (install-others): Remove variable setting.
45367         ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
45368
45369 2012-03-08  Richard Henderson  <rth@twiddle.net>
45370
45371         * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
45372         from macro to inline function; merge with the
45373         !__LIBC_INTERNAL_MATH_INLINES version.
45374         (__ieee754_sqrtf): Likewise.
45375
45376         * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
45377         to inline function.
45378         (__rintf, __floor, __floorf): Likewise.
45379
45380         * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
45381         macro to inline function.
45382         (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
45383
45384         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
45385         not <math/math_private.h>.
45386
45387 2012-03-08  David S. Miller  <davem@davemloft.net>
45388
45389         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
45390         copyright year.
45391         * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
45392
45393 2012-03-08  Thomas Schwinge  <thomas@codesourcery.com>
45394
45395         * resolv/gai_misc.c (handle_requests): Fix struct timespec
45396         normalization.
45397         * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
45398         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
45399
45400 2012-03-08  Ulrich Drepper  <drepper@gmail.com>
45401
45402         * stdio-common/tst-fphex.c: Various cleanups.  The macros cannot
45403         be defined individually, they must be defined as a block.  Define
45404         S for printing a string instead of hidint the different by using a
45405         macro for adding the 'l'.
45406         * stdio-common/tst-fphex-wide.c: Adjust.
45407
45408 2012-03-07  Marek Polacek  <polacek@redhat.com>
45409
45410         * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
45411
45412 2012-03-08  Marek Polacek  <polacek@redhat.com>
45413
45414         [BZ #13806]
45415         * stdio-common/Makefile (tests): Add tst-fphex-wide.
45416         * stdio-common/tst-fphex.c: Define a few macros to make the
45417         test reusable.  Use them.
45418         * stdio-common/tst-fphex-wide.c: New file.
45419
45420 2012-03-08  Joseph Myers  <joseph@codesourcery.com>
45421
45422         [BZ #6911]
45423         * manual/macros.texi (gnusystems): New macro.
45424         (nongnusystems): Likewise.
45425         (gnulinuxhurdsystems): Likewise.
45426         (gnuhurdsystems): Likewise..
45427         (gnulinuxsystems): Likewise.
45428         * manual/charset.texi: Use new macros or @theglibc{} to refer to
45429         variants of the GNU system, not "GNU system".
45430         * manual/conf.texi: Likewise.
45431         * manual/errno.texi: Likewise.  Update example of errno macro
45432         expansion.
45433         * manual/filesys.texi: Likewise.
45434         (getumask): Document as specific to GNU/Hurd.
45435         * manual/install.texi: Likewise.  Reword some references to
45436         GNU/Linux.
45437         * manual/intro.texi: Likewise.
45438         * manual/io.texi: Likewise.
45439         (File Name Portability): Detail which constraints are inapplicable
45440         to all GNU systems and which are only inapplicable to GNU/Hurd.
45441         * manual/job.texi: Likewise.
45442         * manual/llio.texi: Likewise.
45443         (O_NOCTTY): Document as present on GNU/Linux.
45444         * manual/maint.texi: Likewise.
45445         * manual/memory.texi: Likewise.
45446         * manual/pattern.texi: Likewise.
45447         * manual/pipe.texi: Likewise.
45448         * manual/process.texi: Likewise.
45449         * manual/resource.texi: Likewise.
45450         (RUSAGE_CHILDREN): Remove statement about specifying a particular
45451         child on GNU/Hurd.
45452         * manual/setjmp.texi: Likewise.
45453         * manual/signal.texi: Likewise.
45454         * manual/startup.texi: Likewise.
45455         * manual/stdio.texi: Likewise.
45456         * manual/terminal.texi: Likewise.
45457         (ONLCR): Document as POSIX.
45458         (OXTABS): Document availability on GNU/Linux as XTABS.
45459         (ONOEOT): Document availability separately from other bits.
45460         (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
45461         * manual/time.texi: Likewise.
45462         * manual/users.texi: Likewise.
45463         * INSTALL: Regenerated.
45464         * sysdeps/gnu/errlist.c: Regenerated.
45465
45466         * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
45467         * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
45468         (libc_cv_ctors_header): Likewise.  Use asm ("") instead of calling
45469         puts.
45470         * configure: Regenerated.
45471
45472 2012-03-07  Joseph Myers  <joseph@codesourcery.com>
45473
45474         * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
45475         default includes instead of AC_HEADER_CHECK.
45476         * sysdeps/i386/configure: Regenerated.
45477
45478         [BZ #10716]
45479         * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
45480         * math/s_cacoshf.c (__cacoshf): Likewise.
45481         * math/s_cacoshl.c (__cacoshl): Likewise.
45482         * math/s_casinh.c (__casinh): Set signs of result from argument.
45483         * math/s_casinhf.c (__casinhf): Likewise.
45484         * math/s_casinhl.c (__casinhl): Likewise.
45485         * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
45486         (casinh_test): Add more tests.
45487         * sysdeps/i386/fpu/libm-test-ulps: Update.
45488         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45489
45490 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
45491
45492         * po/zh_TW.po: Update from translation team.
45493
45494         * login/Makefile (distribute): Remove variable.
45495         * catgets/Makefile: Likewise.
45496         * mach/Makefile: Likewise.
45497         * malloc/Makefile: Likewise.
45498         * misc/Makefile: Likewise.
45499         * iconv/Makefile: Likewise.
45500         * nscd/Makefile: Likewise.
45501         * hurd/Makefile: Likewise.
45502         * manual/Makefile: Likewise.
45503         * locale/Makefile: Likewise.
45504         * intl/Makefile: Likewise.
45505         * conform/Makefile: Likewise.
45506         * nss/Makefile: Likewise.
45507         * time/Makefile: Likewise.
45508         * soft-fp/Makefile: Likewise.
45509         * dirent/Makefile: Likewise.
45510         * gmon/Makefile: Likewise.
45511         * po/Makefile: Likewise.
45512         * rt/Makefile: Likewise.
45513         * socket/Makefile: Likewise.
45514         * math/Makefile: Likewise.
45515         * signal/Makefile: Likewise.
45516         * debug/Makefile: Likewise.
45517         * elf/Makefile: Likewise.
45518         * timezone/Makefile: Likewise.
45519         * stdlib/Makefile: Likewise.
45520         * iconvdata/Makefile: Likewise.
45521         * sunrpc/Makefile: Likewise.
45522         * io/Makefile: Likewise.
45523         * argp/Makefile: Likewise.
45524         * inet/Makefile: Likewise.
45525         * hesiod/Makefile: Likewise.
45526         * grp/Makefile: Likewise.
45527         * csu/Makefile: Likewise.
45528         * wctype/Makefile: Likewise.
45529         * crypt/Makefile: Likewise.
45530         * libio/Makefile: Likewise.
45531         * string/Makefile: Likewise.
45532         * nis/Makefile: Likewise.
45533         * resolv/Makefile: Likewise.
45534         * stdio-common/Makefile: Likewise.
45535         * wcsmbs/Makefile: Likewise.
45536         * dlfcn/Makefile: Likewise.
45537         * posix/Makefile: Likewise.
45538
45539         [BZ #6959]
45540         * timezone/Makefile: Don't install timezone files, just the programs
45541         and scripts.
45542
45543 2012-03-06  Ulrich Drepper  <drepper@gmail.com>
45544
45545         * nss/databases.def: Add missing gshadow entry.
45546
45547         * stdio-common/vfprintf.c: Fix formatting.  Missing copyright update.
45548
45549 2012-03-06  Marek Polacek  <polacek@redhat.com>
45550
45551         [BZ #13726]
45552         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
45553         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
45554         * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
45555         * stdio-common/tst-long-dbl-fphex.c: New file.
45556
45557 2012-03-06  David S. Miller  <davem@davemloft.net>
45558
45559         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
45560         (set_obp_int): New function.
45561         (get_obp_int): New function.
45562         (__get_clockfreq_via_dev_openprom): Likewise.
45563         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
45564         Avoid unused variable warnings on 'val' and use builtin_expect.
45565         (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
45566         __builtin_expect.
45567         (INLINE_CLONE_SYSCALL): Likewise.
45568
45569 2012-03-05  David S. Miller  <davem@davemloft.net>
45570
45571         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45572
45573 2012-03-05  Andreas Schwab  <schwab@linux-m68k.org>
45574
45575         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45576
45577         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
45578         only for |x| >= 40.
45579         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
45580
45581 2012-03-05  H.J. Lu  <hongjiu.lu@intel.com>
45582
45583         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
45584         Replace gettimeofday with __vdso_gettimeofday.
45585
45586         * sysdeps/unix/sysv/linux/x86_64/init-first.c
45587         (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
45588         __vdso_clock_gettime and __vdso_getcpu.
45589
45590         * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
45591         time with __vdso_time.
45592
45593 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
45594
45595         * manual/lang.texi (size_t): Note types to which size_t may be
45596         equivalent with the GNU C Library, but do not describe when
45597         differences between them are significant.
45598
45599 2012-03-05  Andreas Jaeger  <aj@suse.de>
45600
45601         * sysdeps/i386/fpu/libm-test-ulps: Update.
45602
45603 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
45604
45605         [BZ #3976]
45606         * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
45607         (__ieee754_pow): Save and restore rounding mode and use
45608         round-to-nearest for main computations.
45609         * math/libm-test.inc (pow_test_tonearest): New function.
45610         (pow_test_towardzero): Likewise.
45611         (pow_test_downward): Likewise.
45612         (pow_test_upward): Likewise.
45613         (main): Call the new functions.
45614         * sysdeps/i386/fpu/libm-test-ulps: Update.
45615         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45616
45617         [BZ #3976]
45618         * math/libm-test.inc (cosh_test_tonearest): New function.
45619         (cosh_test_towardzero): Likewise.
45620         (cosh_test_downward): Likewise.
45621         (cosh_test_upward): Likewise.
45622         (sinh_test_tonearest): Likewise.
45623         (sinh_test_towardzero): Likewise.
45624         (sinh_test_downward): Likewise.
45625         (sinh_test_upward): Likewise.
45626         (main): Call the new functions.
45627         * sysdeps/i386/fpu/libm-test-ulps: Update.
45628         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45629
45630 2012-03-05  Tom de Vries  <tom@codesourcery.com>
45631
45632         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
45633         default stack guard is set in last bytes.
45634         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
45635
45636 2012-03-05  Kees Cook  <keescook@chromium.org>
45637
45638         * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
45639
45640         [BZ #13656]
45641         * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
45642         possibly allocate from heap instead of stack.
45643         * stdio-common/bug-vfprintf-nargs.c: New file.
45644         * stdio-common/Makefile (tests): Add nargs overflow test.
45645
45646 2012-03-03  Andreas Schwab  <schwab@linux-m68k.org>
45647
45648         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45649
45650 2012-03-03  Marek Polacek  <polacek@redhat.com>
45651
45652         * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
45653         * math/math_private.h: Likewise.
45654         * stdlib/tst-strtod.c: Likewise.
45655         * sysdeps/i386/i486/bits/atomic.h: Likewise.
45656         * sysdeps/x86_64/bits/atomic.h: Likewise.
45657
45658 2012-03-02  David S. Miller  <davem@davemloft.net>
45659
45660         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
45661         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
45662         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
45663         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
45664         * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
45665         * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
45666         * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
45667         * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
45668
45669 2012-03-02  Roland McGrath  <roland@hack.frob.com>
45670
45671         [BZ #13792]
45672         * manual/examples/README: New file, says the example source files
45673         can be used under GPL>=2.
45674         * manual/Makefile (%.c.texi): Eat the leading part of the file until a
45675         line containing just "*/".
45676         * manual/examples/add.c: Add copyright header (GPL>=2).
45677         * manual/examples/argp-ex1.c: Likewise.
45678         * manual/examples/argp-ex2.c: Likewise.
45679         * manual/examples/argp-ex3.c: Likewise.
45680         * manual/examples/argp-ex4.c: Likewise.
45681         * manual/examples/atexit.c: Likewise.
45682         * manual/examples/db.c: Likewise.
45683         * manual/examples/dir.c: Likewise.
45684         * manual/examples/dir2.c: Likewise.
45685         * manual/examples/execinfo.c: Likewise.
45686         * manual/examples/filecli.c: Likewise.
45687         * manual/examples/filesrv.c: Likewise.
45688         * manual/examples/fmtmsgexpl.c: Likewise.
45689         * manual/examples/genpass.c: Likewise.
45690         * manual/examples/inetcli.c: Likewise.
45691         * manual/examples/inetsrv.c: Likewise.
45692         * manual/examples/isockad.c: Likewise.
45693         * manual/examples/longopt.c: Likewise.
45694         * manual/examples/memopen.c: Likewise.
45695         * manual/examples/memstrm.c: Likewise.
45696         * manual/examples/mkfsock.c: Likewise.
45697         * manual/examples/mkisock.c: Likewise.
45698         * manual/examples/mygetpass.c: Likewise.
45699         * manual/examples/pipe.c: Likewise.
45700         * manual/examples/popen.c: Likewise.
45701         * manual/examples/rprintf.c: Likewise.
45702         * manual/examples/search.c: Likewise.
45703         * manual/examples/select.c: Likewise.
45704         * manual/examples/setjmp.c: Likewise.
45705         * manual/examples/sigh1.c: Likewise.
45706         * manual/examples/sigusr.c: Likewise.
45707         * manual/examples/stpcpy.c: Likewise.
45708         * manual/examples/strdupa.c: Likewise.
45709         * manual/examples/strftim.c: Likewise.
45710         * manual/examples/strncat.c: Likewise.
45711         * manual/examples/subopt.c: Likewise.
45712         * manual/examples/swapcontext.c: Likewise.
45713         * manual/examples/termios.c: Likewise.
45714         * manual/examples/testopt.c: Likewise.
45715         * manual/examples/testpass.c: Likewise.
45716         * manual/examples/timeval_subtract.c: Likewise.
45717
45718         [BZ #13792]
45719         * manual/time.texi (Elapsed Time): Move timeval_subtract example
45720         function to ...
45721         * manual/timeval_subtract.c.texi: ... here, new file.
45722
45723 2012-03-02  David S. Miller  <davem@davemloft.net>
45724
45725         * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
45726
45727 2012-03-02  Joseph Myers  <joseph@codesourcery.com>
45728
45729         [BZ #3976]
45730         * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
45731         (__sin): Save and restore rounding mode and use round-to-nearest
45732         for all computations.
45733         (__cos): Save and restore rounding mode and use round-to-nearest
45734         for all computations.
45735         * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
45736         <fenv.h>.
45737         (tan): Save and restore rounding mode and use round-to-nearest for
45738         all computations.
45739         * math/libm-test.inc (cos_test_tonearest): New function.
45740         (cos_test_towardzero): Likewise.
45741         (cos_test_downward): Likewise.
45742         (cos_test_upward): Likewise.
45743         (sin_test_tonearest): Likewise.
45744         (sin_test_towardzero): Likewise.
45745         (sin_test_downward): Likewise.
45746         (sin_test_upward): Likewise.
45747         (tan_test_tonearest): Likewise.
45748         (tan_test_towardzero): Likewise.
45749         (tan_test_downward): Likewise.
45750         (tan_test_upward): Likewise.
45751         (main): Call the new functions.
45752         * sysdeps/i386/fpu/libm-test-ulps: Update.
45753         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45754
45755         [BZ #10135]
45756         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
45757         small n, then large n, before computing and testing k+n.
45758         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
45759         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
45760         Likewise.
45761         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
45762         Likewise.
45763         * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
45764         * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
45765         * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
45766         * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
45767         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
45768         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
45769         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
45770         * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
45771         * math/libm-test.inc (scalbn_test): Add more tests.
45772         (scalbln_test): Likewise.
45773
45774         * manual/filesys.texi (mode_t): Describe constraints on size and
45775         signedness, not exact equivalence to a particular type.
45776         (ino_t): Likewise.
45777         (ino64_t): Likewise.
45778         (dev_t): Likewise.
45779         (nlink_t): Likewise.
45780         (blkcnt_t): Likewise.
45781         (blkcnt64_t): Likewise.
45782         * manual/llio.texi (off_t): Likewise.
45783
45784         [BZ #3976]
45785         * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
45786         (__ieee754_exp): Save and restore rounding mode and use
45787         round-to-nearest for all computations.
45788         * math/libm-test.inc (exp_test_tonearest): New function.
45789         (exp_test_towardzero): Likewise.
45790         (exp_test_downward): Likewise.
45791         (exp_test_upward): Likewise.
45792         (main): Call the new functions.
45793         * sysdeps/i386/fpu/libm-test-ulps: Update.
45794         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45795
45796 2012-03-01  Chris Demetriou  <cgd@google.com>
45797
45798         * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
45799         have predictable order.
45800
45801 2012-03-01  David S. Miller  <davem@davemloft.net>
45802
45803         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
45804
45805         * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
45806         * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
45807         * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
45808         * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
45809
45810         * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
45811         * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
45812         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
45813         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
45814         * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
45815         * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
45816         * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
45817         * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
45818         * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
45819
45820         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45821
45822         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
45823         * sysdeps/sparc/fpu/libm-test-ulps: to here.
45824         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
45825
45826         * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
45827         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
45828         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
45829         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
45830         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
45831         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
45832         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
45833         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
45834         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
45835         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
45836         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
45837         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
45838         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
45839         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
45840         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
45841         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
45842         * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
45843         * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
45844         * sysdeps/sparc/elf/configure: Regenerated.
45845
45846 2012-03-01  Joseph Myers  <joseph@codesourcery.com>
45847
45848         * configure.in (AS, LD): Require binutils 2.20 or later.
45849         * configure: Regenerated.
45850         * manual/install.texi (Tools for Compilation): Give binutils 2.20
45851         as required minimum version.
45852         * INSTALL: Regenerated.
45853
45854         [BZ #2541]
45855         [BZ #4108]
45856         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
45857         before squaring exponent.
45858         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
45859         bottom long double and 27 bits of top long double before squaring
45860         exponent.
45861         * math/libm-test.inc (erfc_test): Add more tests.
45862         * sysdeps/i386/fpu/libm-test-ulps: Update.
45863         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
45864         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45865
45866 2012-03-01  Kai Tietz  <ktietz@redhat.com>
45867
45868         * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
45869         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
45870         containing bit-fields.
45871         * soft-fp/extended.h (_FP_UNION_E): Likewise.
45872         * soft-fp/single.h (_FP_UNION_S): Likewise.
45873         * soft-fp/double.h (_FP_UNION_D): Likewise.
45874
45875 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
45876
45877         [BZ #13786]
45878         * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
45879         not include ../strcmp.S.
45880         [USE_AS_STRNCASECMP_L]: Likewise.
45881         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
45882         (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
45883         * sysdeps/i386/i686/multiarch/strncase_l-c.c
45884         (__strncasecmp_l_ia32): Define as alias to
45885         __strncasecmp_l_nonascii.
45886
45887         [BZ #5794]
45888         * math/libm-test.inc (expm1_test): Add test for bug 5794.
45889         * sysdeps/i386/fpu/libm-test-ulps: Update.
45890         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45891
45892         * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
45893         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45894
45895 2012-02-29  Jeff Law  <law@redhat.com>
45896
45897         * resolv/res_query.c (__libc_res_nquerydomain): Avoid
45898         out of bounds read.
45899
45900 2012-02-29  Marek Polacek  <polacek@redhat.com>
45901
45902         [BZ #13706]
45903         * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
45904         * elf/Makefile: Add rules to run tst-unused-dep.out.
45905
45906 2012-02-28  David S. Miller  <davem@davemloft.net>
45907
45908         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
45909         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
45910         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
45911         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
45912         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
45913         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
45914
45915 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
45916
45917         * math/libm-test.inc (llround_test): Move one test from
45918         lround_test.  Use TEST_f_L in moved test.
45919         (lround_test): Move misplaced test to llround_test.  Add testcase
45920         from bug 2561.
45921
45922 2012-02-28  Ulrich Drepper  <drepper@gmail.com>
45923
45924         * sysdeps/x86_64/fpu/e_expf.S: New file.
45925         Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
45926
45927 2012-02-28  Stanislav Brabec  <sbrabec@suse.cz>
45928
45929         [BZ #13637]
45930         * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
45931         of remain_len that may cause incomplete multi-byte character and
45932         false match.
45933         * posix/bug-regex33.c: New file.
45934         * posix/Makefile (tests): Add bug-regex33.
45935
45936 2012-02-28  Joseph Myers  <joseph@codesourcery.com>
45937
45938         * manual/macros.texi: New file.
45939         * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
45940         * manual/libc.texinfo: Include macros.texi.
45941         * manual/creatute.texi: Likewise.
45942         * manual/install.texi: Likewise.
45943         * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
45944         @glibcadj{} in references to the GNU C Library.
45945         * manual/charset.texi: Likewise.
45946         * manual/conf.texi: Likewise.
45947         * manual/contrib.texi: Likewise.  Consistently use "GNU C Library"
45948         when not using those macros.
45949         * manual/creature.texi: Likewise.
45950         * manual/crypt.texi: Likewise.
45951         * manual/errno.texi: Likewise.
45952         * manual/filesys.texi: Likewise.
45953         * manual/header.texi: Likewise.
45954         * manual/install.texi: Likewise.
45955         * manual/intro.texi: Likewise.
45956         * manual/io.texi: Likewise.
45957         * manual/job.texi: Likewise.
45958         * manual/lang.texi: Likewise.
45959         * manual/libc.texiinfo: Likewise.
45960         * manual/llio.texi: Likewise.
45961         * manual/locale.texi: Likewise.
45962         * manual/maint.texi: Likewise.
45963         * manual/math.texi: Likewise.
45964         * manual/memory.texi: Likewise.
45965         * manual/message.texi: Likewise.
45966         * manual/nss.texi: Likewise.
45967         * manual/pattern.texi: Likewise.
45968         * manual/process.texi: Likewise.
45969         * manual/resource.texi: Likewise.
45970         * manual/search.texi: Likewise.
45971         * manual/setjmp.texi: Likewise.
45972         * manual/signal.texi: Likewise.
45973         * manual/socket.texi: Likewise.
45974         * manual/startup.texi: Likewise.
45975         * manual/stdio.texi: Likewise.
45976         * manual/string.texi: Likewise.
45977         * manual/sysinfo.texi: Likewise.
45978         * manual/syslog.texi: Likewise.
45979         * manual/terminal.texi: Likewise.
45980         * manual/time.texi: Likewise.
45981         * manual/users.texi: Likewise.
45982         * INSTALL: Regenerated.
45983         * NOTES: Regenerated.
45984         * sysdeps/gnu/errlist.c: Regenerated.
45985
45986 2012-02-28  Andreas Schwab  <schwab@linux-m68k.org>
45987
45988         * include/dirent.h: Include <dirstream.h> before
45989         <dirent/dirent.h>.
45990
45991 2012-02-28  David S. Miller  <davem@davemloft.net>
45992
45993         * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
45994         * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
45995         * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
45996         * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
45997
45998 2012-02-27  David S. Miller  <davem@davemloft.net>
45999
46000         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
46001         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
46002         * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
46003         * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
46004
46005         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
46006         frame pointer instead of stack pointer relative arg slot.
46007         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
46008         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
46009         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
46010
46011 2012-02-27  Carlos O'Donell  <carlos_odonell@mentor.com>
46012
46013         [BZ #3992]
46014         * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
46015
46016 2012-02-27  David S. Miller  <davem@davemloft.net>
46017
46018         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
46019         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
46020         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
46021         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
46022         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
46023         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
46024         * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
46025         * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
46026
46027 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
46028
46029         * configure.in (CC): Restrict allowed GCC versions to 4.3 and
46030         later.  Allow versions 5-9.
46031         * configure: Regenerated.
46032         * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
46033         required minimum version and 4.6 as recommended version.  Do not
46034         mention bugs in GCC 2.7 and 2.8.
46035         * INSTALL: Regenerated.
46036
46037 2012-02-27  David S. Miller  <davem@davemloft.net>
46038
46039         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
46040         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
46041         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
46042         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
46043         * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
46044         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
46045         * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
46046         * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
46047
46048         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
46049         manipulate bits before adding and subtracting TWO112[sx].
46050         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
46051
46052 2012-02-27  Roland McGrath  <roland@hack.frob.com>
46053
46054         [BZ #13775]
46055         * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
46056         [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
46057         * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
46058         being in POSIX, because they are in 1003.1-2008.
46059
46060         * rt/tst-aio.c: Include <fcntl.h>.
46061         * rt/tst-aio7.c: Likewise.
46062         * rt/tst-aio64.c: Likewise.
46063
46064         * stdio-common/tst-fmemopen.c (main): Remove spurious const.
46065
46066 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
46067
46068         * manual/install.texi (--with-headers): Describe headers as
46069         interface headers, not private headers.
46070         (Specific advice for GNU/Linux systems): Describe use of headers
46071         from "make headers_install", not private headers from older
46072         kernels.
46073         * INSTALL: Regenerated.
46074         * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
46075         Change to 2.6.19.
46076         * sysdeps/unix/sysv/linux/configure: Regenerated.
46077
46078         * manual/llio.texi (fclean): Remove documentation.
46079
46080         * manual/Makefile (libc-texi-generated): New variable.  Include
46081         version.texi.
46082         (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
46083         $(libc-texi-generated), not duplicated list of files.
46084         (version.texi, stamp-version): New rules.
46085         (realclean): Remove $(libc-texi-generated), not individual files
46086         from that list.  Do not remove dir-add.texinfo.
46087         * manual/libc.texinfo: Comment out uses of edition numbers and
46088         references to printed manual.  Remove last-updated dates.
46089         (EDITION): Comment out.
46090         (ISBN): Likewise.
46091         (VERSION, UPDATED): Remove.
46092         (version.texi): Include.
46093
46094 2012-02-27  Andreas Schwab  <schwab@linux-m68k.org>
46095
46096         * sysdeps/posix/spawni.c: Include <signal.h>.
46097         * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
46098         * sysdeps/pthread/aio_fsync.c: Likewise.
46099
46100 2012-02-26  Ulrich Drepper  <drepper@gmail.com>
46101
46102         * conform/Makefile (tests): Run only when not cross-compiling and
46103         when fast-check is not defined.
46104
46105         * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
46106         * conform/data/limits.h-data: Fixes for POSIX2008.
46107         * conform/run-conformtest.sh: Run all tests.
46108         * include/arpa/inet.h: Changes to allow conformtest.pl to use the
46109         headers.
46110         * include/bits/dlfcn.h: Likewise.
46111         * include/langinfo.h: Likewise.
46112         * include/monetary.h: Likewise.
46113         * include/sys/poll.h: Likewise.
46114
46115         * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
46116         for __USE_GNU.
46117         * posix/spawn.h: Define __need_sigset_t.
46118         * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
46119         * posix/unistd.h: Declare ctermid only for XPG before XPG6.
46120         * rt/aio.h: Don't include fcntl.h and signal.h.  Use bits/siginfo.h
46121         to get sigevent_t only.
46122         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
46123         only for __USE_GNU.
46124         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
46125         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
46126         process_vm_writev only for __USE_GNU.
46127         * termios/termios.h: Declare tcgetsid also for POSIX2008.
46128
46129         * conform/Makefile: For now ignore errors from run-conformtest.
46130         * conform/conformtest.pl: Simplify code.  Add -ansi to CFLAGS for
46131         POSIX to avoid namespace pollution.  Don't prepend headers.
46132         * conform/data/aio.h-data: Fixes for POSIX testing.
46133         * conform/data/fcntl.h-data: Likewise.
46134         * conform/data/glob.h-data: Likewise.
46135         * conform/data/grp.h-data: Likewise.
46136         * conform/data/pthread.h-data: Likewise.
46137         * conform/data/pwd.h-data: Likewise.
46138         * conform/data/signal.h-data: Likewise.
46139         * conform/data/spawn.h-data: Likewise.
46140         * conform/data/stdio.h-data: Likewise.
46141         * conform/data/stdlib.h-data: Likewise.
46142         * conform/data/stropts.h-data: Likewise.
46143         * conform/data/sys/mman.h-data: Likewise.
46144         * conform/data/sys/stat.h-data: Likewise.
46145         * conform/data/sys/types.h-data: Likewise.
46146         * conform/data/sys/wait.h-data: Likewise.
46147         * conform/data/time.h-data: Likewise.
46148         * conform/data/unistd.h-data: Likewise.
46149         * conform/data/utime.h-data: Likewise.
46150
46151         * io/sys/stat.h: fchmod was always in POSIX.
46152         * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
46153         * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
46154         * rt/aio.h: Define __need_timespec before including <time.h>.
46155         * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
46156         struct.  Add forward declaration of pthread_attr_t and use it in
46157         sigevent.
46158         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
46159         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
46160         * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
46161         always remove CLK_TCK definition.
46162
46163 2012-02-26  Andreas Schwab  <schwab@linux-m68k.org>
46164
46165         * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
46166
46167 2012-02-25  Ulrich Drepper  <drepper@gmail.com>
46168
46169         * conform/run-conformtest.sh: New file.
46170         * conform/Makefile: Run run-conformtest for tests.
46171         * conform/conformtest.pl: Many bug fixes.  Add ISO C99, ISO C11
46172         support.
46173
46174         * conform/data/uchar.h-data: New file.
46175         * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
46176         * conform/data/arpa/inet.h-data: Likewise.
46177         * conform/data/assert.h-data: Likewise.
46178         * conform/data/complex.h-data: Likewise.
46179         * conform/data/cpio.h-data: Likewise.
46180         * conform/data/ctype.h-data: Likewise.
46181         * conform/data/dirent.h-data: Likewise.
46182         * conform/data/dlfcn.h-data: Likewise.
46183         * conform/data/errno.h-data: Likewise.
46184         * conform/data/fcntl.h-data: Likewise.
46185         * conform/data/float.h-data: Likewise.
46186         * conform/data/fmtmsg.h-data: Likewise.
46187         * conform/data/fnmatch.h-data: Likewise.
46188         * conform/data/ftw.h-data: Likewise.
46189         * conform/data/glob.h-data: Likewise.
46190         * conform/data/grp.h-data: Likewise.
46191         * conform/data/iconv.h-data: Likewise.
46192         * conform/data/inttypes.h-data: Likewise.
46193         * conform/data/langinfo.h-data: Likewise.
46194         * conform/data/libgen.h-data: Likewise.
46195         * conform/data/limits.h-data: Likewise.
46196         * conform/data/locale.h-data: Likewise.
46197         * conform/data/math.h-data: Likewise.
46198         * conform/data/monetary.h-data: Likewise.
46199         * conform/data/mqueue.h-data: Likewise.
46200         * conform/data/ndbm.h-data: Likewise.
46201         * conform/data/net/if.h-data: Likewise.
46202         * conform/data/netdb.h-data: Likewise.
46203         * conform/data/netinet/in.h-data: Likewise.
46204         * conform/data/nl_types.h-data: Likewise.
46205         * conform/data/poll.h-data: Likewise.
46206         * conform/data/pthread.h-data: Likewise.
46207         * conform/data/pwd.h-data: Likewise.
46208         * conform/data/regex.h-data: Likewise.
46209         * conform/data/sched.h-data: Likewise.
46210         * conform/data/search.h-data: Likewise.
46211         * conform/data/semaphore.h-data: Likewise.
46212         * conform/data/setjmp.h-data: Likewise.
46213         * conform/data/signal.h-data: Likewise.
46214         * conform/data/spawn.h-data: Likewise.
46215         * conform/data/stdarg.h-data: Likewise.
46216         * conform/data/stdio.h-data: Likewise.
46217         * conform/data/stdlib.h-data: Likewise.
46218         * conform/data/string.h-data: Likewise.
46219         * conform/data/strings.h-data: Likewise.
46220         * conform/data/stropts.h-data: Likewise.
46221         * conform/data/sys/ipc.h-data: Likewise.
46222         * conform/data/sys/mman.h-data: Likewise.
46223         * conform/data/sys/msg.h-data: Likewise.
46224         * conform/data/sys/resource.h-data: Likewise.
46225         * conform/data/sys/select.h-data: Likewise.
46226         * conform/data/sys/sem.h-data: Likewise.
46227         * conform/data/sys/shm.h-data: Likewise.
46228         * conform/data/sys/socket.h-data: Likewise.
46229         * conform/data/sys/stat.h-data: Likewise.
46230         * conform/data/sys/statvfs.h-data: Likewise.
46231         * conform/data/sys/time.h-data: Likewise.
46232         * conform/data/sys/timeb.h-data: Likewise.
46233         * conform/data/sys/times.h-data: Likewise.
46234         * conform/data/sys/types.h-data: Likewise.
46235         * conform/data/sys/uio.h-data: Likewise.
46236         * conform/data/sys/un.h-data: Likewise.
46237         * conform/data/sys/utsname.h-data: Likewise.
46238         * conform/data/sys/wait.h-data: Likewise.
46239         * conform/data/syslog.h-data: Likewise.
46240         * conform/data/tar.h-data: Likewise.
46241         * conform/data/termios.h-data: Likewise.
46242         * conform/data/utime.h-data: Likewise.
46243         * conform/data/utmpx.h-data: Likewise.
46244         * conform/data/varargs.h-data: Likewise.
46245         * conform/data/wchar.h-data: Likewise.
46246         * conform/data/wctype.h-data: Likewise.
46247         * conform/data/wordexp.h-data: Likewise.
46248
46249         * include/stropts.h: New file.
46250         * include/uchar.h: New file.
46251         * include/aio.h: Changes to allow conformtest.pl to use the headers.
46252         * include/assert.h: Likewise.
46253         * include/ctype.h: Likewise.
46254         * include/dirent.h: Likewise.
46255         * include/dlfcn.h: Likewise.
46256         * include/fcntl.h: Likewise.
46257         * include/fnmatch.h: Likewise.
46258         * include/glob.h: Likewise.
46259         * include/grp.h: Likewise.
46260         * include/libio.h: Likewise.
46261         * include/locale.h: Likewise.
46262         * include/math.h: Likewise.
46263         * include/net/if.h: Likewise.
46264         * include/netdb.h: Likewise.
46265         * include/netinet/in.h: Likewise.
46266         * include/pthread.h: Likewise.
46267         * include/pwd.h: Likewise.
46268         * include/regex.h: Likewise.
46269         * include/sched.h: Likewise.
46270         * include/search.h: Likewise.
46271         * include/setjmp.h: Likewise.
46272         * include/signal.h: Likewise.
46273         * include/stdio.h: Likewise.
46274         * include/stdlib.h: Likewise.
46275         * include/string.h: Likewise.
46276         * include/sys/cdefs.h: Likewise.
46277         * include/sys/mman.h: Likewise.
46278         * include/sys/msg.h: Likewise.
46279         * include/sys/resource.h: Likewise.
46280         * include/sys/select.h: Likewise.
46281         * include/sys/socket.h: Likewise.
46282         * include/sys/stat.h: Likewise.
46283         * include/sys/statvfs.h: Likewise.
46284         * include/sys/time.h: Likewise.
46285         * include/sys/times.h: Likewise.
46286         * include/sys/uio.h: Likewise.
46287         * include/sys/utsname.h: Likewise.
46288         * include/sys/wait.h: Likewise.
46289         * include/termios.h: Likewise.
46290         * include/time.h: Likewise.
46291         * include/ulimit.h: Likewise.
46292         * include/unistd.h: Likewise.
46293         * include/utime.h: Likewise.
46294         * include/wchar.h: Likewise.
46295         * include/wctype.h: Likewise.
46296         * include/wordexp.h: Likewise.
46297
46298         * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
46299
46300         * time/time.h: TIME_UTC must be a macro.
46301         Make timespec_get available for ISO C11 only as well.
46302
46303 2012-02-24  Ulrich Drepper  <drepper@gmail.com>
46304
46305         * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
46306         Reported by Peng Haitao <penght@cn.fujitsu.com>.
46307
46308 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46309
46310         * configure.in: Use -o not -a in test for unsupported multi-arch.
46311
46312 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46313
46314         * manual/texinfo.tex: Update to version 2012-01-19.16.
46315
46316 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46317
46318         * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
46319
46320 2012-02-24  Roland McGrath  <roland@hack.frob.com>
46321
46322         [BZ #13738]
46323         * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
46324         * manual/fdl-1.3.texi: New file.
46325         * manual/fdl-1.1.texi: File removed.
46326
46327         [BZ #13738]
46328         * manual/libc.texinfo (FDL_VERSION): New @set.
46329         Use it for mention of FDL in cover text.
46330         (Documentation License): Use it in @include file name.
46331
46332 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46333             Roland McGrath  <roland@hack.frob.com>
46334
46335         [BZ #5461]
46336         * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
46337         (not LONG_LONG_MAX and LONG_LONG_MIN.
46338         * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
46339         LLONG_MIN.  Refer to LONG_LONG_MIN only as older GCC-specific
46340         name.
46341         (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
46342
46343 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46344
46345         [BZ #2547]
46346         [BZ #11365]
46347         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
46348         manipulate bits before adding and subtracting TWO23[sx].
46349         * math/libm-test.inc (nearbyint_test): Add more tests.
46350
46351 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46352
46353         [BZ #2548]
46354         * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
46355         bits before adding and subtracting TWO23[sx].
46356         * math/libm-test.inc (rint_test): Add more tests.
46357         (rint_test_tonearest): Likewise.
46358         (rint_test_towardzero): Likewise.
46359         (rint_test_downward): Likewise.
46360         (rint_test_upward: Likewise.
46361
46362 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46363
46364         [BZ #10110]
46365         * include/stdc-predef.h: New file.  Extracted from features.h.
46366         * include/features.h: Include stdc-predef.h.
46367         * Makefile (headers): Add stdc-predef.h.
46368         * CONFORMANCE (Compiler limitations): Update.
46369
46370 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46371
46372         * manual/libc.texinfo (VERSION, UPDATED): Revert.
46373
46374 2012-02-21  David S. Miller  <davem@davemloft.net>
46375
46376         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
46377         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
46378
46379 2012-02-20  David S. Miller  <davem@davemloft.net>
46380
46381         * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
46382         using a normal save/restore sequence, rather than allocating a
46383         dummy stack frame just to store a frame pointer and restore.
46384         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
46385
46386 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46387
46388         * manual/install.texi: Fix stray word in line-wrapped comment.
46389
46390 2012-02-20  David S. Miller  <davem@davemloft.net>
46391
46392         * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
46393         both binutils and gcc support GOTDATA.
46394
46395         * sysdeps/unix/sparc/sysdep.h: Document why we don't use
46396         "rd %pc" in the PIC register setup sequences.
46397
46398         * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
46399         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
46400         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
46401         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
46402         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
46403         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
46404         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
46405         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
46406         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
46407         (SYSCALL_ERROR_HANDLER): Likewise.
46408         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
46409         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
46410         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
46411         (SYSCALL_ERROR_HANDLER): Likewise.
46412
46413         * config.h.in (HAVE_BINUTILS_GOTDATA): New.
46414         (HAVE_GCC_GOTDATA): New.
46415         * sysdeps/sparc/elf/configure.in: Test for GOTDATA
46416         relocation support in both binutils and gcc.
46417         * sysdeps/sparc/elf/configure: Regenerate.
46418
46419         * sysdeps/sparc/sparc32/elf/configure.in: Delete.
46420         * sysdeps/sparc/sparc32/elf/configure: Delete.
46421         * sysdeps/sparc/sparc64/elf/configure.in: Delete.
46422         * sysdeps/sparc/sparc64/elf/configure: Delete.
46423         * sysdeps/sparc/elf/configure.in: New file.
46424         * sysdeps/sparc/elf/configure: Generate.
46425
46426         * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
46427         * sysdeps/sparc/sparc32/elf/configure: Regenerate.
46428         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
46429         * sysdeps/sparc/sparc64/elf/configure: Regenerate.
46430         * config.h.in (BROKEN_SPARC_WDISP22): Remove.
46431
46432 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46433
46434         * manual/install.texi: Do not mention specific glibc version
46435         numbers.
46436         * manual/libc.texinfo (VERSION, UPDATED): Update.
46437         (@copying): Use @copyright{} and range of years.
46438
46439 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46440
46441         [BZ #13695]
46442         * csu/Makefile (distribute): Remove initfini.c and defs.awk.
46443         [crti.S not in sysdirs] (generated): Do not append.
46444         [crti.S not in sysdirs] (omit-deps): Likewise.
46445         [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
46446         [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
46447         [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
46448         [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
46449         [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
46450         Likewise.
46451         [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
46452         [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
46453         [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
46454         * csu/defs.awk: Remove file.
46455         * sysdeps/generic/initfini.c: Likewise.
46456         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
46457         variable.
46458         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
46459         Likewise.
46460
46461 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46462
46463         * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
46464         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
46465         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
46466         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
46467         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
46468         * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
46469         <bits/epoll.h>.
46470         (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
46471         (__EPOLL_PACKED): Define to empty if not defined by
46472         <bits/epoll.h>.
46473         (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
46474         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46475         bits/epoll.h.
46476
46477 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46478
46479         * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
46480         * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
46481         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
46482         * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
46483         <bits/timerfd.h>.
46484         (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
46485         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46486         bits/timerfd.h.
46487
46488 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46489
46490         * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
46491         in C locale.
46492         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
46493         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
46494         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
46495         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46496
46497 2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
46498
46499         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
46500         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
46501
46502 2012-02-19  Andreas Schwab  <schwab@linux-m68k.org>
46503
46504         * manual/errno.texi (Error Codes): Add EHWPOISON entry.
46505         * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
46506         defined.
46507         * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
46508         Likewise.
46509         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
46510         entry for 2.16.
46511
46512 2012-02-19  Aurelien Jarno  <aurelien@aurel32.net>
46513
46514         * math/w_acos.c: Use non-signaling floating-point comparisons.
46515         * math/w_acosf.c: Likewise.
46516         * math/w_acosh.c: Likewise.
46517         * math/w_acoshf.c: Likewise.
46518         * math/w_acoshl.c: Likewise.
46519         * math/w_acosl.c: Likewise.
46520         * math/w_asin.c: Likewise.
46521         * math/w_asinf.c: Likewise.
46522         * math/w_asinl.c: Likewise.
46523         * math/w_atanh.c: Likewise.
46524         * math/w_atanhf.c: Likewise.
46525         * math/w_atanhl.c: Likewise.
46526         * math/w_exp2.c: Likewise.
46527         * math/w_exp2f.c: Likewise.
46528         * math/w_exp2l.c: Likewise.
46529         * math/w_j0.c: Likewise.
46530         * math/w_j0f.c: Likewise.
46531         * math/w_j0l.c: Likewise.
46532         * math/w_j1.c: Likewise.
46533         * math/w_j1f.c: Likewise.
46534         * math/w_j1l.c: Likewise.
46535         * math/w_jn.c: Likewise.
46536         * math/w_jnf.c: Likewise.
46537         * math/w_log.c: Likewise.
46538         * math/w_log10.c: Likewise.
46539         * math/w_log10f.c: Likewise.
46540         * math/w_log10l.c: Likewise.
46541         * math/w_log2.c: Likewise.
46542         * math/w_log2f.c: Likewise.
46543         * math/w_log2l.c: Likewise.
46544         * math/w_logf.c: Likewise.
46545         * math/w_logl.c: Likewise.
46546         * math/w_sqrt.c: Likewise.
46547         * math/w_sqrtf.c: Likewise.
46548         * math/w_sqrtl.c: Likewise.
46549         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
46550         * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
46551         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
46552         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
46553         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
46554
46555 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46556
46557         [BZ #9739]
46558         * manual/string.texi (strnlen): Use correct parameter name in
46559         equivalent expression.
46560
46561 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46562
46563         [BZ #11174]
46564         * manual/users.texi (seteuid): Consistently use neweuid for
46565         argument name.
46566
46567 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46568
46569         [BZ #13704]
46570         * manual/nss.texi (Services in the NSS configuration): Correct
46571         list of services in example configuration file.
46572
46573 2012-02-19  Nick Bowler  <nbowler@draconx.ca>
46574
46575         [BZ #11322]
46576         * manual/arith.texi: Remove statements about negative zero
46577         behaving identically to zero.
46578
46579 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
46580
46581         [BZ #5993]
46582         * manual/install.texi: Do not document upgrading from libc5.
46583
46584 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
46585
46586         [BZ #4596]
46587         * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
46588
46589 2012-02-18  David S. Miller  <davem@davemloft.net>
46590
46591         * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
46592         (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
46593         %o7 across the call.
46594         (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
46595         instead.
46596         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
46597         SETUP_PIC_REG_LEAF.
46598         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
46599         * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
46600         * sysdeps/sparc/crtn.S: Likewise.
46601
46602 2012-02-17  Ulrich Drepper  <drepper@gmail.com>
46603
46604         * aout/Makefile: Remove.
46605
46606 2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
46607
46608         [BZ #13058]
46609         * manual/examples/argp-ex1.c (main): Format definition in GNU
46610         style.
46611         * manual/examples/argp-ex2.c (main): Likewise.
46612         * manual/examples/argp-ex3.c (main): Likewise.
46613         * manual/examples/argp-ex4.c (main): Likewise.
46614         * manual/examples/longopt.c (main): Use new-style prototype
46615         definition.
46616         * manual/examples/strncat.c (main): Specify return type and use
46617         (void) for arguments.
46618         * manual/examples/subopt.c (main): Use char **argv argument.
46619
46620 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46621
46622         [BZ #5077]
46623         * manual/lang.texi (FLT_EPSILON): Avoid description depending on
46624         rounding modes.
46625
46626 2012-02-17  Fabrice Bauzac  <fabrice.bauzac@wanadoo.fr>
46627
46628         [BZ #6907]
46629         * manual/string.texi (strchr): Change when strchrnul is
46630         recommended.
46631
46632 2012-02-17  Dwayne Grant McConnell  <decimal@us.ibm.com>
46633
46634         [BZ #174]
46635         * manual/locale.texi (setlocale): Document LOCPATH.
46636
46637 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46638
46639         [BZ #10210]
46640         * manual/process.texi (execle): Move @dots{} before last argument.
46641
46642 2012-02-17  Paul Bolle  <pebolle@tiscali.nl>
46643
46644         [BZ #12047]
46645         * manual/charset.texi (Generic Charset Conversion): Fix typo
46646         (LC_TYPE -> LC_CTYPE).
46647
46648 2012-02-17  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>
46649
46650         [BZ #5805]
46651         * manual/arith.texi (scalbn): Use @var{} on parameter names.
46652         (scalbnf): Likewise.
46653         (scalbnl): Likewise.
46654         (scalbln): Likewise.
46655         (scalblnf): Likewise.
46656         (scalblnl): Likewise.
46657         * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
46658         (vwarnx): Likewise.
46659         (verr): Likewise.
46660         (verrx): Likewise.
46661         * manual/filesys.texi (telldir): Use braces around return type.
46662         * manual/llio.texi (mmap): Add space after comma.
46663         (mmap64): Likewise.
46664         * manual/math.texi (jn): Use @var{} on parameter names.
46665         (jnf): Likewise.
46666         (jnl): Likewise.
46667         (yn): Likewise.
46668         (ynf): Likewise.
46669         (ynl): Likewise.
46670         * manual/memory.texi (alloca): Remove semicolon on @deftypefun
46671         line.
46672         * manual/resource.texi (ulimit): Use @dots{} instead of literal
46673         "...".
46674         (sched_get_priority_min): Remove semicolon on @deftypefun line.
46675         (sched_get_priority_max): Likewise.
46676         * manual/signal.texi (sigvec): Add space after comma.
46677         * manual/socket.texi (if_nametoindex): Use @var{} on parameter
46678         names.
46679         (if_indextoname): Likewise.
46680         (if_freenameindex): Likewise.
46681         (sendto): Use ',' instead of '.' in prototype.
46682         * manual/startup.texi (syscall): Use @dots{} instead of literal
46683         "...".
46684         * manual/stdio.texi (__fpending): Separate initial words of
46685         paragraph from @deftypefun line.
46686         * manual/syslog.texi (syslog): Use @dots{} instead of literal
46687         "...".
46688         (vsyslog): Use @var{} on parameter names.
46689         * manual/terminal.texi (stty): Use @var{} on parameter names.
46690         * manual/users.texi (getutmp): Use @var{} on parameter names.
46691         (getutmpx): Likewise.
46692
46693 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46694
46695         [BZ #6884]
46696         * manual/stdio.texi (fopen): Fix typos in description of
46697         ",ccs=STRING".
46698
46699 2012-02-17  Aurelien Jarno  <aurelien@aurel32.net>
46700
46701         [BZ #4026]
46702         * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
46703         get clock_id definition.
46704
46705 2012-02-17  Thomas Schwinge  <thomas@schwinge.name>
46706
46707         [BZ #4822]
46708         * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
46709         (madvise): Cast every argument to void on its own.
46710
46711 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46712
46713         [BZ #9902]
46714         * manual/startup.texi (Exit Status): Fix typo.
46715
46716 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46717
46718         [BZ #10140]
46719         * manual/examples/argp-ex1.c: Include <stdlib.h>.
46720         * manual/examples/argp-ex2.c: Likewise.
46721         * manual/examples/argp-ex3.c: Likewise.
46722
46723 2012-02-16  Richard Henderson  <rth@redhat.com>
46724
46725         * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
46726         * sysdeps/s390/s390-32/initfini.c: Remove.
46727         * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
46728         * sysdeps/s390/s390-64/initfini.c: Remove.
46729
46730 2012-02-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
46731
46732         * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
46733         compiler output for sysdeps/generic/initfini.c.
46734         * sysdeps/sh/elf/initfini.c: Remove file.
46735
46736 2012-02-16  David S. Miller  <davem@davemloft.net>
46737
46738         [BZ #11494]
46739         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
46740
46741         * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
46742         * sysdeps/sparc/crti.S: New file.
46743         * sysdeps/sparc/crtn.S: New file.
46744         * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
46745         * sysdeps/sparc/sparc64/Makefile: Likewise.
46746
46747 2012-02-15  Mike Frysinger  <vapier@gentoo.org>
46748
46749         [BZ #3335]
46750         * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
46751
46752 2012-02-15  Roland McGrath  <roland@hack.frob.com>
46753
46754         [BZ #4822]
46755         * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
46756
46757         * mach/devstream.c (cookie_io_functions_t): Macro removed.
46758         (write, read, close): Likewise.
46759         Patch by Aurelien Jarno <aurelien@aurel32.net>.
46760
46761 2012-02-15  Joseph Myers  <joseph@codesourcery.com>
46762
46763         * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
46764         * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
46765         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
46766         * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
46767         <bits/signalfd.h>.
46768         (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
46769         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46770         bits/signalfd.h.
46771
46772 2012-02-14  Marek Polacek  <polacek@redhat.com>
46773
46774         * sysdeps/x86_64/crti.S: New file.
46775         * sysdeps/x86_64/crtn.S: New file.
46776         * sysdeps/x86_64/elf/initfini.c: Remove file.
46777
46778 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
46779
46780         * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
46781         * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
46782         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
46783         * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
46784         <bits/inotify.h>.
46785         (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
46786         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46787         bits/inotify.h.
46788
46789 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
46790
46791         * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
46792         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
46793         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
46794         * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
46795         <bits/eventfd.h>.
46796         (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
46797         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46798         bits/eventfd.h.
46799
46800 2012-02-10  Thomas Schwinge  <thomas@codesourcery.com>
46801
46802         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
46803         __feraiseexcept instead of feraiseexcept.
46804
46805         * rt/tst-cpuclock1.c: Add a few comments, and error checking for
46806         nanosleep invocations.
46807         * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
46808         strings, and add error checking for a nanosleep invocations.
46809
46810 2012-02-09  Paul Eggert  <eggert@cs.ucla.edu>
46811
46812         Replace FSF snail mail address with URLs, as per GNU coding standards.
46813         Most of the snail mail addresses were wrong anyway, and omitting
46814         them makes the source code easier to maintain.  Almost all of the
46815         changes are to license notices and to locale LC_IDENTIFICATION
46816         addresses, except for this one:
46817         * manual/libc.texinfo: In "Published by", give the FSF's URL,
46818         not its snail mail address.
46819
46820 2012-02-09  Richard Henderson  <rth@twiddle.net>
46821
46822         * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
46823         of kernel-features.h.
46824
46825         * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
46826
46827 2012-02-08  Marek Polacek  <polacek@redhat.com>
46828
46829         * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
46830         * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
46831         * sysdeps/gnu/_G_config.h: Likewise.
46832         * sysdeps/generic/_G_config.h: Likewise.
46833
46834 2012-02-08  Andreas Schwab  <schwab@linux-m68k.org>
46835
46836         * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
46837         tests.
46838         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46839
46840         * sysdeps/powerpc/powerpc32/crti.S: New file.
46841         * sysdeps/powerpc/powerpc32/crtn.S: New file.
46842         * sysdeps/powerpc/powerpc64/crti.S: New file.
46843         * sysdeps/powerpc/powerpc64/crtn.S: New file.
46844
46845         * Makeconfig (have-initfini): Don't set.
46846         * config.make.in (have-initfini, need-nopic-initfini): Don't set.
46847         * configure.in (nopic_initfini): Don't substitute.
46848         * config.h.in (HAVE_INITFINI): Don't #undef.
46849         * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
46850         * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
46851
46852 2012-02-08  Joseph Myers  <joseph@codesourcery.com>
46853
46854         Support crti.S and crtn.S provided directly by architectures.
46855         * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
46856         [crti.S in sysdirs] (omit-deps): Likewise.
46857         [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
46858         [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
46859         [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
46860         [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
46861         [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
46862         [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
46863         [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
46864         [crti.S in sysdirs] (initfini.c): Remove vpath directive.
46865         * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
46866         compiler output for sysdeps/generic/initfini.c.
46867         * sysdeps/i386/elf/Makefile: Remove file.
46868         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
46869
46870 2012-02-07  Marek Polacek  <polacek@redhat.com>
46871
46872         * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
46873         * sysdeps/gnu/_G_config.h: Likewise.
46874         * sysdeps/mach/hurd/_G_config.h: Likewise.
46875
46876 2012-02-07  Marek Polacek  <polacek@redhat.com>
46877
46878         * math/Makefile (tests): Add tst-CMPLX2.
46879         * math/tst-CMPLX2.c: New file.
46880
46881 2012-02-07  Andreas Schwab  <schwab@linux-m68k.org>
46882
46883         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
46884
46885         * math/libm-test.inc (jn_test): Add missing L suffix.
46886
46887 2012-02-06  Marek Polacek  <polacek@redhat.com>
46888
46889         * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
46890         * sysdeps/i386/fpu/e_powf.S: Likewise.
46891         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
46892         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
46893         * sysdeps/i386/fpu/e_acosh.S: Likewise.
46894         * sysdeps/i386/fpu/e_pow.S: Likewise.
46895         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
46896         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
46897         * sysdeps/i386/fpu/s_expm1.S: Likewise.
46898         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
46899         * sysdeps/i386/fpu/e_log2.S: Likewise.
46900         * sysdeps/i386/fpu/e_log2l.S: Likewise.
46901         * sysdeps/i386/fpu/e_scalb.S: Likewise.
46902         * sysdeps/i386/fpu/e_powl.S: Likewise.
46903         * sysdeps/i386/fpu/s_log1p.S: Likewise.
46904         * sysdeps/i386/fpu/e_log10f.S: Likewise.
46905         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
46906         * sysdeps/i386/fpu/e_logl.S: Likewise.
46907         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
46908         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
46909         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
46910         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
46911         * sysdeps/i386/fpu/e_log2f.S: Likewise.
46912         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
46913         * sysdeps/i386/fpu/e_log.S: Likewise.
46914         * sysdeps/i386/fpu/s_cexp.S: Likewise.
46915         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
46916         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
46917         * sysdeps/i386/fpu/e_logf.S: Likewise.
46918         * sysdeps/i386/fpu/e_log10l.S: Likewise.
46919         * sysdeps/i386/fpu/e_atanh.S: Likewise.
46920         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
46921         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
46922         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
46923         * sysdeps/i386/fpu/e_log10.S: Likewise.
46924         * sysdeps/i386/fpu/s_frexp.S: Likewise.
46925         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
46926         * sysdeps/i386/fpu/s_asinh.S: Likewise.
46927         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
46928         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
46929         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
46930         * sysdeps/i386/asm-syntax.h: Likewise.
46931         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
46932         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
46933         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
46934         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
46935         * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
46936         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
46937         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
46938         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
46939         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
46940         * sysdeps/powerpc/sysdep.h: Likewise.
46941         * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
46942         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
46943
46944 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
46945
46946         [BZ #411]
46947         * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
46948
46949 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
46950
46951         * sysdeps/i386/sysdep.h: Include <features.h>.
46952         (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
46953         version.
46954
46955 2012-02-05  Joseph Myers  <joseph@codesourcery.com>
46956
46957         * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
46958         Define.
46959         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
46960         LOAD_PIC_REG_STR.
46961
46962 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
46963
46964         * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
46965         (SETUP_PIC_REG): Use GET_PC_THUNK.
46966         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
46967         macro.
46968
46969 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
46970
46971         * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
46972         for non-PIC compilation.
46973         (SETUP_PIC_REG): Add .p2align directive.
46974         * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
46975         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
46976         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
46977         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
46978         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
46979         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
46980         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
46981         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
46982         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
46983         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
46984         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
46985         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
46986         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
46987         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
46988         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
46989         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
46990         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
46991         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
46992         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
46993         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
46994         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
46995         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
46996         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
46997         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
46998         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
46999         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
47000         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
47001         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
47002         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
47003         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
47004         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
47005         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
47006         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
47007         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
47008         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
47009         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
47010         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
47011         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
47012         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
47013         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
47014         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
47015
47016 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
47017
47018         * math/tst-CMPLX.c: Include <stdio.h>.
47019
47020 2012-01-31  Joseph Myers  <joseph@codesourcery.com>
47021
47022         * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
47023         float.
47024         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
47025         * sysdeps/sparc/bits/mathdef.h: Likewise.
47026
47027 2012-01-31  Marek Polacek  <polacek@redhat.com>
47028
47029         * libio/libio.h: Don't define _PARAMS.
47030         * locale/programs/config.h: Don't define PARAMS.
47031         * stdlib/strtol_l.c: Likewise.
47032         (__strtol_l): Remove PARAMS from the prototype.
47033
47034 2012-01-31  Ulrich Drepper  <drepper@gmail.com>
47035
47036         * malloc/malloc.c: Remove name translation.  Don't use mixed-cap
47037         names.  Just use the correct names.  Remove unnecessary wrapper
47038         functions.
47039         * malloc/arena.c: Likewise.
47040         * malloc/hooks.c: Likewise.
47041
47042         * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
47043         ARENA_TEST says not to.  Simplify test for creation of a new arena.
47044         Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
47045
47046 2012-01-30  Ulrich Drepper  <drepper@gmail.com>
47047
47048         * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
47049         into tail calls.
47050         (update_get_addr): New function.
47051         (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
47052         GET_ADDR_MODULE parameter.
47053
47054 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
47055
47056         * crypt/cert.c: Remove __STDC__ conditionals.
47057         * crypt/crypt-entry.c: Likewise.
47058         * crypt/crypt_util.c: Likewise.
47059         * libio/filedoalloc.c: Likewise.
47060         * libio/fileops.c: Likewise.
47061         * libio/genops.c: Likewise.
47062         * libio/iofclose.c: Likewise.
47063         * libio/iofdopen.c: Likewise.
47064         * libio/iofopen.c: Likewise.
47065         * libio/iofopen64.c: Likewise.
47066         * libio/iogetdelim.c: Likewise.
47067         * libio/iopopen.c: Likewise.
47068         * libio/obprintf.c: Likewise.
47069         * libio/oldfileops.c: Likewise.
47070         * libio/oldiofclose.c: Likewise.
47071         * libio/oldiofdopen.c: Likewise.
47072         * libio/oldiofopen.c: Likewise.
47073         * libio/oldiopopen.c: Likewise.
47074         * libio/wfiledoalloc.c: Likewise.
47075         * libio/wgenops.c: Likewise.
47076         * locale/programs/xmalloc.c: Likewise.
47077         * misc/syslog.c: Likewise.
47078         * stdio-common/xbug.c: Likewise.
47079         * string/memchr.c: Likewise.
47080         * string/memcmp.c: Likewise.
47081         * string/memrchr.c: Likewise.
47082         * string/rawmemchr.c: Likewise.
47083         * sysdeps/posix/getcwd.c: Likewise.
47084         * time/strftime_l.c: Likewise.
47085
47086 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
47087
47088         * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
47089         * config.make.in (config-cflags-sse2avx): Define.
47090         * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
47091         Fix typo.
47092
47093 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
47094
47095         * scripts/config.guess: Update from upstream config git repository.
47096         * scripts/config.sub: Likewise.
47097
47098 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
47099
47100         * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
47101         (EM_NUM): Update.
47102         (R_TILEPRO_*, R_TILEGX_*): New macros.
47103
47104         * scripts/firstversions.awk: Fix bug in version range handling.
47105
47106         * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
47107
47108         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
47109
47110         * include/sys/epoll.h: New file.
47111         * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
47112         libc_hidden_def.
47113
47114 2012-01-28  Ulrich Drepper  <drepper@gmail.com>
47115
47116         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
47117         Avoid unnecessary __WORDSIZE == 64 test.
47118         (fmaxf): Use VEX format if possible.
47119         (fmax): Likewise.
47120         (fminf): Likewise.
47121         (fmin): Likewise.
47122
47123         * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
47124         * math/math_private.h: Remove libc_fegetround* and
47125         libc_fesetround*.
47126         * sysdeps/i386/configure.in: Check for -msse2avx.
47127         * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
47128         also if SSE2AVX is defined.
47129         Remove libc_fegetround* and libc_fesetround*.
47130         * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
47131         if config-cflags-sse2avx is yes.  Also add -DSSE2AVX to defines.
47132         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
47133         of HAS_YMM_USABLE.
47134         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
47135         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
47136         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
47137         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
47138         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
47139
47140         * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
47141
47142 2012-01-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
47143
47144         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
47145         size is not set.
47146         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
47147
47148 2012-01-27  Ulrich Drepper  <drepper@gmail.com>
47149
47150         [BZ #13618]
47151         * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
47152         relocation.
47153         * Makeconfig (libm): Define.
47154         * elf/Makefile: Add rules to build and run tst-relsort1.
47155         * elf/tst-relsort1.c: New file.
47156         * elf/tst-relsort1mod1.c: New file.
47157         * elf/tst-relsort1mod2.c: New file.
47158
47159 2012-01-27  Joseph Myers  <joseph@codesourcery.com>
47160
47161         * math/s_ldexp.c: Remove __STDC__ conditionals.
47162         * math/s_ldexpf.c: Likewise.
47163         * math/s_ldexpl.c: Likewise.
47164         * math/s_nextafter.c: Likewise.
47165         * math/s_nexttowardf.c: Likewise.
47166         * math/s_significand.c: Likewise.
47167         * math/s_significandf.c: Likewise.
47168         * math/s_significandl.c: Likewise.
47169         * math/w_jnl.c: Likewise.
47170         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
47171         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
47172         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
47173         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
47174         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
47175         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
47176         * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
47177         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
47178         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
47179         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
47180         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
47181         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
47182         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
47183         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
47184         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
47185         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
47186         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
47187         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
47188         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
47189         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
47190         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
47191         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
47192         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
47193         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
47194         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
47195         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
47196         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
47197         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
47198         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
47199         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
47200         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
47201         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
47202         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
47203         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
47204         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
47205         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
47206         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
47207         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
47208         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
47209         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
47210         * sysdeps/ieee754/k_standard.c: Likewise.
47211         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
47212         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
47213         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
47214         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
47215         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
47216         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
47217         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
47218         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
47219         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
47220         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
47221         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
47222         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
47223         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
47224         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
47225         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
47226         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
47227         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
47228         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
47229         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
47230         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
47231         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
47232         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
47233         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
47234         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
47235         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
47236         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
47237         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
47238         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
47239         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
47240         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
47241         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
47242         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
47243         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
47244         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
47245         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
47246         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
47247         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
47248         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
47249         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
47250         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
47251         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
47252         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
47253         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
47254         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
47255         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
47256         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
47257         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
47258         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
47259         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
47260         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
47261         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
47262         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
47263         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
47264         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
47265         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
47266         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
47267         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
47268         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
47269         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
47270         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
47271         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
47272         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
47273         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
47274         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
47275         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
47276         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
47277         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
47278         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
47279         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
47280         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
47281         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
47282         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
47283         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
47284         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
47285         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
47286         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
47287         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
47288         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
47289         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
47290         * sysdeps/ieee754/s_matherr.c: Likewise.
47291         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
47292         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
47293         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
47294         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
47295
47296 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
47297
47298         * crypt/md5.h: Remove __STDC__ conditionals.
47299         * libio/libioP.h: Likewise.
47300         * locale/programs/config.h: Likewise.
47301         * sysdeps/generic/sysdep.h: Likewise.
47302         * sysdeps/i386/asm-syntax.h: Likewise.
47303         * sysdeps/s390/asm-syntax.h: Likewise.
47304         * sysdeps/unix/sysdep.h: Likewise.
47305         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
47306         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
47307
47308 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
47309
47310         * libio/libio.h: Remove __STDC__ conditionals.
47311         * malloc/obstack.h: Likewise.
47312         * math/complex.h: Likewise.
47313         * math/math.h: Likewise.
47314         * sysdeps/generic/_G_config.h: Likewise.
47315         * sysdeps/gnu/_G_config.h: Likewise.
47316         * sysdeps/mach/hurd/_G_config.h: Likewise.
47317         * sysdeps/powerpc/bits/mathdef.h: Likewise.
47318         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
47319         * sysdeps/sparc/bits/mathdef.h: Likewise.
47320
47321 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
47322
47323         [BZ #13583]
47324         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
47325         Clean up HAS_* macros.
47326         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
47327         bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
47328         possible.
47329         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
47330         HAS_AVX.
47331         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
47332         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
47333         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
47334         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
47335         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
47336
47337 2012-01-25  Joseph Myers  <joseph@codesourcery.com>
47338
47339         * elf/tst-unique3.cc (gets): Remove declaration.
47340         * elf/tst-unique3lib.cc (gets): Likewise.
47341         * elf/tst-unique3lib2.cc (gets): Likewise.
47342         * elf/tst-unique4.cc (gets): Likewise.
47343
47344 2012-01-24  Ulrich Drepper  <drepper@gmail.com>
47345
47346         * include/stdio.h: Add C++ protection.  Add gets declarations and
47347         definitions.
47348         * debug/tst-chk1.c: Don't declare gets here.
47349         * stdio-common/tst-gets.c: Likewise.
47350
47351 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
47352
47353         * posix/glob: Remove directory.
47354
47355 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
47356
47357         * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
47358
47359 2012-01-22  Pino Toscano  <toscano.pino@tiscali.it>
47360
47361         * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
47362         of the non-standard EPFNOSUPPORT.
47363
47364 2011-12-26  Samuel Thibault  <samuel.thibault@ens-lyon.org>
47365
47366         * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
47367         __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
47368         ANYWHERE set to 1 only on KERN_NO_SPACE error.
47369
47370 2012-01-21  Ulrich Drepper  <drepper@gmail.com>
47371
47372         * wcsmbs/uchar.h: Test __STDC_VERSION__.
47373
47374 2012-01-20  Ulrich Drepper  <drepper@gmail.com>
47375
47376         * nscd/aicache.c (addhstaiX): Do not cache negative results of
47377         transient errors.
47378         * nscd/grpcache.c (cache_addgr): Likewise.
47379         * nscd/hstcache.c (cache_addhst): Likewise.
47380         * nscd/initgrcache.c (addinitgroupsX): Likewise.
47381         * nscd/pwdcache.c (cache_addpw): Likewise.
47382         * nscd/servicescache.c (cache_addserv): Likewise.
47383
47384 2012-01-16  Ulrich Drepper  <drepper@gmail.com>
47385
47386         * malloc/malloc.c: Various cleanups.
47387         * malloc/hooks.c: Likewise.
47388
47389         * stdlib/Makefile (tests): Add bug-fmtmsg1.
47390         * stdlib/bug-fmtmsg1.c: New file.
47391
47392         * stdlib/fmtmsg.c (init): Add missing unlock.
47393         Patch by Peng Haitao <penght@cn.fujitsu.com>.
47394
47395 2012-01-12  Marek Polacek  <polacek@redhat.com>
47396
47397         * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
47398         and _GNU_SOURCE.
47399
47400 2012-01-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
47401
47402         * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
47403         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
47404         macro to ensure uniqueness of label name.
47405         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
47406         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
47407
47408 2012-01-11  Ulrich Drepper  <drepper@gmail.com>
47409
47410         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
47411
47412         * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
47413         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
47414         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
47415         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
47416
47417 2012-01-10  Ulrich Drepper  <drepper@gmail.com>
47418
47419         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
47420
47421         * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
47422         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
47423         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
47424
47425         * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
47426
47427         * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
47428         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
47429         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
47430         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
47431
47432         * math/bits/math-finite.h: Add ldexp support.
47433
47434 2012-01-10  Marek Polacek  <polacek@redhat.com>
47435
47436         * locale/programs/localedef.h (show_archive_content): Add noreturn
47437         attribute.
47438
47439 2012-01-09  Ulrich Drepper  <drepper@gmail.com>
47440
47441         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
47442
47443 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47444
47445         * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
47446
47447         * io/Makefile (headers): Add bits/poll2.h.
47448
47449 2011-01-05  Will Schmidt  <will_schmidt@vnet.ibm.com>
47450
47451         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
47452         typo #include statement.
47453
47454 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47455
47456         * include/sys/cdefs.h: Define __attribute_alloc_size.
47457         * catgets/gencat.c: Add alloc_size attribute and apply consistently
47458         the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
47459         * elf/pldd.c: Likewise.
47460         * iconv/iconv_charmap.c: Likewise.
47461         * iconv/iconvconfig.c: Likewise.
47462         * iconv/strtab.c: Likewise.
47463         * locale/programs/locale.c: Likewise.
47464         * locale/programs/localedef.h: Likewise.
47465         * locale/programs/simple-hash.c: Likewise.
47466         * nscd/nscd.h: Likewise.
47467         * nss/makedb.c: Likewise.
47468         * sysdeps/generic/ldconfig.h: Likewise.
47469         * locale/programs/localedef.c: Remove xmalloc prototype.
47470         * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
47471
47472 2012-01-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
47473
47474         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
47475         appropriate.
47476
47477 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47478
47479         * math/Makefile (tests): Add tst-CMPLX.
47480         * math/tst-CMPLX.c: New file.
47481
47482         * math/complex.h (CMPLXL): Fix typo.
47483
47484         * debug/Makefile (routines): Add poll_chk and ppoll_chk.
47485         * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
47486         GLIBC_2.16.
47487         * debug/tst-chk1.c: Add poll and ppoll tests.
47488         * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
47489         * include/sys/poll.h: Add hidden proto for ppoll.
47490         * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
47491         * sysdeps/mach/hurd/ppoll.c: Likewise.
47492         * io/ppoll.c: Likewise.
47493         * debug/poll_chk.c: New file.
47494         * debug/ppoll_chk.c: New file.
47495         * include/bits/poll2.h: New file.
47496         * io/bits/poll2.h: New file.
47497
47498         [BZ #1350]
47499         * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
47500
47501         * configure.in: static is always set to yes.  Remove.
47502         * config.make.in: Don't set build-static.
47503         * Makeconfig: Remove use of build-static.
47504         * dlfcn/Makefile: Likewise.
47505         * elf/Makefile: Likewise.
47506         * math/Makefile: Likewise.
47507         * misc/Makefile: Likewise.
47508         * nptl/Makefile: Likewise.
47509         * sysdeps/mach/hurd/Makefile: Likewise.
47510
47511         * configure.in: PWD_P is not used anymore.
47512         * config.make.in: Remove PWD_P entry.
47513
47514         * configure.in: Remove last remnants of RANLIB.
47515         No need to check for signed size_t anymore.
47516         Don't set libc_commonpagesize and libc_relro_required here for Alpha
47517         and IA-64.
47518         Remove __builtin_expect test because we require at least gcc 3.4.
47519         * aclocal.m4: Likewise.
47520
47521         * wcsmbs/mbrtoc16.c: Implement using towc function.
47522         * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
47523         * wcsmbs/wcsmbsload.c: Likewise.
47524         * iconv/gconv_simple.c: Likewise.
47525         * iconv/gconv_int.h: Likewise.
47526         * iconv/gconv_builtin.h: Likewise.
47527         * iconv/iconv_prog.c: Remove CHAR16 handling.
47528
47529         * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
47530
47531         * wcsmbs/mbrtowc.c: Better check for invalid inputs.
47532
47533         * configure.in: Remove --with-elf and --enable-bounded options.
47534         Dont set base_machine for ia64.  More non-ELF conditions removed.
47535         Remove testing and setting of leading underscore information.
47536         * config.make.in (build-bounded): Set to no.
47537         * config.h.in: Remove NO_UNDERSCORES entry.
47538         * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS.  ELF has
47539         them.
47540         * csu/start.c: Remove !NO_UNDERSCORE code.
47541         * locale/localeinfo.h: Likewise.
47542         * sysdeps/generic/machine-gmon.h: Likewise.
47543         * sysdeps/generic/sysdep.h: Likewise.
47544         * sysdeps/i386/sysdep.h: Likewise.
47545         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
47546         * sysdeps/mach/sysdep.h: Likewise.
47547         * sysdeps/s390/s390-32/sysdep.h: Likewise.
47548         * sysdeps/s390/s390-64/sysdep.h: Likewise.
47549         * sysdeps/sh/sysdep.h: Likewise.
47550         * sysdeps/sparc/sparc32/alloca.S: Likewise.
47551         * sysdeps/unix/i386/sysdep.S: Likewise.
47552         * sysdeps/unix/sparc/start.c: Likewise.
47553         * sysdeps/unix/sparc/sysdep.S: Likewise.
47554         * sysdeps/unix/sparc/sysdep.h: Likewise.
47555         * sysdeps/unix/start.c: Likewise.
47556         * sysdeps/unix/x86_64/sysdep.S: Likewise.
47557         * sysdeps/x86_64/sysdep.h: Likewise.
47558
47559 2012-01-07  Ulrich Drepper  <drepper@gmail.com>
47560
47561         [BZ #13553]
47562         * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
47563         for non-gcc.
47564         * argp/argp-fmtstream.h: Use const instead __const.
47565         * argp/argp.h: Likewise.
47566         * assert/assert.h: Likewise.
47567         * bits/fenv.h: Likewise.
47568         * bits/sched.h: Likewise.
47569         * bits/sigset.h: Likewise.
47570         * bits/sigthread.h: Likewise.
47571         * catgets/nl_types.h: Likewise.
47572         * conform/data/pthread.h-data: Likewise.
47573         * crypt/crypt-private.h: Likewise.
47574         * crypt/crypt.h: Likewise.
47575         * crypt/crypt_util.c: Likewise.
47576         * ctype/ctype.h: Likewise.
47577         * debug/execinfo.h: Likewise.
47578         * debug/mbsnrtowcs_chk.c: Likewise.
47579         * debug/mbsrtowcs_chk.c: Likewise.
47580         * debug/wcsnrtombs_chk.c: Likewise.
47581         * debug/wcsrtombs_chk.c: Likewise.
47582         * debug/wcstombs_chk.c: Likewise.
47583         * dirent/dirent.h: Likewise.
47584         * dlfcn/dlfcn.h: Likewise.
47585         * elf/neededtest4.c: Likewise.
47586         * grp/grp.h: Likewise.
47587         * gshadow/gshadow.h: Likewise.
47588         * iconv/gconv.h: Likewise.
47589         * iconv/gconv_int.h: Likewise.
47590         * iconv/gconv_simple.c: Likewise.
47591         * iconv/iconv.h: Likewise.
47592         * iconv/loop.c: Likewise.
47593         * iconv/skeleton.c: Likewise.
47594         * include/aio.h: Likewise.
47595         * include/aliases.h: Likewise.
47596         * include/argz.h: Likewise.
47597         * include/arpa/inet.h: Likewise.
47598         * include/assert.h: Likewise.
47599         * include/dirent.h: Likewise.
47600         * include/dlfcn.h: Likewise.
47601         * include/execinfo.h: Likewise.
47602         * include/fcntl.h: Likewise.
47603         * include/fenv.h: Likewise.
47604         * include/glob.h: Likewise.
47605         * include/grp.h: Likewise.
47606         * include/libintl.h: Likewise.
47607         * include/mntent.h: Likewise.
47608         * include/netdb.h: Likewise.
47609         * include/pwd.h: Likewise.
47610         * include/rpc/netdb.h: Likewise.
47611         * include/sched.h: Likewise.
47612         * include/search.h: Likewise.
47613         * include/shadow.h: Likewise.
47614         * include/signal.h: Likewise.
47615         * include/stdio.h: Likewise.
47616         * include/stdlib.h: Likewise.
47617         * include/string.h: Likewise.
47618         * include/sys/socket.h: Likewise.
47619         * include/sys/stat.h: Likewise.
47620         * include/sys/statfs.h: Likewise.
47621         * include/sys/statvfs.h: Likewise.
47622         * include/sys/syslog.h: Likewise.
47623         * include/sys/time.h: Likewise.
47624         * include/sys/uio.h: Likewise.
47625         * include/time.h: Likewise.
47626         * include/unistd.h: Likewise.
47627         * include/utmp.h: Likewise.
47628         * include/wchar.h: Likewise.
47629         * include/wctype.h: Likewise.
47630         * inet/aliases.h: Likewise.
47631         * inet/arpa/inet.h: Likewise.
47632         * inet/netinet/ether.h: Likewise.
47633         * inet/netinet/in.h: Likewise.
47634         * intl/libintl.h: Likewise.
47635         * io/bits/fcntl2.h: Likewise.
47636         * io/fcntl.h: Likewise.
47637         * io/ftw.h: Likewise.
47638         * io/sys/poll.h: Likewise.
47639         * io/sys/stat.h: Likewise.
47640         * io/sys/statfs.h: Likewise.
47641         * io/sys/statvfs.h: Likewise.
47642         * io/utime.h: Likewise.
47643         * libio/bits/stdio.h: Likewise.
47644         * libio/bits/stdio2.h: Likewise.
47645         * libio/libio.h: Likewise.
47646         * libio/libioP.h: Likewise.
47647         * libio/stdio.h: Likewise.
47648         * locale/lc-ctype.c: Likewise.
47649         * locale/locale.h: Likewise.
47650         * login/utmp.h: Likewise.
47651         * malloc/arena.c: Likewise.
47652         * malloc/malloc.c: Likewise.
47653         * malloc/malloc.h: Likewise.
47654         * malloc/mcheck.c: Likewise.
47655         * malloc/mtrace.c: Likewise.
47656         * math/bits/mathcalls.h: Likewise.
47657         * math/fenv.h: Likewise.
47658         * math/math_private.h: Likewise.
47659         * misc/bits/error.h: Likewise.
47660         * misc/bits/syslog.h: Likewise.
47661         * misc/err.h: Likewise.
47662         * misc/error.h: Likewise.
47663         * misc/fstab.h: Likewise.
47664         * misc/mntent.h: Likewise.
47665         * misc/regexp.h: Likewise.
47666         * misc/search.h: Likewise.
47667         * misc/sgtty.h: Likewise.
47668         * misc/sys/mman.h: Likewise.
47669         * misc/sys/syslog.h: Likewise.
47670         * misc/sys/uio.h: Likewise.
47671         * misc/sys/xattr.h: Likewise.
47672         * misc/ttyent.h: Likewise.
47673         * nis/rpcsvc/ypclnt.h: Likewise.
47674         * nss/nss.h: Likewise.
47675         * posix/bits/unistd.h: Likewise.
47676         * posix/fnmatch.h: Likewise.
47677         * posix/glob.h: Likewise.
47678         * posix/sched.h: Likewise.
47679         * posix/spawn.h: Likewise.
47680         * posix/sys/wait.h: Likewise.
47681         * posix/unistd.h: Likewise.
47682         * posix/wordexp.h: Likewise.
47683         * pwd/pwd.h: Likewise.
47684         * resolv/netdb.h: Likewise.
47685         * resource/sys/resource.h: Likewise.
47686         * rt/aio.h: Likewise.
47687         * rt/bits/mqueue2.h: Likewise.
47688         * rt/mqueue.h: Likewise.
47689         * shadow/shadow.h: Likewise.
47690         * signal/signal.h: Likewise.
47691         * socket/send.c: Likewise.
47692         * socket/sendto.c: Likewise.
47693         * socket/sys/socket.h: Likewise.
47694         * stdio-common/printf.h: Likewise.
47695         * stdlib/bits/stdlib.h: Likewise.
47696         * stdlib/fmtmsg.h: Likewise.
47697         * stdlib/monetary.h: Likewise.
47698         * stdlib/stdlib.h: Likewise.
47699         * stdlib/ucontext.h: Likewise.
47700         * streams/stropts.h: Likewise.
47701         * string/argz.h: Likewise.
47702         * string/bits/string2.h: Likewise.
47703         * string/string.h: Likewise.
47704         * string/strings.h: Likewise.
47705         * sunrpc/rpc/auth.h: Likewise.
47706         * sunrpc/rpc/auth_des.h: Likewise.
47707         * sunrpc/rpc/clnt.h: Likewise.
47708         * sunrpc/rpc/netdb.h: Likewise.
47709         * sunrpc/rpc/pmap_clnt.h: Likewise.
47710         * sunrpc/rpc/xdr.h: Likewise.
47711         * sysdeps/generic/inttypes.h: Likewise.
47712         * sysdeps/generic/net/if.h: Likewise.
47713         * sysdeps/generic/sys/swap.h: Likewise.
47714         * sysdeps/gnu/net/if.h: Likewise.
47715         * sysdeps/gnu/utmpx.h: Likewise.
47716         * sysdeps/i386/fpu/bits/fenv.h: Likewise.
47717         * sysdeps/i386/i486/bits/string.h: Likewise.
47718         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
47719         * sysdeps/s390/bits/string.h: Likewise.
47720         * sysdeps/s390/fpu/bits/fenv.h: Likewise.
47721         * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
47722         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
47723         * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
47724         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
47725         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
47726         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
47727         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
47728         * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
47729         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
47730         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
47731         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
47732         * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
47733         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
47734         * sysdeps/unix/sysv/linux/readv.c: Likewise.
47735         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
47736         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
47737         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
47738         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
47739         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
47740         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
47741         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
47742         * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
47743         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
47744         * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
47745         * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
47746         * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
47747         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
47748         * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
47749         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
47750         * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
47751         * sysvipc/sys/ipc.h: Likewise.
47752         * sysvipc/sys/msg.h: Likewise.
47753         * sysvipc/sys/sem.h: Likewise.
47754         * sysvipc/sys/shm.h: Likewise.
47755         * termios/termios.h: Likewise.
47756         * time/sys/time.h: Likewise.
47757         * time/time.h: Likewise.
47758         * wcsmbs/bits/wchar2.h: Likewise.
47759         * wcsmbs/uchar.h: Likewise.
47760         * wcsmbs/wchar.h: Likewise.
47761         * wctype/wctype.h: Likewise.
47762
47763         [BZ #13551]
47764         * Makeconfig: Remove all but ELF support including AIX support.
47765         * Makerules: Likewise.
47766         * config.h.in: Likewise.
47767         * config.make.in: Likewise.
47768         * configure: Likewise.
47769         * configure.in: Likewise.
47770         * csu/Makefile: Likewise.
47771         * csu/version.c: Likewise.
47772         * debug/Makefile: Likewise.
47773         * dlfcn/Makefile: Likewise.
47774         * elf/Makefile: Likewise.
47775         * extra-lib.mk: Likewise.
47776         * iconv/Makefile: Likewise.
47777         * include/libc-symbols.h: Likewise.
47778         * include/shlib-compat.h: Likewise.
47779         * resolv/Makefile: Likewise.
47780         * resolv/res_libc.c: Likewise.
47781         * rt/Makefile: Likewise.
47782         * sysdeps/i386/asm-syntax.h: Likewise.
47783         * sysdeps/i386/sysdep.h: Likewise.
47784         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
47785         * sysdeps/mach/sysdep.h: Likewise.
47786         * sysdeps/powerpc/powerpc32/Makefile: Likewise.
47787         * sysdeps/powerpc/powerpc64/Makefile: Likewise.
47788         * sysdeps/s390/asm-syntax.h: Likewise.
47789         * sysdeps/s390/s390-32/sysdep.h: Likewise.
47790         * sysdeps/s390/s390-64/sysdep.h: Likewise.
47791         * sysdeps/sh/sysdep.h: Likewise.
47792         * sysdeps/unix/sparc/sysdep.h: Likewise.
47793         * sysdeps/wordsize-32/divdi3.c: Likewise.
47794         * sysdeps/x86_64/sysdep.h: Likewise.
47795
47796         * argp/Versions: Remove _argp_unlock_xxx.
47797
47798         [BZ #13559]
47799         * abilist/ld.abilist: Update.  Adjust for removal of tls option.
47800         * abilist/libBrokenLocale.abilist: Likewise.
47801         * abilist/libanl.abilist: Likewise.
47802         * abilist/libc.abilist: Likewise.
47803         * abilist/libcrypt.abilist: Likewise.
47804         * abilist/libdl.abilist: Likewise.
47805         * abilist/libm.abilist: Likewise.
47806         * abilist/libnsl.abilist: Likewise.
47807         * abilist/libpthread.abilist: Likewise.
47808         * abilist/libresolv.abilist: Likewise.
47809         * abilist/librt.abilist: Likewise.
47810         * abilist/libthread_db.abilist: Likewise.
47811         * abilist/libutil.abilist: Likewise.
47812         * abilist/libnss_db.abilist: New file.
47813
47814         * scripts/abilist.awk: Add support for indirect functions.
47815
47816         * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
47817
47818         * sysdeps/generic/ldsodefs.h: Remove Alpha support.
47819
47820         * shlib-versions: Remove entries for ports architectures.
47821
47822         * elf/tls-macros.h: Remove support for Alpha and IA-64.  Should be in
47823         files in ports.
47824         * elf/stackguard-macros.h: Remove support for IA-64.
47825         * elf/tst-auditmod1.c: Likewise.
47826         * sysdeps/generic/ldsodefs.h: Likewise.
47827
47828         * sysdeps/unix/sysv/linux/configure.in: Ports should define
47829         libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
47830         configure files.
47831
47832         [BZ #13552]
47833         * configure.in: Remove --enable-omitfp support.
47834         * FAQ.in: Adjust.
47835         * config.make.in: Likewise.
47836         * Makeconfig: Likewise.
47837         * manual/install.texi: Likewise.
47838
47839         In case anyone cares, the IA-64 architecture could move to ports.
47840         * sysdeps/ia64/*: Removed.
47841         * sysdeps/unix/sysv/linux/ia64/*: Removed.
47842         * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
47843
47844         [BZ #13555]
47845         * configure.in: Remove entries for unsupported architectures.
47846
47847         [BZ #13533]
47848         * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
47849         * iconv/gconv_simple.c: Rename char16_t routines.  Add char16_t<->utf8
47850         routines.
47851         * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
47852         * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
47853         * wcsmbs/c16rtomb.c: Fix a few problems.  Disable all the code and
47854         fall back to using wcrtomb.
47855         * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
47856         * wcsmbs/wcsmbsload.c: Make char16 routines optional.  Adjust for
47857         renaming.
47858         * wcsmbs/Makefile (tests): Add tst-c16c32-1:
47859         * wcsmbs/tst-c16c32-1.c: New file.
47860
47861         * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
47862         local variable.
47863
47864         * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
47865
47866         * elf/tst-unique3.cc: Add explicit declaration of gets.
47867         * elf/tst-unique3lib.cc: Likewise.
47868         * elf/tst-unique3lib2.cc: Likewise.
47869         * elf/tst-unique4.cc: Likewise.
47870
47871         * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
47872
47873 2012-01-06  Joseph Myers  <joseph@codesourcery.com>
47874
47875         [BZ #13566]
47876         * assert/assert.h (static_assert): Don't define for C++.
47877         * libio/stdio.h (gets): Do declare for C++ <= C++11.
47878         * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
47879
47880 2012-01-03  Ulrich Drepper  <drepper@gmail.com>
47881
47882         * iconv/loop.c (single loop): Fix assertion in storing of
47883         remaining bytes.
47884
47885         * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
47886
47887 2012-01-01  Ulrich Drepper  <drepper@gmail.com>
47888
47889         * posix/getconf.c: Update copyright year.
47890         * nss/getent.c: Likewise.
47891         * nss/makedb.c: Likewise.
47892         * iconv/iconvconfig.c: Likewise.
47893         * iconv/iconv_prog.c: Likewise.
47894         * elf/ldconfig.c: Likewise.
47895         * elf/pldd.c: Likewise.
47896         * elf/sotruss.ksh: Likewise.
47897         * catgets/gencat.c: Likewise.
47898         * csu/version.c: Likewise.
47899         * elf/ldd.bash.in: Likewise.
47900         * elf/sprof.c (print_version): Likewise.
47901         * locale/programs/locale.c: Likewise.
47902         * locale/programs/localedef.c: Likewise.
47903         * login/programs/pt_chown.c: Likewise.
47904         * nscd/nscd.c (print_version): Likewise.
47905         * debug/xtrace.sh: Likewise.
47906         * malloc/memusage.sh: Likewise.
47907         * malloc/mtrace.pl: Likewise.
47908         * debug/catchsegv.sh: Likewise.
47909
47910 2011-12-30  Jakub Jelinek  <jakub@redhat.com>
47911
47912         * posix/regex_internal.c (re_string_fetch_byte_case): Remove
47913         pure attribute.
47914
47915 2011-12-24  Ulrich Drepper  <drepper@gmail.com>
47916
47917         [BZ #13533]
47918         * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
47919         * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
47920         transformations.
47921         * iconv/gconv_int.h: Likewise.
47922         * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
47923         * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
47924         from libc for GLIBC_2.16.
47925         * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
47926         * wcsmbs/wcrtomb.c: Define c32rtomb alias.
47927         * wcsmbs/uchar.h: Really define mbstate_t.
47928         * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
47929         * wcsmbs/c16rtomb.c: New file.
47930         * wcsmbs/mbrtoc16.c: New file.
47931         * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
47932         for C/POSIX locale.
47933         (__wcsmbs_load_conv): Do not fill in c16 routines yet.
47934         * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
47935
47936         * wcsmbs/wchar.h: Add missing __restrict.
47937
47938 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
47939
47940         [BZ #13532]
47941         * time/Makefile (routines): Add timespec_get.
47942         * time/Versions: Export timespec_get from libc for GLIBC_2.16.
47943         * time/time.h: Define TIME_UTC and declare timespec_get.  Define
47944         timespec for ISO C11.
47945         * time/timespec_get.c: New file.
47946         * sysdeps/unix/sysv/linux/timespec_get.c: New file.
47947         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
47948
47949         [BZ #13531]
47950         * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
47951         * stdlib/stdlib.h: Declare aligned_alloc.
47952         * Versions.def: Add GLIBC_2.16 for libc.
47953         * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
47954
47955         [BZ 13527]
47956         * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
47957         ISO C11.
47958
47959         * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
47960         code.
47961
47962         [BZ #13528]
47963         * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
47964
47965         [BZ #13529]
47966         * assert/assert.h (static_assert): Define.
47967
47968         * version.h: Update for 2.16 development version.
47969
47970         [BZ #13526]
47971         * include/features.h: Handle __STDC_VERSION__ >= 201112 and
47972         _ISOC11_SOURCE.
47973
47974         * version.h (RELEASE): Bump for 2.15 release.
47975         * include/features.h (__GLIBC_MINOR__): Bump to 15.
47976
47977         * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
47978         Patch by Marek Polacek <mpolacek@redhat.com>.
47979
47980         * bits/byteswap.h: Protect long long constants with __extension__.
47981         * sysdeps/i386/bits/byteswap.h: Likewise.
47982         * sysdeps/ia64/bits/byteswap.h: Likewise.
47983         * sysdeps/s390/bits/byteswap.h: Likewise.
47984         * sysdeps/x86_64/bits/byteswap.h: Likewise.
47985
47986 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
47987
47988         [BZ #13540]
47989         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
47990         destination buffer.
47991         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
47992
47993 2011-12-23  Marek Polacek  <polacek@redhat.com>
47994
47995         * elf/dl-addr.c (determine_info): Add inline keyword.
47996         * elf/tst-auditmod4b.c (check_avx): Likewise.
47997         * elf/tst-auditmod6b.c (check_avx): Likewise.
47998         * elf/tst-auditmod6c.c (check_avx): Likewise.
47999         * elf/tst-auditmod7b.c (check_avx): Likewise.
48000
48001 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
48002
48003         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
48004         !__SSE_MATH__.
48005
48006 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48007
48008         [BZ #13540]
48009         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
48010         processing for last bytes.
48011
48012 2011-08-06  Bruno Haible  <bruno@clisp.org>
48013
48014         [BZ #13061]
48015         * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
48016         U+0385, not to U+1FEE.
48017
48018         [BZ #13062]
48019         * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
48020         entry for U+00A5 U+0301.
48021
48022 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
48023
48024         [BZ #13166]
48025         * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
48026         buffer for the output is too small.
48027
48028         * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
48029         optimization.
48030
48031         [BZ #13185]
48032         * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
48033         SSE flags if possible.
48034
48035 2011-12-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48036
48037         [BZ #13540]
48038         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
48039         processing for last bytes.
48040
48041 2011-12-22  Joseph Myers  <joseph@codesourcery.com>
48042
48043         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
48044         (syscall-list-default-options, syscall-list-default-condition)
48045         (syscall-list-includes): Define.
48046         ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
48047         list of ABIs and options and #if conditions for each ABI.  Do not
48048         handle common syscalls between ABIs specially.
48049         * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
48050         Remove.
48051         (syscall-list-variants, syscall-list-32bit-options)
48052         (syscall-list-32bit-condition, syscall-list-64bit-options)
48053         (syscall-list-64bit-condition): Define.
48054         * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
48055         (syscall-list-variants, syscall-list-32bit-options)
48056         (syscall-list-32bit-condition, syscall-list-64bit-options)
48057         (syscall-list-64bit-condition): Define.
48058         * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
48059         Remove.
48060         (syscall-list-variants, syscall-list-32bit-options)
48061         (syscall-list-32bit-condition, syscall-list-64bit-options)
48062         (syscall-list-64bit-condition): Define.
48063         * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
48064         Remove.
48065         (syscall-list-variants, syscall-list-32bit-options)
48066         (syscall-list-32bit-condition, syscall-list-64bit-options)
48067         (syscall-list-64bit-condition): Define.
48068
48069 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
48070
48071         * locale/iso-639.def: Add brx entry.
48072
48073         [BZ #13328]
48074         * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
48075         Proposed by Mariusz_Cukr <marcukr@op.pl>.
48076
48077         * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
48078         __feraiseexcept_renamed.
48079
48080 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
48081
48082         [BZ #13538]
48083         * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
48084         EPOLLET with unsigned values.
48085         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
48086         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
48087
48088         * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
48089         to large cancellation.
48090         * math/s_cacoshf.c: Likewise.
48091         * math/s_cacoshl.c: Likewise.
48092
48093 2011-11-18  Richard B. Kreckel  <kreckel@ginac.de>
48094
48095         [BZ #13305]
48096         [BZ #12786]
48097         * math/s_cacosh.c: Fix rare miscomputation in cacosh().
48098         * math/s_cacoshf.c: Likewise.
48099         * math/s_cacoshl.c: Likewise.
48100
48101 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
48102
48103         [BZ #13439]
48104         * iconv/gconv.h: Define __GCONV_SWAP.
48105         * iconvdata/unicode.c: The swap bit must be stored in __flags.
48106         * iconvdata/utf-16.c: Likewise.
48107         * iconvdata/utf-32.c: Likewise.
48108
48109 2011-12-21  Andreas Schwab  <schwab@linux-m68k.org>
48110
48111         [BZ #13524]
48112         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
48113         numerator after shifting it by one limb.
48114
48115 2011-12-19  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
48116
48117         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
48118         under [__USE_EXTERN_INLINES].
48119
48120 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
48121
48122         [BZ #13446]
48123         * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
48124
48125 2011-11-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48126
48127         * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
48128         * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
48129         optimized code.
48130         * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
48131         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
48132         * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
48133         * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
48134         for strncasecmp/strncasecmp_l compilation.
48135         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
48136         * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
48137
48138 2011-12-08  Marek Polacek  <mpolacek@redhat.com>
48139
48140         [BZ #13484]
48141         * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
48142         of __asm__.
48143
48144 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
48145
48146         [BZ #13506]
48147         * time/tzfile.c (__tzfile_read): Check values from file header.
48148
48149 2011-11-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
48150
48151         * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
48152         * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
48153         * powerpc/powerpc32/dl-start.S: Likewise.
48154         * powerpc/powerpc32/elf/start.S: Likewise.
48155         * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
48156         * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
48157         * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
48158         * powerpc/powerpc32/fpu/s_floor.S: Likewise.
48159         * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
48160         * powerpc/powerpc32/fpu/s_lround.S: Likewise.
48161         * powerpc/powerpc32/fpu/s_rint.S: Likewise.
48162         * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
48163         * powerpc/powerpc32/fpu/s_round.S: Likewise.
48164         * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
48165         * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
48166         * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
48167         * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
48168         * powerpc/powerpc32/memset.S: Likewise.
48169         * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
48170         * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
48171         * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
48172         * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
48173         * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
48174         * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
48175         * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
48176         * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
48177         * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
48178         * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
48179         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
48180         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
48181         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
48182
48183 2011-11-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48184
48185         * math/libm-test.inc: Added more nearbyint tests.
48186         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
48187         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
48188         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
48189         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
48190
48191 2011-11-21  Ross Lagerwall  <rosslagerwall@gmail.com>
48192
48193         * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
48194         FD_CLOEXEC.
48195
48196 2011-11-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48197
48198         * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
48199         Add wcscpy-ssse3 wcscpy-c.
48200         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
48201         * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
48202         * sysdeps/x86_64/multiarch/wcscpy.S: New file.
48203         * sysdeps/x86_64/wcschr.S: New file.
48204         * sysdeps/x86_64/wcsrchr.S: New file.
48205         * string/test-strcmp.c: Remove checking of wcscmp function for
48206         wrong alignments.
48207         * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
48208         (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
48209         wcsrchr-sse2 wcsrchr-c.
48210         * sysdeps/i386/i686/multiarch/wcschr.S: New file.
48211         * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
48212         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
48213         * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
48214         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
48215         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
48216         * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
48217         * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
48218         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
48219         * wcsmbc/wcschr.c (WCSCHR): New macro.
48220
48221 2011-11-17  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48222
48223         * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
48224         * wcsmbs/test-wcsrchr.c: New file.
48225         * string/test-strrchr.c: Add wcsrchr support.
48226         (WIDE): New macro.
48227         * wcsmbs/test-wcscpy.c: New file.
48228         * string/test-strcpy.c: Add wcscpy support.
48229         (WIDE): New macro.
48230
48231 2011-12-10  Ulrich Drepper  <drepper@gmail.com>
48232
48233         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
48234         the inner loop.
48235
48236 2011-12-06  Andreas Schwab  <schwab@linux-m68k.org>
48237
48238         [BZ #13472]
48239         * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
48240
48241 2011-12-04  Ulrich Drepper  <drepper@gmail.com>
48242
48243         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
48244         Minor optimizations.
48245
48246         * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
48247         * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
48248         * sunrpc/clnt_udp.c (clntudp_call): Likewise.
48249
48250 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
48251
48252         * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
48253         IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
48254         IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
48255         for gcc to avoid warnings.
48256         * inet/Makefile (tests): Add tst-checks.
48257         * inet/tst-checks.c: New file.
48258
48259         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
48260         warning.
48261
48262         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
48263         __wmemcmp_sse2.
48264
48265         * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
48266         * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
48267
48268         * malloc/mcheck.h: Fix use of incorrect encoding in comment.
48269
48270 2011-12-02  Ulrich Drepper  <drepper@gmail.com>
48271
48272         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
48273         problem.
48274
48275         * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
48276
48277 2011-11-29  Joseph Myers  <joseph@codesourcery.com>
48278
48279         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
48280         conditional on GCC version.
48281         (__arch_compare_and_exchange_val_8_acq)
48282         (__arch_compare_and_exchange_val_16_acq)
48283         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
48284         (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
48285         (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
48286
48287 2011-12-02  Joseph Myers  <joseph@codesourcery.com>
48288
48289         * sysdeps/sh/backtrace.c: New file.
48290
48291 2011-12-02  Andreas Schwab  <schwab@redhat.com>
48292
48293         * misc/bits/select2.h (__FD_ELT): Mark as extension.  Add
48294         parenthesis.
48295
48296 2011-12-01  Andreas Schwab  <schwab@redhat.com>
48297
48298         * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
48299         falling back to utime.
48300
48301 2011-11-30  Andreas Schwab  <schwab@redhat.com>
48302
48303         * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
48304         expectations for float.
48305
48306 2011-11-29  Andreas Schwab  <schwab@redhat.com>
48307
48308         * locale/weight.h (findidx): Add parameter len.
48309         * locale/weightwc.h (findidx): Likewise.
48310         * posix/fnmatch_loop.c (FCT): Adjust caller.
48311         * posix/regcomp.c (build_equiv_class): Likewise.
48312         * posix/regex_internal.h (re_string_elem_size_at): Likewise.
48313         * posix/regexec.c (check_node_accept_bytes): Likewise.
48314         * string/strcoll_l.c (STRCOLL): Likewise.
48315         * string/strxfrm_l.c (STRXFRM): Likewise.
48316
48317 2011-11-17  Ulrich Drepper  <drepper@gmail.com>
48318
48319         * Makefile.in: Remove CVSOPT handling.
48320         * configure.in: Remove use of AC_REVISION.
48321         * iconvdata/Makefile (distribute): No need to filter out CVS.
48322         * scripts/list-sources.sh: Remove CVS, subversion and monotone
48323         handling.
48324
48325 2011-11-16  Andreas Schwab  <schwab@redhat.com>
48326
48327         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
48328         [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
48329         [USE_AS_STRNCASECMP_L]: Likewise.
48330         (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
48331         NO_TLS_DIRECT_SEG_REFS.
48332         * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
48333         Fix argument offsets for non-PIC.
48334         [USE_AS_STRNCASECMP_L]: Likewise.
48335         (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
48336         NO_TLS_DIRECT_SEG_REFS.
48337
48338 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
48339
48340         * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
48341         O_CLOEXEC.
48342         * locale/loadlocale.c (_nl_load_locale): Likewise.
48343
48344 2011-11-15  Andreas Schwab  <schwab@redhat.com>
48345
48346         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
48347         [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
48348         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
48349         (SYSCALL_GETTIME): Set errno on error.
48350
48351         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
48352         count references to noai6ai_cached.
48353
48354 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
48355
48356         * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
48357
48358         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
48359         FD_CLOEXEC for /proc/self/maps.
48360
48361         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
48362         FD_CLOEXEC for /proc/meminfo.
48363
48364         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
48365         gai.conf.
48366
48367         * resolv/res_query.c (res_hostalias):  Don't allow cancellation and set
48368         FD_CLOEXEC for given file.
48369
48370         * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
48371
48372         * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
48373         FD_CLOEXEC for /etc/hosts.
48374         (_gethtent): Likewise.
48375
48376         * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
48377
48378         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
48379         cancellation and set FD_CLOEXEC for /etc/netgroup.
48380
48381         * nss/nss_files/files-key.c (search): Don't allow cancellation when
48382         reading /etc/publickey.
48383
48384         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
48385         allow cancellation when reading /etc/group.
48386
48387         * nss/nss_files/files-alias.c (internal_setent): Don't allow
48388         cancellation.
48389         (get_next_alias): Likewise for included file.  Also set FD_CLOEXEC.
48390
48391         * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
48392         when using data file.
48393
48394         * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
48395
48396         * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
48397         (write_nis_obj): Use "c" and "e" in fopen.
48398
48399         * misc/mntent_r.c (__setmntent): Also append e to fopen format.
48400
48401         * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
48402
48403         * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
48404
48405         * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
48406
48407         * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
48408         locale.alias.
48409
48410         * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
48411
48412         * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
48413
48414         * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
48415
48416         * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
48417         file parsing and set FD_CLOEXEC.
48418
48419 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
48420
48421         * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
48422
48423 2011-11-14  Andreas Schwab  <schwab@redhat.com>
48424
48425         * malloc/arena.c (arena_get2): Don't call reused_arena when
48426         _int_new_arena failed.
48427
48428 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
48429
48430         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
48431         (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
48432         * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
48433         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
48434         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
48435         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
48436         to compile strcasecmp and strncasecmp.
48437         * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
48438         * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
48439
48440         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
48441
48442 2011-11-13  Ulrich Drepper  <drepper@gmail.com>
48443
48444         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
48445         locale-defines.sym to gen-as-const-headers.
48446         (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
48447         strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
48448         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
48449         to compile strcasecmp and strncasecmp.
48450         * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
48451         strcasecmp_l and strncasecmp_l.
48452         * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
48453         * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
48454         * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
48455         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
48456         * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
48457         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
48458         * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
48459         * sysdeps/i386/i686/multiarch/strncase.S: New file.
48460         * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
48461         * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
48462         * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
48463
48464 2011-11-12  Ulrich Drepper  <drepper@gmail.com>
48465
48466         * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
48467         result of SYSDEP_GETTIME_CPU to retval.
48468         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
48469         parameter list to macro.  Remove trailing semicolon.  Adjust users.
48470
48471         * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
48472         variable.
48473
48474         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
48475         mantissa words.
48476         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
48477
48478         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
48479         from unused variable.
48480
48481         * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
48482         DWARF definitions.
48483         * sysdeps/generic/dwarf2.h: Don't define enums when using the file
48484         for assembling.
48485
48486         * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
48487         over namespaces.
48488
48489         * sunrpc/rpc_prot.c (rejected): Fix case value.
48490
48491         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
48492         unsigned long long int to avoid warnings in shift.
48493
48494         * posix/regex_internal.c (re_string_reconstruct): Actually use result
48495         of use of trans.
48496         * posix/regex_internal.h (re_string_wchar_at): Remove temporary
48497         variable tmp.
48498
48499         * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
48500         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
48501         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
48502
48503         * nis/nis_table.c (nis_list): Use variable of correct type for
48504         result of __follow_path call.
48505
48506 2011-11-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48507
48508         * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
48509         of math functions ceil, trunc, floor, round, and sqrt, when
48510         avaliable on the platform.
48511         * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
48512         name clash.
48513         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
48514         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
48515         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
48516
48517 2011-10-30  Marek Polacek  <mpolacek@redhat.com>
48518
48519         * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
48520         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
48521
48522 2011-11-11  Roland McGrath  <roland@hack.frob.com>
48523
48524         * include/unistd.h: Fix __readlink return type.
48525         Reported by Chris Metcalf <cmetcalf@tilera.com>.
48526
48527 2011-11-11  Ulrich Drepper  <drepper@gmail.com>
48528
48529         * stdlib/ucontext.h: Undo last change for makecontext.
48530
48531 2011-11-11  Andreas Schwab  <schwab@redhat.com>
48532
48533         * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
48534
48535         * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
48536         * setjmp/setjmp.h: Mark functions as non-leaf.
48537         * setjmp/bits/setjmp2.h: Likewise.
48538         * stdlib/ucontext.h: Likewise.
48539
48540 2011-11-10  Andreas Schwab  <schwab@redhat.com>
48541
48542         * malloc/arena.c (_int_new_arena): Don't increment narenas.
48543         (reused_arena): Don't check arena limit.
48544         (arena_get2): Atomically check arena limit.
48545
48546 2011-11-08  Ulrich Drepper  <drepper@gmail.com>
48547
48548         * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
48549         * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
48550
48551         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
48552         instructions.
48553
48554 2011-11-07  Andreas Schwab  <schwab@redhat.com>
48555
48556         * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
48557         handler when locking.
48558
48559         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
48560         Fix size of allocated buffer.
48561
48562 2011-11-04  Andreas Schwab  <schwab@redhat.com>
48563
48564         [BZ #10103]
48565         * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
48566         declarations for long double functions.
48567         * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
48568
48569         * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
48570
48571 2011-11-03  Andreas Schwab  <schwab@redhat.com>
48572
48573         * nscd/nscd.c (main): Don't start AVC thread until credentials are
48574         installed.
48575
48576         * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
48577         is disabled.
48578
48579 2011-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
48580
48581         * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
48582
48583 2011-11-01  Andreas Schwab  <schwab@linux-m68k.org>
48584
48585         * include/alloca.h (stackinfo_alloca_round): Define.
48586         (extend_alloca): Use it.
48587         [_STACK_GROWS_UP]: Correct check for adjacent allocation.
48588         * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
48589         here.
48590
48591         * scripts/check-local-headers.sh: Ignore libaudit.h.
48592
48593         * nscd/Makefile (extra-objs): Make recursively expanded.
48594
48595 2011-11-01  Ulrich Drepper  <drepper@gmail.com>
48596
48597         * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
48598         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
48599
48600         * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
48601         * posix/tst-rfc3484-2.c: Likewise.
48602         * posix/tst-rfc3484-3.c: Likewise.
48603
48604         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
48605         process_vm_writev.
48606         * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
48607         process_vm_writev.
48608         * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
48609         process_vm_writev from libc using GLIBC_2.15 version.
48610
48611         * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
48612
48613 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
48614
48615         * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
48616         stack usage.
48617
48618 2011-10-31  Ulrich Drepper  <drepper@gmail.com>
48619
48620         [BZ #13367]
48621         * nss/getent.c (initgroups_keys): Show error message in case no group
48622         names are given.
48623
48624         * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
48625         * inet/check_pf.c: Provide dummy versions of __free_in6ai and
48626         __bump_nl_timestamp.
48627         * nscd/connections (nscd_init): When host database is served open
48628         netlink socket and request notification about configuration changes.
48629         (main_loop_poll): Track netlink file descriptor and bump timestamp
48630         in case data becomes available.
48631         (main_loop_epoll): Likewise.
48632         * nscd/nscd-client.h (DB_VERSION): Bump to 2.
48633         (database_pers_head): Add extra_data fileds.
48634         Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
48635         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
48636         * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
48637         Adjust caller.
48638         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
48639         in6ai data, call __free_in6ai.
48640         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
48641         Add -DHAVE_NETLINK.
48642         * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite.  Cache the
48643         interface information.  Reuse previous data if netlink timestamp
48644         is not changed.
48645         (__bump_nl_timestamp): New function.
48646         (__free_in6ai): New function.
48647
48648 2011-10-30  Ulrich Drepper  <drepper@gmail.com>
48649
48650         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
48651         close_not_cancel_no_status here.
48652         (__check_pf): Reorganize code a bit to not call close twice if OOM.
48653
48654 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
48655
48656         [BZ #13276]
48657         * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
48658         return value.
48659
48660         * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
48661         * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
48662         asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
48663
48664 2011-07-03  Andreas Jaeger  <aj@suse.de>
48665
48666         [BZ #10709]
48667         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
48668         of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
48669         * math/libm-test.inc (sin_test): Add test case.
48670
48671 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
48672
48673         [BZ #13337]
48674         * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
48675         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
48676
48677         * elf/chroot_canon.c (chroot_canon): Cleanups.
48678
48679         * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
48680
48681         [BZ #13335]
48682         * elf/chroot_canon.c (chroot_canon): Fix readlink call.
48683         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
48684
48685         * string/test-strchr.c: Make usable for strchrnul testing.
48686         * string/test-strchrnul.c: New file.
48687         * string/Makefile (strop-tests): Add strchrnul.
48688
48689         * po/it.po: Update from translation team.
48690         * po/es.po: Likewise.
48691
48692 2011-10-28  Ulrich Drepper  <drepper@gmail.com>
48693
48694         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
48695         the three constants needed as parameters.  Drop the others.
48696         (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
48697         __m128i_strloadu_tolower.
48698         Create and initialize variable zero and use it in all the places
48699         where _mm_setzero_si128 was used.
48700
48701         * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
48702         doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
48703         mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
48704         * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
48705         anymore.
48706         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
48707         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
48708         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
48709         __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
48710         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
48711         __mpranred, __mptan.
48712         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
48713         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
48714         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
48715         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
48716         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
48717         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
48718         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
48719         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
48720         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
48721
48722 2011-10-28  Andreas Schwab  <schwab@redhat.com>
48723
48724         * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
48725         redefine if SHARED.
48726         * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
48727
48728         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
48729         wide char related routines to wcsmbs subdir.
48730
48731 2011-10-27  Andreas Schwab  <schwab@redhat.com>
48732
48733         [BZ #13344]
48734         * misc/sys/cdefs.h (__THROWNL): Define.
48735         * posix/unistd.h: Use __THREADNL instead of __THREAD
48736         for memory synchronization functions.
48737
48738 2011-10-26  Roland McGrath  <roland@hack.frob.com>
48739
48740         [BZ #13349]
48741         * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
48742         doesn't exist.
48743         * manual/stdio.texi (Obstack Streams): Node removed.
48744
48745 2011-10-26  Andreas Schwab  <schwab@redhat.com>
48746
48747         * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
48748         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
48749         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
48750
48751         * math/math_private.h (math_force_eval): Allow non-addressable
48752         arguments.
48753         * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
48754
48755 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48756
48757         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
48758         file is not needed.
48759
48760         * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
48761         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
48762         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
48763         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
48764         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
48765         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
48766         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
48767         * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
48768         Add AVX variants.
48769         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
48770         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
48771         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
48772         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
48773         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
48774         * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
48775         * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
48776         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
48777         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
48778         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
48779         * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
48780         * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
48781         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
48782         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
48783         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
48784         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
48785         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
48786         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
48787         * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
48788
48789         * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
48790         all the time.  Define bit_AVX.  Define HAS_* macros using bit_* macros.
48791
48792         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
48793         place.  Use VEX encoding when compiling for AVX.
48794
48795 2011-10-25  Andreas Schwab  <schwab@redhat.com>
48796
48797         * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
48798         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
48799
48800         * string/test-strchr.c (do_test): Don't generate NUL bytes.
48801
48802 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48803
48804         * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
48805         useless if() expression.
48806         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
48807         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
48808         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
48809         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
48810         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
48811         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
48812         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
48813         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
48814         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
48815         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
48816         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
48817         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
48818         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
48819         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
48820         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
48821         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
48822         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
48823         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
48824         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
48825
48826         * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
48827
48828 2011-10-25  Andreas Schwab  <schwab@redhat.com>
48829
48830         * elf/dl-deps.c (_dl_map_object_deps): Remove always true
48831         condition.
48832         * elf/dl-fini.c (_dl_sort_fini): Likewise.
48833
48834 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48835
48836         * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
48837         .text section.  Avoid duplicate constants.
48838         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
48839         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48840         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
48841         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
48842         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
48843         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48844         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48845         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
48846         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
48847         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
48848         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
48849         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
48850         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
48851         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
48852         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
48853         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
48854         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
48855         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
48856         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
48857         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
48858         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
48859         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
48860         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
48861         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
48862         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
48863         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
48864         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
48865         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
48866         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
48867         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
48868         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
48869         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
48870         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
48871         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
48872         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
48873         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
48874         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
48875         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
48876         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
48877         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
48878         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
48879         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
48880         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
48881         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
48882         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
48883
48884 2011-10-24  Ulrich Drepper  <drepper@gmail.com>
48885
48886         * sysdeps/x86_64/dla.h: Move to ...
48887         * sysdeps/x86_64/fpu/dla.h: ...here.
48888         (DLA_FMS): Some compilers fail to inline __builtin_fma in some
48889         situations.  Use __builtin_fma only for gcc 4.6 and up.
48890
48891         * config.make.in: Add have-mfma4 entry.
48892         * configure.in: Substitute libc_cv_cc_fma4.
48893         * math/Makefile (dbl-only-routines): Add sincostab.
48894         * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
48895         Use __sincostab not sincos.
48896         * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
48897         name is a macro.
48898         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
48899         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48900         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48901         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.  Define singArctan2
48902         using __copysign.
48903         * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr.  Don't define
48904         __cr and __cpymn.  Define __cpy unless NO___CPY is defined.  Define
48905         norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
48906         * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
48907         and __inv.
48908         * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
48909         * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
48910         __copysign.
48911         * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos.  Don't
48912         define aliases when function name is a macro.
48913         * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
48914         sysdeps/ieee754/dbl-64/sincos.tbl.
48915         * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
48916         fma4-enabled routines.
48917         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
48918         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
48919         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
48920         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
48921         * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
48922         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
48923         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
48924         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
48925         * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
48926         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
48927         * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
48928         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
48929         * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
48930         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
48931         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
48932         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
48933         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
48934         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
48935         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
48936         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
48937         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
48938         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
48939         * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
48940         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
48941         * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
48942         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
48943         * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
48944         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
48945         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
48946         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
48947
48948         * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
48949         rename.
48950         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48951         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48952         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
48953         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48954         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48955         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
48956         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
48957         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
48958
48959 2011-10-24  Andreas Schwab  <schwab@redhat.com>
48960
48961         * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
48962
48963 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
48964
48965         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
48966
48967         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
48968         prediction.
48969         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
48970
48971         * string/strnlen.c: Don't define STRNLEN, reverse logic.
48972         Remove unused variable magic_bits.
48973         * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
48974
48975         * string/strnlen.c: Define and use STRNLEN macro.
48976         * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
48977         Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
48978         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
48979         * wcsmbs/wcslen.c: Define and use WCSLEN.
48980         * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
48981         * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
48982         * sysdeps/i386/i686/multiarch/strnlen.S: New file.
48983         * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
48984         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
48985         * sysdeps/i386/i686/multiarch/wcslen.S: New file.
48986         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
48987
48988 2011-10-20  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48989
48990         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
48991         strnlen-sse2-no-bsf.
48992         Rename strlen-no-bsf to strlen-sse2-no-bsf.
48993         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
48994         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
48995         Add strnlen support.
48996         (USE_AS_STRNLEN): New macro.
48997         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
48998         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
48999         Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
49000         * sysdeps/x86_64/wcslen.S: New file.
49001
49002 2011-10-20  Michael Zolotukhin  <michael.v.zolotukhin@gmail.com>
49003
49004         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
49005         XMM-moves are used for copying on small sizes.
49006
49007 2011-10-19  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49008
49009         * wcsmbs/Makefile (strop-tests): Add wcschr.
49010         * wcsmbs/test-wcschr.c: New file.
49011         * string/test-strchr.c: Update.
49012         Add wcschr support.
49013         (WIDE): New macro.
49014
49015 2011-10-18  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49016
49017         * wcsmbs/Makefile (strop-tests): Add wcslen.
49018         * wcsmbs/test-wcslen.c: New file.
49019         * string/test-strlen.c: Update.
49020         Add wcslen support.
49021         (WIDE): New macro.
49022
49023 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
49024
49025         * po/it.po: Update from translation team.
49026
49027 2011-09-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49028
49029         * sysdeps/x86_64/wcscmp.S: Update.
49030         Fix wrong comparison semantics.
49031         wcscmp shall use signed comparison not unsigned.
49032         Don't use substraction to avoid overflow bug.
49033         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
49034         * wcsmbc/wcscmp.c: Likewise.
49035         * string/test-strcmp.c: Likewise.
49036         Add new tests to check cases with negative values.
49037
49038 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
49039
49040         * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
49041         * sysdeps/x86_64/dla.h: ...here.  New file.
49042         * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
49043         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
49044         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49045         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49046         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49047         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
49048         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49049         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
49050         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
49051
49052 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
49053
49054         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
49055         __ynl_finite aliases.
49056
49057 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
49058
49059         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
49060
49061         * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
49062         define DLA_FMA.
49063         [DLA_FMA] (EMULV): Use DLA_FMA.
49064         [DLA_FMA] (MUL12): Use EMULV.
49065         * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
49066         that are not needed.
49067         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
49068         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49069         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49070         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49071         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49072         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
49073         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
49074
49075 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
49076
49077         * math/s_nan.c: Undef __nan.
49078         * math/s_nanf.c: Undef __nanf.
49079         * math/s_nanl.c: Undef __nanl.
49080         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
49081         "math_private.h".
49082
49083 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
49084
49085         * math/s_catan.c: Add branch predictions.
49086         * math/s_catanf.c: Likewise.
49087         * math/s_catanh.c: Likewise.
49088         * math/s_catanhf.c: Likewise.
49089         * math/s_catanhl.c: Likewise.
49090         * math/s_catanl.c: Likewise.
49091         * math/s_cexp.c: Likewise.
49092         * math/s_cexpf.c: Likewise.
49093         * math/s_cexpl.c: Likewise.
49094         * math/s_clog.c: Likewise.
49095         * math/s_clog10.c: Likewise.
49096         * math/s_clog10f.c: Likewise.
49097         * math/s_clog10l.c: Likewise.
49098         * math/s_clogf.c: Likewise.
49099         * math/s_clogl.c: Likewise.
49100         * math/s_csqrt.c: Likewise.
49101         * math/s_csqrtf.c: Likewise.
49102         * math/s_csqrtl.c: Likewise.
49103         * math/s_ctanf.c: Likewise.
49104         * math/s_ctanh.c: Likewise.
49105         * math/s_ctanhf.c: Likewise.
49106         * math/s_ctanhl.c: Likewise.
49107         * math/s_ctanl.c: Likewise.
49108
49109         * math/math_private.h: Define __nan, __nanf, __nanl.
49110         * math/s_cacosh.c: Include <math_private.h>.
49111         * math/s_cacoshl.c: Likewise.
49112         * math/s_casinh.c: Likewise.
49113         * math/s_casinhf.c: Likewise.
49114         * math/s_casinhl.c: Likewise.
49115         * math/s_ccos.c: Rely entire on ccosh.
49116         * math/s_ccosf.c: Rely entire on ccoshf.
49117         * math/s_ccosl.c: Rely entirely on ccoshl.
49118         * math/s_ccosh.c: Add branch predicion helpers.  Add branch prediction.
49119         Remove tests for FE_INVALID.
49120         * math/s_ccoshf.c: Likewise.
49121         * math/s_ccoshl.c: Likewise.
49122         * math/s_csin.c: Likewise.
49123         * math/s_csinf.c: Likewise.
49124         * math/s_csinh.c Likewise.
49125         * math/s_csinhf.c: Likewise.
49126         * math/s_csinhl.c: Likewise.
49127         * math/s_csinl.c: Likewise.
49128         * math/s_ctan.c: Likewise.
49129         * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
49130         * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
49131         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
49132
49133 2011-10-21  Ulrich Drepper  <drepper@gmail.com>
49134
49135         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
49136         compilation problems.
49137
49138         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
49139         __builtin_expect.
49140
49141 2011-10-20  Ulrich Drepper  <drepper@gmail.com>
49142
49143         * sysdeps/i386/configure.in: Test for -mfma4 option.
49144         * config.h.in: Add HAVE_FMA4_SUPPORT entry.
49145         * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
49146         COMMON_CPUID_INDEX_80000001.
49147         * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
49148         * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
49149         use it if FMA3 is not supported.
49150         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
49151
49152         * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
49153         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
49154
49155 2011-10-20  Andreas Schwab  <schwab@redhat.com>
49156
49157         [BZ #12892]
49158         * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
49159         it would create a cycle with a link time dependency.
49160
49161 2011-10-19  Ulrich Drepper  <drepper@gmail.com>
49162
49163         * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
49164         instruction.
49165         * string/Makefile (strop-tests): Add rawmemchr.
49166         * string/test-rawmemchr.c: New file.
49167
49168         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
49169         * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file.  Split out from...
49170         * sysdeps/x86_64/multiarch/strcmp.S: ...here.  Include strcmp-sse42.S
49171         when compiling str{,n}casecmp and when AVX is available.  Hook up
49172         new optimized code in initializers.
49173
49174 2011-10-19  Andreas Schwab  <schwab@redhat.com>
49175
49176         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
49177         __feraiseexcept instead of feraiseexcept.
49178
49179 2011-10-18  Ulrich Drepper  <drepper@gmail.com>
49180
49181         * math/math_private.h: Define defaults for libc_fetestexcept and
49182         libc_feupdateenv.
49183         * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
49184         * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
49185         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
49186         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
49187         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
49188         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
49189         libc_fetestexcept and libc_feupdateenv.
49190
49191         * math/math_private.h: Define defaults for libc_feholdexcept_setround,
49192         libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
49193         * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
49194         * sysdeps/x86_64/fpu/math_private.h: Define special version of
49195         libc_feholdexcept_setround.
49196
49197         * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
49198         Add s_nearbyint-c and s_nearbyintf-c.
49199         * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
49200         nearbyintf inlines.
49201         * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
49202         * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
49203         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
49204         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
49205
49206         * math/math_private.h: Define defaults for libc_fegetround,
49207         libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
49208         libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
49209         libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
49210         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
49211         libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
49212         standard functions.
49213         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
49214         Remove comments and hacks for old compiler versions.
49215         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
49216         libc_fegetround, libc_fesetround, libc_feholdexcept, and
49217         libc_feholdexceptl.
49218
49219 2011-10-18  Andreas Schwab  <schwab@redhat.com>
49220
49221         * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
49222         (__feraiseexcept_renamed): Add __NTH.
49223         (feraiseexcept): Add __NTH.  Rename local variables to fix
49224         namespace violations.
49225
49226 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
49227
49228         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
49229
49230         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
49231
49232         * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
49233         recently added interfaces.
49234         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
49235
49236         * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
49237         about macro parameter expansion.
49238
49239         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
49240         __NO_MATH_INLINES is defined.  Cleanups.
49241
49242         * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
49243         and __floorf is target has SSE4.1.
49244         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
49245         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
49246         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
49247         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
49248
49249         * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
49250         name.
49251         (floorf): Likewise.
49252
49253         * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
49254
49255 2011-10-17  Andreas Schwab  <schwab@redhat.com>
49256
49257         * misc/sys/cdefs.h: Fix last change.
49258
49259         * grp/initgroups.c (internal_getgrouplist): Fix initgroups
49260         database lookup.
49261
49262 2011-10-16  Ulrich Drepper  <drepper@gmail.com>
49263
49264         * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
49265
49266         * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
49267         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
49268         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
49269         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
49270         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
49271         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
49272         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
49273         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
49274         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
49275         * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
49276         * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
49277         * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
49278         * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
49279         * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
49280         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
49281         * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
49282         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
49283         * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
49284         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
49285         * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
49286         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
49287         * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
49288
49289         * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
49290         ceil, ceilf, floor, floorf.
49291
49292         * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
49293         Perform IRELATIVE relocations last.
49294
49295         * elf/do-rel.h: Add another parameter nrelative, replacing the
49296         local variable with the same name.  Change name of the function
49297         to end in Rel or Rela (uppercase).
49298         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
49299         nrelative to ranges.  Only nonzero for DT_REL/DT_RELA.  Pass to the
49300         elf_dynamic_do_##reloc function.
49301
49302 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
49303
49304         * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
49305         is sufficient, at least on modern CPUs.
49306
49307         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
49308
49309         * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
49310         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
49311
49312         * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
49313         __expl_finite.
49314         * math/bits/math-finite.h: Add entries for exp.
49315         * math/e_expl.c: Add __*_finite alias.
49316         * sysdeps/i386/fpu/e_exp.S: Likewise.
49317         * sysdeps/i386/fpu/e_expf.S: Likewise.
49318         * sysdeps/i386/fpu/e_expl.c: Likewise.
49319         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
49320         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
49321         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
49322         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
49323         * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
49324         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
49325         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
49326
49327         * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
49328         is sufficient, at least on modern CPUs.
49329
49330         * ctype/ctype-info.c (__ctype_init): Define.
49331         * include/ctype.h (__ctype_init): Declare.
49332         (__ctype_b_loc): The variable is always initialized.
49333         (__ctype_toupper_loc): Likewise.
49334         (__ctype_tolower_loc): Likewise.
49335         * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
49336         * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
49337
49338 2011-10-15  Andreas Schwab  <schwab@linux-m68k.org>
49339
49340         * wcsmbs/wmemcmp.c (WMEMCMP): Define.
49341
49342         * configure.in: Also look in $cxxmachine/include for C++ system
49343         headers.
49344
49345 2011-09-27  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49346
49347         * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
49348         memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
49349         * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
49350         * sysdeps/x86_64/multiarch/memcmp.S: Update.  Add __memcmp_ssse3.
49351         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
49352         (USE_AS_WMEMCMP): New macro.
49353         Fixing indents.
49354         * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
49355         * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
49356         * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
49357         * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
49358         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49359         wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
49360         * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
49361         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
49362         * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
49363         * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
49364         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
49365         (USE_AS_WMEMCMP): New macro.
49366         * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
49367         * sysdeps/string/test-memcmp.c: Update.
49368         Fix simple_wmemcmp.
49369         Add new tests.
49370         * wcsmbs/wmemcmp.c: Update.
49371         (WMEMCMP): New macro.
49372         Fix overflow bug.
49373
49374 2011-10-12  Andreas Jaeger  <aj@suse.de>
49375
49376         [BZ #13268]
49377         * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
49378
49379 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
49380
49381         * libio/iofwide.c (do_length): Avoid warning.
49382
49383         * ctype/ctype.h (__isctype_f): Add missing __THROW.
49384
49385 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
49386
49387         * elf/pldd-xx.c (find_maps): Remove leftover debug message.
49388
49389         * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
49390         * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
49391         * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
49392         * sysdeps/i386/i686/fpu/e_log.S: New file.
49393         * sysdeps/i386/i686/fpu/e_logf.S: New file.
49394         * sysdeps/i386/i686/fpu/e_logl.S: New file.
49395
49396         * ctype/ctype.h: Add support for inlined isXXX functions when
49397         compiling C++ code.
49398
49399 2011-10-14  Andreas Schwab  <schwab@redhat.com>
49400
49401         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
49402
49403         * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
49404
49405 2011-10-13  Roland McGrath  <roland@hack.frob.com>
49406
49407         [BZ #13291]
49408         * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
49409
49410 2011-10-13  Andreas Schwab  <schwab@redhat.com>
49411
49412         * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
49413         * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
49414         feraiseexcept.
49415
49416         * sysdeps/x86_64/memrchr.S: Check for zero size.
49417
49418         * string/stratcliff.c: Add memrchr tests.
49419
49420 2011-10-12  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49421
49422         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49423         memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
49424         rawmemchr-sse2 rawmemchr-sse2-bsf.
49425         * sysdeps/i386/i686/multiarch/memchr.S: New file.
49426         * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
49427         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
49428         * sysdeps/i386/i686/multiarch/memrchr.S: New file.
49429         * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
49430         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
49431         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
49432         * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
49433         * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
49434         * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
49435         * string/memrchr.c (MEMRCHR): New macro.
49436
49437 2011-10-12  Ulrich Drepper  <drepper@gmail.com>
49438
49439         Add integration with gcc's -ffinite-math-only and optimize wrapper
49440         functions in libm.
49441         * Versions.def: Define GLIBC_2.15 version for libm.
49442         * math/Makefile (headers): Add bits/math-finite.h.
49443         * math/bits/math-finite.h: New file.
49444         * sysdeps/ia64/fpu/bits/math-finite.h: New file.
49445         * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
49446         * math/e_acoshl.c: Add __*_finite alias.
49447         * math/e_acosl.c: Likewise.
49448         * math/e_asinl.c: Likewise.
49449         * math/e_atan2l.c: Likewise.
49450         * math/e_atanhl.c: Likewise.
49451         * math/e_coshl.c: Likewise.
49452         * math/e_exp10.c: Likewise.
49453         * math/e_exp10f.c: Likewise.
49454         * math/e_exp10l.c: Likewise.
49455         * math/e_exp2l.c: Likewise.
49456         * math/e_fmodl.c: Likewise.
49457         * math/e_gammal_r.c: Likewise.
49458         * math/e_hypotl.c: Likewise.
49459         * math/e_j0l.c: Likewise.
49460         * math/e_j1l.c: Likewise.
49461         * math/e_jnl.c: Likewise.
49462         * math/e_lgammal_r.c: Likewise.
49463         * math/e_log10l.c: Likewise.
49464         * math/e_log2l.c: Likewise.
49465         * math/e_logl.c: Likewise.
49466         * math/e_powl.c: Likewise.
49467         * math/e_sinhl.c: Likewise.
49468         * math/e_sqrtl.c: Likewise.
49469         * math/e_scalb.c: Completely rewritten and optimized.
49470         * math/e_scalbf.c: Likewise.
49471         * math/e_scalbl.c: Likewise.
49472         * math/w_acos.c: Likewise.
49473         * math/w_acosf.c: Likewise.
49474         * math/w_acosl.c: Likewise.
49475         * math/w_acosh.c: Likewise.
49476         * math/w_acoshf.c: Likewise.
49477         * math/w_acoshl.c: Likewise.
49478         * math/w_asin.c: Likewise.
49479         * math/w_asinf.c: Likewise.
49480         * math/w_asinl.c: Likewise.
49481         * math/w_atan2.c: Likewise.
49482         * math/w_atan2f.c: Likewise.
49483         * math/w_atan2l.c: Likewise.
49484         * math/w_atanh.c: Likewise.
49485         * math/w_atanhf.c: Likewise.
49486         * math/w_atanhl.c: Likewise.
49487         * math/w_exp10.c: Likewise.
49488         * math/w_exp10f.c: Likewise.
49489         * math/w_exp10l.c: Likewise.
49490         * math/w_fmod.c: Likewise.
49491         * math/w_fmodf.c: Likewise.
49492         * math/w_fmodl.c: Likewise.
49493         * math/w_j0.c: Likewise.
49494         * math/w_j0f.c: Likewise.
49495         * math/w_j0l.c: Likewise.
49496         * math/w_j1.c: Likewise.
49497         * math/w_j1f.c: Likewise.
49498         * math/w_j1l.c: Likewise.
49499         * math/w_jn.c: Likewise.
49500         * math/w_jnf.c: Likewise.
49501         * math/w_log.c: Likewise.
49502         * math/w_logf.c: Likewise.
49503         * math/w_logl.c: Likewise.
49504         * math/w_log10.c: Likewise.
49505         * math/w_log10f.c: Likewise.
49506         * math/w_log10l.c: Likewise.
49507         * math/w_log2.c: Likewise.
49508         * math/w_log2f.c: Likewise.
49509         * math/w_log2l.c: Likewise.
49510         * math/w_pow.c: Likewise.
49511         * math/w_powf.c: Likewise.
49512         * math/w_powl.c: Likewise.
49513         * math/w_remainder.c: Likewise.
49514         * math/w_remainderf.c: Likewise.
49515         * math/w_remainderl.c: Likewise.
49516         * math/w_scalb.c: Likewise.
49517         * math/w_scalbf.c: Likewise.
49518         * math/w_scalbl.c: Likewise.
49519         * math/w_sqrt.c: Likewise.
49520         * math/w_sqrtf.c: Likewise.
49521         * math/w_sqrtl.c: Likewise.
49522         * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
49523         are declared.  Include <bits/math-finite.h> if -ffinite-math-only is
49524         used.
49525         * math/math_private.h: Declare __kernel_standard_f.
49526         * math/w_cosh.c: Remove cruft and optimize a bit.
49527         * math/w_coshf.c: Likewise.
49528         * math/w_coshl.c: Likewise.
49529         * math/w_exp2.c: Likewise.
49530         * math/w_exp2f.c: Likewise.
49531         * math/w_exp2l.c: Likewise.
49532         * math/w_hypot.c: Likewise.
49533         * math/w_hypotf.c: Likewise.
49534         * math/w_hypotl.c: Likewise.
49535         * math/w_lgamma.c: Likewise.
49536         * math/w_lgamma_r.c: Likewise.
49537         * math/w_lgammaf.c: Likewise.
49538         * math/w_lgammaf_r.c: Likewise.
49539         * math/w_lgammal.c: Likewise.
49540         * math/w_lgammal_r.c: Likewise.
49541         * math/w_sinh.c: Likewise.
49542         * math/w_sinhf.c: Likewise.
49543         * math/w_sinhl.c: Likewise.
49544         * math/w_tgamma.c: Likewise.
49545         * math/w_tgammaf.c: Likewise.
49546         * math/w_tgammal.c: Likewise.
49547         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
49548         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
49549         * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
49550         Minor optimizations.  Pretty printing.  Remove cruft.
49551         * sysdeps/i386/fpu/e_acosf.S: Likewise.
49552         * sysdeps/i386/fpu/e_acosh.S: Likewise.
49553         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
49554         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
49555         * sysdeps/i386/fpu/e_acosl.c: Likewise.
49556         * sysdeps/i386/fpu/e_asin.S: Likewise.
49557         * sysdeps/i386/fpu/e_asinf.S: Likewise.
49558         * sysdeps/i386/fpu/e_atan2.S: Likewise.
49559         * sysdeps/i386/fpu/e_atan2f.S: Likewise.
49560         * sysdeps/i386/fpu/e_atan2l.c: Likewise.
49561         * sysdeps/i386/fpu/e_atanh.S: Likewise.
49562         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
49563         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
49564         * sysdeps/i386/fpu/e_exp10.S: Likewise.
49565         * sysdeps/i386/fpu/e_exp10f.S: Likewise.
49566         * sysdeps/i386/fpu/e_exp10l.S: Likewise.
49567         * sysdeps/i386/fpu/e_exp2.S: Likewise.
49568         * sysdeps/i386/fpu/e_exp2f.S: Likewise.
49569         * sysdeps/i386/fpu/e_exp2l.S: Likewise.
49570         * sysdeps/i386/fpu/e_fmod.S: Likewise.
49571         * sysdeps/i386/fpu/e_fmodf.S: Likewise.
49572         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
49573         * sysdeps/i386/fpu/e_hypot.S: Likewise.
49574         * sysdeps/i386/fpu/e_hypotf.S: Likewise.
49575         * sysdeps/i386/fpu/e_log.S: Likewise.
49576         * sysdeps/i386/fpu/e_log10.S: Likewise.
49577         * sysdeps/i386/fpu/e_log10f.S: Likewise.
49578         * sysdeps/i386/fpu/e_log10l.S: Likewise.
49579         * sysdeps/i386/fpu/e_log2.S: Likewise.
49580         * sysdeps/i386/fpu/e_log2f.S: Likewise.
49581         * sysdeps/i386/fpu/e_log2l.S: Likewise.
49582         * sysdeps/i386/fpu/e_logf.S: Likewise.
49583         * sysdeps/i386/fpu/e_logl.S: Likewise.
49584         * sysdeps/i386/fpu/e_pow.S: Likewise.
49585         * sysdeps/i386/fpu/e_powf.S: Likewise.
49586         * sysdeps/i386/fpu/e_powl.S: Likewise.
49587         * sysdeps/i386/fpu/e_remainder.S: Likewise.
49588         * sysdeps/i386/fpu/e_remainderf.S: Likewise.
49589         * sysdeps/i386/fpu/e_remainderl.S: Likewise.
49590         * sysdeps/i386/fpu/e_scalb.S: Likewise.
49591         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
49592         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
49593         * sysdeps/i386/fpu/e_sqrt.S: Likewise.
49594         * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
49595         * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
49596         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
49597         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
49598         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49599         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
49600         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
49601         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
49602         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
49603         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
49604         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
49605         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
49606         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
49607         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
49608         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49609         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
49610         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
49611         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49612         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
49613         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
49614         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
49615         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49616         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
49617         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
49618         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
49619         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
49620         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
49621         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
49622         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
49623         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
49624         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
49625         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
49626         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
49627         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
49628         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
49629         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
49630         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
49631         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
49632         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
49633         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
49634         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
49635         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
49636         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
49637         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
49638         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
49639         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
49640         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
49641         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
49642         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
49643         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
49644         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
49645         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
49646         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
49647         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
49648         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
49649         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
49650         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
49651         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
49652         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
49653         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
49654         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
49655         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
49656         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
49657         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
49658         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
49659         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
49660         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
49661         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
49662         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
49663         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
49664         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
49665         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
49666         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
49667         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
49668         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
49669         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
49670         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
49671         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
49672         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
49673         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
49674         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
49675         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
49676         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
49677         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
49678         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
49679         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
49680         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
49681         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
49682         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
49683         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
49684         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
49685         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
49686         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
49687         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
49688         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
49689         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
49690         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
49691         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
49692         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
49693         * sysdeps/s390/fpu/e_sqrt.c: Likewise.
49694         * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
49695         * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
49696         * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
49697         * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
49698         * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
49699         * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
49700         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
49701         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
49702         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
49703         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
49704         * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
49705         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
49706         * sysdeps/x86_64/fpu/e_sqrt.c: Likewise.  Fix parameter order
49707         * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
49708         * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
49709         (__isnanf): Likewise.
49710         (__isinf_ns): Likewise.
49711         (__isinf_nsf): Likewise.
49712         (__finite): Likewise.
49713         (__finitef): Likewise.
49714         (__ieee754_sqrt): Define as macro.
49715         (__ieee754_sqrtf): Define as macro.
49716         (__ieee754_sqrtl): Define as macro.
49717         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
49718         inlined copy.
49719         * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
49720         __FINITE_MATH_ONLY__ consistent.
49721         * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
49722
49723 2011-10-10  Andreas Schwab  <schwab@linux-m68k.org>
49724
49725         * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
49726         of rawmemchr.
49727
49728         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
49729
49730 2011-10-09  Ulrich Drepper  <drepper@gmail.com>
49731
49732         * po/ja.po: Update from translation team.
49733
49734 2011-10-08  Roland McGrath  <roland@hack.frob.com>
49735
49736         * locale/programs/locarchive.c (prepare_address_space): New function.
49737         (create_archive, enlarge_archive, open_archive): Use it.
49738
49739         * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
49740         inside [SHARED], where it is used.
49741
49742         * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
49743
49744         * nss/getent.c (netgroup_keys): Remove unused variable.
49745         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
49746
49747 2011-10-08  Ulrich Drepper  <drepper@gmail.com>
49748
49749         * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
49750         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
49751         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
49752         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
49753         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
49754         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
49755         * math/Makefile (libm-calls): Add s_isinf_ns.
49756         * math/divtc3.c: Use __isinf_nsl instead of isinf.
49757         * math/multc3.c: Likewise.
49758         * math/s_casin.c: Likewise.
49759         * math/s_casinf.c: Likewise.
49760         * math/s_casinl.c: Likewise.
49761         * math/s_ccos.c: Likewise.
49762         * math/s_ccosf.c: Likewise.
49763         * math/s_ccosl.c: Likewise.
49764         * math/s_ctan.c: Likewise.
49765         * math/s_ctanf.c: Likewise.
49766         * math/s_ctanh.c: Likewise.
49767         * math/s_ctanhf.c: Likewise.
49768         * math/s_ctanhl.c: Likewise.
49769         * math/s_ctanl.c: Likewise.
49770         * math/w_fmod.c: Likewise.
49771         * math/w_fmodf.c: Likewise.
49772         * math/w_fmodl.c: Likewise.
49773         * math/w_remainder.c: Likewise.
49774         * math/w_remainderf.c: Likewise.
49775         * math/w_remainderl.c: Likewise.
49776         * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
49777         * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
49778         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
49779         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
49780         * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
49781         * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
49782         * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
49783         __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
49784
49785         * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
49786         of the number.
49787         * stdio-common/printf_fphex.c: Likewise.
49788         * stdio-common/printf_size.c: Likewise.
49789
49790         * math/e_exp10.c: Include math_private.h using <...> not "...".
49791         * math/e_exp10f.c: Likewise.
49792         * math/e_exp10l.c: Likewise.
49793         * math/e_exp2l.c: Likewise.
49794         * math/e_j0l.c: Likewise.
49795         * math/e_j1l.c: Likewise.
49796         * math/e_jnl.c: Likewise.
49797         * math/e_lgammal_r.c: Likewise.
49798         * math/e_rem_pio2l.c: Likewise.
49799         * math/e_scalb.c: Likewise.
49800         * math/e_scalbf.c: Likewise.
49801         * math/e_scalbl.c: Likewise.
49802         * math/k_cosl.c: Likewise.
49803         * math/k_sinl.c: Likewise.
49804         * math/k_tanl.c: Likewise.
49805         * math/s_cacoshf.c: Likewise.
49806         * math/s_catan.c: Likewise.
49807         * math/s_catanf.c: Likewise.
49808         * math/s_catanh.c: Likewise.
49809         * math/s_catanhf.c: Likewise.
49810         * math/s_catanhl.c: Likewise.
49811         * math/s_catanl.c: Likewise.
49812         * math/s_ccosh.c: Likewise.
49813         * math/s_ccoshf.c: Likewise.
49814         * math/s_ccoshl.c: Likewise.
49815         * math/s_cexp.c: Likewise.
49816         * math/s_cexpf.c: Likewise.
49817         * math/s_cexpl.c: Likewise.
49818         * math/s_clog.c: Likewise.
49819         * math/s_clog10.c: Likewise.
49820         * math/s_clog10f.c: Likewise.
49821         * math/s_clog10l.c: Likewise.
49822         * math/s_clogf.c: Likewise.
49823         * math/s_clogl.c: Likewise.
49824         * math/s_csin.c: Likewise.
49825         * math/s_csinf.c: Likewise.
49826         * math/s_csinh.c: Likewise.
49827         * math/s_csinhf.c: Likewise.
49828         * math/s_csinhl.c: Likewise.
49829         * math/s_csinl.c: Likewise.
49830         * math/s_csqrt.c: Likewise.
49831         * math/s_csqrtf.c: Likewise.
49832         * math/s_csqrtl.c: Likewise.
49833         * math/s_ctan.c: Likewise.
49834         * math/s_ctanf.c: Likewise.
49835         * math/s_ctanh.c: Likewise.
49836         * math/s_ctanhf.c: Likewise.
49837         * math/s_ctanhl.c: Likewise.
49838         * math/s_ctanl.c: Likewise.
49839         * math/s_ldexp.c: Likewise.
49840         * math/s_ldexpf.c: Likewise.
49841         * math/s_ldexpl.c: Likewise.
49842         * math/s_significand.c: Likewise.
49843         * math/s_significandf.c: Likewise.
49844         * math/s_significandl.c: Likewise.
49845         * math/w_acos.c: Likewise.
49846         * math/w_acosf.c: Likewise.
49847         * math/w_acosh.c: Likewise.
49848         * math/w_acoshf.c: Likewise.
49849         * math/w_acoshl.c: Likewise.
49850         * math/w_acosl.c: Likewise.
49851         * math/w_asin.c: Likewise.
49852         * math/w_asinf.c: Likewise.
49853         * math/w_asinl.c: Likewise.
49854         * math/w_atan2.c: Likewise.
49855         * math/w_atan2f.c: Likewise.
49856         * math/w_atan2l.c: Likewise.
49857         * math/w_atanh.c: Likewise.
49858         * math/w_atanhf.c: Likewise.
49859         * math/w_atanhl.c: Likewise.
49860         * math/w_cosh.c: Likewise.
49861         * math/w_coshf.c: Likewise.
49862         * math/w_coshl.c: Likewise.
49863         * math/w_dremf.c: Likewise.
49864         * math/w_exp10.c: Likewise.
49865         * math/w_exp10f.c: Likewise.
49866         * math/w_exp10l.c: Likewise.
49867         * math/w_exp2.c: Likewise.
49868         * math/w_exp2f.c: Likewise.
49869         * math/w_fmod.c: Likewise.
49870         * math/w_fmodf.c: Likewise.
49871         * math/w_fmodl.c: Likewise.
49872         * math/w_hypot.c: Likewise.
49873         * math/w_hypotf.c: Likewise.
49874         * math/w_hypotl.c: Likewise.
49875         * math/w_j0.c: Likewise.
49876         * math/w_j0f.c: Likewise.
49877         * math/w_j0l.c: Likewise.
49878         * math/w_j1.c: Likewise.
49879         * math/w_j1f.c: Likewise.
49880         * math/w_j1l.c: Likewise.
49881         * math/w_jn.c: Likewise.
49882         * math/w_jnf.c: Likewise.
49883         * math/w_jnl.c: Likewise.
49884         * math/w_lgamma.c: Likewise.
49885         * math/w_lgamma_r.c: Likewise.
49886         * math/w_lgammaf.c: Likewise.
49887         * math/w_lgammaf_r.c: Likewise.
49888         * math/w_lgammal.c: Likewise.
49889         * math/w_lgammal_r.c: Likewise.
49890         * math/w_log.c: Likewise.
49891         * math/w_log10.c: Likewise.
49892         * math/w_log10f.c: Likewise.
49893         * math/w_log10l.c: Likewise.
49894         * math/w_log2.c: Likewise.
49895         * math/w_log2f.c: Likewise.
49896         * math/w_log2l.c: Likewise.
49897         * math/w_logf.c: Likewise.
49898         * math/w_logl.c: Likewise.
49899         * math/w_pow.c: Likewise.
49900         * math/w_powf.c: Likewise.
49901         * math/w_powl.c: Likewise.
49902         * math/w_remainder.c: Likewise.
49903         * math/w_remainderf.c: Likewise.
49904         * math/w_remainderl.c: Likewise.
49905         * math/w_scalb.c: Likewise.
49906         * math/w_scalbf.c: Likewise.
49907         * math/w_scalbl.c: Likewise.
49908         * math/w_sinh.c: Likewise.
49909         * math/w_sinhf.c: Likewise.
49910         * math/w_sinhl.c: Likewise.
49911         * math/w_sqrt.c: Likewise.
49912         * math/w_sqrtf.c: Likewise.
49913         * math/w_sqrtl.c: Likewise.
49914         * math/w_tgamma.c: Likewise.
49915         * math/w_tgammaf.c: Likewise.
49916         * math/w_tgammal.c: Likewise.
49917
49918         * po/ja.po: Update from translation team.
49919
49920 2011-09-29  Andreas Jaeger  <aj@suse.de>
49921
49922         [BZ #13179]
49923         * sunrpc/netname.c (netname2host): Fix logic.
49924
49925         [BZ #6779]
49926         [BZ #6783]
49927         * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
49928         correctly.
49929         * math/w_remainder.c (__remainder): Likewise.
49930         * math/w_remainderf.c (__remainderf): Likewise.
49931         * math/libm-test.inc (remainder_test): Add test cases.
49932
49933 2011-10-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
49934
49935         * stdlib/longlong.h: Update from GCC.  Fix zarch smul_ppmm and
49936         sdiv_qrnnd.
49937
49938 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
49939
49940         * string/test-memcmp.c: Avoid unncessary #defines.
49941         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
49942
49943 2011-08-31  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49944
49945         * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
49946         Use new sse2 version for core i3 - i7 as it's faster
49947         than sse42 version.
49948         (bit_Prefer_PMINUB_for_stringop): New.
49949         * sysdeps/x86_64/rawmemchr.S: Update.
49950         Replace with faster SSE2 version.
49951         * sysdeps/x86_64/memrchr.S: New file.
49952         * sysdeps/x86_64/memchr.S: Update.
49953         Replace with faster SSE2 version.
49954
49955 2011-09-12  Marek Polacek  <mpolacek@redhat.com>
49956
49957         * elf/dl-load.c (lose): Add cast to avoid warning.
49958
49959 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
49960
49961         * po/ca.po: Update from translation team.
49962
49963         * inet/getnetgrent_r.c: Hook up nscd.
49964         * nscd/Makefile (routines): Add nscd_netgroup.
49965         (nscd-modules): Add netgroupcache.
49966         (CFLAGS-netgroupcache.c): Define.
49967         * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
49968         (cache_search): Add const to second parameter.
49969         * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
49970         INNETGR.
49971         (dbs): Add netgrdb entry.
49972         (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
49973         (verify_persistent_db): Handle netgrdb.
49974         (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
49975         * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
49976         GETFDNETGR.
49977         (netgroup_response_header): Define.
49978         (innetgroup_response_header): Define.
49979         (datahead): Add netgroup_response_header and innetgroup_response_header
49980         elements.
49981         * nscd/nscd.conf: Add entries for netgroup cache.
49982         * nscd/nscd.h (dbtype): Add netgrdb.
49983         (_PATH_NSCD_NETGROUP_DB): Define.
49984         (netgroup_iov_disabled): Declare.
49985         (xmalloc, xcalloc, xrealloc): Move declarations here.
49986         (cache_search): Adjust prototype.
49987         Add netgroup-related prototypes.
49988         * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
49989         * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
49990         (__nscd_innetgr): Declare.
49991         * nscd/selinux.c (perms): Use access_vector_t as element type and
49992         add netgroup-related initializers.
49993         * nscd/netgroupcache.c: New file.
49994         * nscd/nscd_netgroup.c: New file.
49995         * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
49996         * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
49997         For four parameters use innetgr.
49998         * nss/nss_files/files-init.c: Add definition and callback for netgr.
49999         * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
50000         (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
50001         * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
50002
50003         * nscd/connections.c (register_traced_file): Don't register file
50004         for disabled databases.
50005
50006 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
50007
50008         * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
50009
50010         * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
50011         from tree and freeing node.
50012
50013 2011-09-25  Jiri Olsa  <jolsa@redhat.com>
50014
50015         * nss/nsswitch.c (__nss_database_lookup): Handle
50016         nss_parse_service_list out of memory case.
50017
50018 2011-09-15  Jiri Olsa  <jolsa@redhat.com>
50019
50020         * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
50021         out of memory case.
50022
50023 2011-10-04  Andreas Schwab  <schwab@redhat.com>
50024
50025         * include/dlfcn.h (__RTLD_NOIFUNC): Define.
50026         * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
50027         pass it down.
50028         * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
50029         elf_machine_rela, elf_machine_lazy_rel.
50030         (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
50031         (ELF_DYNAMIC_DO_REL): Likewise.
50032         (ELF_DYNAMIC_DO_RELA): Likewise.
50033         (ELF_DYNAMIC_RELOCATE): Likewise.
50034         * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
50035         to ELF_DYNAMIC_DO_REL.
50036         * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
50037         (dl_main): In trace mode always set __RTLD_NOIFUNC.
50038         * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
50039         elf_machine_rela.
50040         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
50041         skip_ifunc, don't call ifunc function if non-zero.
50042         (elf_machine_rela): Likewise.
50043         (elf_machine_lazy_rel): Likewise.
50044         (elf_machine_lazy_rela): Likewise.
50045         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
50046         (elf_machine_lazy_rel): Likewise.
50047         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
50048         Likewise.
50049         (elf_machine_lazy_rel): Likewise.
50050         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
50051         Likewise.
50052         (elf_machine_lazy_rel): Likewise.
50053         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
50054         (elf_machine_lazy_rel): Likewise.
50055         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
50056         (elf_machine_lazy_rel): Likewise.
50057         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
50058         (elf_machine_lazy_rel): Likewise.
50059         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
50060         (elf_machine_lazy_rel): Likewise.
50061         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
50062         (elf_machine_lazy_rel): Likewise.
50063         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
50064         (elf_machine_lazy_rel): Likewise.
50065
50066 2011-09-28  Ulrich Drepper  <drepper@gmail.com>
50067
50068         * nss/nss_files/files-init.c (_nss_files_init): Use static
50069         initialization for all the *_traced_file variables.
50070
50071 2011-09-28  Andreas Schwab  <schwab@redhat.com>
50072
50073         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
50074
50075 2011-09-27  Roland McGrath  <roland@hack.frob.com>
50076
50077         [BZ #13226]
50078         * manual/signal.texi (Longjmp in Handler): Grammar fixes.
50079
50080 2011-09-27  Andreas Schwab  <schwab@redhat.com>
50081
50082         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
50083         Reread the line before reparsing it.
50084
50085 2011-09-26  Andreas Schwab  <schwab@redhat.com>
50086
50087         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
50088
50089 2011-09-21  Chung-Lin Tang  <cltang@codesourcery.com>
50090             Maxim Kuvyrkov  <maxim@codesourcery.com>
50091             Joseph Myers  <joseph@codesourcery.com>
50092
50093         * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
50094         if needed for __stack_chk_guard.
50095
50096 2011-09-19  Roland McGrath  <roland@hack.frob.com>
50097
50098         * sysdeps/posix/spawni.c (script_execute): Always define it.
50099         It will be optimized away if unused.
50100         (maybe_script_execute): New function.
50101         (__spawni): Call it.
50102
50103         * Makerules: Don't include tls.make.
50104         (config-tls): Always set to thread.
50105         * tls.make.c: File removed.
50106
50107 2011-09-19  Mike Frysinger  <vapier@gentoo.org>
50108
50109         * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
50110         * config.make.in (CPPFLAGS-config): New substituted variable.
50111
50112 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
50113
50114         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
50115
50116         [BZ #13192]
50117         * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
50118         Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
50119
50120 2011-09-15  Roland McGrath  <roland@hack.frob.com>
50121
50122         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
50123         (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
50124         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
50125         (CALL_FAIL): Likewise.
50126         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
50127         (CALL_FAIL): Macro removed.
50128         Patch mostly by Mike Frysinger <vapier@gentoo.org>.
50129
50130 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
50131
50132         * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
50133         for __FINITE_MATH_ONLY__ == 1.
50134
50135 2011-09-15  Andreas Schwab  <schwab@redhat.com>
50136
50137         * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
50138         __ieee754_sqrt instead of sqrt.
50139         * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
50140         __ieee754_sqrtf instead of sqrtf.
50141         * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
50142         __floorf instead of floorf.
50143         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
50144         __floorf, __truncf instead of floorf, truncf.
50145
50146 2011-09-14  Ulrich Drepper  <drepper@gmail.com>
50147
50148         * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
50149
50150         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
50151         __extern_always_inline.
50152         Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
50153         32-bit.
50154
50155 2011-09-14  Andreas Schwab  <schwab@redhat.com>
50156
50157         * elf/rtld.c (dl_main): Also relocate in dependency order when
50158         doing symbol dependency testing.
50159
50160 2011-09-13  Andreas Schwab  <schwab@linux-m68k.org>
50161
50162         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
50163         Always define `refsym'.
50164
50165 2011-09-13  Andreas Schwab  <schwab@redhat.com>
50166
50167         * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
50168         (__FD_ELT): Renamed from __FDELT.
50169         * misc/bits/select2.h (__FD_ELT): Likewise.
50170         * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
50171         __FD_MASK instead of __FDELT, __FDMASK.
50172         * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
50173         Likewise.
50174         * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
50175         Likewise.
50176
50177         * elf/Makefile (gen-ldd): Fix pattern.
50178
50179         * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
50180         (init_tls): Likewise.
50181
50182 2011-09-12  Ulrich Drepper  <drepper@gmail.com>
50183
50184         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
50185
50186 2011-09-12  Andreas Schwab  <schwab@redhat.com>
50187
50188         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
50189         `struct cmsghdr *' instead of `void *'.
50190         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
50191         Likewise.
50192
50193 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
50194
50195         * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
50196         if non-absolute.
50197         * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
50198         ldd_rewrite_script.
50199
50200 2011-09-11  Ulrich Drepper  <drepper@gmail.com>
50201
50202         * configure.in: Remove --with-tls option.
50203         * config.h.in: Remove HAVE_TLS_SUPPORT entry.
50204         * sysdeps/i386/elf/configure.in: Always test for TLS support and err
50205         out in case it is missing.
50206         * sysdeps/ia64/elf/configure.in: Likewise.
50207         * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
50208         * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
50209         * sysdeps/s390/s390-32/elf/configure.in: Likewise.
50210         * sysdeps/s390/s390-64/elf/configure.in: Likewise.
50211         * sysdeps/sh/elf/configure.in: Likewise.
50212         * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
50213         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
50214         * sysdeps/x86_64/elf/configure.in: Likewise.
50215         * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
50216         * sysdeps/mach/hurd/tls.h: Likewise.
50217
50218         [BZ #13067]
50219         * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
50220
50221         [BZ #13090]
50222         * configure.in: Fix use of AC_INIT.
50223
50224         * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
50225
50226 2011-09-10  Ulrich Drepper  <drepper@gmail.com>
50227
50228         * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
50229         __set_errno.
50230         * malloc/hooks.c: Likewise.
50231
50232         [BZ #11929]
50233         * malloc/arena.c (ptmalloc_init_minimal): Removed.  Initialize all
50234         variables statically.
50235         (narenas): Initialize.
50236         (list_lock): Initialize.
50237         (ptmalloc_init): Don't call ptmalloc_init_minimal.  Remove
50238         initializtion of main_arena and list_lock.  Small cleanups.
50239         Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
50240         * malloc/malloc.c: Remove malloc_getpagesize.  Include <ldsodefs.h>.
50241         Add initializers to main_arena and mp_.
50242         (malloc_state): Remove pagesize member.  Change all users to use
50243         GLRO(dl_pagesize).
50244
50245         * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
50246         * sysdeps/unix/sysv/linux/getpagesize.c: Simplify.  GLRO(dl_pagesize)
50247         is always initialized.
50248
50249         * malloc/malloc.c: Removed unused configurations and dead code.
50250         * malloc/arena.c: Likewise.
50251         * malloc/hooks.c: Likewise.
50252         * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
50253
50254         * include/tls.h: Removed.  USE___THREAD must always be defined.
50255         * bits/libc-tsd.h: Don't handle !USE___THREAD.
50256         * elf/dl-libc.c: Likewise.
50257         * elf/dl-tsd.c: Likewise.
50258         * include/errno.h: Likewise.
50259         * include/netdb.h: Likewise.
50260         * include/resolv.h: Likewise.
50261         * inet/herrno-loc.c: Likewise.
50262         * inet/herrno.c: Likewise.
50263         * malloc/arena.c: Likewise.
50264         * malloc/hooks.c: Likewise.
50265         * malloc/malloc.c: Likewise.
50266         * resolv/res-state.c: Likewise.
50267         * resolv/res_libc.c: Likewise.
50268         * sysdeps/i386/dl-machine.h: Likewise.
50269         * sysdeps/ia64/dl-machine.h: Likewise.
50270         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
50271         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
50272         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
50273         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
50274         * sysdeps/sh/dl-machine.h: Likewise.
50275         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
50276         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
50277         * sysdeps/unix/i386/sysdep.S: Likewise.
50278         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
50279         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
50280         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
50281         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
50282         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
50283         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
50284         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
50285         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
50286         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
50287         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
50288         * sysdeps/unix/x86_64/sysdep.S: Likewise.
50289         * sysdeps/x86_64/dl-machine.h: Likewise.
50290         * tls.make.c: Likewise.
50291
50292         * configure.in: Remove --with-__thread option.  Make tests for
50293         --no-whole-archive, __builtin_expect, symbol redirection, __thread,
50294         tls_model attribute fail if no support is available.  Remove
50295         USE_IN_LIBIO.
50296         * Makeconfig: Adjust for dropped configure option.  All features are
50297         now mandatory.
50298         * Makerules: Likewise.
50299         * Versions.def: Likewise.
50300         * argp/argp-fmtstream.c: Likewise.
50301         * argp/argp-fmtstream.h: Likewise.
50302         * argp/argp-help.c: Likewise.
50303         * assert/assert.c: Likewise.
50304         * config.h.in: Likewise.
50305         * config.make.in: Likewise.
50306         * configure: Likewise.
50307         * configure.in: Likewise.
50308         * csu/Versions: Likewise.
50309         * csu/init.c: Likewise.
50310         * elf/tst-audit2.c: Likewise.
50311         * elf/tst-tls10.c: Likewise.
50312         * elf/tst-tls10.h: Likewise.
50313         * elf/tst-tls11.c: Likewise.
50314         * elf/tst-tls12.c: Likewise.
50315         * elf/tst-tls14.c: Likewise.
50316         * elf/tst-tlsmod11.c: Likewise.
50317         * elf/tst-tlsmod12.c: Likewise.
50318         * elf/tst-tlsmod13.c: Likewise.
50319         * elf/tst-tlsmod13a.c: Likewise.
50320         * elf/tst-tlsmod14a.c: Likewise.
50321         * elf/tst-tlsmod15b.c: Likewise.
50322         * elf/tst-tlsmod16a.c: Likewise.
50323         * elf/tst-tlsmod16b.c: Likewise.
50324         * elf/tst-tlsmod7.c: Likewise.
50325         * elf/tst-tlsmod8.c: Likewise.
50326         * elf/tst-tlsmod9.c: Likewise.
50327         * gmon/gmon.c: Likewise.
50328         * grp/fgetgrent_r.c: Likewise.
50329         * grp/putgrent.c: Likewise.
50330         * hurd/fopenport.c: Likewise.
50331         * include/libc-symbols.h: Likewise.
50332         * include/tls.h: Likewise.
50333         * intl/gettextP.h: Likewise.
50334         * intl/loadinfo.h: Likewise.
50335         * locale/global-locale.c: Likewise.
50336         * locale/localeinfo.h: Likewise.
50337         * mach/devstream.c: Likewise.
50338         * malloc/arena.c: Likewise.
50339         * malloc/set-freeres.c: Likewise.
50340         * misc/err.c: Likewise.
50341         * misc/getttyent.c: Likewise.
50342         * misc/mntent_r.c: Likewise.
50343         * posix/getopt.c: Likewise.
50344         * posix/wordexp.c: Likewise.
50345         * pwd/fgetpwent_r.c: Likewise.
50346         * resolv/Versions: Likewise.
50347         * resolv/res_hconf.c: Likewise.
50348         * shadow/fgetspent_r.c: Likewise.
50349         * shadow/putspent.c: Likewise.
50350         * stdio-common/printf_fphex.c: Likewise.
50351         * stdio-common/tmpfile.c: Likewise.
50352         * stdlib/abort.c: Likewise.
50353         * stdlib/fmtmsg.c: Likewise.
50354         * sunrpc/auth_unix.c: Likewise.
50355         * sunrpc/clnt_perr.c: Likewise.
50356         * sunrpc/clnt_tcp.c: Likewise.
50357         * sunrpc/clnt_udp.c: Likewise.
50358         * sunrpc/clnt_unix.c: Likewise.
50359         * sunrpc/openchild.c: Likewise.
50360         * sunrpc/svc_simple.c: Likewise.
50361         * sunrpc/svc_tcp.c: Likewise.
50362         * sunrpc/svc_udp.c: Likewise.
50363         * sunrpc/svc_unix.c: Likewise.
50364         * sunrpc/xdr.c: Likewise.
50365         * sunrpc/xdr_array.c: Likewise.
50366         * sunrpc/xdr_rec.c: Likewise.
50367         * sunrpc/xdr_ref.c: Likewise.
50368         * sunrpc/xdr_stdio.c: Likewise.
50369
50370 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50371
50372         * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
50373
50374 2011-07-03  Andreas Jaeger  <aj@suse.de>
50375
50376         * math/libm-test.inc (jn_test): Add tests for BZ#11589.
50377         * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
50378         regenerate with gen-libm-tests.pl.
50379
50380 2010-05-12  Petr Baudis  <pasky@suse.cz>
50381
50382         [BZ #11589]
50383         * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
50384         around j0() zero points by switching to j1().
50385         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
50386         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
50387         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
50388         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
50389
50390 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50391
50392         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
50393         instead of 0.
50394         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
50395         instead of 0.
50396         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
50397         Patch in part by Pavel Roskin <proski@gnu.org>.
50398
50399         [BZ #13138]
50400         * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
50401         realloc.
50402         (_IO_vfscanf_internal): Remove reteof.  Use errout after setting done.
50403         Free memory block if necessary.
50404
50405         [BZ #12847]
50406         * libio/genops.c (INTDEF): For string streams the _lock pointer can
50407         be NULL.  Don't lock in this case.
50408
50409 2011-09-09  Roland McGrath  <roland@hack.frob.com>
50410
50411         * elf/elf.h (ELFOSABI_GNU): New macro.
50412         (ELFOSABI_LINUX): Define to that.
50413
50414 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
50415
50416         * string/strncat.c (strncat): Undef the symbol in case it has been
50417         defined in bits/string.h.
50418
50419 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50420
50421         * elf/sotruss.ksh: Clean up, fix, and complete help messages.
50422
50423         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
50424         link map.
50425
50426 2011-08-17  Andreas Jaeger  <aj@suse.de>
50427
50428         * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
50429
50430 2011-08-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
50431             Ian Lance Taylor  <iant@google.com>
50432
50433         * math/libm-test.inc (lround_test): New testcase.
50434         * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
50435
50436 2011-09-08  Ulrich Drepper  <drepper@gmail.com>
50437
50438         * Makefile: Remove support for automatic cvs check-ins.
50439         * Makerules: Likewise.
50440         * config.make.in: Likewise.
50441         * configure.in: Likewise.
50442         * intl/Makefile: Likewise.
50443         * locale/Makefile: Likewise.
50444         * po/Makefile: Likewise.
50445         * posix/Makefile: Likewise.
50446         * sysdeps/gnu/Makefile: Likewise.
50447         * sysdeps/mach/hurd/Makefile: Likewise.
50448         * sysdeps/sparc/sparc32/Makefile: Likewise.
50449
50450         [BZ #13118]
50451         * posix/Makefile (bug-regex32-ENV): Define.
50452         Patch by John Stanley <jpsinthemix@verizon.net>.
50453
50454         * misc/Makefile (headers): Add bits/select2.h.
50455         * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
50456         * misc/bits/select2.h: New file.
50457         * include/bits/select2.h: New file.
50458         * debug/Makefile (routines): Add fdelt_chk.
50459         * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
50460         * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
50461         FD_ISSET.
50462         * debug/fdelt_chk.c: New file.
50463
50464         * wcsmbs/test-wcscmp.c: Moved from string/*.  Adjust.
50465         * wcsmbs/test-wmemcmp.c: Likewise.
50466         * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
50467         * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
50468
50469 2011-09-08  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50470
50471         * string/Makefile (strop-tests): Add memcmp.
50472         * string/test-wmemcmp.c: New file.
50473         * string/test-memcmp.c: Add wmemcmp support.
50474
50475 2011-09-08  Roland McGrath  <roland@hack.frob.com>
50476
50477         [BZ #13153]
50478         * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
50479         2011-07-19 change.
50480
50481         * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
50482         garbage value in a __mach_port_mod_refs call in the cases of the
50483         task-self and thread-self ports.
50484
50485 2011-09-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
50486
50487         * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
50488
50489 2011-09-08  Andreas Schwab  <schwab@redhat.com>
50490
50491         * elf/dl-load.c (lose): Check for non-null L.
50492
50493 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
50494
50495         * elf/dl-load.c (open_verify): Use O_CLOEXEC.
50496
50497         * elf/dl-libc.c (dlerror_run): Pass back error code from
50498         dl_catch_error.
50499
50500         [BZ #13123]
50501         * elf/dl-load.c (lose): Free l_origin if it is valid.
50502
50503         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
50504         names.
50505         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
50506         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
50507         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
50508         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
50509         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
50510         Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
50511
50512 2011-08-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
50513
50514         * sysdeps/powerpc/fpu/e_hypot.c: New file.
50515         * sysdeps/powerpc/fpu/e_hypotf.c: New file.
50516         * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
50517         * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
50518         * sysdeps/powerpc/fpu/k_cosf.c: New file.
50519         * sysdeps/powerpc/fpu/k_sinf.c: New file.
50520         * sysdeps/powerpc/fpu/s_cosf.c: New file.
50521         * sysdeps/powerpc/fpu/s_sinf.c: New file.
50522         * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
50523         * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
50524
50525 2011-08-15  Alan Modra  <amodra@gmail.com>
50526
50527         [BZ #13092]
50528         * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
50529         * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
50530         * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here.  Add
50531         ppc_mcount to static-only-routines.
50532         * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
50533         __mcount_internal.
50534         * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
50535         __mcount_internal with usual JUMPTARGET.  Remove useless nop.
50536
50537 2011-08-18  David Flaherty  <flaherty@linux.vnet.ibm.com>
50538
50539         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
50540         for finite and infinity parameters.
50541
50542 2011-08-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
50543
50544         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
50545         and add nop instructions for throughput optimization.
50546         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
50547
50548 2011-07-28  Will Schmidt  <will_schmidt@vnet.ibm.com>
50549
50550         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
50551         aligned copy for power7 with vector-scalar instructions.
50552         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
50553
50554 2011-07-24  H.J. Lu  <hongjiu.lu@intel.com>
50555
50556         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
50557         AVX check.
50558
50559 2011-09-07  Andreas Schwab  <schwab@redhat.com>
50560
50561         [BZ #13144]
50562         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
50563         last change.
50564
50565 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
50566
50567         * sysdeps/unix/sysv/linux/x86_64/init-first.c
50568         (_libc_vdso_platform_setup): If vDSO is not present store pointer to
50569         syscall wrapper around clock_gettime in __vdso_clock_gettime.
50570         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
50571         clock_gettime.
50572
50573 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
50574
50575         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
50576         Forgot to demangle the pointer.
50577
50578         * sysdeps/i386/sysdep.h: Define atom_text_section.
50579         * sysdeps/x86_64/sysdep.h: Likewise.
50580         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
50581         section with atom_text_section.
50582         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
50583         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
50584         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
50585         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
50586         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
50587
50588         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
50589         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
50590         already be defined.  Change to take two parameters and don't assign
50591         result to variable.  Adjust all users.
50592         Define INTERNAL_GETTIME if not already defined.
50593         Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
50594         call.
50595         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
50596         HAVE_CLOCK_GETTIME_VSYSCALL.
50597         * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
50598
50599         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
50600         gettimeofday vsyscall, just use time.
50601
50602 2011-09-06  Andreas Schwab  <schwab@redhat.com>
50603
50604         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
50605         <errno.h>.
50606
50607 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
50608
50609         * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
50610         syscall on x86-64.
50611         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
50612         syscall.
50613         * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
50614         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
50615         syscall if possible.
50616
50617 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50618
50619         * elf/pldd.c (get_process_info): Don't read whole ELF header, just
50620         e_ident.  Don't pass to find_mapsXX.
50621         * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
50622
50623 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
50624
50625         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
50626         strchr-sse2-no-bsf strrchr-sse2-no-bsf
50627         * sysdeps/x86_64/multiarch/strchr.S: Update.
50628         Check bit_slow_BSF bit.
50629         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
50630         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
50631         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
50632
50633 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50634
50635         [BZ #13134]
50636         * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
50637         before glibc 2.15.
50638         (tryshell): Define.
50639         (__spawni): Change last parameter to be flag.  Test
50640         SPAWN_XFLAGS_USE_PATH flag to use path or not.
50641         Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
50642         * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
50643         * posix/spawni.c: Likewise.
50644         * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
50645         * posix/spawnp.c: Likewise.  Change normal version to use
50646         SPAWN_XFLAGS_USE_PATH.
50647         * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
50648         SPAWN_XFLAGS_TRY_SHELL.
50649
50650         [BZ #13150]
50651         * posix/glob.h: Remove gcc 1.x support.
50652
50653         [BZ #13068]
50654         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
50655
50656 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
50657
50658         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
50659         strchr-sse2 strrchr-sse2 strchr-sse2-bsf
50660         strrchr-sse2-bsf
50661         * sysdeps/i386/i686/multiarch/strchr.S: New file.
50662         * sysdeps/i386/i686/multiarch/strrchr.S: New file.
50663         * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
50664         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
50665         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
50666         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
50667
50668 2011-08-29  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50669
50670         * sysdeps/x86_64/wcscmp.S: New file.
50671
50672         * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
50673         wcscmp-c wcscmp-sse2
50674         * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
50675         * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
50676         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
50677         * wcsmbs/wcscmp.c: Allow renaming.
50678
50679 2011-09-05  David S. Miller  <davem@davemloft.net>
50680
50681         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
50682         stack slot, rather than the struct return pointer slot.
50683         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
50684         * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
50685         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
50686         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
50687
50688 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50689
50690         * po/ja.po: Update from translation team.
50691
50692         [BZ #13144]
50693         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
50694         kernel in 64-bit binaries.
50695
50696 2011-09-01  David S. Miller  <davem@davemloft.net>
50697
50698         * elf/elf.h (HWCAP_SPARC_*): Move to..
50699         * sysdeps/sparc/sysdep.h: this new file and add new values.
50700         * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
50701         * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
50702         _DL_HWCAP_COUNT to 24.
50703         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
50704         entries.
50705         * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
50706         __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
50707         * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
50708         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
50709         instead of magic constants.
50710         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
50711
50712 2011-08-31  David S. Miller  <davem@davemloft.net>
50713
50714         * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
50715         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
50716         Reimplement to do errno handling inline.
50717         (SYSCALL_ERROR_HANDLER): New macro.
50718         (__SYSCALL_STRING): Do not do errno handling in asm.
50719         (__CLONE_SYSCALL_STRING): Delete.
50720         (__INTERNAL_SYSCALL_STRING): Delete.
50721         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
50722         sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
50723         (PSEUDO): Reimplement to do errno handling inline.
50724         (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
50725         (SYSCALL_ERROR_HANDLER): New macro.
50726         (__SYSCALL_STRING): Do not do errno handling in asm.
50727         (__CLONE_SYSCALL_STRING): Delete.
50728         (__INTERNAL_SYSCALL_STRING): Delete.
50729         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
50730         Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
50731         i386.
50732         (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
50733         (inline_syscall*): Add 'err' argument.
50734         (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
50735         INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
50736         (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
50737         INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
50738
50739         * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
50740         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
50741
50742 2011-08-30  Andreas Schwab  <schwab@redhat.com>
50743
50744         * elf/rtld.c (dl_main): Relocate objects in dependency order.
50745
50746 2011-08-29  Jiri Olsa <jolsa@redhat.com>
50747
50748         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
50749         directive.
50750
50751 2011-08-24  David S. Miller  <davem@davemloft.net>
50752
50753         * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
50754
50755 2011-08-24  Andreas Schwab  <schwab@redhat.com>
50756
50757         * elf/Makefile: Add rules to build and run unload8 test.
50758         * elf/unload8.c: New file.
50759         * elf/unload8mod1.c: New file.
50760         * elf/unload8mod1x.c: New file.
50761         * elf/unload8mod2.c: New file.
50762         * elf/unload8mod3.c: New file.
50763
50764         * elf/dl-close.c (_dl_close_worker): Reset private search list if
50765         it wasn't used.
50766
50767 2011-08-23  David S. Miller  <davem@davemloft.net>
50768
50769         * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
50770         subtract stack bias.
50771         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
50772         %sp not %fp in calculations.
50773         (_JMPBUF_UNWINDS_ADJ): Likewise.
50774
50775         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
50776         (aio_suspend): Call it to force an exception region around the
50777         AIO_MISC_WAIT() invocation.
50778
50779 2011-08-23  Andreas Schwab  <schwab@redhat.com>
50780
50781         * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
50782         backslash.
50783
50784 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
50785
50786         * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
50787         protection macro.
50788         * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
50789         and <dl-machine.h>.
50790         (Elf64_FuncDesc): Remove.
50791
50792 2011-08-22  David S. Miller  <davem@davemloft.net>
50793
50794         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
50795         sigaltstack check, add missing cfi directives.
50796         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
50797         missing cfi directives, and sigaltstack handling.
50798
50799 2011-08-16  Andreas Schwab  <schwab@redhat.com>
50800
50801         [BZ #11724]
50802         * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
50803         object is seen twice.
50804         * elf/dl-fini.c (_dl_sort_fini): Likewise.
50805
50806         * elf/Makefile (distribute): Add tst-initorder2.c.
50807         (tests): Add tst-initorder2.
50808         (modules-names): Add tst-initorder2a tst-initorder2b
50809         tst-initorder2c tst-initorder2d.  Add rules to build them.
50810         ($(objpfx)tst-initorder2.out): New rule.
50811         * elf/tst-initorder2.c: New file.
50812         * elf/tst-initorder2.exp: New file.
50813
50814 2011-08-22  Andreas Schwab  <schwab@redhat.com>
50815
50816         * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
50817
50818         * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
50819         dependencies back to end of function.
50820
50821         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
50822         $(elfobjdir)/ld.so.
50823
50824 2011-08-21  Ulrich Drepper  <drepper@gmail.com>
50825
50826         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
50827         * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
50828         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
50829         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
50830         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
50831         of __vdso_gettimeofday.
50832         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
50833         __vdso_gettimeofday and __vdso_time.  Define __vdso_getcpu with
50834         attribute_hidden.
50835         (_libc_vdso_platform_setup): Remove initialization of
50836         __vdso_gettimeofday and __vdso_time.
50837
50838 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
50839
50840         * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
50841         and fgetc_unlocked.
50842         * nss/nss_files/files-key.c (search): Use fgets_unlocked and
50843         getc_unlocked.
50844
50845         * elf/dl-open.c (add_to_global): Report additions to the global scope
50846         for LD_DEBUG=scopes.
50847         (dl_open_worker): Also print scope of newly loaded dependencies.
50848         (_dl_show_scope): Indicate if there is no scope.
50849
50850         [BZ #13114]
50851         * stdio-common/Makefile (tests): Add bug24.
50852         * stdio-common/bug24.c: New file.
50853
50854 2011-08-19  Andreas Jaeger  <aj@suse.de>
50855
50856         [BZ #13114]
50857         * libio/fileops.c (_IO_new_file_fopen): Fix handling of
50858         non-existant file when using close-on-exec mode.
50859
50860 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
50861
50862         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
50863         the very first instruction.
50864
50865         * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
50866         the CFI state in the end.
50867         * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
50868         inclusion of dl-trampoline.h.
50869         Based on a patch by Jiri Olsa <jolsa@redhat.com>.
50870
50871 2011-08-19  Andreas Schwab  <schwab@redhat.com>
50872
50873         * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
50874         expectations for long double.
50875
50876         * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
50877         from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
50878
50879 2011-08-14  David S. Miller  <davem@davemloft.net>
50880
50881         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
50882         artificual limit depends upon the system page size.
50883
50884 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
50885
50886         * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
50887         * resolv/Makefile: Define CFLAGS-libresolv.
50888
50889 2011-08-17  Andreas Schwab  <schwab@redhat.com>
50890
50891         * nss/makedb.c (compute_tables): Make variables used in nested
50892         function static.
50893
50894 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
50895
50896         * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
50897         * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
50898         if buffer was too small.
50899
50900         * elf/pldd.c (main): Attach to all threads in the process.
50901         Rewrite /proc handling to use *at functions.
50902
50903 2011-08-16  Ulrich Drepper  <drepper@gmail.com>
50904
50905         * elf/dl-open.c (_dl_show_scope): Take additional parameter which
50906         specifies first scope to show.
50907         (dl_open_worker): Update callers.  Move printing scope of new
50908         object to before the relocation.
50909         * elf/rtld.c (dl_main): Update _dl_show_scope call.
50910         * sysdeps/generic/ldsodefs.h: Update declaration.
50911
50912         * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
50913         string for the scope number.
50914
50915 2011-08-14  Ulrich Drepper  <drepper@gmail.com>
50916
50917         * nscd/servicescache.c (cache_addserv): Make sure written is always
50918         initialized.
50919
50920 2011-08-14  Roland McGrath  <roland@hack.frob.com>
50921
50922         * sysdeps/i386/i486/bits/atomic.h
50923         (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
50924         statement expression, so as to suppress "set but not used" warning.
50925         (__arch_c_compare_and_exchange_val_64_acq): Likewise.
50926
50927         * string/strncat.c (STRNCAT): Use prototype definition.
50928
50929         * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
50930         (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
50931         -Iprograms here.
50932         (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
50933         (localedef-modules): Add localedef.
50934         (locale-modules): Add locale.
50935
50936         * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
50937         * elf/rtld.c (dl_main): Invert order of assignment in last change,
50938         to avoid a warning.
50939
50940 2011-08-14  David S. Miller  <davem@davemloft.net>
50941
50942         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
50943         RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
50944
50945 2011-08-13  Ulrich Drepper  <drepper@gmail.com>
50946
50947         * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
50948         (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
50949         * elf/rtld.c (dl_main): Set l_name of vDSO.
50950         Call _dl_show_scope when DL_DEBUG_SCOPES.
50951         (process_dl_debug): Recognize scopes flag and also set it for all.
50952         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
50953         Declare _dl_show_scope.
50954
50955         * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
50956         (do_dlopen): Pass caller_dlopen to dl_open.
50957         (__libc_dlopen_mode): Initialize caller_dlopen.
50958
50959         * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
50960         of libc.  Make tolower call locale-independent.  Optimize a bit by
50961         using isdigit instead of isalnum.
50962         * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
50963
50964 2011-08-12  Ulrich Drepper  <drepper@gmail.com>
50965
50966         * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
50967         was a dependency or dynamically loaded.
50968
50969 2011-08-11  Ulrich Drepper  <drepper@gmail.com>
50970
50971         * intl/l10nflist.c: Allow architecture-specific pop function.
50972         * sysdeps/x86_64/l10nflist.c: New file.
50973
50974         * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
50975         classification.
50976
50977 2011-08-10  Andreas Schwab  <schwab@redhat.com>
50978
50979         * include/dirent.h: Add libc_hidden_proto for scandirat and
50980         scandirat64.  Don't declare __scandirat64.
50981         * dirent/scandirat.c: Add libc_hidden_def.
50982         * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
50983         * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
50984
50985 2011-08-10  David S. Miller  <davem@davemloft.net>
50986
50987         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
50988         enum.
50989         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
50990         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
50991         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
50992
50993 2011-08-09  Ulrich Drepper  <drepper@gmail.com>
50994
50995         * Versions.def [libc]: Add GLIBC_2.15.
50996         * dirent/Makefile (routines): Add scandirat and scandirat64.
50997         * dirent/Versions [libc]: Export scandirat and scandirat64 for
50998         GLIBC_2.15.
50999         * dirent/dirent.h: Declare scandirat and scandirat64.
51000         * dirent/scandirat.c: New file.
51001         * dirent/scandirat64.c: New file.
51002         * sysdeps/wordsize-64/scandirat.c: New file.
51003         * sysdeps/wordsize-64/scandirat64.c: New file.
51004         * dirent/opendir.c: Define opendirat.
51005         * dirent/scandir.c: Move code to scandirat.c.  Implement scandir
51006         using scandirat.
51007         * dirent/scandir64.c: Adjust for scandir.c change.
51008         * include/dirent.h: Define scandir_cancel_struct.  Declare __opendirat,
51009         __scandirat64, and __scandir_cancel_handler.
51010         * sysdeps/unix/opendir.c: Rename __opendir to __opendirat.  Take
51011         additional parameter and use openat instead of open (outside of ld.so).
51012         Add new __opendir as wrapper around __opendirat.
51013         * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
51014         here without requiring old scandirat implementation.
51015
51016 2011-08-08  Ulrich Drepper  <drepper@gmail.com>
51017
51018         * dirent/scandir.c (cancel_handler): Renamed to
51019         __scandir_cancel_handler.  Do not define if SKIP_SCANDIR_CANCEL is
51020         defined.  Adjust users.
51021         * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
51022         * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
51023
51024 2011-08-04  Ulrich Drepper  <drepper@gmail.com>
51025
51026         * string/test-string.h (IMPL): Use __STRING to expand name and then
51027         stringify it.
51028
51029         * string/test-strcmp.c: Unify most of the WIDE and !WIDE code.  Lots
51030         of cleanups.
51031
51032 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51033
51034         * string/Makefile: Update.
51035         (strop-tests): Append strncat.
51036         * string/test-wcscmp.c: New file.
51037         New comprehensive test for wcscmp.
51038         * string/test-strcmp.c: Update.
51039         (WIDE): New define.
51040
51041 2011-07-22  Andreas Schwab  <schwab@redhat.com>
51042
51043         * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
51044         line.
51045
51046 2011-07-26  Andreas Schwab  <schwab@redhat.com>
51047
51048         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
51049         encoding to ACE if AI_IDN.
51050
51051 2011-08-01  Jakub Jelinek  <jakub@redhat.com>
51052
51053         * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
51054         to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
51055
51056 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51057
51058         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
51059         Fix overflow bug in strncat.
51060         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
51061
51062         * string/test-strncat.c: Update.
51063         Add new tests for checking overflow bugs.
51064
51065 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51066
51067         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51068         strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
51069         * sysdeps/i386/i686/multiarch/strcat.S: New file.
51070         * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
51071         * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
51072         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
51073         * sysdeps/i386/i686/multiarch/strncat.S: New file.
51074         * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
51075         * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
51076
51077         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
51078         (USE_AS_STRCAT): Define.
51079         Add strcat and strncat support.
51080         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
51081
51082 2011-07-25  Andreas Schwab  <schwab@redhat.com>
51083
51084         * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
51085         __n bigger than INT_MAX+1.
51086         (__strncmp_g): Likewise.
51087
51088 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
51089
51090         * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
51091         * libio/stido.h: Likewise.
51092
51093         * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
51094         (AF_NFC): Define.
51095         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
51096         (AF_NFC): Define.
51097
51098         * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
51099         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
51100         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
51101         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
51102         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
51103
51104         [BZ #13021]
51105         * scripts/test-installation.pl: Don't expect libnss_test1 to be
51106         installed.
51107
51108         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
51109         typo.
51110         (_dl_x86_64_save_sse): Likewise.
51111
51112 2011-07-22  Ulrich Drepper  <drepper@gmail.com>
51113
51114         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
51115         OSXSAVE.
51116         (_dl_x86_64_save_sse): Likewise.
51117
51118         * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
51119
51120         * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
51121
51122 2011-07-21  Andreas Schwab  <schwab@redhat.com>
51123
51124         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
51125         change.
51126         (_dl_x86_64_save_sse): Use correct AVX check.
51127
51128 2011-07-21  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51129
51130         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
51131         bug in strncpy/strncat.
51132         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
51133
51134 2011-07-21  Ulrich Drepper  <drepper@gmail.com>
51135
51136         * string/tester.c (test_strcat): Add tests for different alignments
51137         of source and destination.
51138         (test_strncat): Likewise.
51139
51140 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
51141
51142         [BZ #12852]
51143         * posix/glob.c (glob): Check passed in values before using them in
51144         expressions to avoid some overflows.
51145         (glob_in_dir): Likewise.
51146
51147         [BZ #13007]
51148         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
51149         check for AVX enablement so that we don't crash with old kernels and
51150         new hardware.
51151         * elf/tst-audit4.c: Add same checks here.
51152         * elf/tst-audit6.c: Likewise.
51153
51154         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
51155
51156 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
51157
51158         * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
51159
51160 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
51161
51162         * po/cs.po: Update from translation team.
51163         * po/bg.po: Likewise.
51164
51165 2011-07-12  Marek Polacek  <mpolacek@redhat.com>
51166
51167         * misc/sys/cdefs.h: Add support for const attribute.
51168         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
51169         to gnu_dev_{major,minor,makedev} functions.
51170
51171 2011-07-20  Marek Polacek  <mpolacek@redhat.com>
51172
51173         * intl/dcigettext.c (get_output_charset): Add missing bracket.
51174
51175 2011-07-20  Andreas Schwab  <schwab@redhat.com>
51176
51177         * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
51178         strlen results.
51179
51180 2011-07-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
51181
51182         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
51183         (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
51184         register in order to avoid conflicts with the soft frame pointer
51185         being held in r11 when necessary.
51186         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
51187         (INTERNAL_VSYSCALL_NCS): Likewise.
51188
51189 2011-07-14  Marek Polacek  <mpolacek@redhat.com>
51190
51191         * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
51192         * elf/dl-fini.c (_dl_fini): Adjust caller.
51193         * elf/dl-close.c (_dl_close_worker): Likewise.
51194         * sysdeps/generic/ldsodefs.h: Adjust declaration.
51195
51196 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
51197
51198         * elf/cache.c (load_aux_cache): Remove unnecessary condition of
51199         "aux_cache->nlibs < 0".
51200
51201         * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
51202         in the reload-count case.
51203
51204 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51205
51206         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
51207         strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
51208         strncat-sse2-unaligned strncat-c strlen-sse2-pminub
51209         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
51210         * sysdeps/x86_64/multiarch/strcat.S: New file.
51211         * sysdeps/x86_64/multiarch/strncat.S: New file.
51212         * sysdeps/x86_64/multiarch/strncat-c.c: New file.
51213         * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
51214         * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
51215         * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
51216         * sysdeps/x86_64/multiarch/strcpy-ssse3.S
51217         (USE_AS_STRCAT): Define.
51218         Add strcat and strncat support.
51219         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
51220         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
51221         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
51222         * string/strncat.c: Update.
51223         (USE_AS_STRNCAT): Define.
51224         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51225         Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
51226         and i7.
51227         * sysdeps/x86_64/multiarch/init-arch.h
51228         (bit_Prefer_PMINUB_for_stringop): New.
51229         (index_Prefer_PMINUB_for_stringop): Likewise.
51230         * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
51231         bit_Prefer_PMINUB_for_stringop.
51232
51233 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
51234
51235         * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
51236         buffer64.
51237         * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
51238         of casting of buffer.
51239         * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
51240         buffer32 and buffer64.
51241         * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
51242         writes instead of casting of buffer.
51243         * crypt/md5.h (struct md5_ctx): Move buffer into union and add
51244         buffer32.
51245         * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
51246         casting of buffer.
51247
51248 2011-07-19  Andreas Schwab  <schwab@redhat.com>
51249
51250         * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
51251
51252 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
51253
51254         * nscd/nscd.c (termination_handler): Don't do anything for a database
51255         if it has not yet been initialized.
51256
51257 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
51258
51259         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
51260
51261 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
51262
51263         * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
51264
51265 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
51266
51267         * po/nl.po: Update from translation team.
51268         * po/sv.po: Likewise.
51269
51270 2011-07-16  Roland McGrath  <roland@hack.frob.com>
51271
51272         * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
51273         now disallowed by GCC.
51274
51275         * configure.in (use-default-link): Default to yes if a test -shared
51276         link meets our qualifications.
51277         * configure: Regenerated.
51278
51279         * config.make.in (output-format): New variable.
51280         * configure.in: Check for ld --print-output-format support.
51281         * configure: Regenerated.
51282         * Makerules ($(common-objpfx)format.lds)
51283         [$(output-format) != unknown]: Just use $(output-format),
51284         instead of the linker-script munging.
51285
51286 2011-07-14  Roland McGrath  <roland@hack.frob.com>
51287
51288         * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
51289         of $(common-objpfx)shlib.lds.
51290         * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
51291
51292         * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
51293         Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
51294
51295         * configure.in (-z relro check): Adjust test code to add a large
51296         writable data section after it.
51297         * configure: Regenerated.
51298
51299 2011-07-11  Roland McGrath  <roland@hack.frob.com>
51300
51301         * configure.in (-z relro check): Fix test code to make the variable
51302         truly const.
51303         * configure: Regenerated.
51304
51305 2011-07-11  Ulrich Drepper  <drepper@gmail.com>
51306
51307         * nscd/nscd.h (struct traced_file): Define.
51308         (struct database_dyn): Remove inotify_descr, reset_res, and filename
51309         elements.  Add traced_files.
51310         (inotify_fd): Declare.
51311         (register_traced_file): Declare.
51312         * nscd/connections.c (dbs): Remove reset_res and filename initializers.
51313         (inotify_fd): Export.
51314         (resolv_conf_descr): Remove.
51315         (nscd_init): Move inotify descriptor creation to main.
51316         Don't register files for notification here.
51317         (register_traced_file): New function.
51318         (invalidate_cache): Don't use reset_res to determine whether to call
51319         res_init, go through the list of registered files.
51320         (main_loop_poll): The inotify descriptors are now stored in the
51321         structures for the traced files.
51322         (main_loop_epoll): Likewise
51323         * nscd/nscd.c (main): Create inotify socket here.  Pass extra argument
51324         to __nss_disable_nscd.
51325         * nscd/cache.c (prune_cache): There is no single inotify descriptor
51326         for a database anymore.  Check the records for all the registered
51327         files instead.
51328         * nss/Makefile (libnss_files-routines): Add files-init.
51329         (libnss_db-routines): Add db-init.
51330         * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
51331         [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
51332         * nss/nss_db/db-init.c: New file.
51333         * nss/nss_files/files-init.c: New file.
51334         * nss/nsswitch.c (nss_load_library): New function.  Broken out of
51335         __nss_lookup_function.
51336         (__nss_lookup_function): Call nss_load_library.
51337         (nss_load_all_libraries): New function.
51338         (__nss_disable_nscd): Take parameter with callback function for files
51339         to register.  Set is_nscd.  Load all the DSOs for the NSS modules
51340         used for the cached services.
51341         * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
51342         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
51343         options for features to all the files in nscd.
51344
51345         * nss/nsswitch.c (nss_parse_file): Add missing fclose.
51346
51347 2011-07-10  Roland McGrath  <roland@hack.frob.com>
51348
51349         * csu/elf-init.c (__libc_csu_init): Comment typo.
51350
51351 2011-07-09  Ulrich Drepper  <drepper@gmail.com>
51352
51353         * po/pl.po: Update from translation team.
51354         * po/ja.po: Likewise.
51355         * po/ru.po: Likewise.
51356         * po/ko.po: Likewise.
51357         * po/fr.po: Likewise.
51358
51359 2011-07-09  Roland McGrath  <roland@hack.frob.com>
51360
51361         * configure.in (.ctors/.dtors header and trailer check):
51362         Use an empirical test on a built program.
51363         * configure: Regenerated.
51364
51365         * configure.in (-z relro check): Use an empirical test on a built DSO.
51366         Detect, but do not require, on ia64.
51367         * configure: Regenerated.
51368
51369         * configure.in (READELF): Find it with AC_CHECK_TOOL.
51370         Update tests that use readelf to use $READELF instead.
51371         * configure: Regenerated.
51372
51373 2011-07-08  Ulrich Drepper  <drepper@gmail.com>
51374
51375         * malloc/hooks.c (memalign_check): Avoid using checked_request2size
51376         if the result is not used.
51377
51378 2011-07-05  Andreas Jaeger  <aj@suse.de>
51379
51380         [BZ#9696]
51381         * stdlib/tst-strtod.c: Add testcase.
51382
51383 2011-07-07  Ulrich Drepper  <drepper@gmail.com>
51384
51385         * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
51386         (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
51387         The latter has a higher limit.  Take additional parameter to pass to
51388         the new function.
51389         (__pathconf): Pass file to __statfs_link_max.
51390         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
51391         __statfs_link_max.
51392         * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
51393         __statfs_link_max.
51394
51395         [BZ #12868]
51396         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
51397         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
51398         Handle Lustre.
51399         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
51400         (__statfs_filesize_max): Likewise.
51401         Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
51402
51403 2011-07-05  Andreas Jaeger  <aj@suse.de>
51404
51405         * resolv/res_comp.c (dn_skipname): Remove unused variable.
51406
51407 2011-07-06  Marek Polacek  <mpolacek@redhat.com>
51408
51409         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
51410         `status' variable.
51411         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
51412         Likewise.
51413
51414 2011-07-04  H.J. Lu  <hongjiu.lu@intel.com>
51415
51416         * Makefile (strop-tests): Add strncat.
51417         * string/test-strncat.c: New file.
51418
51419 2011-06-30  Marek Polacek  <mpolacek@redhat.com>
51420
51421         * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
51422
51423 2011-06-21  Andreas Jaeger  <aj@suse.de>
51424
51425         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
51426         Copy rule from iconvdata/Makefile.
51427
51428 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
51429
51430         [BZ #12922]
51431         * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
51432         but no long options are defined, just return 'W'.
51433
51434 2011-06-22  Marek Polacek  <mpolacek@redhat.com>
51435
51436         [BZ #9696]
51437         * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
51438
51439 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
51440
51441         * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
51442         netgroups to read.
51443         (innetgr): Likewise.
51444
51445 2011-07-05  Roland McGrath  <roland@hack.frob.com>
51446
51447         * config.make.in (install_root): Default to $(DESTDIR).
51448
51449 2011-07-05  Ulrich Drepper  <drepper@gmail.com>
51450
51451         * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
51452
51453 2011-07-02  Roland McGrath  <roland@hack.frob.com>
51454
51455         * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
51456
51457         * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
51458         containing directory rather than embedding absolute directory names.
51459
51460         * scripts/check-local-headers.sh: Rewritten using awk.
51461         Match by word, not by line.  Print error messages for matches.
51462         * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
51463
51464         * Makerules [shlib-lds-flags empty]:
51465         ($(common-objpfx)libc_pic.opts): New target.
51466         ($(common-objpfx)libc_pic.os.clean): New target.
51467         ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
51468
51469         * config.make.in (OBJCOPY): New variable.
51470         * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
51471         * configure: Regenerated.
51472
51473         * config.make.in (use-default-link): New variable.
51474         * configure.in (use_default_link): Grok --with-default-link to set it.
51475         * configure: Regenerated.
51476         * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
51477         (shlib-lds, shlib-lds-flags): Define to empty.
51478
51479         * Makerules (shlib-lds): New variable.
51480         (shlib-lds-flags): New variable.
51481         (build-shlib, build-moduile, build-module-asneeded): Use it.
51482         ($(common-objpfx)libc.so): Use $(shlib-lds).
51483         ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
51484         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
51485
51486         * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
51487         DT_FLAGS/DT_FLAGS_1 with zero flags.
51488
51489         * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
51490         linker script munging.
51491
51492 2011-07-02  Ulrich Drepper  <drepper@gmail.com>
51493
51494         * crypt/sha512.h (struct sha512_ctx): Add union to access total also
51495         as 128-bit value.
51496         * crypt/sha512.c (sha512_process_block): Perform total addition using
51497         128-bit if possible.
51498         (__sha512_finish_ctx): Likewise.
51499         * crypt/sha256.h (struct sha256_ctx): Add union to access total also
51500         as 64-bit value.
51501         * crypt/sha256.c (SWAP64): Define.
51502         (sha256_process_block): Perform total addition using 64-bit if
51503         possible.
51504         (__sha256_finish_ctx): Likewise.
51505
51506 2011-07-01  Ulrich Drepper  <drepper@gmail.com>
51507
51508         * nscd/pwdcache.c (cache_addpw): Cleanup.  Add branch prediction.
51509         * nscd/initgrcache.c (addinitgroupsX): Likewise.
51510         * nscd/hstcache.c (cache_addhst): Likewise.
51511         * nscd/grpcache.c (cache_addgr): Likewise.
51512         * nscd/aicache.c (addhstaiX): Likewise
51513         * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
51514
51515 2011-07-01  Thorsten Kukuk  <kukuk@suse.de>
51516
51517         * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
51518         * nscd/initgrcache.c (addinitgroupsX): Likewise.
51519         * nscd/hstcache.c (cache_addhst): Likewise.
51520         * nscd/grpcache.c (cache_addgr): Likewise.
51521         * nscd/aicache.c (addhstaiX): Likewise
51522
51523 2011-07-01  Andreas Schwab  <schwab@redhat.com>
51524
51525         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
51526         domain only when needed.
51527
51528 2011-06-30  Andreas Schwab  <schwab@redhat.com>
51529
51530         * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
51531         is always restored.
51532
51533 2011-06-29  Ulrich Drepper  <drepper@gmail.com>
51534
51535         * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
51536         are re-adding the entry.
51537         * nscd/servicescache.c (cache_addserv): Likewise.
51538
51539 2011-06-30  Aurelien Jarno  <aurelien@aurel32.net>
51540
51541         * sysdeps/generic/dl-irel.h: fix protection against multiple
51542         inclusions.
51543         * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
51544
51545 2011-06-28  Ulrich Drepper  <drepper@gmail.com>
51546
51547         [BZ #12935]
51548         * malloc/memusage.sh: Fix quoting in message.
51549         * debug/xtrace.sh: Likewise.
51550
51551         * configure.in: Remove support for --experimental-malloc option, make
51552         it the default.
51553         * config.make.in: Likewise.
51554         * malloc/Makefile: Likewise.
51555
51556 2011-06-27  Andreas Schwab  <schwab@redhat.com>
51557
51558         * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
51559         two-byte characters.
51560
51561 2011-06-27  Roland McGrath  <roland@hack.frob.com>
51562
51563         * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
51564         AC_CACHE_CHECK invocation.
51565         * configure: Regenerated.
51566
51567         * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
51568
51569 2011-06-27  Ulrich Drepper  <drepper@gmail.com>
51570
51571         [BZ #12350]
51572         * nscd/aicache.c (addhstaiX):  Restore only RES_USE_INET6
51573         bit from old_res_options.
51574
51575         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
51576
51577         * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
51578         value type for setfct.
51579
51580 2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
51581
51582         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
51583         __gettimeofday instead of gettimeofday.
51584
51585 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
51586
51587         * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
51588
51589 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
51590
51591         * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
51592
51593         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
51594         info.
51595
51596 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
51597
51598         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
51599         strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
51600         strcpy-sse2-unaligned strncpy-sse2-unaligned
51601         stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
51602         * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
51603         * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
51604         * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
51605         * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
51606         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
51607         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
51608         * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
51609         * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
51610         * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
51611         (STRCPY): Support SSE2 and SSSE3 versions.
51612
51613 2011-06-24  Ulrich Drepper  <drepper@gmail.com>
51614
51615         [BZ #12874]
51616         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
51617         * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
51618         kernels which artificially limit size of requests.
51619
51620 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
51621
51622         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51623         strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
51624         strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
51625         * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
51626         * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
51627         * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
51628         * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
51629         * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
51630         * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
51631         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
51632         * sysdeps/i386/i686/multiarch/strcpy.S: New file.
51633         * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
51634         * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
51635         * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
51636         * sysdeps/i386/i686/multiarch/strncpy.S: New file.
51637         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51638         Enable unaligned load optimization for Intel Core i3, i5 and i7
51639         processors.
51640         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
51641         Define.
51642         (index_Fast_Unaligned_Load): Define.
51643         (HAS_FAST_UNALIGNED_LOAD): Define.
51644
51645 2011-06-23  Marek Polacek  <mpolacek@redhat.com>
51646
51647         * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
51648
51649 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
51650
51651         [BZ #12907]
51652         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
51653         until it is clear that the information is realy needed.
51654         Patch mostly by David Hanisch <david.hanisch@nsn.com>.
51655
51656 2011-06-22  Andreas Schwab  <schwab@redhat.com>
51657
51658         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
51659
51660 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
51661
51662         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
51663         /sys/devices/system/cpu/online if it is usable.
51664
51665         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
51666         reading the information from the /proc filesystem to once a second.
51667
51668 2011-06-21  Andreas Jaeger  <aj@suse.de>
51669
51670         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
51671         NULL after inclusion of kernel headers.
51672
51673 2011-06-21  Ulrich Drepper  <drepper@gmail.com>
51674
51675         * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
51676         calls to internal_setent.
51677
51678         [BZ #12885]
51679         * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
51680         addresses using gethostbyname4_r ignore IPv4 addresses.
51681
51682         * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
51683         branch using gethostbyname2 is only for AF_INET.  Optimize accordingly.
51684
51685         * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
51686
51687 2011-06-20  David S. Miller  <davem@davemloft.net>
51688
51689         * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
51690         inclusions.
51691         * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
51692
51693         * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
51694         (elf_irel): Use it.
51695         * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
51696         * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
51697         * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
51698         * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
51699         * sysdeps/x86_64/dl-irel.h: Likewise.
51700
51701         * elf/dl-runtime.c: Use elf_ifunc_invoke.
51702         * elf/dl-sym.c: Likewise.
51703
51704 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
51705
51706         * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch.  We
51707         need to dereference resplen2.
51708
51709 2011-06-14  Andreas Schwab  <schwab@redhat.com>
51710
51711         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
51712
51713 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
51714
51715         * Makeconfig: Define vardbdir and inst_vardbdir.
51716         * nss/Makefile: Add rules to install db-Makefile.
51717
51718         * nss/nss_db/db-XXX.c: Cleanup.
51719
51720         * nss/Makefile (libnss_db-dbs): Add db-initgroups.
51721         * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
51722         GLIBC_PRIVATE.
51723         * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
51724         * nss/makedb.c: Implement -g option to specify that value strings
51725         are generated and should not be added to table iterated over for
51726         get*ent calls.
51727         * nss/nss_db/db-initgroups.c: New file.
51728
51729         * nss/getent.c: Add support for initgroups lookups through getgrouplist
51730         interface.
51731
51732         * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
51733         (internal_getgrouplist): Adjust to name change.
51734         Update use_initgroups_entry if this is not the first call.
51735         * nss/databases.def: Add initgroups entry.
51736
51737         * nss/makedb.c (compute_tables): Check result of multiple hash table
51738         sizes to minimize maximum chain length.
51739
51740 2011-06-14  Ulrich Drepper  <drepper@gmail.com>
51741
51742         * Versions.def: Add entry for libnss_db.
51743         * shlib-versions: Likewise.
51744         * nss/Makefile: Add rules to build libnss_db.
51745         * nss/Versions: Add libnss_db information.  Organize libnss_files
51746         entries better.
51747         * nss/db-Makefile: Add gshadow support.  Change rules for the new
51748         makedb progra.  Some minor improvements to generate smaller files.
51749         * nss/nss_db/nss_db.h: Move NSS database header data structures to
51750         here from...
51751         * nss/makedb.c: ...here.
51752         Improve database format to be smaller and require less memory at
51753         runtime.
51754         * nss/nss_db/db-XXX.x: Adjust for new database format.  Don't use
51755         db anymore.
51756         * nss/nss_db/db-netgrp.c: Likewise.
51757         * nss/nss_db/db-open.c: Likewise.
51758         * nss/nss_files/flies-XXX.x: Adjust comments.
51759         * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
51760         * nss/nss_files/files-grp.c: Likewise.
51761         * nss/nss_files/files-hosts.c: Likewise.
51762         * nss/nss_files/files-network.c: Likewise.
51763         * nss/nss_files/files-proto.c: Likewise.
51764         * nss/nss_files/files-pwd.c: Likewise.
51765         * nss/nss_files/files-rpc.c: Likewise.
51766         * nss/nss_files/files-service.c: Likewise.
51767         * nss/nss_files/files-sgrp.c: Likewise.
51768         * nss/nss_files/files-spwd.c: Likewise.
51769         * nss/nss_db/db-alias.c: Removed.
51770         * nss/nss_db/dummy-db.h: Removed.
51771
51772 2011-06-02  Ulrich Drepper  <drepper@gmail.com>
51773
51774         * nss/makedb.c: Rewritten to not use database library.
51775         * nss/Makefile: Update to build new makedb program.
51776
51777 2011-06-14  Andreas Jaeger  <aj@suse.de>
51778
51779         * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
51780         memset declaration.
51781
51782 2011-06-10  Andreas Schwab  <schwab@redhat.com>
51783
51784         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
51785         tmpbuf.
51786
51787 2011-06-10  Roland McGrath  <roland@hack.frob.com>
51788
51789         * Makerules (shlib.lds): Fail if the linker script comes out empty.
51790         * elf/Makefile ($(objpfx)ld.so): Likewise.
51791
51792         * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
51793         Don't list ld.so twice in dependencies.
51794
51795         * posix/bug-regex31.c: Include <stdlib.h>.
51796
51797         * nscd/hstcache.c (cache_addhst): Remove unused variable.
51798
51799         * nis/nss_compat/compat-spwd.c
51800         (getspent_next_nss_netgr): Remove unused variable.
51801         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
51802
51803         * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
51804         nonmembers" output to use the right array.
51805
51806         * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
51807
51808         * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
51809
51810         * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
51811         * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
51812         * catgets/gencat.c (read_input_file): Likewise.
51813         * locale/programs/locarchive.c (enlarge_archive): Likewise.
51814
51815         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
51816         variable definition inside #if's controlling its use.
51817
51818         * inet/getnetgrent_r.c (innetgr): Remove unused variable.
51819
51820         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
51821
51822         * misc/syslog.c (__vsyslog_chk): Remove unused variable.
51823
51824         * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
51825         unreachable code.
51826
51827         * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
51828
51829         * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
51830         * configure: Regenerated.
51831
51832         * Makerules: Revert last change.
51833         * elf/Makefile: Likewise.
51834
51835 2011-06-09  Roland McGrath  <roland@hack.frob.com>
51836
51837         * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
51838         * elf/Makefile ($(objpfx)librtld.os): Likewise.
51839         (reloc-link): Likewise.
51840
51841 2011-06-09  Ulrich Drepper  <drepper@gmail.com>
51842
51843         * elf/Makefile: Add rules to build pldd.
51844         * elf/pldd.c: New file.
51845         * elf/pldd-xx.c: New file.
51846
51847 2011-06-07  Ulrich Drepper  <drepper@gmail.com>
51848
51849         * version.h: Update for 2.15 development version.
51850
51851 2011-06-07  David S. Miller  <davem@davemloft.net>
51852
51853         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
51854         ifuncs.
51855         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
51856         elf_machine_lazy_rel): Likewise.
51857         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
51858         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
51859         elf_machine_lazy_rel): Likewise.
51860         * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
51861         dl_hwcap via passed in argument.
51862         * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
51863         Likewise.
51864
51865 2011-06-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
51866
51867         * stdlib/longlong.h: Update from GCC.  Fix smul_ppmm for S/390.
51868
51869 2011-06-06  Roland McGrath  <roland@hack.frob.com>
51870
51871         [BZ #12849]
51872         * manual/fdl-1.1.texi: New file, verbatim from:
51873         http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
51874         * manual/lgpl-2.1.texi: New file, verbatim from:
51875         http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
51876         * manual/Makefile (licenses): New variable, list those new file names.
51877         (texis): Use it.
51878         (chapters.% top-menu.%): Include $(licenses) with $(appendices).
51879
51880         * manual/fdl.texi: File removed.
51881         * manual/lesser.texi: File removed.
51882         * manual/libc.texinfo (Copying, Documentation License):
51883         Use new @include file names, put @appendix directive before @include.
51884
51885 2011-06-04  Jakub Jelinek  <jakub@redhat.com>
51886
51887         [BZ #12841]
51888         * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
51889         (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
51890         (mq_open): Add __NTH.
51891
51892 2011-06-02  H.J. Lu  <hongjiu.lu@intel.com>
51893
51894         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51895         Assume Intel Core i3/i5/i7 processor if AVX is available.
51896
51897 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
51898
51899         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
51900         typo.
51901
51902 2011-05-31  Andreas Schwab  <schwab@redhat.com>
51903
51904         * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
51905         memory.  Use alloca_account.  Fix memory leak when retrying.
51906
51907 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
51908
51909         * version.h (RELEASE): Bump for 2.14 release.
51910         * include/features.h (__GLIBC_MINOR__): Bump to 14.
51911
51912         * config.make.in (RANLIB): Remove entry.
51913
51914 2011-05-30  Ulrich Drepper  <drepper@gmail.com>
51915
51916         * po/Makefile (po-sed-cmd): Add ksh to extensions.
51917         (libc.pot): Work around missing support for .ksh extension in xgettext.
51918
51919         [BZ #12684]
51920         * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
51921         if both request failed.
51922         (send_dg): In case of server errors clear resplen or *resplen2.
51923
51924         [BZ #12454]
51925         * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
51926         when there are multiple maps.
51927         * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
51928         (_dl_fini): Remove test here.
51929
51930         * elf/rtld.c (dl_main): Don't allow the loader to load itself.
51931
51932 2011-05-29  Ulrich Drepper  <drepper@gmail.com>
51933
51934         [BZ #12350]
51935         * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
51936         bit from old_res_options.
51937         (gaih_inet): Likewise.
51938
51939         [BZ #11099]
51940         * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
51941         as signed.
51942
51943         * resolv/res_init.c (res_setoptions): Make the code more compact.
51944
51945         [BZ #11558]
51946         * resolv/res_init.c (res_setoptions): Recognize use-vc option and
51947         set RES_USEVC.
51948
51949         [BZ #11634]
51950         * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
51951
51952         * malloc/malloc.h: Mark malloc hook variables as deprecated.
51953
51954         [BZ #11781]
51955         * malloc/malloc.h: Declare malloc hook variables as volatile.
51956
51957         * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
51958         in last patch.
51959
51960         [BZ #11799]
51961         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
51962         raise in the comment.
51963         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
51964         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
51965         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
51966
51967 2011-05-28  Ulrich Drepper  <drepper@gmail.com>
51968
51969         [BZ #12811]
51970         * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
51971         grow the buffers more if it already has to be sufficient.
51972         (build_wcs_upper_buffer): Likewise.
51973         * posix/regexec.c (check_matching): Likewise.
51974         (clean_state_log_if_needed): Likewise.
51975         (extend_buffers): Don't enlarge buffers beyond size of the input
51976         buffer.
51977         Patches mostly by Emil Wojak <emil@wojak.eu>.
51978         * posix/bug-regex32.c: New file.
51979         * posix/Makefile (tests): Add bug-regex32.
51980
51981         * locale/findlocale.c (_nl_find_locale): Return right away if
51982         _nl_explode_name failed.
51983         * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
51984
51985         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
51986
51987         * debug/xtrace.sh: Unify messages.
51988         * malloc/memusage.sh: Likewise.
51989
51990         [BZ #12813]
51991         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
51992         time symbol from vDSO.  Substitute with vsyscall if not available.
51993         * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
51994         __vdso_time.
51995
51996         * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
51997         * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
51998         * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
51999         Add sendmmsg and internal_sendmmsg.
52000         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
52001         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
52002         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
52003
52004         * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
52005         * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
52006         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
52007
52008 2011-05-27  Ulrich Drepper  <drepper@gmail.com>
52009
52010         [BZ #12813]
52011         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
52012         Retrieve getcpu symbol from vDSO.  Substitute with vsyscall if not
52013         available.
52014         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
52015         __vdso_getcpu.
52016
52017         [BZ #12814]
52018         * iconvdata/Makefile (tests): Add bug-iconv9.
52019         * iconvdata/bug-iconv9.c: New file.
52020
52021 2011-05-27  Andreas Schwab  <schwab@redhat.com>
52022
52023         [BZ #12814]
52024         * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
52025
52026 2011-05-25  Jakub Jelinek  <jakub@redhat.com>
52027
52028         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
52029         (struct user_regs_struct): Change intcs field back to cs.
52030
52031 2011-05-25  Ulrich Drepper  <drepper@gmail.com>
52032
52033         * po/ja.po: Update from translation team.
52034
52035 2011-05-23  Ulrich Drepper  <drepper@gmail.com>
52036
52037         [BZ #12795]
52038         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
52039         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
52040
52041 2011-05-20  Andreas Schwab  <schwab@redhat.com>
52042
52043         * stdlib/longlong.h: Update from GCC.
52044
52045 2011-05-23  Andreas Schwab  <schwab@redhat.com>
52046
52047         * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
52048         parameter name.
52049         * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
52050         Add parameter name.
52051         (__sysconf): Pass it down.
52052
52053 2011-05-22  Ulrich Drepper  <drepper@gmail.com>
52054
52055         [BZ #12671]
52056         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
52057         some situations.
52058         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
52059         * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
52060         add in in __libc_use_alloca calls.  Adjust callers.
52061         (glob): Use malloc in some situations.
52062
52063         * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
52064         and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
52065         pltexit.
52066
52067 2011-05-21  Ulrich Drepper  <drepper@gmail.com>
52068
52069         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
52070         and CLOCK_BOOTTIME_ALARM.
52071
52072         [BZ #12782]
52073         * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
52074         is returned.
52075
52076         * string/_strerror.c (__strerror_r): Print negative errors as signed
52077         numbers.
52078
52079         [BZ #12777]
52080         * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
52081         (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
52082         * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
52083
52084         * configure.in: Fix typo in redirection and correct removal of test
52085         files in two cases.
52086
52087         [BZ #12788]
52088         * locale/setlocale.c (new_composite_name): Fix test to check for
52089         identical name of all categories.
52090
52091         [BZ #12792]
52092         * libio/filedoalloc.c (local_isatty): New function.
52093         (_IO_file_doallocate): Use local_isatty.
52094         * stdio-common/perror.c (perror): In case a new stream is used
52095         forward the stream error.
52096         * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
52097         error flag.
52098
52099 2011-05-20  Ulrich Drepper  <drepper@gmail.com>
52100
52101         [BZ #11869]
52102         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
52103         alloca.
52104         * include/alloca.h (extend_alloca_account): Define.
52105
52106         [BZ #11857]
52107         * posix/regex.h: Fix comments with documentation of user-accessible
52108         fields after compilation and describe correct free'ing of pattern
52109         after re_compile_pattern.
52110         Patch by Reuben Thomas <rrt@sc3d.org>.
52111
52112 2011-05-18  Ryan S. Arnold  <rsa@us.ibm.com>
52113
52114         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
52115         and -mno-altivec to prevent the compiler from using Altivec and/or
52116         VSX instructions when the corresponding registers are not available.
52117
52118 2011-05-19  Andreas Schwab  <schwab@redhat.com>
52119
52120         * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
52121
52122 2011-05-19  Ulrich Drepper  <drepper@gmail.com>
52123
52124         * libio/freopen.c (freopen): Use __dup2, not dup2.
52125         * libio/freopen64.c (freopen64): Likewise.
52126
52127 2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>
52128
52129         [BZ #12775]
52130         * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
52131         * math/Makefile (tests): Add test-powl.
52132         (CFLAGS-test-powl.c): Define.
52133         * math/test-powl.c: New file.
52134
52135 2011-05-16  H.J. Lu  <hongjiu.lu@intel.com>
52136
52137         * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
52138
52139 2011-05-17  Ulrich Drepper  <drepper@gmail.com>
52140
52141         [BZ #11837]
52142         * iconvdata/gb18030.c: Update to GB18020-2005.
52143
52144 2011-05-16  Ulrich Drepper  <drepper@gmail.com>
52145
52146         * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
52147         RE_SYNTAX_POSIX_AWK): Update to match recent development.
52148         Patch by Aharon Robbins <arnold@skeeve.com>.
52149
52150         [BZ #11892]
52151         * stdlib/putenv.c (putenv): Don't always create copy of the variable
52152         on the stack.
52153
52154         [BZ #11895]
52155         * misc/pselect.c (__pselect): Handle timeout value errors hidden
52156         through underflows.
52157
52158         [BZ #12766]
52159         * misc/error.c (error_at_line): Ensure file_name and old_file_name
52160         point to strings before performing equality test for error_one_per_line
52161         mode.
52162
52163         [BZ #11697]
52164         * login/programs/pt_chown.c (do_pt_chown): Always call chown.
52165
52166         [BZ #11820]
52167         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
52168         (struct user_fpregs_struct): Avoid __uint*_t types.
52169
52170         [BZ #6420]
52171         * malloc/mtrace.c (tr_where): Add additional parameter to point to
52172         symbol info.  Use it instead of calling _dl_addr locally.
52173         (lock_and_info): New function.
52174         (tr_freehook): Call lock_and_info and pass symbol info as additional
52175         parameter to tr_where.
52176         (tr_mallochook): Likewise.
52177         (tr_reallochook): Likewise.
52178         (tr_memalignhook): Likewise.
52179
52180         * malloc/mtrace.c: Remove support for USE_MTRACE_FILE.  It is not
52181         used and couldn't be at all thread-safe.
52182
52183 2011-05-15  Ulrich Drepper  <drepper@gmail.com>
52184
52185         * libio/freopen.c (freopen): Don't close old file descriptor
52186         before the new one is opened.  Instead dup the new file descriptor
52187         to the old one after the new stream is created.
52188         * libio/freopen64.c (freopen64): Likewise.
52189         * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
52190         * libio/fileops.c (_IO_new_file_close_it): Handle new
52191         _IO_FLAGS2_NOCLOSE flag.
52192         (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
52193         If _IO_file_open didn't set FD_CLOEXEC do it after the call.
52194         * libio/oldfileops.c (_IO_old_file_close_it): Handle new
52195         _IO_FLAGS2_NOCLOSE flag.
52196         * include/unistd.h: Add hidden_proto for dup3.
52197         Define __have_dup3.
52198         * io/dup3.c: Define hidden symbol.
52199         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
52200
52201         [BZ #7101]
52202         * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
52203         when an incomplete long option is used.
52204         * posix/tst-getopt_long1.c: New file.
52205         * posix/Makefile (tests): Add tst-getopt_long1.
52206
52207         [BZ #10138]
52208         * scripts/config.guess: Update from autoconf-2.68.
52209         * scripts/config.sub: Likewise.
52210
52211         [BZ #10157]
52212         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
52213         tests into ...
52214         (has_cpuclock): ...this.  New function.
52215         * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
52216         macro here based on has_cpuclock code.
52217
52218         [BZ #10149]
52219         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
52220         First byte (not low byte) is now always NUL.
52221         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
52222
52223         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
52224         Use non-cancelable interfaces.
52225
52226         [BZ #9809]
52227         * locale/iso-639.def: Add entry for Sorani.
52228
52229         [BZ #11901]
52230         * include/stdlib.h: Move include protection to the right place.
52231         Define abort_msg_s.  Declare __abort_msg with it.
52232         * stdlib/abort.c (__abort_msg): Adjust type.
52233         * assert/assert.c (__assert_fail_base): New function.  Majority
52234         of code from __assert_fail.  Allocate memory for __abort_msg with
52235         mmap.
52236         (__assert_fail): Now call __assert_fail_base.
52237         * assert/assert-perr.c: Remove bulk of implementation.  Use
52238         __assert_fail_base.
52239         * include/assert.hL Declare __assert_fail_base.
52240         * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
52241         mmap.
52242         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
52243
52244 2011-05-14  Ulrich Drepper  <drepper@gmail.com>
52245
52246         [BZ #11952]
52247         [BZ #12453]
52248         * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
52249         until all modules are registered in the DTV.
52250         * elf/Makefile: Add rules to build and run tst-tls19.
52251         * elf/tst-tls19.c: New file.
52252         * elf/tst-tls19mod1.c: New file.
52253         * elf/tst-tls19mod2.c: New file.
52254         * elf/tst-tls19mod3.c: New file.
52255         Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
52256
52257         [BZ #12083]
52258         * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
52259         correctly.
52260
52261         [BZ #12601]
52262         * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
52263         two-byte sequence errors.
52264         * iconvdata/Makefile (tests): Add bug-iconv8.
52265         * iconvdata/bug-iconv8.c: New file.
52266
52267         [BZ #12626]
52268         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
52269         buf2 definition.
52270
52271         * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
52272
52273         [BZ #12432]
52274         * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
52275         (dummy_getcfa): New function.
52276         (init): Get _Unwind_GetCFA address, use dummy if not found.
52277         (backtrace_helper): In recursion check, also check whether CFA changes.
52278         (__backtrace): Completely initialize arg.
52279
52280         * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
52281         storing incomplete byte sequence in state object.  Avoid testing for
52282         guaranteed too small input if we know there is enough data available.
52283
52284 2011-05-11  Andreas Schwab  <schwab@redhat.com>
52285
52286         * Makeconfig (+link-pie): Indent.
52287         * Rules (binaries-pie): Define if $(have-fpie) and
52288         $(build-shared).
52289         (binaries-shared): Also filter out $(binaries-pie).
52290         ($(addprefix $(objpfx),$(binaries-pie))): New rule.
52291         * nscd/Makefile (others-pie): Add nscd.
52292         (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
52293         ($(objpfx)nscd): Remove command override.
52294         * login/Makefile (others-pie): Add pt_chown.
52295         ($(objpfx)pt_chown): Remove command override.
52296         * elf/Makefile: Add PIE tests to tests and tests-pie variables and
52297         remove command overrides.
52298
52299 2011-05-13  Ulrich Drepper  <drepper@gmail.com>
52300
52301         * libio/tst_putwc.c: Fix error messages.
52302
52303         [BZ #12724]
52304         * libio/fileops.c (_IO_new_file_close_it): Always flush when
52305         currently writing and seek to current position when not.
52306         * libio/Makefile (tests): Add bug-fclose1.
52307         * libio/bug-fclose1.c: New file.
52308
52309 2011-05-12  Ulrich Drepper  <drepper@gmail.com>
52310
52311         [BZ #12511]
52312         * elf/dl-lookup.c (enter): Don't test for copy relocation here and
52313         don't set DF_1_NODELETE here.
52314         (do_lookup_x): When entering new entry test for copy relocation
52315         and if necessary set DF_1_NODELETE flag.
52316         * elf/tst-unique4.cc: New file.
52317         * elf/tst-unique4.h: New file.
52318         * elf/tst-unique4lib.cc: New file.
52319         * elf/Makefile: Add rules to build and run tst-unique4.
52320         Patch by Piotr Bury <pbury@goahead.com>.
52321
52322 2011-05-11  Ulrich Drepper  <drepper@gmail.com>
52323
52324         [BZ #12052]
52325         * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
52326
52327         [BZ #12625]
52328         * misc/mntent_r.c (addmntent): Flush the stream after the output
52329
52330         [BZ #12393]
52331         * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
52332         (is_trusted_path_normalize): Skip initial colon.  Append slash
52333         to empty buffer.  Duplicate is_trusted_path code but allow
52334         constructed patch to be prefix.
52335         (is_dst): Allow $ORIGIN followed by /.
52336         (_dl_dst_substitute): Correct clearing of check_for_trusted.
52337         Correct testing of result of is_trusted_path_normalize
52338         (decompose_rpath): Fix warning.
52339
52340 2011-05-10  Ulrich Drepper  <drepper@gmail.com>
52341
52342         [BZ #11257]
52343         * grp/initgroups.c (internal_getgrouplist): When we found the service
52344         list through the initgroups entry in nsswitch.conf do not always
52345         continue on a successful lookup.  Don't always use the
52346         __nss_group_database value if it is set.
52347         * nss/nsswitch.conf (initgroups): Change action for successful db
52348         lookup to continue for compatibility.
52349
52350 2011-05-09  Ulrich Drepper  <drepper@gmail.com>
52351
52352         [BZ #11532]
52353         * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
52354         and CP774 modules.
52355         * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
52356         and CP774 modules.
52357         * iconvdata/tst-tables.sh: Likewise.
52358         * iconvdata/cp770.c: New file.
52359         * iconvdata/cp771.c: New file.
52360         * iconvdata/cp772.c: New file.
52361         * iconvdata/cp773.c: New file.
52362         * iconvdata/cp774.c: New file.
52363         * iconvdata/testdata/CP770: New file.
52364         * iconvdata/testdata/CP770..UTF8: New file.
52365         * iconvdata/testdata/CP771: New file.
52366         * iconvdata/testdata/CP771..UTF8: New file.
52367         * iconvdata/testdata/CP772: New file.
52368         * iconvdata/testdata/CP772..UTF8: New file.
52369         * iconvdata/testdata/CP773: New file.
52370         * iconvdata/testdata/CP773..UTF8: New file.
52371         * iconvdata/testdata/CP774: New file.
52372         * iconvdata/testdata/CP774..UTF8: New file.
52373
52374         * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
52375         END CHARMAP line.
52376         * iconvdata/gen-8bit-gap.sh: Likewise.
52377         * iconvdata/gen-8bit.sh: Likewise.
52378
52379         * locale/iso-639.def: Add ary entry.
52380
52381         [BZ #11258]
52382         * locale/C-translit.h.in: Add U20A1 transliteration.
52383
52384         [BZ #12178]
52385         * locale/iso-639.def: Add wae entry.
52386         Patch by Kevin Bortis <bortis@translate-wae.ch>.
52387
52388         [BZ #12545]
52389         * locale/programs/localedef.c (construct_output_path): Use ssize_t
52390         for n.
52391
52392         [BZ #12711]
52393         * locale/C-translit.h.in: Add entry for U20B9.
52394         Patch by pravin.d.s@gmail.com.
52395
52396 2011-05-08  Ulrich Drepper  <drepper@gmail.com>
52397
52398         [BZ #12713]
52399         * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
52400         ENAMETOOLONG use generic getcwd.
52401         * sysdeps/posix/getcwd.c: Add support to use openat.  Make usable
52402         in rtld.  Use *stat64.
52403         * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
52404         Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
52405         * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
52406         * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
52407         * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
52408         * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
52409         * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
52410         __fstatat64 macros.
52411         * include/dirent.h: Add libc_hidden_proto for rewinddir.
52412         * dirent/rewinddir.c: Add libc_hidden_def.
52413         * sysdeps/mach/hurd/rewinddir.c: Likewise.
52414         * sysdeps/unix/rewinddir.c: Likewise.  Don't do locking outside libc.
52415
52416         * include/dirent.h (__alloc_dir): Add flags parameter.
52417         * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
52418         * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
52419         __alloc_dir.
52420         (__alloc_dir): Take new parameter.  Don't call fcntl for invocations
52421         from fdopendir if O_CLOEXEC is already set.
52422
52423 2011-03-15  Alan Modra  <amodra@gmail.com>
52424
52425         * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
52426         l_tls_firstbyte_offset non-zero.  Save padding offset in
52427         l_tls_firstbyte_offset for later use.
52428         * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
52429         freeing static tls block.
52430
52431 2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
52432
52433         * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
52434         where #ifdef was intended.  The intent is to prevent ARG_MAX from
52435         being defined by the kernel headers.
52436
52437 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
52438
52439         [BZ #12734]
52440         * resolv/resolv.h: Define RES_NOTLDQUERY.
52441         * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
52442         no-tld-query and set RES_NOTLDQUERY.
52443         * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
52444         * resolv/res_query.c (__libc_res_nsearch): Backport changes from
52445         modern BIND to search name as TLD unless forbidden.
52446
52447 2011-05-07  Petr Baudis  <pasky@suse.cz>
52448             Ulrich Drepper  <drepper@gmail.com>
52449
52450         [BZ #12393]
52451         * elf/dl-load.c (fillin_rpath): Move trusted path check...
52452         (is_trusted_path): ...to here.
52453         (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
52454         (_dl_dst_substitute): Verify expanded $ORIGIN path elements
52455         using is_trusted_path_normalize() in setuid scripts.
52456
52457 2011-05-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
52458
52459         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
52460         __BEGIN/__END_DECLS.
52461
52462 2011-05-06  Ulrich Drepper  <drepper@gmail.com>
52463
52464         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
52465         NSS_STATUS_NOTFOUND if no record was found.
52466
52467 2011-05-05  Andreas Schwab  <schwab@redhat.com>
52468
52469         * sunrpc/Makefile (headers): Add rpc/netdb.h.
52470         (headers-not-in-tirpc): Remove rpc/netdb.h
52471         * resolv/netdb.h: Revert last change.
52472
52473 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
52474
52475         * Makeconfig (link-libc-static): Use --{start,end}-group to handle
52476         circular dependency between libgcc.a and libc.a.
52477
52478 2011-05-05  Andreas Schwab  <schwab@redhat.com>
52479
52480         * resolv/netdb.h: Don't include <rpc/netdb.h>.
52481         * nis/Makefile: Don't install rpcsvc/*.
52482         * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
52483         instead of <rpc/types.h>.
52484         (MAXHOSTNAMELEN): Define.
52485
52486 2011-05-03  Andreas Schwab  <schwab@redhat.com>
52487
52488         * elf/ldconfig.c (add_dir): Don't crash on empty path.
52489
52490 2011-04-28  Maciej Babinski  <mbabinski@google.com>
52491
52492         [BZ #12714]
52493         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
52494         gethostbyname4_r when IPv6 results are possible.
52495
52496 2011-05-02  Ulrich Drepper  <drepper@gmail.com>
52497
52498         [BZ #12723]
52499         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
52500         _PC_PIPE_BUF handling.
52501
52502 2011-04-30  Bruno Haible  <bruno@clisp.org>
52503
52504         [BZ #12717]
52505         * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
52506         * resolv/netdb.h (getnameinfo): Change type of flags parameter
52507         to 'int'.
52508         * inet/getnameinfo.c (getnameinfo): Likewise.
52509
52510 2011-04-29  Ulrich Drepper  <drepper@gmail.com>
52511
52512         * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
52513         to groups setting in database lookup.
52514         * nss/nsswitch.conf: Add initgroups entry.
52515
52516 2011-04-22  Ulrich Drepper  <drepper@gmail.com>
52517
52518         [BZ #12685]
52519         * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
52520         mode string.
52521         Patch by Eric Blake <eblake@redhat.com>.
52522
52523 2011-04-20  H.J. Lu  <hongjiu.lu@intel.com>
52524
52525         * sunrpc/Makefile (need-export-routines): Add svc_run.
52526         (routines): Remove svc_run.
52527         ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
52528         * sunrpc/clnt_perr.c (clnt_perrno): Export.
52529         * sunrpc/svc_run.c (svc_run): Likewise.
52530         * sunrpc/svc_udp.c (svcudp_create): Likewise.
52531
52532 2011-04-21  Ulrich Drepper  <drepper@gmail.com>
52533
52534         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
52535         problem in reallocation in last patch.
52536
52537 2011-04-20  Ulrich Drepper  <drepper@gmail.com>
52538
52539         * sunrpc/Makefile: Move inclusion of Rules.
52540
52541 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
52542
52543         * nss/nss_files/files-initgroups.c: New file.
52544         * nss/Makefile (libnss_files-routines): Add files-initgroups.
52545         * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
52546         _nss_files_initgroups_dyn.
52547
52548 2011-03-31  Richard Sandiford  <richard.sandiford@linaro.org>
52549
52550         * elf/elf.h (R_ARM_IRELATIVE): Define.
52551
52552 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
52553
52554         * po/ru.po: Update from translation team.
52555
52556 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
52557
52558         * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
52559         dependencies.
52560
52561 2011-02-06  Mike Frysinger  <vapier@gentoo.org>
52562
52563         [BZ #12653]
52564         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
52565         MEMCPY_CHK with USE_AS_BCOPY ifdef check.
52566         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
52567         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
52568         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
52569
52570 2011-03-28  Andreas Schwab  <schwab@linux-m68k.org>
52571
52572         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
52573         differing bytes.
52574         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
52575         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
52576         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
52577
52578 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
52579
52580         [BZ #12420]
52581         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
52582         storing it.
52583         * stdlib/bug-getcontext.c: New file.
52584         * stdlib/Makefile: Add rules to build and run bug-getcontext.
52585
52586 2011-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
52587
52588         * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
52589         instructions into .machine "z9-109".
52590         * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
52591         * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
52592
52593 2011-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
52594
52595         * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
52596         between environment variables and auxiliary vector.
52597
52598 2011-04-16  Ulrich Drepper  <drepper@gmail.com>
52599
52600         * Makefile: Add rules to build linkobj/libc.so.
52601         * include/libc-symbols.h: Define libc_hidden_nolink.
52602         * include/rpc/auth.h: Mark functions which are to be hidden.
52603         * include/rpc/auth_des.h: Likewise.
52604         * include/rpc/auth_unix.h: Likewise.
52605         * include/rpc/clnt.h: Likewise.
52606         * include/rpc/des_crypt.h: Likewise.
52607         * include/rpc/key_prot.h: Likewise.
52608         * include/rpc/pmap_clnt.h: Likewise.
52609         * include/rpc/pmap_prot.h: Likewise.
52610         * include/rpc/pmap_rmt.h: Likewise.
52611         * include/rpc/rpc_msg.h: Likewise.
52612         * include/rpc/svc.h: Likewise.
52613         * include/rpc/svc_auth.h: Likewise.
52614         * include/rpc/xdr.h: Likewise.
52615         * nis/Makefile: Link all DSOs against linkobj/libc.so.
52616         * nss/Makefile: Likewise.
52617         * sunrpc/Makefile: Don't install headers.  Build library with normal
52618         entry points.  Don't build rpcinfo.  Link RPC tests appropriately.
52619         * sunrpc/auth_des.c: Hide exported symbols by default, export some
52620         for the compat linking library.  Remove use of INTDEF/INTUSE.
52621         * sunrpc/auth_none.c: Likewise.
52622         * sunrpc/auth_unix.c: Likewise.
52623         * sunrpc/authdes_prot.c: Likewise.
52624         * sunrpc/authuxprot.c: Likewise.
52625         * sunrpc/clnt_gen.c: Likewise.
52626         * sunrpc/clnt_perr.c: Likewise.
52627         * sunrpc/clnt_raw.c: Likewise.
52628         * sunrpc/clnt_simp.c: Likewise.
52629         * sunrpc/clnt_tcp.c: Likewise.
52630         * sunrpc/clnt_udp.c: Likewise.
52631         * sunrpc/clnt_unix.c: Likewise.
52632         * sunrpc/des_crypt.c: Likewise.
52633         * sunrpc/des_soft.c: Likewise.
52634         * sunrpc/get_myaddr.c: Likewise.
52635         * sunrpc/key_call.c: Likewise.
52636         * sunrpc/key_prot.c: Likewise.
52637         * sunrpc/netname.c: Likewise.
52638         * sunrpc/pm_getmaps.c: Likewise.
52639         * sunrpc/pm_getport.c: Likewise.
52640         * sunrpc/pmap_clnt.c: Likewise.
52641         * sunrpc/pmap_prot.c: Likewise.
52642         * sunrpc/pmap_prot2.c: Likewise.
52643         * sunrpc/pmap_rmt.c: Likewise.
52644         * sunrpc/publickey.c: Likewise.
52645         * sunrpc/rpc_cmsg.c: Likewise.
52646         * sunrpc/rpc_common.c: Likewise.
52647         * sunrpc/rpc_dtable.c: Likewise.
52648         * sunrpc/rpc_prot.c: Likewise.
52649         * sunrpc/rpc_thread.c: Likewise.
52650         * sunrpc/rtime.c: Likewise.
52651         * sunrpc/svc.c: Likewise.
52652         * sunrpc/svc_auth.c: Likewise.
52653         * sunrpc/svc_authux.c: Likewise.
52654         * sunrpc/svc_raw.c: Likewise.
52655         * sunrpc/svc_run.c: Likewise.
52656         * sunrpc/svc_simple.c: Likewise.
52657         * sunrpc/svc_tcp.c: Likewise.
52658         * sunrpc/svc_udp.c: Likewise.
52659         * sunrpc/svc_unix.c: Likewise.
52660         * sunrpc/svcauth_des.c: Likewise.
52661         * sunrpc/xcrypt.c: Likewise.
52662         * sunrpc/xdr.c: Likewise.
52663         * sunrpc/xdr_array.c: Likewise.
52664         * sunrpc/xdr_float.c: Likewise.
52665         * sunrpc/xdr_intXX_t.c: Likewise.
52666         * sunrpc/xdr_mem.c: Likewise.
52667         * sunrpc/xdr_rec.c: Likewise.
52668         * sunrpc/xdr_ref.c: Likewise.
52669         * sunrpc/xdr_sizeof.c: Likewise.
52670         * sunrpc/xdr_stdio.c: Likewise.
52671
52672 2011-04-10  Ulrich Drepper  <drepper@gmail.com>
52673
52674         [BZ #12650]
52675         * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
52676         * sysdeps/ia64/dl-tls.h: Likewise.
52677         * sysdeps/powerpc/dl-tls.h: Likewise.
52678         * sysdeps/s390/dl-tls.h: Likewise.
52679         * sysdeps/sh/dl-tls.h: Likewise.
52680         * sysdeps/sparc/dl-tls.h: Likewise.
52681         * sysdeps/x86_64/dl-tls.h: Likewise.
52682         * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
52683
52684 2011-03-14  Andreas Schwab  <schwab@redhat.com>
52685
52686         * elf/dl-load.c (_dl_dst_substitute): When skipping the first
52687         rpath element also skip the following colon.
52688         (expand_dynamic_string_token): Add is_path parameter and pass
52689         down to DL_DST_REQUIRED and _dl_dst_substitute.
52690         (decompose_rpath): Call expand_dynamic_string_token with
52691         non-zero is_path.  Ignore empty rpaths.
52692         (_dl_map_object_from_fd): Call expand_dynamic_string_token
52693         with zero is_path.
52694
52695 2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
52696
52697         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
52698         Make cancelable.
52699
52700 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
52701
52702         [BZ #12655]
52703         * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
52704         Patch by Filipe David Manana <fdmanana@apache.org>.
52705
52706 2011-04-07  Andreas Schwab  <schwab@redhat.com>
52707
52708         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
52709         Maintain aligned stack.
52710         (CHECK_RSP): Remove unused macro.
52711
52712 2011-04-03  Ulrich Drepper  <drepper@gmail.com>
52713
52714         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
52715         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
52716
52717 2011-04-02  Ulrich Drepper  <drepper@gmail.com>
52718
52719         * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
52720
52721         * include/features.h: Mention __USE_XOPEN2K8 in comment.
52722
52723 2011-03-26  H.J. Lu  <hongjiu.lu@intel.com>
52724
52725         [BZ #12518]
52726         * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
52727         * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
52728         * sysdeps/x86_64/memmove.c: New file.
52729         * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
52730         (memcpy): Renamed to ...
52731         (__new_memcpy): This.
52732         (memcpy): Provide GLIBC_2_14 memcpy.
52733         * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
52734         (memcpy): Provide GLIBC_2_2_5 memcpy.
52735
52736 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52737
52738         [BZ #12631]
52739         * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
52740
52741 2011-03-30  Andreas Schwab  <schwab@redhat.com>
52742
52743         * misc/syncfs.c: New file.
52744         * misc/Makefile (routines): Add syncfs.
52745         * posix/unistd.h: Declare syncfs.
52746         * sysdeps/unix/syscalls.list: Add syncfs.
52747
52748 2011-04-01  Andreas Schwab  <schwab@redhat.com>
52749
52750         * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
52751         open_by_handle_at.
52752         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
52753         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52754         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52755         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52756         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52757         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
52758         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52759
52760 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52761
52762         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
52763         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52764         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
52765         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52766         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52767         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52768         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52769
52770         * io/Makefile: Compile fallocate.c, fallocate64.c, and
52771         sync_file_range.c with -fexceptions.
52772         * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
52773         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
52774         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
52775         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
52776         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
52777         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
52778         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
52779         sync_file_range as cancellation point
52780         * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file.  This is
52781         now a wrapper around __call_sync_file_range with cancellation handling.
52782         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
52783         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this.  Change
52784         function name to __call_sync_file_range.
52785         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
52786         Add call_sync_file_range.
52787
52788 2011-04-01  Andreas Schwab  <schwab@redhat.com>
52789
52790         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
52791         bits/timex.h.
52792
52793 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52794
52795         * iconv/iconv.h: Fix typo in comment.
52796         * io/fcntl.h: Likewise.
52797         * libio/stdio.h: Likewise.
52798         * posix/spawn.h: Likewise.
52799         * posix/unistd.h: Likewise.
52800         * stdlib/stdlib.h: Likewise.
52801         * time/time.h: Likewise.
52802         * wcsmbs/wchar.h: Likewise.
52803
52804         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
52805         open_by_handle): Add.
52806         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
52807         and MAX_HANDLE_SZ.  Declare name_to_handle_at and open_by_handle.
52808         Augment a few comments.
52809         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52810         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52811         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52812         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52813         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52814         * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
52815         open_by_handle.
52816
52817         * io/fcntl.h (AT_EMPTY_PATH): Define.
52818
52819 2011-03-30  Ulrich Drepper  <drepper@gmail.com>
52820
52821         * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
52822         * sysdeps/unix/sysv/linux/bits/time.h: New file.
52823         * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
52824         to...
52825         * sysdeps/unix/sysv/linux/bits/timex.h: ...here.  New file.
52826         * Versions.def: Add GLIBC_2.14.
52827         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
52828         Export.
52829
52830 2011-03-22  Ulrich Drepper  <drepper@gmail.com>
52831
52832         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
52833         round counter.
52834         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
52835
52836 2011-03-20  H.J. Lu  <hongjiu.lu@intel.com>
52837
52838         [BZ #12597]
52839         * string/test-strncmp.c (do_page_test): New function.
52840         (check2): Likewise.
52841         (test_main): Call check2.
52842         * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
52843
52844 2011-03-20  Ulrich Drepper  <drepper@gmail.com>
52845
52846         [BZ #12587]
52847         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
52848         Handle cache information in CPU leaf 4.
52849         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
52850
52851 2011-03-18  Ulrich Drepper  <drepper@gmail.com>
52852
52853         [BZ #12583]
52854         * posix/fnmatch.c (fnmatch): Check size of pattern in wide
52855         character representation.
52856         Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
52857
52858 2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
52859
52860         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
52861         END(__isnan) to END(__isnanf) to match function entry point/label
52862         EALIGN(__isnanf,...).
52863
52864 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
52865
52866         * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
52867
52868 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
52869
52870         [BZ #12510]
52871         * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
52872         copy from the symbol referenced in the relocation to initialize the
52873         used variable.
52874         Patch by Piotr Bury <pbury@goahead.com>.
52875         * elf/Makefile: Add rules to build and tst-unique3.
52876         * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
52877         * elf/tst-unique3.cc: New file.
52878         * elf/tst-unique3.h: New file.
52879         * elf/tst-unique3lib.cc: New file.
52880         * elf/tst-unique3lib2.cc: New file.
52881
52882         * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
52883
52884 2011-03-10  Mike Frysinger  <vapier@gentoo.org>
52885
52886         * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
52887         $LDFLAGS and -nostdlib -nostartfiles to linking step.  Change main
52888         to _start.
52889
52890 2011-03-06  Ulrich Drepper  <drepper@gmail.com>
52891
52892         * elf/dl-load.c (_dl_map_object): If we are looking for the first
52893         to-be-loaded object along a path to loader is ld.so.
52894
52895 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
52896             Ulrich Drepper  <drepper@gmail.com>
52897
52898         * sysdeps/x86_64/memset.S: After aligning destination, code
52899         branches to different locations depending on the value of
52900         misalignment, when multiarch is enabled. Fix this.
52901
52902 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
52903
52904         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
52905         Set _x86_64_preferred_memory_instruction for AMD processsors.
52906         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
52907         Set bit_Prefer_SSE_for_memop for AMD processors.
52908
52909 2011-03-04  Ulrich Drepper  <drepper@gmail.com>
52910
52911         * libio/fmemopen.c (fmemopen): Optimize a bit.
52912
52913 2011-03-03  Andreas Schwab  <schwab@redhat.com>
52914
52915         * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
52916
52917 2011-03-03  Roland McGrath  <roland@redhat.com>
52918
52919         * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
52920
52921 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
52922
52923         * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
52924         __bzero_ultra1 instead of __memset_ultra1.
52925
52926 2011-02-23  Andreas Schwab  <schwab@redhat.com>
52927             Ulrich Drepper  <drepper@gmail.com>
52928
52929         [BZ #12509]
52930         * include/link.h (struct link_map): Add l_orig_initfini.
52931         * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
52932         returning unsuccessfully.
52933         * elf/dl-close.c (_dl_close_worker): If this is the last explicit
52934         close of a file loaded at startup, restore the original l_initfini
52935         list.
52936         * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
52937         list, store the pointer.
52938         * elf/Makefile ($(objpfx)noload-mem): New rule.
52939         (noload-ENV): Define.
52940         (tests): Add $(objpfx)noload-mem.
52941         * elf/noload.c: Include <memcheck.h>.
52942         (main): Call mtrace.  Close all opened handles.
52943
52944 2011-02-17  Andreas Schwab  <schwab@redhat.com>
52945
52946         [BZ #12454]
52947         * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
52948         dependencies are missing.
52949
52950 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
52951
52952         Fix __if_freereq crash: Unlike the generic version which uses free,
52953         Hurd needs munmap.
52954         * sysdeps/mach/hurd/ifreq.h: New file.
52955
52956 2011-01-27  Petr Baudis  <pasky@suse.cz>
52957             Ulrich Drepper  <drepper@gmail.com>
52958
52959         [BZ 12445]#
52960         * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
52961         to extend_alloca().
52962         * stdio-common/bug23.c: New file.
52963         * stdio-common/Makefile (tests): Add bug23.
52964
52965 2010-09-28  Andreas Schwab  <schwab@redhat.com>
52966             Ulrich Drepper  <drepper@gmail.com>
52967
52968         [BZ #12489]
52969         * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
52970         before performing relro protection.  At old place add assertion
52971         to make sure nothing changed.
52972
52973 2011-02-17  Nathan Sidwell  <nathan@codesourcery.com>
52974             Glauber de Oliveira Costa  <glommer@gmail.com>
52975
52976         * elf/elf.h: Add new ARM TLS relocs.
52977
52978 2011-02-16  Ryan S. Arnold  <rsa@us.ibm.com>
52979
52980         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
52981         (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
52982         cast from r3.
52983         * sysdeps/wordsize-64/Makefile: New file.  Add tst-writev to
52984         'tests' variable.
52985         * sysdeps/wordsize-64/tst-writev.c: New file.
52986
52987 2011-02-15  Ryan S. Arnold  <rsa@us.ibm.com>
52988
52989         * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
52990         -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
52991         insns in _dl_start to prevent a TOC reference before relocs are
52992         resolved.
52993
52994 2011-02-15  Ulrich Drepper  <drepper@gmail.com>
52995
52996         [BZ #12469]
52997         * Makeconfig: Remove RANLIB definition.
52998         * Makerules: Don't use RANLIB.
52999         * aclocal.m4: Remove ranlib test.
53000         * configure.in: No need to check for ranlib.
53001         * elf/rtld-Rules: Don't use RANLIB.
53002
53003 2011-02-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53004
53005         * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
53006         protection macro.
53007         * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
53008         inclusion protection macro.
53009
53010         * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
53011         SIGRTMIN and SIGRTMAX and print information in that case only when
53012         SIGRTMIN is defined.
53013
53014 2011-02-11  Jakub Jelinek  <jakub@redhat.com>
53015
53016         * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
53017         arginfo fn returning -1.
53018
53019         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
53020         and thousands string is zero terminated.
53021
53022 2011-02-03  Andreas Schwab  <schwab@redhat.com>
53023
53024         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
53025         sysdeps/unix/sysv/linux/bits/socket.h.
53026
53027 2011-01-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53028
53029         * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
53030         (__CPU_COUNT): Remove old macros.
53031         (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
53032         (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
53033         (__CPU_ALLOC, __CPU_FREE): Add macros.
53034         (__sched_cpualloc, __sched_cpufree): Add declarations.
53035
53036 2011-02-05  Ulrich Drepper  <drepper@gmail.com>
53037
53038         * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
53039         (struct datahead): Reuse 32 bits of the alignment for a TTL field.
53040         * nscd/aicache.c (addhstaiX): Return timeout of added value.
53041         (readdhstai): Return value of addhstaiX call.
53042         * nscd/grpcache.c (cache_addgr): Return timeout of added value.
53043         (addgrbyX): Return value returned by cache_addgr.
53044         (readdgrbyname): Return value returned by addgrbyX.
53045         (readdgrbygid): Likewise.
53046         * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
53047         (addpwbyX): Return value returned by cache_addpw.
53048         (readdpwbyname): Return value returned by addhstbyX.
53049         (readdpwbyuid): Likewise.
53050         * nscd/servicescache.c (cache_addserv): Return timeout of added value.
53051         (addservbyX): Return value returned by cache_addserv.
53052         (readdservbyname): Return value returned by addservbyX:
53053         (readdservbyport): Likewise.
53054         * nscd/hstcache.c (cache_addhst): Return timeout of added value.
53055         (addhstbyX): Return value returned by cache_addhst.
53056         (readdhstbyname): Return value returned by addhstbyX.
53057         (readdhstbyaddr): Likewise.
53058         (readdhstbynamev6): Likewise.
53059         (readdhstbyaddrv6): Likewise.
53060         * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
53061         (readdinitgroups): Return value returned by addinitgroupsX.
53062         * nscd/cache.c (readdfcts): Change return value of functions to time_t.
53063         (prune_cache): Keep track of timeout value of re-added entries.
53064         * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
53065         * nscd/nscd.h: Adjust prototypes of readd* functions.
53066
53067 2011-02-04  Roland McGrath  <roland@redhat.com>
53068
53069         * nis/nis_server.c (nis_servstate): Use the right name for 0.
53070         (nis_stats): Likewise.
53071         * nis/nis_modify.c (nis_modify): Likewise.
53072         * nis/nis_remove.c (nis_remove): Likewise.
53073         * nis/nis_add.c (nis_add): Likewise.
53074
53075         * elf/dl-object.c (_dl_new_object): Remove unused variable L.
53076
53077         * posix/fnmatch_loop.c: Add some consts.
53078
53079         * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
53080
53081 2011-02-02  H.J. Lu  <hongjiu.lu@intel.com>
53082
53083         [BZ #12460]
53084         * config.make.in (config-cflags-novzeroupper): Define.
53085         * configure.in: Substitute libc_cv_cc_novzeroupper.
53086         * elf/Makefile (AVX-CFLAGS): Define.
53087         (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
53088         (CFLAGS-tst-auditmod4a.c): Likewise.
53089         (CFLAGS-tst-auditmod4b.c): Likewise.
53090         (CFLAGS-tst-auditmod6b.c): Likewise.
53091         (CFLAGS-tst-auditmod6c.c): Likewise.
53092         (CFLAGS-tst-auditmod7b.c): Likewise.
53093         * sysdeps/i386/configure.in: Check -mno-vzeroupper.
53094
53095 2011-02-02  Ulrich Drepper  <drepper@gmail.com>
53096
53097         * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
53098         function to the callback.
53099         Patch partly by Jiri Olsa <jolsa@redhat.com>.
53100
53101 2011-02-02  Andreas Schwab  <schwab@redhat.com>
53102
53103         * shadow/sgetspent.c: Check return value of __sgetspent_r instead
53104         of errno.
53105
53106 2011-01-19  Ulrich Drepper  <drepper@gmail.com>
53107
53108         [BZ #11724]
53109         * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
53110         of constructors.
53111         * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
53112         of destructors.
53113         (_dl_fini): Don't call _dl_sort_fini if there is only one object.
53114
53115         [BZ #11724]
53116         * elf/Makefile: Add rules to build and run new test.
53117         * elf/tst-initorder.c: New file.
53118         * elf/tst-initorder.exp: New file.
53119         * elf/tst-initordera1.c: New file.
53120         * elf/tst-initordera2.c: New file.
53121         * elf/tst-initordera3.c: New file.
53122         * elf/tst-initordera4.c: New file.
53123         * elf/tst-initorderb1.c: New file.
53124         * elf/tst-initorderb2.c: New file.
53125         * elf/tst-order-a1.c: New file.
53126         * elf/tst-order-a2.c: New file.
53127         * elf/tst-order-a3.c: New file.
53128         * elf/tst-order-a4.c: New file.
53129         * elf/tst-order-b1.c: New file.
53130         * elf/tst-order-b2.c: New file.
53131         * elf/tst-order-main.c: New file.
53132         New test case by George Gensure <werkt0@gmail.com>.
53133
53134 2010-10-01  Andreas Schwab  <schwab@redhat.com>
53135
53136         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
53137         decoding ACE if AI_CANONIDN.
53138
53139 2011-01-18  Ulrich Drepper  <drepper@gmail.com>
53140
53141         * elf/Makefile: Build IFUNC tests unless multi-arch = no.
53142
53143 2011-01-17  Ulrich Drepper  <drepper@gmail.com>
53144
53145         * version.h (RELEASE): Bump for 2.13 release.
53146         * include/features.h: (__GLIBC_MINOR__): Bump to 13.
53147
53148         * io/fcntl.h: Define AT_NO_AUTOMOUNT.
53149
53150         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
53151         MADV_NOHUGEPAGE.
53152         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
53153         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
53154         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
53155         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
53156         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
53157         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
53158
53159         * posix/getconf.c: Update copyright year.
53160         * catgets/gencat.c: Likewise.
53161         * csu/version.c: Likewise.
53162         * debug/catchsegv.sh: Likewise.
53163         * debug/xtrace.sh: Likewise.
53164         * elf/ldconfig.c: Likewise.
53165         * elf/ldd.bash.in: Likewise.
53166         * elf/sprof.c (print_version): Likewise.
53167         * iconv/iconv_prog.c: Likewise.
53168         * iconv/iconvconfig.c: Likewise.
53169         * locale/programs/locale.c: Likewise.
53170         * locale/programs/localedef.c: Likewise.
53171         * malloc/memusage.sh: Likewise.
53172         * malloc/mtrace.pl: Likewise.
53173         * nscd/nscd.c (print_version): Likewise.
53174         * nss/getent.c: Likewise.
53175
53176         * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
53177         PF_CAIF, and PF_ALG.
53178         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
53179
53180 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
53181
53182         * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
53183         (modules-names): Use them.
53184         (ifunc-test-modules, ifunc-pie-tests): Define.
53185         (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
53186         tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
53187         (test-extras): Likewise.
53188         ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
53189         $(compile-command.c).
53190         ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
53191         (all-built-dso): Define.
53192         (check-textrel.out, check-execstack.out): Depend on it.
53193
53194         * configure.in: Don't override --enable-multi-arch.
53195
53196 2011-01-15  Ulrich Drepper  <drepper@gmail.com>
53197
53198         [BZ #6812]
53199         * nscd/hstcache.c (tryagain): Define.
53200         (cache_addhst): Return tryagain not notfound for temporary errors.
53201         (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
53202         failed.
53203
53204 2011-01-14  Ulrich Drepper  <drepper@gmail.com>
53205
53206         [BZ #10563]
53207         * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
53208         to make the syscall.
53209         * sysdeps/unix/sysv/linux/setgroups.c: New file.
53210
53211         [BZ #12378]
53212         * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
53213         and fall back to matching as normal character if the string ends before
53214         the matching ']' is found.  This is what POSIX requires.
53215         * posix/testfnm.c: Adjust test result.
53216         * posix/globtest.sh: Adjust test result.  Add new test.
53217         * posix/tst-fnmatch.input: Likewise.
53218         * posix/tst-fnmatch2.c: Add new test.
53219
53220 2010-12-28  Andreas Schwab  <schwab@linux-m68k.org>
53221
53222         * elf/Makefile (check-execstack): Revert last change.  Depend on
53223         check-execstack.h.
53224         (check-execstack.h): New target.
53225         (generated): Add check-execstack.h.
53226         * elf/check-execstack.c: Include "check-execstack.h".
53227         (main): Revert last change.
53228         (handle_file): Return zero if GNU_STACK is absent and
53229         DEFAULT_STACK_PERMS doesn't include PF_X.
53230
53231 2011-01-13  Ulrich Drepper  <drepper@gmail.com>
53232
53233         * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
53234         in child fails because the descriptor is already closed.
53235         * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
53236         * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
53237         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
53238
53239         [BZ #12397]
53240         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
53241         syscall.
53242
53243         [BZ #10484]
53244         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
53245         temporary buffer used to handle multi lookups locally.
53246         * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
53247
53248 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
53249
53250         * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
53251         loader is ld.so.
53252
53253 2011-01-10  Paul Pluzhnikov  <ppluzhnikov@google.com>
53254
53255         * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
53256         alignment for SSE2.
53257
53258 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
53259
53260         [BZ #12394]
53261         * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
53262         characters.  When rounding increased number of integer digits recompute
53263         number of groups.
53264         * stdio-common/tst-grouping.c: New file.
53265         * stdio-common/Makefile: Add rules to build and run tst-grouping.
53266
53267 2011-01-09  Ulrich Drepper  <drepper@gmail.com>
53268
53269         * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
53270         __FD_CLR, and __FS_ISSET.  gcc generates better code on its own.
53271
53272         * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
53273         void.
53274         * bits/select.h: Likewise.
53275
53276 2011-01-08  Ulrich Drepper  <drepper@gmail.com>
53277
53278         * po/ja.po: Update from translation team.
53279
53280 2011-01-04  David S. Miller  <davem@sunset.davemloft.net>
53281
53282         [BZ #11155]
53283         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
53284         implementation just like for lxstat, fxstatat, et al.
53285
53286 2010-12-27  Jim Meyering  <meyering@redhat.com>
53287
53288         [BZ #12348]
53289         * posix/regexec.c (build_trtable): Return failure indication upon
53290         calloc failure.  Otherwise, re_search_internal could infloop on OOM.
53291
53292 2010-12-25  Ulrich Drepper  <drepper@gmail.com>
53293
53294         [BZ #12201]
53295         * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
53296         * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
53297         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
53298         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
53299
53300         [BZ #12207]
53301         * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
53302
53303         [BZ #12204]
53304         * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
53305         * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
53306
53307 2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
53308
53309         * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
53310         * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
53311         script has SORT_BY_INIT_PRIORITY.
53312         * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
53313         NO_CTORS_DTORS_SECTIONS is defined.
53314         * elf/soinit.c: Likewise.
53315         * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
53316         NO_CTORS_DTORS_SECTIONS is defined.
53317         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
53318         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
53319         * sysdeps/sh/init-first.c: Likewise.
53320         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
53321
53322 2010-12-24  Ulrich Drepper  <drepper@gmail.com>
53323
53324         * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
53325         always use the slow path.
53326
53327 2010-12-15  Ryan S. Arnold  <rsa@us.ibm.com>
53328
53329         * elf/Makefile: (check-execstack): Replace $(native-compile) with a
53330         similar rule which adds the sysdep directories to the header search in
53331         order to pick up the correct platform stackinfo.h.
53332         * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
53333         perform test if it is, otherwise return successfully without testing.
53334         * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
53335         DEFAULT_STACK_PERMS define in stackinfo.h.
53336         * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
53337         defined in stackinfo.h.
53338         * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
53339         DEFAULT_STACK_PERMS defined in stackinfo.h.
53340         * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
53341         * sysdeps/ia64/stackinfo.h: Likewise.
53342         * sysdeps/s390/stackinfo.h: Likewise.
53343         * sysdeps/sh/stackinfo.h: Likewise.
53344         * sysdeps/sparc/stackinfo.h: Likewise.
53345         * sysdeps/x86_64/stackinfo.h: Likewise.
53346         * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
53347         PF_X for powerpc64.  Retain PF_X for powerpc32.
53348
53349 2010-12-19  Ulrich Drepper  <drepper@gmail.com>
53350
53351         * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
53352         accurately.
53353         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
53354         GETDENTS_64BIT_ALIGNED.
53355
53356 2010-12-14  Ulrich Drepper  <dreper@gmail.com>
53357
53358         * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
53359
53360 2010-12-10  Andreas Schwab  <schwab@redhat.com>
53361
53362         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
53363         _GNU_SOURCE.
53364
53365         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
53366         * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
53367         Remove __restrict.
53368         (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
53369         (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
53370
53371 2010-12-09  Ulrich Drepper  <drepper@gmail.com>
53372
53373         [BZ #11655]
53374         * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
53375         are initialized.
53376
53377 2010-12-09  Jakub Jelinek  <jakub@redhat.com>
53378
53379         * string/bits/string3.h (memmove, bcopy): Remove __restrict.
53380
53381 2010-12-03  Ulrich Drepper  <drepper@gmail.com>
53382
53383         * po/it.po: Update from translation team.
53384
53385 2010-12-01  H.J. Lu  <hongjiu.lu@intel.com>
53386
53387         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
53388         unused codes.
53389
53390 2010-11-30  Ulrich Drepper  <drepper@gmail.com>
53391
53392         * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
53393
53394 2010-11-24  Andreas Schwab  <schwab@redhat.com>
53395
53396         * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
53397         specially.
53398         (gaih_getanswer_slice): Likewise.
53399
53400 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
53401
53402         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
53403
53404 2010-05-31  Petr Baudis  <pasky@suse.cz>
53405
53406         [BZ #11149]
53407         * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
53408         silently even in the chroot mode.
53409
53410 2010-11-22  Ulrich Drepper  <drepper@gmail.com>
53411
53412         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
53413         last patch a bit.  Pretty printing
53414
53415 2010-05-31  Petr Baudis <pasky@suse.cz>
53416
53417         [BZ #10085]
53418         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
53419         initialization of skip_initgroups_dyn.
53420
53421 2010-11-19  Ulrich Drepper  <drepper@gmail.com>
53422
53423         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
53424         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
53425
53426 2010-11-16  Ulrich Drepper  <drepper@gmail.com>
53427
53428         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
53429
53430 2010-11-11  Andreas Schwab  <schwab@redhat.com>
53431
53432         * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
53433         * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
53434         (tst-fnmatch-ENV): Set MALLOC_TRACE.
53435         ($(objpfx)tst-fnmatch-mem): New rule.
53436         (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
53437         * posix/tst-fnmatch.c (main): Call mtrace.
53438
53439 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
53440
53441         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53442         Support Intel processor model 6 and model 0x2c.
53443
53444 2010-11-10  Luis Machado  <luisgpm@br.ibm.com>
53445
53446         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
53447           signed comparison.
53448
53449 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
53450
53451         [BZ #12205]
53452         * string/test-strncasecmp.c (check_result): New function.
53453         (do_one_test): Use it.
53454         (check1): New function.
53455         (test_main): Use it.
53456         * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
53457         Support strcasecmp and strncasecmp.
53458
53459 2010-11-08  Ulrich Drepper  <drepper@gmail.com>
53460
53461         [BZ #12194]
53462         * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
53463         * sysdeps/x86_64/bits/byteswap.h: Likewise.
53464
53465 2010-11-07  H.J. Lu  <hongjiu.lu@intel.com>
53466
53467         * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
53468         IFUNC support.
53469         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53470         memset-x86-64.
53471         * sysdeps/x86_64/multiarch/bzero.S: New file.
53472         * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
53473         * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
53474         * sysdeps/x86_64/multiarch/memset.S: New file.
53475         * sysdeps/x86_64/multiarch/memset_chk.S: New file.
53476         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53477         Set bit_Prefer_SSE_for_memop for Intel processors.
53478         * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
53479         Define.
53480         (index_Prefer_SSE_for_memop): Define.
53481         (HAS_PREFER_SSE_FOR_MEMOP): Define.
53482
53483 2010-11-04  Luis Machado  <luisgpm@br.ibm.com>
53484
53485         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
53486         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
53487
53488 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
53489
53490         [BZ #12191]
53491         * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
53492         (__x86_64_raw_data_cache_size_half): Likewise.
53493         (__x86_64_raw_shared_cache_size): Likewise.
53494         (__x86_64_raw_shared_cache_size_half): Likewise.
53495
53496         * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
53497         (__x86_64_raw_data_cache_size_half): Likewise.
53498         (__x86_64_raw_shared_cache_size): Likewise.
53499         (__x86_64_raw_shared_cache_size_half): Likewise.
53500         (init_cacheinfo): Set __x86_64_raw_data_cache_size,
53501         __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
53502         and __x86_64_raw_shared_cache_size_half.  Round
53503         __x86_64_data_cache_size_half, __x86_64_data_cache_size
53504         __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
53505         to multiple of 256 bytes.
53506
53507 2010-11-03  Ulrich Drepper  <drepper@gmail.com>
53508
53509         [BZ #12167]
53510         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
53511         of inacessible symlinks.  Verify result of symlink before returning it.
53512         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
53513         Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
53514
53515 2010-10-28  Erich Ritz  <erichritz@gmail.com>
53516
53517         * math/math.h (isinf): Fix typo in comment.
53518
53519 2010-11-01  Ulrich Drepper  <drepper@gmail.com>
53520
53521         * po/da.po: Update from translation team.
53522
53523 2010-10-26  Ulrich Drepper  <drepper@gmail.com>
53524
53525         * elf/rtld.c (dl_main): Move assertion after the point where rtld map
53526         is added to the list.
53527
53528 2010-10-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53529             Ulrich Drepper  <drepper@gmail.com>
53530
53531         * elf/dl-object.c (_dl_new_object): Don't append the new object to
53532         the global list here.  Move code to...
53533         (_dl_add_to_namespace_list): ...here.  New function.
53534         * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
53535         * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
53536         * elf/dl-load.c (lose): Don't remove the element from the list.
53537         (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
53538         (_dl_map_object): Likewise.
53539
53540 2010-10-25  Ulrich Drepper  <drepper@gmail.com>
53541
53542         [BZ #12159]
53543         * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
53544         into all bytes of SSE register.
53545         Patch by Richard Li <richardpku@gmail.com>.
53546
53547 2010-10-24  Ulrich Drepper  <drepper@gmail.com>
53548
53549         [BZ #12140]
53550         * malloc/malloc.c (_int_free): Fill correct number of bytes when
53551         perturbing.
53552
53553 2010-10-20  Michael B. Brutman  <brutman@us.ibm.com>
53554
53555         * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
53556         * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
53557         * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
53558         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
53559         * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
53560         submachine.
53561         * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
53562
53563 2010-10-22  Andreas Schwab  <schwab@redhat.com>
53564
53565         * include/dlfcn.h (__RTLD_SECURE): Define.
53566         * elf/dl-load.c (_dl_map_object): Remove preloaded parameter.  Use
53567         mode & __RTLD_SECURE instead.
53568         (open_path): Rename preloaded parameter to secure.
53569         * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
53570         * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
53571         * elf/dl-deps.c (openaux): Likewise.
53572         * elf/rtld.c (struct map_args): Remove is_preloaded.
53573         (map_doit): Don't use it.
53574         (dl_main): Likewise.
53575         (do_preload): Use __RTLD_SECURE instead of is_preloaded.
53576         (dlmopen_doit): Add __RTLD_SECURE to mode bits.
53577
53578 2010-09-09  Andreas Schwab  <schwab@redhat.com>
53579
53580         * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
53581         (sysd-rules-targets): Remove duplicates.
53582         * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
53583         rtld-%.$o dependency.
53584
53585 2010-10-18  Andreas Schwab  <schwab@redhat.com>
53586
53587         * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
53588         _dl_map_object do it.
53589
53590 2010-10-19  Ulrich Drepper  <drepper@gmail.com>
53591
53592         * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
53593         fast fma builtins, define the macros in the C99 standard.
53594         (FP_FAST_FMAF): Likewise.
53595         (FP_FAST_FMAL): Likewise.
53596         * sysdeps/x86_64/bits/mathdef.h: Likewise.
53597
53598         * bits/mathdef.h: Update copyright year.
53599         * sysdeps/powerpc/bits/mathdef.h: Likewise.
53600
53601 2010-10-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
53602
53603         * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
53604         builtins, define the macros in the C99 standard.
53605         (FP_FAST_FMAF): Likewise.
53606         (FP_FAST_FMAL): Likewise.
53607         * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
53608         multiply/add.
53609         (FP_FAST_FMAF): Likewise.
53610
53611 2010-10-15  Jakub Jelinek  <jakub@redhat.com>
53612
53613         [BZ #3268]
53614         * math/libm-test.inc (fma_test): Some new testcases.
53615         * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
53616         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
53617         y and infinite z.  Do multiplication by C already in long double.
53618         * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
53619         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
53620         y and infinite z.  Do bitwise or of inexact bit into u.d.
53621         * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
53622         * sysdeps/i386/fpu/s_fmaf.S: Removed.
53623         * sysdeps/i386/fpu/s_fma.S: Removed.
53624         * sysdeps/i386/fpu/s_fmal.S: Removed.
53625
53626 2010-10-16  Jakub Jelinek  <jakub@redhat.com>
53627
53628         [BZ #3268]
53629         * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
53630         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
53631         computation is not scheduled after fetestexcept.  Fix value
53632         of minimum denormal long double.
53633
53634 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
53635
53636         [BZ #3268]
53637         * math/libm-test.inc (fma_test): Add some more tests.
53638         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
53639         correctly.
53640
53641 2010-10-15  Andreas Schwab  <schwab@redhat.com>
53642
53643         * scripts/data/localplt-s390-linux-gnu.data: New file.
53644         * scripts/data/localplt-s390x-linux-gnu.data: New file.
53645
53646 2010-10-13  Jakub Jelinek  <jakub@redhat.com>
53647
53648         [BZ #3268]
53649         * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
53650         * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
53651         instead of dbl-64.
53652         * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
53653         inlines.
53654         * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
53655         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
53656         if one of x and y is very large and the other is subnormal.
53657         * sysdeps/s390/fpu/s_fmaf.c: New file.
53658         * sysdeps/s390/fpu/s_fma.c: New file.
53659         * sysdeps/powerpc/fpu/s_fmaf.S: New file.
53660         * sysdeps/powerpc/fpu/s_fma.S: New file.
53661         * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
53662         * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
53663         * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
53664
53665 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
53666
53667         [BZ #3268]
53668         * math/libm-test.inc (fma_test): Add some more fmaf tests, add
53669         fma tests.
53670         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
53671         * sysdeps/ieee754/dbl-64/s_fma.c: New file.
53672         * sysdeps/i386/i686/multiarch/s_fma.c: Include
53673         sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
53674         * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
53675         * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
53676         * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
53677
53678 2010-10-12  Ulrich Drepper  <drepper@redhat.com>
53679
53680         [BZ #12078]
53681         * posix/regcomp.c (parse_branch): One more memory leak plugged.
53682         * posix/bug-regex31.input: Add test case.
53683
53684 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
53685
53686         * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
53687         * posix/bug-regex31.input: New file.
53688
53689         [BZ #12078]
53690         * posix/regcomp.c (parse_branch): Free memory when allocation failed.
53691         (parse_sub_exp): Fix last change, use postorder.
53692
53693         * posix/bug-regex31.c: New file.
53694         * posix/Makefile: Add rules to build and run bug-regex31.
53695
53696         * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
53697
53698         [BZ #12078]
53699         * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
53700
53701         [BZ #12108]
53702         * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
53703         to have entries in sys_siglist.
53704
53705         [BZ #12093]
53706         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
53707         be NULL.
53708
53709 2010-10-07  Jakub Jelinek  <jakub@redhat.com>
53710
53711         [BZ #3268]
53712         * math/libm-test.inc (fma_test): Add 2 fmaf tests.
53713         * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
53714         * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
53715         sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
53716         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
53717         * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
53718         * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
53719         * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
53720         * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
53721         * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
53722         * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
53723         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
53724         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
53725         * math/ftestexcept.c (fetestexcept): Likewise.
53726         * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
53727         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
53728         * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
53729         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
53730         * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
53731         * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
53732         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
53733
53734 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
53735
53736         [BZ #12107]
53737         * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
53738         newline.
53739
53740 2010-10-06  Ulrich Drepper  <drepper@gmail.com>
53741
53742         * string/bug-strstr1.c: New file.
53743         * string/Makefile: Add rules to build and run bug-strstr1.
53744
53745 2010-10-05  Eric Blake  <eblake@redhat.com>
53746
53747         [BZ #12092]
53748         * string/str-two-way.h (two_way_long_needle): Always clear memory
53749         when skipping input due to the shift table.
53750
53751 2010-10-03  Ulrich Drepper  <drepper@gmail.com>
53752
53753         [BZ #12005]
53754         * malloc/mcheck.c: Handle large requests.
53755
53756         [BZ #12077]
53757         * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
53758         for strncmp and strncasecmp.
53759         * string/stratcliff.c: Add tests for strcmp and strncmp.
53760         * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
53761
53762 2010-09-28  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
53763
53764         * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
53765         __set_fpscr.
53766
53767 2010-09-30  Andreas Jaeger  <aj@suse.de>
53768
53769         * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
53770         (CGROUP_SUPER_MAGIC): Define.
53771         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
53772         Handle btrfs and cgroup file systems.
53773         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
53774         Likewise.
53775
53776 2010-09-27  Luis Machado  <luisgpm@br.ibm.com>
53777
53778         * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
53779         * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
53780
53781 2010-09-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53782
53783         [BZ #12067]
53784         * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
53785         trying to locate the ELF header.
53786
53787 2010-09-27  Andreas Schwab  <schwab@redhat.com>
53788
53789         [BZ #11611]
53790         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
53791         Mask out sign-bit copies when constructing f_fsid.
53792
53793 2010-09-24  Petr Baudis <pasky@suse.cz>
53794
53795         * debug/stack_chk_fail_local.c: Add missing licence exception.
53796         * debug/warning-nop.c: Likewise.
53797
53798 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
53799
53800         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
53801         implementing getdents64 using getdents syscall, set d_type if
53802         __ASSUME_GETDENTS32_D_TYPE.
53803
53804 2010-09-16  Andreas Schwab  <schwab@redhat.com>
53805
53806         * elf/dl-close.c (free_slotinfo, free_mem): Move to...
53807         * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
53808
53809 2010-09-21  Ulrich Drepper  <drepper@redhat.com>
53810
53811         [BZ #12037]
53812         * posix/unistd.h: Undo change of feature selection for ftruncate from
53813         2010-01-11.
53814
53815 2010-09-20  Ulrich Drepper  <drepper@redhat.com>
53816
53817         * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
53818         detection.
53819
53820 2010-09-20  Andreas Schwab  <schwab@redhat.com>
53821
53822         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
53823         fanotify_mark.
53824         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
53825
53826 2010-09-14  Andreas Schwab  <schwab@redhat.com>
53827
53828         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
53829         variables after CHECK_SP call.
53830         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
53831
53832 2010-09-13  Andreas Schwab  <schwab@redhat.com>
53833             Ulrich Drepper  <drepper@redhat.com>
53834
53835         * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
53836         re-relocationg ld.so.
53837         * elf/dl-support.c (_dl_non_dynamic_init): And here after the
53838         _dl_init_paths call.
53839         * elf/dl-load.c (_dl_init_paths).  Don't set GLRO(dl_init_all_dirs)
53840         here anymore.
53841
53842 2010-09-14  Ulrich Drepper  <drepper@redhat.com>
53843
53844         * resolv/res_init.c (__res_vinit): Count the default server we added.
53845
53846 2010-09-08  Chung-Lin Tang  <cltang@codesourcery.com>
53847             Ulrich Drepper  <drepper@redhat.com>
53848
53849         [BZ #11968]
53850         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
53851         (____longjmp_chk): Use %ebx for saving value across system call.
53852         Add unwind info.
53853
53854 2010-09-06  Andreas Schwab  <schwab@redhat.com>
53855
53856         * manual/Makefile: Don't mix pattern rules with normal rules.
53857
53858 2010-09-05  Andreas Schwab  <schwab@linux-m68k.org>
53859
53860         * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
53861         operation.
53862         * libio/iofdopen.c (_IO_new_fdopen): Likewise.
53863         * libio/iofopncook.c (_IO_cookie_init): Likewise.
53864         * libio/iovdprintf.c (_IO_vdprintf): Likewise.
53865         * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
53866         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
53867         Likewise.
53868
53869 2010-09-04  Ulrich Drepper  <drepper@redhat.com>
53870
53871         [BZ #11979]
53872         * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
53873         IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
53874
53875 2010-09-02  Ulrich Drepper  <drepper@redhat.com>
53876
53877         * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
53878         * sysdeps/x86_64/addmul_1.S: Likewise.
53879         * sysdeps/x86_64/lshift.S: Likewise.
53880         * sysdeps/x86_64/mul_1.S: Likewise.
53881         * sysdeps/x86_64/rshift.S: Likewise.
53882         * sysdeps/x86_64/sub_n.S: Likewise.
53883         * sysdeps/x86_64/submul_1.S: Likewise.
53884
53885 2010-09-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53886
53887         This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
53888         Define __sched_param instead of SCHED_* and sched_param when
53889         <bits/sched.h> is included with __need_schedparam defined.
53890         * bits/sched.h [__need_schedparam]
53891         (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
53892         [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
53893         (__defined_schedparam): Define to 1.
53894         (__sched_param): New structure, identical to sched_param.
53895         (__need_schedparam): Undefine.
53896
53897 2010-08-31  Mike Frysinger  <vapier@gentoo.org>
53898
53899         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
53900         (epoll_create1): Declare.
53901
53902         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
53903
53904 2010-08-31  Andreas Schwab  <schwab@redhat.com>
53905
53906         [BZ #7066]
53907         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
53908         shifting retval into place.
53909
53910 2010-09-01  Ulrich Drepper  <drepper@redhat.com>
53911
53912         * nis/rpcsvc/nis.h: Update copyright notice.
53913         * nis/rpcsvc/nis.x: Likewise.
53914         * nis/rpcsvc/nis_callback.h: Likewise.
53915         * nis/rpcsvc/nis_callback.x: Likewise.
53916         * nis/rpcsvc/nis_object.x: Likewise.
53917         * nis/rpcsvc/nis_tags.h: Likewise.
53918         * nis/rpcsvc/yp.h: Likewise.
53919         * nis/rpcsvc/yp.x: Likewise.
53920         * nis/rpcsvc/ypupd.h: Likewise.
53921         * nis/yp_xdr.c: Likewise.
53922         * nis/ypupdate_xdr.c: Likewise.
53923
53924         * sunrpc/pm_getport.c (__libc_rpc_getport): New function.  This is
53925         mainly the body of pmap_getport.  Add parameters to specify timeouts.
53926         (pmap_getport): Use __libc_rpc_getport.
53927         * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
53928         * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
53929         * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
53930
53931 2010-08-31  Andreas Schwab  <schwab@linux-m68k.org>
53932
53933         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
53934         fanotify_mark.
53935
53936 2010-08-27  Roland McGrath  <roland@redhat.com>
53937
53938         * sysdeps/i386/i686/multiarch/Makefile
53939         (CFLAGS-varshift.c): New variable.
53940
53941 2010-08-27  Ulrich Drepper  <drepper@redhat.com>
53942
53943         * sysdeps/i386/i686/multiarch/varshift.S: File removed.
53944         * sysdeps/i386/i686/multiarch/varshift.c: New file.
53945
53946         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
53947
53948         * sysdeps/x86_64/strlen.S: Minimal code improvement.
53949
53950 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
53951
53952         * sysdeps/x86_64/strlen.S: Unroll the loop.
53953         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53954         strlen-sse2 strlen-sse2-bsf.
53955         * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
53956         __strlen_no_bsf if bit_Slow_BSF is set.
53957         (__strlen_sse42): Removed.
53958         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
53959         * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
53960
53961 2010-08-25  Roland McGrath  <roland@redhat.com>
53962
53963         * sysdeps/x86_64/multiarch/varshift.S: File removed.
53964         * sysdeps/x86_64/multiarch/varshift.c: New file.
53965         * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
53966         * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
53967         * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
53968         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
53969
53970 2010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
53971
53972         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53973         strlen-sse2 strlen-sse2-bsf.
53974         * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
53975         __strlen_sse2_bsf if bit_Slow_BSF is unset.
53976         (__strlen_sse2): Removed.
53977         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
53978         * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
53979         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
53980         bit_Slow_BSF for Atom.
53981         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
53982         (index_Slow_BSF): Define.
53983         (HAS_SLOW_BSF): Define.
53984
53985 2010-08-25  Ulrich Drepper  <drepper@redhat.com>
53986
53987         [BZ #10851]
53988         * resolv/res_init.c (__res_vinit): When no server address at all
53989         is given default to loopback.
53990
53991 2010-08-24  Roland McGrath  <roland@redhat.com>
53992
53993         * configure.in: Remove config-name.h generation.
53994         * configure: Regenerated.
53995         * config-name.in: File removed.
53996         * scripts/config-uname.sh: New file.
53997         * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
53998         ($(objdir)config-name.h): New target.
53999
54000         * sunrpc/rpc_parse.h: Avoid nested comment.
54001
54002 2010-08-24  Richard Henderson  <rth@redhat.com>
54003             Ulrich Drepper  <drepper@redhat.com>
54004             H.J. Lu  <hongjiu.lu@intel.com>
54005
54006         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
54007         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
54008         * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
54009         Replace _mm_srli_si128 with __m128i_shift_right.  Replace
54010         _mm_alignr_epi8 with _mm_loadu_si128.
54011         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
54012         * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
54013         (__m128i_shift_right): Removed.
54014         * sysdeps/i386/i686/multiarch/varshift.h: New file.
54015         * sysdeps/i386/i686/multiarch/varshift.S: New file.
54016         * sysdeps/x86_64/multiarch/varshift.h: New file.
54017         * sysdeps/x86_64/multiarch/varshift.S: New file.
54018
54019 2010-08-21  Mike Frysinger  <vapier@gentoo.org>
54020
54021         * configure.in: Move assembler checks to before sysdep dir checking.
54022
54023 2010-08-20  Petr Baudis  <pasky@suse.cz>
54024
54025         * LICENSES: Sync the sunrpc license.
54026
54027 2010-08-19  Ulrich Drepper  <drepper@redhat.com>
54028
54029         * sunrpc/auth_des.c: Update copyright notice once again.
54030         * sunrpc/auth_none.c: Likewise.
54031         * sunrpc/auth_unix.c: Likewise.
54032         * sunrpc/authdes_prot.c: Likewise.
54033         * sunrpc/authuxprot.c: Likewise.
54034         * sunrpc/bindrsvprt.c: Likewise.
54035         * sunrpc/clnt_gen.c: Likewise.
54036         * sunrpc/clnt_perr.c: Likewise.
54037         * sunrpc/clnt_raw.c: Likewise.
54038         * sunrpc/clnt_simp.c: Likewise.
54039         * sunrpc/clnt_tcp.c: Likewise.
54040         * sunrpc/clnt_udp.c: Likewise.
54041         * sunrpc/clnt_unix.c: Likewise.
54042         * sunrpc/des_crypt.c: Likewise.
54043         * sunrpc/des_soft.c: Likewise.
54044         * sunrpc/get_myaddr.c: Likewise.
54045         * sunrpc/getrpcport.c: Likewise.
54046         * sunrpc/key_call.c: Likewise.
54047         * sunrpc/key_prot.c: Likewise.
54048         * sunrpc/openchild.c: Likewise.
54049         * sunrpc/pm_getmaps.c: Likewise.
54050         * sunrpc/pm_getport.c: Likewise.
54051         * sunrpc/pmap_clnt.c: Likewise.
54052         * sunrpc/pmap_prot.c: Likewise.
54053         * sunrpc/pmap_prot2.c: Likewise.
54054         * sunrpc/pmap_rmt.c: Likewise.
54055         * sunrpc/rpc/auth.h: Likewise.
54056         * sunrpc/rpc/auth_unix.h: Likewise.
54057         * sunrpc/rpc/clnt.h: Likewise.
54058         * sunrpc/rpc/des_crypt.h: Likewise.
54059         * sunrpc/rpc/key_prot.h: Likewise.
54060         * sunrpc/rpc/netdb.h: Likewise.
54061         * sunrpc/rpc/pmap_clnt.h: Likewise.
54062         * sunrpc/rpc/pmap_prot.h: Likewise.
54063         * sunrpc/rpc/pmap_rmt.h: Likewise.
54064         * sunrpc/rpc/rpc.h: Likewise.
54065         * sunrpc/rpc/rpc_des.h: Likewise.
54066         * sunrpc/rpc/rpc_msg.h: Likewise.
54067         * sunrpc/rpc/svc.h: Likewise.
54068         * sunrpc/rpc/svc_auth.h: Likewise.
54069         * sunrpc/rpc/types.h: Likewise.
54070         * sunrpc/rpc/xdr.h: Likewise.
54071         * sunrpc/rpc_clntout.c: Likewise.
54072         * sunrpc/rpc_cmsg.c: Likewise.
54073         * sunrpc/rpc_common.c: Likewise.
54074         * sunrpc/rpc_cout.c: Likewise.
54075         * sunrpc/rpc_dtable.c: Likewise.
54076         * sunrpc/rpc_hout.c: Likewise.
54077         * sunrpc/rpc_main.c: Likewise.
54078         * sunrpc/rpc_parse.c: Likewise.
54079         * sunrpc/rpc_parse.h: Likewise.
54080         * sunrpc/rpc_prot.c: Likewise.
54081         * sunrpc/rpc_sample.c: Likewise.
54082         * sunrpc/rpc_scan.c: Likewise.
54083         * sunrpc/rpc_scan.h: Likewise.
54084         * sunrpc/rpc_svcout.c: Likewise.
54085         * sunrpc/rpc_tblout.c: Likewise.
54086         * sunrpc/rpc_util.c: Likewise.
54087         * sunrpc/rpc_util.h: Likewise.
54088         * sunrpc/rpcinfo.c: Likewise.
54089         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
54090         * sunrpc/rpcsvc/key_prot.x: Likewise.
54091         * sunrpc/rpcsvc/klm_prot.x: Likewise.
54092         * sunrpc/rpcsvc/mount.x: Likewise.
54093         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
54094         * sunrpc/rpcsvc/nlm_prot.x: Likewise.
54095         * sunrpc/rpcsvc/rex.x: Likewise.
54096         * sunrpc/rpcsvc/rstat.x: Likewise.
54097         * sunrpc/rpcsvc/rusers.x: Likewise.
54098         * sunrpc/rpcsvc/sm_inter.x: Likewise.
54099         * sunrpc/rpcsvc/spray.x: Likewise.
54100         * sunrpc/rpcsvc/yppasswd.x: Likewise.
54101         * sunrpc/rtime.c: Likewise.
54102         * sunrpc/svc.c: Likewise.
54103         * sunrpc/svc_auth.c: Likewise.
54104         * sunrpc/svc_authux.c: Likewise.
54105         * sunrpc/svc_raw.c: Likewise.
54106         * sunrpc/svc_run.c: Likewise.
54107         * sunrpc/svc_simple.c: Likewise.
54108         * sunrpc/svc_tcp.c: Likewise.
54109         * sunrpc/svc_udp.c: Likewise.
54110         * sunrpc/svc_unix.c: Likewise.
54111         * sunrpc/svcauth_des.c: Likewise.
54112         * sunrpc/xcrypt.c: Likewise.
54113         * sunrpc/xdr.c: Likewise.
54114         * sunrpc/xdr_array.c: Likewise.
54115         * sunrpc/xdr_float.c: Likewise.
54116         * sunrpc/xdr_mem.c: Likewise.
54117         * sunrpc/xdr_rec.c: Likewise.
54118         * sunrpc/xdr_ref.c: Likewise.
54119         * sunrpc/xdr_sizeof.c: Likewise.
54120         * sunrpc/xdr_stdio.c: Likewise.
54121
54122         * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
54123         handling.
54124
54125 2010-08-19  Andreas Schwab  <schwab@redhat.com>
54126
54127         * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
54128
54129 2010-08-19  Luis Machado  <luisgpm@br.ibm.com>
54130
54131         * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
54132         * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
54133         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
54134         * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
54135         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
54136         * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
54137         * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
54138         * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
54139         * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
54140         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
54141         * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
54142         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
54143         * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
54144         * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
54145
54146 2010-07-26  Anton Blanchard  <anton@samba.org>
54147
54148         * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
54149         * malloc/arena.c (heap_trim): Likewise.
54150
54151 2010-08-16  Ulrich Drepper  <drepper@redhat.com>
54152
54153         * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
54154         here.  Not...
54155         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
54156         * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
54157
54158 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
54159
54160         * sysdeps/i386/elf/Makefile: New file.
54161
54162 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
54163
54164         * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
54165         from fanotify_init.
54166         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
54167         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
54168
54169 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
54170
54171         * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
54172         of strncasecmp_l.
54173         * sysdeps/multiarch/strcmp.S: Likewise.
54174
54175 2010-08-14  Ulrich Drepper  <drepper@redhat.com>
54176
54177         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
54178         strncase_l-nonascii.
54179         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
54180         Add strncase_l-ssse3.
54181         * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
54182         * sysdeps/x86_64/strcmp.S: Likewise.
54183         * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
54184         * sysdeps/x86_64/multiarch/strncase_l.S: New file.
54185         * sysdeps/x86_64/strncase.S: New file.
54186         * sysdeps/x86_64/strncase_l-nonascii.c: New file.
54187         * sysdeps/x86_64/strncase_l.S: New file.
54188         * string/Makefile (strop-tests): Add strncasecmp.
54189         * string/test-strncasecmp.c: New file.
54190
54191         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
54192         warning.
54193
54194         * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
54195         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
54196
54197 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
54198
54199         * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
54200
54201 2010-08-12  Ulrich Drepper  <drepper@redhat.com>
54202
54203         * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
54204         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
54205         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
54206
54207 2010-05-01  Alan Modra  <amodra@gmail.com>
54208
54209         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
54210         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
54211         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
54212         * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
54213         * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
54214         tidying.  Don't tail-call __sigjmp_save for static lib.
54215         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
54216         save location.
54217         (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
54218         (CALL_MCOUNT): Add eh info, and nop after bl.
54219         (TAIL_CALL_SYSCALL_ERROR): New macro.
54220         (PSEUDO_RET): Use it.
54221         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
54222         Correct save location of integer regs and cr.
54223         (_dl_profile_resolve): Correct cr save location.  Delete nops
54224         after bl when SHARED.  Reduce cfi size a little by better
54225         placement of cfi directives.
54226         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
54227         make a stack frame.  Instead use parm save area as a temp.
54228         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
54229         make a stack frame.  Use TAIL_CALL_SYSCALL_ERROR.
54230         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
54231         Don't make a stack frame for parent, use parm save area.
54232         Increase child stack frame to 112 bytes.  Don't save unused reg,
54233         and adjust reg usage.  Set up cfi on error recovery and
54234         epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
54235         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
54236         (__makecontext): Add dummy nop after jump to exit.
54237         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
54238         Use correct parm save area and cr save, reduce stack frame.
54239         Correct cfi for possible PSEUDO_RET frame setup.
54240         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
54241         Branch to local label emitted by PSEUDO_RET rather than
54242         __syscall_error.
54243
54244 2010-08-12  Andreas Schwab  <schwab@redhat.com>
54245
54246         [BZ #11904]
54247         * locale/programs/locale.c (print_assignment): New function.
54248         (show_locale_vars): Use it.
54249
54250 2010-08-11  Ulrich Drepper  <drepper@redhat.com>
54251
54252         * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
54253         field.
54254         (struct statfs64): Likewise.
54255         (_STATFS_F_FLAGS): Define.
54256         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
54257         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
54258         Don't define if __ASSUME_STATFS_F_FLAGS is defined.
54259         (ST_VALID): Define locally.
54260         (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
54261         __statvfs_getflags, use the provided value.
54262         * sysdeps/unix/sysv/linux/kernel-features.h: Define
54263         __ASSUME_STATFS_F_FLAGS.
54264
54265         * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
54266
54267         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
54268         Add sys/fanotify.h.
54269         * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
54270         fanotify_mask for GLIBC_2.13.
54271         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
54272         fanotify_init and fanotify_mark.
54273         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
54274         * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
54275
54276         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
54277         Add prlimit.
54278         * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
54279         prlimit64 for GLIBC_2.13.
54280         * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
54281         prlimit64.
54282         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
54283         syscall.
54284         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
54285         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
54286         * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
54287         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
54288         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.  Also
54289         add prlimit alias.
54290         * sysdeps/unix/sysv/linux/prlimit.c: New file.
54291
54292         [BZ #11903]
54293         * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
54294         Patch by Evgeni Bikov <bikovevg@iitp.ru>.
54295
54296         * nss/Makefile: Add rules to build and run tst-nss-test1.
54297         * shlib-versions: Add entry for libnss_test1.
54298         * nss/nss_test1.c: New file.
54299         * nss/tst-nss-test1.c: New file.
54300
54301         * nss/nsswitch.c (__nss_database_custom): Define new variable.
54302         (__nss_configure_lookup): Set appropriate entry in
54303         __nss_configure_lookup to true.
54304         * nss/nsswitch.h: Define enum with indeces of databases in
54305         databases and __nss_database_custom arrays.  Declare
54306         __nss_database_custom.
54307         * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
54308         to avoid using nscd when custom rules are installed.
54309         * nss/getXXbyYY_r.c: Likewise.
54310         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
54311
54312         * nss/nss_files/files-parse.c: Whitespace fixes.
54313
54314 2010-08-09  Ulrich Drepper  <drepper@redhat.com>
54315
54316         [BZ #11883]
54317         * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
54318         * posix/fnmatch_loop.c: Likewise.
54319
54320 2010-07-17  Andi Kleen  <ak@linux.intel.com>
54321
54322         * sysdeps/i386/i386-mcount.S (__fentry__): Define.
54323         * sysdeps/x86_64/_mcount.S (__fentry__): Define.
54324         * stdlib/Versions (__fentry__): Add for GLIBC 2.13
54325         * Versions.def [GLIBC_2.13]: Add.
54326
54327 2010-08-06  Ulrich Drepper  <drepper@redhat.com>
54328
54329         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
54330         Also fail if tpwd after pwuid call is NULL.
54331
54332 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54333
54334         * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
54335         when converting to ms.
54336
54337 2010-06-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54338
54339         * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
54340         EOPNOTSUPP errors with ENOTTY.
54341         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
54342         EOPNOTSUPP errors with ENOTTY.
54343
54344 2010-07-31  Ulrich Drepper  <drepper@redhat.com>
54345
54346         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
54347         Add strcasecmp_l-ssse3.
54348         * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
54349         strcasecmp.
54350         * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
54351         * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
54352         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
54353
54354 2010-07-30  Ulrich Drepper  <drepper@redhat.com>
54355
54356         * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
54357
54358         * string/Makefile (strop-tests): Add strcasecmp.
54359         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
54360         strcasecmp_l-nonascii.
54361         (gen-as-const-headers): Add locale-defines.sym.
54362         * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
54363         * sysdeps/x86_64/strcasecmp.S: New file.
54364         * sysdeps/x86_64/strcasecmp_l.S: New file.
54365         * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
54366         * sysdeps/x86_64/locale-defines.sym: New file.
54367         * string/test-strcasecmp.c: New file.
54368
54369         * string/test-strcasestr.c: Test both ends of the range of characters.
54370         * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
54371
54372 2010-07-29  Roland McGrath  <roland@redhat.com>
54373
54374         [BZ #11856]
54375         * manual/locale.texi (Yes-or-No Questions): Fix example code.
54376
54377 2010-07-27  Ulrich Drepper  <drepper@redhat.com>
54378
54379         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
54380         for ld.so.
54381
54382 2010-07-27  Andreas Schwab  <schwab@redhat.com>
54383
54384         * manual/memory.texi (Malloc Tunable Parameters): Document
54385         M_PERTURB.
54386
54387 2010-07-26  Roland McGrath  <roland@redhat.com>
54388
54389         [BZ #11840]
54390         * configure.in (-fgnu89-inline check): Set and substitute
54391         gnu89_inline, not libc_cv_gnu89_inline.
54392         * configure: Regenerated.
54393         * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
54394
54395 2010-07-26  Ulrich Drepper  <drepper@redhat.com>
54396
54397         * string/test-strnlen.c: New file.
54398         * string/Makefile (strop-tests): Add strnlen.
54399         * string/tester.c (test_strnlen): Add a few more test cases.
54400         * string/tst-strlen.c: Better error reporting.
54401
54402         * sysdeps/x86_64/strnlen.S: New file.
54403
54404 2010-07-24  Ulrich Drepper  <drepper@redhat.com>
54405
54406         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
54407         lower-latency instructions.
54408
54409 2010-07-23  Ulrich Drepper  <drepper@redhat.com>
54410
54411         * string/test-strcasestr.c: New file.
54412         * string/test-strstr.c: New file.
54413         * string/Makefile (strop-tests): Add strstr and strcasestr.
54414         * string/str-two-way.h: Don't undefine MAX.
54415         * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
54416
54417 2010-07-21  Andreas Schwab  <schwab@redhat.com>
54418
54419         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
54420         strcasestr-nonascii.
54421         (CFLAGS-strcasestr-nonascii.c): Define.
54422         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
54423         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
54424         Remove unused attribute.
54425
54426 2010-07-20  Roland McGrath  <roland@redhat.com>
54427
54428         * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
54429         dl_hwcap_mask as well as dl_hwcap.  Without this, dsocaps matching in
54430         ld.so.cache was broken.  With it, there is no way to disable dsocaps
54431         like LD_HWCAP_MASK can disable hwcaps.
54432
54433 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
54434
54435         * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
54436
54437 2010-07-16  Ulrich Drepper  <drepper@redhat.com>
54438
54439         * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
54440         call in strcasestr.
54441         * sysdeps/x86_64/multiarch/strcasestr.c: Declare
54442         __strcasestr_sse42_nonascii.
54443         * sysdeps/x86_64/multiarch/Makefile: Add rules to build
54444         strcasestr-nonascii.c.
54445         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
54446
54447 2010-06-15  Luis Machado  <luisgpm@br.ibm.com>
54448
54449         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
54450         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
54451         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
54452         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
54453
54454 2010-07-09  Ulrich Drepper  <drepper@redhat.com>
54455
54456         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
54457         fcntl.
54458
54459 2010-07-06  Andreas Schwab  <schwab@redhat.com>
54460
54461         [BZ #11577]
54462         * elf/dl-version.c (match_symbol): Don't pass NULL occation to
54463         dl_signal_cerror.
54464
54465 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
54466
54467         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
54468         _PC_PIPE_BUF using F_GETPIPE_SZ.
54469
54470 2010-07-05  Roland McGrath  <roland@redhat.com>
54471
54472         * manual/arith.texi (Rounding Functions): Fix rint description
54473         implicit in round description.
54474
54475 2010-07-02  Ulrich Drepper  <drepper@redhat.com>
54476
54477         * elf/Makefile: Fix linking for a few tests to make recent linker
54478         happy.
54479
54480 2010-06-30  Andreas Schwab  <schwab@redhat.com>
54481
54482         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
54483         $(common-objpfx)libc_nonshared.a.
54484
54485 2010-06-21  Luis Machado  <luisgpm@br.ibm.com>
54486
54487         * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
54488         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
54489         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
54490         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
54491         * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
54492         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
54493         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
54494         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
54495         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
54496         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
54497         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
54498         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
54499         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
54500         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
54501         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
54502         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
54503         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
54504         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
54505         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
54506         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
54507         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
54508         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
54509         * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
54510         * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
54511         * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
54512         * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
54513         * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
54514         * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
54515         * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
54516         * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
54517         * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
54518         * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
54519         * sysdeps/powerpc/powerpc32/power7/Implies: New file.
54520         * sysdeps/powerpc/powerpc64/power7/Implies: New file.
54521         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
54522         * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
54523         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
54524         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
54525         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
54526         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
54527         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
54528         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
54529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
54530         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
54531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
54532         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
54533         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
54534         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
54535
54536 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
54537
54538         * debug/memmove_chk.c (__memmove_chk): Renamed to ...
54539         (MEMMOVE_CHK): ...this.  Default to __memmove_chk.
54540         * string/memmove.c (memmove): Renamed to ...
54541         (MEMMOVE): ...this.  Default to memmove.
54542         * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
54543         * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
54544         (END_CHK): Define.
54545         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
54546         memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
54547         mempcpy-ssse3-back memmove-ssse3-back.
54548         * sysdeps/x86_64/multiarch/bcopy.S: New file .
54549         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
54550         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
54551         * sysdeps/x86_64/multiarch/memcpy.S: New file.
54552         * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
54553         * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
54554         * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
54555         * sysdeps/x86_64/multiarch/memmove.c: New file.
54556         * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
54557         * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
54558         * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
54559         * sysdeps/x86_64/multiarch/mempcpy.S: New file.
54560         * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
54561         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
54562         Define.
54563         (index_Fast_Copy_Backward): Define.
54564         (HAS_ARCH_FEATURE): Define.
54565         (HAS_FAST_REP_STRING): Define.
54566         (HAS_FAST_COPY_BACKWARD): Define.
54567
54568 2010-06-21  Andreas Schwab  <schwab@redhat.com>
54569
54570         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
54571         Restore proper fallback handling.
54572
54573 2010-06-19  Ulrich Drepper  <drepper@redhat.com>
54574
54575         [BZ #11701]
54576         * posix/group_member.c (__group_member): Correct checking loop.
54577
54578         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
54579         OOM in getpwuid_r correctly.  Return error number when the caller
54580         should return, otherwise -1.
54581         (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
54582         call returning > 0 value.
54583         * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
54584
54585 2010-06-07  Andreas Schwab  <schwab@redhat.com>
54586
54587         * dlfcn/Makefile: Remove explicit dependencies on libc.so and
54588         libc_nonshared.a from targets in modules-names.
54589
54590 2010-06-02  Kirill A. Shutemov  <kirill@shutemov.name>
54591
54592         * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
54593         requires it.
54594
54595 2010-06-10  Luis Machado  <luisgpm@br.ibm.com>
54596
54597         * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
54598         * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
54599         * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
54600         * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
54601
54602 2010-06-02  Andreas Schwab  <schwab@redhat.com>
54603
54604         * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
54605
54606 2010-06-14  Ulrich Drepper  <drepper@redhat.com>
54607
54608         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
54609         and F_GETPIPE_SZ.
54610         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
54611         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54612         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54613         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54614         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54615         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
54616
54617 2010-06-14  Roland McGrath  <roland@redhat.com>
54618
54619         * manual/libc.texinfo (@copying): Change to GFDL v1.3.
54620
54621 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
54622
54623         * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
54624         __REDIRECT followed by __THROW.
54625         * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
54626         * posix/getopt.h (getopt): Likewise.
54627
54628 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
54629
54630         * hurd/lookup-at.c (__file_name_lookup_at): Accept
54631         AT_SYMLINK_FOLLOW in AT_FLAGS.  Fail with EINVAL if both
54632         AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
54633         in AT_FLAGS.
54634         * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
54635         * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
54636
54637 2010-05-28  Luis Machado  <luisgpm@br.ibm.com>
54638
54639         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
54640
54641 2010-05-26  H.J. Lu  <hongjiu.lu@intel.com>
54642
54643         [BZ #11640]
54644         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
54645         Properly check family and model.
54646
54647 2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@renesas.com>
54648
54649         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
54650
54651 2010-05-24  Luis Machado  <luisgpm@br.ibm.com>
54652
54653         * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
54654
54655 2010-05-21  Ulrich Drepper  <drepper@redhat.com>
54656
54657         * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
54658         symbol reference.
54659
54660 2010-05-19  Andreas Schwab  <schwab@redhat.com>
54661
54662         * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
54663         symbol reference.
54664
54665 2010-05-21  Andreas Schwab  <schwab@redhat.com>
54666
54667         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
54668         and internal_recvmmsg.
54669         * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
54670         * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
54671         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
54672         * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
54673
54674         * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
54675         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
54676         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
54677
54678 2010-05-20  Andreas Schwab  <schwab@redhat.com>
54679
54680         * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
54681
54682 2010-05-17  Luis Machado  <luisgpm@br.ibm.com>
54683
54684         POWER7 optimizations.
54685         * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
54686         * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
54687
54688 2010-05-19  Ulrich Drepper  <drepper@redhat.com>
54689
54690         * version.h: Update for 2.13 development version.
54691
54692 2010-05-12  Andrew Stubbs  <ams@codesourcery.com>
54693
54694         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
54695         exceptions.  Return 0.
54696
54697 2010-05-07  Roland McGrath  <roland@redhat.com>
54698
54699         * elf/ldconfig.c (main): Add a const.
54700
54701 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
54702
54703         * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
54704         (args_options): Add no-idn option.
54705         (ahosts_keys_int): Add idn_flags to ai_flags.
54706         (parse_option): Handle 'i' option to clear idn_flags.
54707
54708         * malloc/malloc.c (_int_free): Possible race in the most recently
54709         added check.  Only act on the data if no current modification
54710         happened.
54711
54712 See ChangeLog.17 for earlier changes.