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
31 2014-12-30  Andrew Senkevich  <andrew.senkevich@intel.com>
32             H.J. Lu  <hongjiu.lu@intel.com>
33
34         * sysdeps/i386/i686/multiarch/bcopy-sse2-unaligned.S: New file.
35         * sysdeps/i386/i686/multiarch/memcpy-sse2-unaligned.S: Likewise.
36         * sysdeps/i386/i686/multiarch/memmove-sse2-unaligned.S: Likewise.
37         * sysdeps/i386/i686/multiarch/mempcpy-sse2-unaligned.S: Likewise.
38         * sysdeps/i386/i686/multiarch/bcopy.S: Select the sse2_unaligned
39         version if bit_Fast_Unaligned_Load is set.
40         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
41         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
42         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
43         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
44         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
45         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
46         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
47         bcopy-sse2-unaligned, memcpy-sse2-unaligned,
48         memmove-sse2-unaligned and mempcpy-sse2-unaligned.
49         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c (MAX_IFUNC): Set
50         to 4.
51         (__libc_ifunc_impl_list): Test __bcopy_sse2_unaligned,
52         __memmove_chk_sse2_unaligned, __memmove_sse2_unaligned,
53         __memcpy_chk_sse2_unaligned, __memcpy_sse2_unaligned,
54         __mempcpy_chk_sse2_unaligned, and __mempcpy_sse2_unaligned.
55
56 2014-12-29  Chris Metcalf  <cmetcalf@ezchip.com>
57
58         * sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
59         instead of #if to avoid a Wundef warning.
60         * stdlib/tst-limits.c (do_test): Likewise.
61
62         * sysdeps/tile/math_private.h (fetestexcept): Add macro to
63         parallel other exception macros.
64         (fegetenv): Convert from macro to extern inline so that it applies
65         retroactively to inline functions already seen by the compiler.
66         (fesetenv, feupdateenv, fegetround, fesetround): Likewise.
67
68         * posix/Makefile (before-compile): Use $(objpfx) for
69         posix-conf-vars-def.h.
70
71 2014-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
72
73         * posix/getconf.c (main): Use size_t for type of I.
74         * scripts-gen-posix-conf-vars.awk (END): Use size_t for type of
75         NSPEC.
76
77         * posix/posix-conf-vars.list (SPEC:XBS5): Add sysconf prefix.
78         * posix/confstr.c: Define NEED_SPEC_ARRAY to 0.
79         * posix/posix-envs.def: Likewise.
80         * sysdeps/posix/sysconf.c: Likewise.
81         * posix/getconf.c: Define NEED_SPEC_ARRAY to 1.
82         (specs): Remove array.
83         * scripts/gen-posix-conf-vars.awk: Support generation of specs
84         array.
85
86         * posix/posix-conf-vars.list: Add _POSIX sysconf namespace.
87         * sysdeps/posix/sysconf.c: Include posix-conf-vars.h.
88         (__sysconf): Use CONF_IS_* macros.
89
90         * posix/Makefile (before-compile): Add posix-conf-vars-def.h.
91         ($(objpfx)posix-conf-vars-def.h): New target.
92         * posix/posix-conf-vars.list: New file.
93         * posix/posix-conf-vars.h: New file.
94         * posix/confstr.c: Include posix-conf-vars.h.
95         (confstr): Use CONF_IS_* macros.
96         * posix/posix-envs.def: Include posix-conf-vars.h.  Use
97         CONF_IS_* macros.
98         * scripts/gen-posix-conf-vars.awk: New file.
99
100 2014-12-26  Chris Metcalf  <cmetcalf@ezchip.com>
101
102         * sysdeps/tile/math_private.h (fegetenv, fesetenv, feupdateenv,
103         fegetround): Add no-op macros to avoid linknamespace issues.
104
105         * sysdeps/unix/sysv/linux/clock_settime.c (SYSDEP_SETTIME): Remove
106         definitions of INTERNAL_VSYSCALL and INLINE_VSYSCALL.
107
108         * sysdeps/unix/sysv/linux/tile/sysdep.h
109         (HAVE_CLOCK_GETTIME_VSYSCALL): Move definition out of
110         assembly-specific section to avoid a redefinition warning.
111
112         * sysdeps/tile/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast to
113         long before casting to pointer to avoid a cast warning.
114
115 2014-12-23  Chris Metcalf  <cmetcalf@ezchip.com>
116
117         * sysdeps/tile/tilegx/Implies: New file.
118
119 2014-12-23  Richard Earnshaw  <rearnsha@arm.com>
120
121         * string/stpcpy.c (__stpcpy): Rewrite using strlen and memcpy.
122
123 2014-12-23  Florian Weimer  <fweimer@redhat.com>
124
125         * iconvdata/run-iconv-test.sh: Actually test iconv modules.
126
127 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
128
129         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES): Do
130         not define.
131         * sysdeps/unix/sysv/linux/utimes.c: Do not include
132         <kernel-features.h>.
133         (__utimes) [__NR_utimes]: Make code unconditional.
134         (__utimes) [!__ASSUME_UTIMES]: Remove conditional code.
135         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
136         (__ASSUME_UTIMES): Do not undefine.
137         * sysdeps/unix/sysv/linux/tile/kernel-features.h
138         (__ASSUME_UTIMES): Likewise.
139         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
140         (__ASSUME_UTIMES): Define for [__LINUX_KERNEL_VERSION >= 0x030e00]
141         instead of undefining for [__LINUX_KERNEL_VERSION < 0x030e00].
142         * sysdeps/unix/sysv/linux/hppa/utimes.c: New file.
143
144 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
145
146         * sysdeps/mips/memcpy.S: Fix preprocessor indentation.
147
148 2014-12-22  Chris Metcalf  <cmetcalf@ezchip.com>
149
150         [BZ #17747]
151         * math/w_j0.c [defined NO_LONG_DOUBLE] (j0, y0): Convert strong
152         alias to weak alias for j0l, y0l.
153         * math/w_j1.c [defined NO_LONG_DOUBLE] (j1, y1): Likewise.
154         * math/w_jn.c [defined NO_LONG_DOUBLE] (jn, yn): Likewise.
155
156         [BZ #17746]
157         * sysdeps/tile/tilegx/strstr.c (STRSTR2): Remove implicit boolean
158         conversion.
159
160 2014-12-22  Steve Ellcey  <sellcey@imgtec.com>
161
162         * sysdeps/unix/mips/sysdep.h (__mips_isa_rev): Set
163         to zero if not already defined.
164
165 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
166
167         [BZ #17724]
168         * sysdeps/ieee754/k_standard.c: Don't include <float.h>.
169         (__kernel_standard_f): Remove.  Moved to k_standardf.c.
170         (__kernel_standard_l): Remove.  Moved to k_standardl.c with
171         (char *) casts added.
172         * sysdeps/ieee754/k_standardf.c: New file.
173         * sysdeps/ieee754/k_standardl.c: Likewise.
174         * math/Makefile (libm-support): Remove k_standard.
175         (libm-calls): Add k_standard.
176
177 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
178
179         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
180         Optimize to avoid an unnecessary FPCR read.
181
182 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
183
184         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv):
185         Optimize to reduce FPCR/FPSR accesses.
186
187 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
188
189         * sysdeps/aarch64/fpu/ftestexcept.c (fetestexcept):
190         Call libc_fetestexcept_aarch64.
191
192 2014-12-22  Wilco Dijkstra  <wdijkstr@arm.com>
193
194         * sysdeps/aarch64/fpu/fesetround.c (fesetround):
195         Call libc_fesetround_aarch64.
196
197 2014-12-22  Joseph Myers  <joseph@codesourcery.com>
198
199         [BZ #17733]
200         * sysdeps/unix/sysv/linux/bind.S (NO_WEAK_ALIAS): Do not define.
201         (__bind): Do not define as weak alias.
202         * sysdeps/unix/sysv/linux/getsockname.S (NO_WEAK_ALIAS): Do not
203         define.
204         (__getsockname): Do not define as weak alias.
205
206 2014-12-22  Will Newton  <will.newton@linaro.org>
207
208         * manual/install.texi: Document that we require bison 2.7
209         or above.
210         * INSTALL: Regenerate.
211         * configure.ac: Use AC_CHECK_PROG_VER instead of
212         AC_PATH_PROG when checking for bison and check for
213         version 2.7 or above.
214         * configure: Regenerate.
215
216 2014-12-21  Chris Metcalf  <cmetcalf@ezchip.com>
217
218         [BZ #17745]
219         * sysdeps/tile/ffs.c (__ffs): Moved ffsll definition...
220         * sysdeps/tile/ffsll.c (ffsll): To here.
221
222         * sysdeps/unix/sysv/linux/tile/localplt.data: Removed.
223
224 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
225
226         * elf/dl-tls.c (__tls_get_addr): Provide the hidden definition
227         if not defined.
228         * sysdeps/i386/dl-tls.h (___tls_get_addr): Provide the hidden
229         definition.
230         * sysdeps/i386/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
231         hidden ___tls_get_addr.
232         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_dynamic): Call the
233         hidden __tls_get_addr.
234         * sysdeps/generic/localplt.data (__tls_get_addr): Removed.
235         * sysdeps/unix/sysv/linux/i386/localplt.data (___tls_get_addr):
236         Likewise.
237
238 2014-12-21  Andreas Schwab  <schwab@linux-m68k.org>
239
240         * sysdeps/m68k/dl-machine.h (RTLD_START): Remove @PLTPC from
241         _dl_init call.
242
243 2014-12-21  H.J. Lu  <hongjiu.lu@intel.com>
244
245         * sysdeps/i386/dl-machine.h (_dl_start_user): Remove @PLT
246         from "call _dl_init@PLT".
247         * sysdeps/x86_64/dl-machine.h (_dl_start_user): Likewise.
248
249 2014-12-21  Anders Kaseorg  <andersk@mit.edu>
250
251         * manual/search.texi: (Array Sort Function): Clarify stable sorting
252         guarantees.
253
254 2014-12-20  Chris Metcalf  <cmetcalf@ezchip.com>
255
256         * sysdeps/unix/sysv/linux/tile/localplt.data: New file.
257
258 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
259
260         [BZ #17744]
261         * sysdeps/tile/tilegx/strstr.c (STRSTR): Call __strnlen, not
262         strnlen.
263
264 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
265
266         * sysdeps/mips/addmul_1.S (__mpn_addmul_1): Use mulu/muhu instead
267         of multu on MIPSr6.
268         * sysdeps/mips/mul_1.S (__mpn_mul_1): Ditto.
269         * sysdeps/mips/submul_1.S (__mpn_submul_1): Ditto.
270         * sysdeps/mips/mips64/addmul_1.S (__mpn_addmul_1): Ditto.
271         * sysdeps/mips/mips64/mul_1.S (__mpn_mul_1): Ditto.
272         * sysdeps/mips/mips64/submul_1.S (__mpn_submul_1): Ditto.
273
274 2014-12-19  Steve Ellcey  <sellcey@imgtec.com>
275
276         * sysdeps/mips/sys/asm.h (PTR_ADDU): Use addu on mips32r6/mips64r6.
277         (PTR_ADDIU): Use addiu for mips32r6/mips64r6.
278         (PTR_SUBU): Use subu for mips32r6/mips64r6.
279         (PTR_SUBIU): Use subu for mips32r6/mips64r6 (subiu does not exist).
280         * sysdeps/mips/machine-gmon.h (PTR_ADDU_STRING) Use addu for
281         mips32r6/mips64r6.
282         (PTR_SUBU_STRING) Use subu for mips32r6/mips64r6.
283
284 2014-12-19  Ondřej Bílka  <neleai@seznam.cz>
285
286         * string/strncat.c (STRNCAT): Simplify implementation.
287
288 2014-12-19  David S. Miller  <davem@davemloft.net>
289
290         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Use a union to
291         access the quad as both a long double and as a series of 4 words.
292
293         * get-dynamic-info.h (elf_get_dynamic_info): Ignore -Warray-bounds for a
294         link_map->l_info array access.
295
296 2014-12-19  Chris Metcalf  <cmetcalf@ezchip.com>
297
298         * iconvdata/tst-loading.c (TIMEOUT): Increase timeout 10 sec.
299
300         * math/atest-exp.c (TIMEOUT): Increase timeout to 10 sec.
301         * math/atest-exp2.c (TIMEOUT): Likewise.
302         * math/atest-sincos.c (TIMEOUT): Likewise.
303
304 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
305
306         * sysdeps/x86_64/x32/Makefile (CFLAGS-s_llround.c): Replace
307         -Wno-error with -fno-builtin-lround.
308
309 2014-12-19  Torvald Riegel  <triegel@redhat.com>
310
311         * sysdeps/unix/sysv/linux/i386/lowlevellock-futex.h: New file.
312         Contains futex constants and functions moved over from ...
313         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.  Include
314         <lowlevellock-futex.h>.
315         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
316         (lll_timedwait_tid): Add comments and parentheses around macro
317         arguments.
318
319 2014-12-19  Torvald Riegel  <triegel@redhat.com>
320
321         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Include
322         <lowlevellock-futex.h>.  Remove FUTEX_* constants defined there.
323         (__lll_private_flag): Remove.
324         (lll_futex_wait): Likewise.
325         (lll_futex_timed_wait): Likewise.
326         (lll_futex_wake): Likewise.
327         (lll_futex_requeue): Likewise.
328         (lll_wait_tid): Use lll_futex_wait instead of assembly code.
329         (__lll_timedwait_tid): Spell out argument names.
330         (lll_timedwait_tid): Add comments and parentheses around macro
331         arguments.
332         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Make FUTEX_* constants,
333         LLL_SHARED and LLL_PRIVATE usable from assembly code.
334
335 2014-12-19  Torvald Riegel  <triegel@redhat.com>
336
337         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Remove file.
338         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
339         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
340         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Likewise.
341         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Likewise.
342         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Likewise.
343         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Likewise.
344         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Likewise.
345         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Likewise.
346         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: Likewise.
347         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: Likewise.
348         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Likewise.
349         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Likewise.
350         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Likewise.
351         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Likewise.
352         * sysdeps/unix/sysv/linux/sh/sem_post.S: Likewise.
353         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Likewise.
354         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: Likewise.
355         * sysdeps/unix/sysv/linux/sh/sem_wait.S: Likewise.
356
357 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
358
359         * sysdeps/x86_64/x32/Makefile: New file.
360
361 2014-12-19  H.J. Lu  <hongjiu.lu@intel.com>
362
363         * sysdeps/i386/ldbl2mpn.c (__mpn_extract_long_double): Replace
364         1L with (mp_limb_t) 1.
365
366 2014-12-17  Roland McGrath  <roland@hack.frob.com>
367
368         * sysdeps/nptl/fork.c (__fork_generation_pointer): Variable moved ...
369         * nptl/libc_pthread_init.c: ... here.
370         * sysdeps/nptl/fork.c (__fork_handlers): Variable moved ...
371         * nptl/register-atfork.c: ... here.
372
373         * sysdeps/nptl/gai_misc.h (__gai_start_notify_thread):
374         Use pthread_sigmask rather than INTERNAL_SYSCALL.
375         Use assert_perror to check its return value.
376         (__gai_create_helper_thread): Likewise.
377
378         * inet/if_index.c (__if_freenameindex): Add libc_hidden_def.
379
380         * malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.
381
382 2014-12-17  Joseph Myers  <joseph@codesourcery.com>
383
384         [BZ #17725]
385         * sysdeps/generic/profil-counter.h (profil_counter): Rename to
386         __profil_counter.
387         * sysdeps/unix/sysv/linux/hppa/profil-counter.h (profil_counter):
388         Likewise.
389         * sysdeps/unix/sysv/linux/i386/profil-counter.h (profil_counter):
390         Likewise.
391         * sysdeps/unix/sysv/linux/ia64/profil-counter.h (profil_counter):
392         Likewise.
393         * sysdeps/unix/sysv/linux/s390/s390-32/profil-counter.h
394         (profil_counter): Likewise.
395         * sysdeps/unix/sysv/linux/s390/s390-64/profil-counter.h
396         (profil_counter): Likewise.
397         * sysdeps/unix/sysv/linux/sh/profil-counter.h (profil_counter):
398         Likewise.
399         * sysdeps/unix/sysv/linux/tile/profil-counter.h (profil_counter):
400         Likewise.
401         * sysdeps/unix/sysv/linux/x86_64/profil-counter.h
402         (profil_counter): Likewise.
403         * sysdeps/unix/sysv/linux/arm/profil-counter.h (profil_counter):
404         Likewise.
405         [!__profil_counter] (profil_counter): Define as weak alias of
406         __profil_counter.
407         * sysdeps/unix/sysv/linux/sparc/sparc32/profil-counter.h
408         (profil_counter): Rename to __profil_counter.
409         [!__profil_counter] (profil_counter): Define as weak alias of
410         __profil_counter.
411         * sysdeps/unix/sysv/linux/sparc/sparc64/profil-counter.h
412         (profil_counter): Rename to __profil_counter.
413         [!__profil_counter] (profil_counter): Define as weak alias of
414         __profil_counter.
415         * sysdeps/posix/profil.c: Update comment referring to
416         profil_counter.
417         (__profil): Use __profil_counter instead of profil_counter.
418         * sysdeps/posix/sprofil.c (profil_counter): Rename to
419         __profil_counter.  Use __profil_counter_ushort and
420         __profil_counter_uint in definitions.
421         (__sprofil): Use __profil_counter_uint and __profil_counter_ushort
422         instead of profil_counter_uint and profil_counter_ushort.
423
424         [BZ #17722]
425         * inet/inet_mkadr.c (inet_makeaddr): Rename to __inet_makeaddr and
426         define as weak alias of __inet_makeaddr.
427         * resolv/inet_addr.c (inet_addr): Rename to __inet_addr and define
428         as weak alias of __inet_addr.
429         * resolv/inet_pton.c (inet_pton): Rename to __inet_pton and define
430         as weak alias of __inet_pton.  Use libc_hidden_weak.
431         * include/arpa/inet.h (__inet_pton): Declare.  Use
432         libc_hidden_proto.
433         (inet_makeaddr): Don't use libc_hidden_proto.
434         (__inet_makeaddr): Declare.  Use libc_hidden_proto.
435         * resolv/res_init.c (__res_vinit): Use __inet_pton instead of
436         inet_pton.  Use __inet_makeaddr instead of inet_makeaddr.
437         * conform/Makefile (test-xfail-POSIX/pthread.h/linknamespace):
438         Remove variable.
439         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
440         (test-xfail-POSIX/time.h/linknamespace): Likewise.
441
442 2014-12-17  Steve Ellcey  <sellcey@imgtec.com>
443
444         * inet/getnetgrent_r.c: Move while loop to be inside if statement.
445
446 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
447
448         * stdio-common/bug-vfprintf-nargs.c (do_test):
449         Cast value to intptr_t to avoid format warning
450         for usage with PRIdPTR printing macro.
451
452 2014-12-17  Stefan Liebler  <stli@linux.vnet.ibm.com>
453
454         * libio/tst-widetext.c (do_test):
455         Use format type %td instead of %Zd for ptrdiff_t
456         in order to avoid format warning.
457
458 2014-12-17  Andreas Schwab  <schwab@suse.de>
459
460         * nscd/mem.c (gc): Add size_t cast to match printf format.
461
462 2014-12-16  Roland McGrath  <roland@hack.frob.com>
463
464         * sysdeps/gnu/unwind-resume.c: #include <sysdep.h>.
465         (init): Apply PTR_MANGLE to pointers before storing them.
466         (_Unwind_Resume, __gcc_personality_v0): Apply PTR_DEMANGLE to pointers
467         before using them.
468
469 2014-12-16  Joseph Myers  <joseph@codesourcery.com>
470
471         [BZ #17719]
472         * sysdeps/x86_64/memrchr.S (memrchr): Rename to __memrchr and
473         define as weak alias of __memrchr.
474         (__memrchr): Do not define as strong alias of memrchr.
475         * conform/Makefile (test-xfail-XPG4/libgen.h/linknamespace):
476         Remove variable.
477         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
478         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
479         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
480
481         [BZ #17717]
482         * inet/if_index.c (if_nametoindex): Rename to __if_nametoindex and
483         define as weak alias of __if_nametoindex.  Use libc_hidden_weak.
484         (if_indextoname): Rename to __if_indextoname and define as weak
485         alias of __if_indextoname.  Use libc_hidden_weak.
486         (if_freenameindex): Rename to __if_freenameindex and define as
487         weak alias of __if_freenameindex.
488         (if_nameindex): Rename to __if_nameindex and define as weak alias
489         of __if_nameindex.
490         * sysdeps/mach/hurd/if_index.c (if_nametoindex): Rename to
491         __if_nametoindex and define as weak alias of __if_nametoindex.
492         Use libc_hidden_weak.
493         (if_freenameindex): Rename to __if_freenameindex and define as
494         weak alias of __if_freenameindex.
495         (if_nameindex): Rename to __if_nameindex and define as weak alias
496         of __if_nameindex.
497         (if_indextoname): Rename to __if_indextoname and define as weak
498         alias of __if_indextoname.  Use libc_hidden_weak.
499         * sysdeps/unix/sysv/linux/if_index.c (if_nametoindex): Rename to
500         __if_nametoindex and define as weak alias of __if_nametoindex.
501         Use libc_hidden_weak.
502         (if_freenameindex): Rename to __if_freenameindex and define as
503         weak alias of __if_freenameindex.  Use libc_hidden_weak.
504         (if_nameindex_netlink): Use __if_freenameindex instead of
505         if_freenameindex.
506         (if_nameindex): Rename to __if_nameindex and define as weak alias
507         of __if_nameindex.  Use libc_hidden_weak.
508         (if_indextoname): Rename to __if_indextoname and define as weak
509         alias of __if_indextoname.  Use libc_hidden_weak.
510         * include/net/if.h [!_ISOMAC] (__if_nametoindex): Declare and use
511         libc_hidden_proto.
512         [!_ISOMAC] (__if_freenameindex): Likewise.
513         * resolv/res_init.c (__res_vinit): Use __if_nametoindex instead of
514         if_nametoindex.
515         * conform/Makefile (test-xfail-XPG4/grp.h/linknamespace): Remove
516         variable.
517         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
518         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
519         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
520         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
521         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
522         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
523         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
524
525         * conform/Makefile (test-xfail-UNIX98/semaphore.h/linknamespace):
526         Remove variable.
527         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
528         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
529
530 2014-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
531
532         * resolv/res_send.c (__libc_res_nsend): Disable warning 'array
533         subscript above bounds'
534
535         * resolv/res_send.c (__libc_res_nsend): Fix check for nsmap
536         bounds.
537
538 2014-12-16  Arjun Shankar  <arjun.is@lostca.se>
539
540         * libio/tst-fopenloc.c: Use test-skeleton.c.
541
542         * stdlib/tst-bsearch.c: Use test-skeleton.c.
543         (entry): Rename to ITEM.
544         (do_test, comp): Adjust.
545
546         * stdio-common/tst-fseek.c: Use test-skeleton.c.
547
548 2014-12-16  Torvald Riegel  <triegel@redhat.com>
549
550         * string/tester.c: Include <libc-internal.h>.
551         (test_memset): Ignore -Wmemset-transposed-args.
552
553 2014-12-16  Torvald Riegel  <triegel@redhat.com>
554
555         * misc/tst-mntent2.c (do_test): Fix warning.
556
557 2014-12-16  Torvald Riegel  <triegel@redhat.com>
558
559         * elf/tst-unique4lib.cc(a): Mark as used.
560
561 2014-12-16  Florian Weimer  <fweimer@redhat.com>
562
563         [BZ #17630]
564         * resolv/nss_dns/dns-network.c (getanswer_r): Iterate over alias
565         names.
566
567 2014-12-16  Allan McRae  <allan@archlinux.org>
568
569         * stdio-common/Makefile (tests): Re-add bug26.
570
571 2014-12-15  Ondřej Bílka  <neleai@seznam.cz>
572
573         [BZ #17657]
574         * locale/programs/ld-ctype.c (find_translit2, read_widestring): Return
575         static array.
576
577 2014-12-15  Bernard Ogden  <bernie.ogden@linaro.org>
578
579         * nptl/lowlevellock.c (__lll_lock_wait_private): Add comments.
580         (__lll_lock_wait): Likewise.
581         (__lll_timedlock_wait): Likewise.
582         (__lll_timedwait_tid): Likewise.
583         * nptl/lowlevelrobustlock.c (__lll_robust_lock_wait): Likewise.
584         (__lll_robust_timedlock_wait): Likewise.
585         * sysdeps/nptl/lowlevellock.h (lll_trylock): Likewise.
586         (lll_cond_trylock): Likewise.
587         (__lll_lock): Likewise.
588         (__lll_robust_lock): Likewise.
589         (__lll_cond_lock): Likewise.
590         (lll_robust_cond_lock): Likewise.
591         (__lll_timedlock): Likewise.
592         (__lll_robust_timedlock): Likewise.
593         (__lll_unlock): Likewise.
594         (__lll_robust_unlock): Likewise.
595         (lll_wait_tid): Likewise.
596         (lll_timedwait_tid): Likewise.
597
598 2014-12-15  Torvald Riegel  <triegel@redhat.com>
599
600         * nptl/tst-sem4.c (do_test): Start with a fresh semaphore state.
601
602 2014-12-15  Torvald Riegel  <triegel@redhat.com>
603
604         * nptl/tst-mutex5.c (do_test): Do not skip tests if elision is enabled.
605
606 2014-12-15  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
607
608         * stdio-common/test-vfprintf.c: Include <libc-internal.h>.
609         * stdio-common/tst-sprintf.c: Likewise.
610
611 2014-12-15  Torvald Riegel  <triegel@redhat.com>
612
613         * sysdeps/unix/sysv/linux/s390/pthread_once.c: Remove file.
614
615 2014-12-15  Jeff Law  <law@redhat.com>
616
617         [BZ #16617]
618         * stdio-common/vfprintf.c (vfprintf): Allocate large specs array
619         on the heap.  (CVE-2012-3406)
620         * stdio-common/bug23-2.c, stdio-common/bug23-3.c: New file.
621         * stdio-common/bug23-4.c: New file.  Test case by Joseph Myers.
622         * stdio-common/Makefile (tests): Add bug23-2, bug23-3, bug23-4.
623
624 2014-12-15  Will Newton  <will.newton@linaro.org>
625
626         * manual/install.texi: Bump required version of texinfo
627         to 4.7 from 4.5.
628         * INSTALL: Regenerated.
629         * configure.ac: Check for makeinfo version 4.7 and above.
630         * configure: Regenerated.
631
632 2014-12-12  Roland McGrath  <roland@hack.frob.com>
633
634         * sysdeps/posix/shm-directory.h (SHM_GET_NAME): Take new argument
635         PREFIX, string constant to insert between directory and name.
636         * sysdeps/posix/shm_open.c: Update caller.
637         * sysdeps/posix/shm_unlink.c: Likewise.
638         * nptl/semaphoreP.h (struct mountpoint_info): Type removed.
639         (__where_is_shmfs, mountpoint, __namedsem_once): Declarations removed.
640         (SEM_SHM_PREFIX): New macro.
641         * sysdeps/posix/Makefile (librt-routines): Add shm-directory only if
642         [$(have-thread-library) = no].
643         * nptl/Makefile (libpthread-routines): Add shm-directory.
644         * nptl/Versions (GLIBC_PRIVATE): Add __shm_directory.
645         * sysdeps/nptl/shm-directory.h: New file.
646         * sysdeps/posix/shm-directory.c
647         [IS_IN (libpthread)] (__shm_directory): Add hidden_def.
648         * sysdeps/unix/sysv/linux/shm-directory.c: Likewise.
649         * nptl/sem_open.c (check_add_mapping): Use munmap function rather than
650         INTERNAL_SYSCALL.
651         (__where_is_shmfs): Function removed.
652         (mountpoint, defaultmount, defaultdir, __namedsem_once):
653         Variables removed.
654         (sem_open): Use __libc_close function rather than INTERNAL_SYSCALL.
655         Use SHM_GET_NAME.
656         * nptl/sem_unlink.c: Prototypify.  Use SHM_GET_NAME.
657
658         * sysdeps/nptl/bits/libc-lockP.h [IS_IN (libpthread)]
659         (PTFAVAIL, __libc_ptf_call, __libc_ptf_call_always): Define as
660         unconditional for use inside libpthread.
661         [IS_IN (libpthread)]: Include <nptl/pthreadP.h>.
662
663 2014-12-12  Roland McGrath  <roland@hack.frob.com>
664
665         * nptl/pthread_getaffinity.c: New file.
666         * nptl/pthread_setaffinity.c: New file.
667         * nptl/pthread_getname.c: New file.
668         * nptl/pthread_setname.c: New file.
669
670         * nptl/pthread_create.c (START_THREAD_DEFN)
671         [! __ASSUME_SET_ROBUST_LIST]: Add missing & in lll_futex_wake argument.
672
673 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
674             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
675
676         * resolv/res_send.c (send_vc): Disable warning resplen may
677         be used uninitialized.
678
679 2014-12-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
680
681         * nptl/tst-mutex6.c
682         (ATTR_NULL): New define checks ATTR against NULL.
683         (do_test): Use !ATTR_NULL instead of ATTR != NULL.
684         * nptl/tst-mutexpp6.c (ATTR_NULL): New define.
685
686 2014-12-11  James Lemke  <jwlemke@codesourcery.com>
687
688         [BZ #17581]
689         * malloc/hooks.c
690         (mem2mem_check): Revert my previous change.
691         (malloc_check_get_size): Revert my previous change.
692         (mem2chunk_check): Revert my previous change.
693
694 2014-12-11  Roland McGrath  <roland@hack.frob.com>
695
696         * sysdeps/posix/shm-directory.c: New file.
697         * sysdeps/posix/shm-directory.h: New file.
698         * sysdeps/posix/Makefile [($(subdir) = rt] (librt-routines): Add it.
699         * sysdeps/posix/shm_open.c: Use SHM_GET_NAME.
700         Use O_NOFOLLOW and O_CLOEXEC if available.  Transmute EISDIR to EINVAL.
701         * sysdeps/posix/shm_unlink.c: Use SHM_GET_NAME.
702         Transmute EPERM to EACCES.
703         * sysdeps/unix/sysv/linux/shm-directory.c: New file, most code taken
704         from ...
705         * sysdeps/unix/sysv/linux/shm_open.c: ... here.  File removed.
706         * sysdeps/unix/sysv/linux/shm_unlink.c: File removed.
707
708 2014-12-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
709
710         * sysdeps/sh/jmpbuf_unwind.h (_jmpbuf_sp): Declare SP as void
711         pointer and cast to uintptr_t.
712         * sysdeps/sh/nptl/tls.h (TLS_INIT_TP): Use NULL instead of 0.
713         * sysdeps/unix/sysv/linux/sh/lowlevellock.h (lll_futex_timed_wait):
714         Add cast to avoid warning.
715         * sysdeps/unix/sysv/linux/sh/register-dump.h: Use 0 instead of NULL.
716
717 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
718
719         * nptl/semaphore.h: Move to ...
720         * sysdeps/pthread/semaphore.h: ... here.
721         * Makefile (installed-headers): Change nptl/semaphore.h to
722         sysdeps/pthread/semaphore.h.
723
724 2014-12-11  Roland McGrath  <roland@hack.frob.com>
725
726         * misc/tst-error1.c (do_test): Ignore -Wformat-security for
727         generated error format strings.
728
729         * stdio-common/tstdiomisc.c (t2): Ignore -Wformat and
730         -Wformat-extra-args warnings for scanf formats.
731         * stdio-common/scanf4.c (main): Ignore -Wformat-zero-length around
732         test of zero-length format (duh).
733         * stdio-common/scanf7.c (main): Ignore -Wformat warnings for
734         corner-case scanf format test.
735         * stdio-common/test-vfprintf.c (do_test): Ignore -Wformat-security for
736         generated fprintf format string.
737         * stdio-common/tst-sprintf.c (do_test): Ignore -Wformat warnings for
738         corner-case sprintf format tests.
739         * stdio-common/tst-printf.c: Ignore -Wformat throughout.
740         * stdio-common/tst-printfsz.c (main): Ignore -Wformat and
741         -Wformat-extra-args warnings throughout.
742         * stdio-common/Makefile (CFLAGS-tstdiomisc.c): Variable removed.
743         (CFLAGS-scanf4.c): Likewise.
744         (CFLAGS-scanf7.c): Likewise.
745         (CFLAGS-tst-sprintf.c): Likewise.
746         (CFLAGS-tst-printf.c): Likewise.
747         (CFLAGS-tst-printfsz.c): Likewise.
748
749 2014-12-11  Joseph Myers  <joseph@codesourcery.com>
750
751         * include/cpio.h: New file.
752         * include/fmtmsg.h: Likewise.
753
754         * tst-mbswcs1.c (show): Use %zu format instead of %Zd.  Cast
755         corresponding format argument to size_t.
756         * tst-mbswcs2.c (show): Likewise.  Use %td format for ptrdiff_t
757         arguments.
758         * tst-mbswcs3.c (show): Use %zu format instead of %Zd.  Cast
759         corresponding format argument to size_t.
760         * tst-mbswcs4.c (show): Likewise.  Use %td format for ptrdiff_t
761         arguments.
762         * tst-mbswcs5.c (show): Use %zu format instead of %Zd.  Cast
763         corresponding format argument to size_t.
764         * tst-trans.c (do_test): Use %lc format for wint_t arguments.
765         * Makefile (CFLAGS-tst-mbswcs1.c): Remove variable.
766         (CFLAGS-tst-mbswcs2.c): Likewise.
767         (CFLAGS-tst-mbswcs3.c): Likewise.
768         (CFLAGS-tst-mbswcs4.c): Likewise.
769         (CFLAGS-tst-mbswcs5.c): Likewise.
770         (CFLAGS-tst-trans.c): Likewise
771
772 2014-12-11  Roland McGrath  <roland@hack.frob.com>
773
774         * posix/regexbug1.c (main): Use "%s" format with regerror results,
775         rather than assuming they won't contain any '%'s.
776
777 2014-12-11  Chris Metcalf  <cmetcalf@ezchip.com>
778
779         * sysdeps/tile/tilegx/memset.c (__memcpy): Add
780         inhibit_loop_to_libcall to avoid recursive calls.
781         * sysdeps/tile/tilegx/memcpy.c (__memcpy): Likewise.
782         * sysdeps/tile/tilepro/memcpy.c (__memcpy): Likewise.
783
784 2014-12-11  Adhemerval Zanella  <Azanella@linux.vnet.ibm.com>
785
786         * include/sys/socket.h (__sendmmsg): Add __USE_GNU guards on function
787         prototype.
788
789 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
790
791         * sysdeps/mips/dl-trampoline.c: Modify switch expression to have
792         integer value instead of boolean.
793
794 2014-12-11  Steve Ellcey  <sellcey@imgtec.com>
795
796         * malloc/malloc.c: Fix powerof2 check.
797
798 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
799
800         * locale/programs/locfile.h (maybe_swap_uint32):
801         Remove inline and add unused attribute.
802
803 2014-12-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
804
805         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
806         Truncating assembler expression to a .long expression.
807
808 2014-12-11  Andreas Schwab  <schwab@suse.de>
809
810         * elf/rtld.c (struct map_args): Constify str member.
811         (do_preload): Constify fname argument.
812
813 2014-12-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
814
815         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Remove overflow warnings for
816         constants definition.
817
818 2014-12-11  Andreas Schwab  <schwab@suse.de>
819
820         [BZ #16657]
821         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Use
822         FORCE_ELISION instead of DO_ELISION.
823         * sysdeps/unix/sysv/linux/x86/force-elision.h (DO_ELISION):
824         Remove.
825         * sysdeps/unix/sysv/linux/s390/force-elision.h (DO_ELISION):
826         Likewise.
827
828         * iconvdata/gconv-modules: Remove duplicate entry.
829
830 2014-12-11  Will Newton  <will.newton@linaro.org>
831
832         Merge gettext 0.19.3 into intl/.
833
834         This involves a number of cosmetic changes to comments
835         and ANSI function definitions and prototypes throughout
836         all the files. The gettext copyright header is used but
837         with the date ranges taken from the glibc copy.
838
839         * NEWS: Add gettext merge to 2.21.
840         * intl/bindtextdom.c: Switch to gettext copyright.
841         Use ANSI definitions and prototypes.
842         Use gl_* locking primitives rather than __libc_* ones.
843         Use __builtin_expect rather than __glibc_likely/unlikely.
844         * intl/dcgettext.c: Switch to gettext copyright.
845         Use ANSI definitions and prototypes.
846         * intl/dcigettext.c: Switch to gettext copyright.
847         Use ANSI definitions and prototypes.
848         (INTDIV0_RAISES_SIGFPE): New define.
849         Use gl_* locking primitives rather than __libc_* ones.
850         Include eval-plural.h instead of plural-eval.c.
851         Use __builtin_expect rather than __glibc_likely/unlikely.
852         * intl/dcngettext.c: Switch to gettext copyright.
853         Use ANSI definitions and prototypes.
854         * intl/dgettext.c: Likewise.
855         * intl/dngettext.c: Likewise.
856         * intl/plural-eval.c: Renamed to...
857         * intl/eval-plural.h: ...this.
858         * intl/explodename.c: Switch to gettext copyright.
859         Use ANSI definitions and prototypes.
860         (_nl_explode_name): Use strchr instead of __rawmemchr.
861         * intl/finddomain.c: Switch to gettext copyright.
862         Use ANSI definitions and prototypes.
863         Use gl_* locking primitives rather than __libc_* ones.
864         (_nl_find_domain): Use malloc rather than alloca for
865         allocation of temporary locale name.
866         * intl/gettext.c: Switch to gettext copyright.
867         Use ANSI definitions and prototypes.
868         * intl/gettextP.h: Switch to gettext copyright.
869         Use ANSI definitions and prototypes.
870         Use gl_* locking primitives rather than __libc_* ones.
871         * intl/gmo.h: Switch to gettext copyright.
872         (struct sysdep_string): Move struct segment_pair outside of
873         struct definition.
874         * intl/hash-string.c: Use ANSI definitions and prototypes.
875         * intl/hash-string.h: Switch to gettext copyright.
876         Use ANSI definitions and prototypes.
877         * intl/l10nflist.c: Switch to gettext copyright.
878         Use ANSI definitions and prototypes.
879         (_nl_normalize_codeset): Avoid integer overflow.
880         * intl/loadinfo.h: Switch to gettext copyright.
881         Use ANSI definitions and prototypes.
882         (LIBINTL_DLL_EXPORTED): New define.
883         (PATH_SEPARATOR): New define.
884         * intl/loadmsgcat.c: Switch to gettext copyright.
885         * intl/localealias.c: Switch to gettext copyright.
886         Use ANSI definitions and prototypes.
887         (_nl_expand_alias): Use PATH_SEPARATOR.
888         * intl/ngettext.c: Switch to gettext copyright.
889         Use ANSI definitions and prototypes.
890         * intl/plural-exp.c: Likewise.
891         * intl/plural-exp.h: Switch to gettext copyright.
892         Use ANSI definitions and prototypes.
893         (struct expression): Move definition of enum operator outside
894         of struct definition.
895         * intl/plural.c: Regenerate.
896         * intl/plural.y: Switch to gettext copyright.
897         Use ANSI definitions and prototypes.
898         Port to bison 3.0.
899         * intl/textdomain.c: Switch to gettext copyright.
900         Use ANSI definitions and prototypes.
901         Use gl_* locking primitives rather than __libc_* ones.
902
903 2014-12-10  Steve Ellcey  <sellcey@imgtec.com>
904
905         * debug/warning-nop.c: Add used atrribute.
906
907 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
908
909         * sysdeps/unix/sysv/linux/mips/mips32/waitid.c: New file.
910
911         * sysdeps/unix/sysv/linux/mips/mips64/Makefile
912         [$(subdir) == signal] (CFLAGS-sigaction.c): New variable.
913         [$(subdir) == nptl] (CFLAGS-sigaction.c): Likewise.
914
915 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
916             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
917
918         [BZ #17634]
919         * wcsmbs/wcschr.c [!WCSCHR] (wcschr): Define as __wcschr.
920         Undefine after defining function.  Define as weak alias of
921         __wcschr.  Use libc_hidden_weak.
922         * include/wchar.h (__wcschr): Declare.  Use libc_hidden_proto.
923         * sysdeps/i386/i686/multiarch/wcschr-c.c [IS_IN (libc) && SHARED]
924         (libc_hidden_def): Also define __GI___wcschr alias.
925         * sysdeps/i386/i686/multiarch/wcschr.S (wcschr): Rename to
926         __wcschr and define as weak alias of __wcschr.
927         * sysdeps/powerpc/power6/wcschr.c [!WCSCHR] (WCSCHR): Define as
928         __wcschr.
929         [!WCSCHR] (DEFAULT_WCSCHR): Define.
930         [DEFAULT_WCSCHR] (__wcschr): Use libc_hidden_def.
931         [DEFAULT_WCSCHR] (wcschr): Define as weak alias of __wcschr.  Use
932         libc_hidden_weak.  Do not use libc_hidden_def.
933         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c
934         [IS_IN (libc) && SHARED] (libc_hidden_def): Also define
935         __GI___wcschr alias.
936         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c
937         [IS_IN (libc)] (wcschr): Define as macro expanding to
938         __redirect_wcschr.
939         [IS_IN (libc)] (__wcschr_ppc): Use __redirect_wcschr in typeof.
940         [IS_IN (libc)] (__wcschr_power6): Likewise.
941         [IS_IN (libc)] (__wcschr_power7): Likewise.
942         [IS_IN (libc)] (__libc_wcschr): New.  Define with libc_ifunc
943         instead of wcschr.
944         [IS_IN (libc)] (wcschr): Undefine and define as weak alias of
945         __libc_wcschr.
946         [!IS_IN (libc)] (libc_hidden_def): Do not undefine and redefine.
947         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c (wcschr): Rename to
948         __wcschr and define as weak alias of __wcschr.  Use
949         libc_hidden_builtin_def.
950         * sysdeps/x86_64/wcschr.S (wcschr): Rename to __wcschr and define
951         as weak alias of __wcschr.  Use libc_hidden_weak.
952         * time/alt_digit.c (_nl_get_walt_digit): Use __wcschr instead of
953         wcschr.
954         * time/era.c (_nl_init_era_entries): Likewise.
955         * conform/Makefile (test-xfail-ISO/time.h/linknamespace): Remove
956         variable.
957         (test-xfail-XPG3/time.h/linknamespace): Likewise.
958         (test-xfail-XPG4/time.h/linknamespace): Likewise.
959
960 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
961
962         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Use %ld
963         format for long int variable.
964
965 2014-12-10  Anders Kaseorg  <andersk@MIT.EDU>
966
967         [BZ #10672]
968         * manual/search.texi: (Array Sort Function): Remove claim how to make
969         qsort stable.
970
971 2014-12-10  Andreas Schwab  <schwab@suse.de>
972
973         [BZ #12847]
974         * sysdeps/nptl/fork.c (fresetlockfiles): Skip files with
975         user-controlled locks.
976
977 2014-12-10  Richard Earnshaw  <rearnsha@arm.com>
978
979         * sysdeps/aarch64/strchrnul.S (vrepmask): Use a call-clobbered
980         register.
981
982 2014-12-10  Joseph Myers  <joseph@codesourcery.com>
983
984         * configure.ac (--disable-werror): New configure option.
985         (enable_werror): New AC_SUBST.
986         * configure: Regenerated.
987         * config.make.in (enable-werror): New variable.
988         * Makeconfig [$(enable-werror) = yes] (+gccwarn): Add -Werror
989         -Wno-error=undef.
990         (+gccwarn-c): Do not use -Werror=implicit-function-declaration.
991         * manual/install.texi (Configuring and compiling): Document
992         --disable-werror.
993         * INSTALL: Regenerated.
994         * debug/Makefile (CFLAGS-tst-chk1.c): Add -Wno-error.
995         (CFLAGS-tst-chk2.c): Likewise.
996         (CFLAGS-tst-chk3.c): Likewise.
997         (CFLAGS-tst-chk4.cc): Likewise.
998         (CFLAGS-tst-chk5.cc): Likewise.
999         (CFLAGS-tst-chk6.cc): Likewise.
1000         (CFLAGS-tst-lfschk1.c): Likewise.
1001         (CFLAGS-tst-lfschk2.c): Likewise.
1002         (CFLAGS-tst-lfschk3.c): Likewise.
1003         (CFLAGS-tst-lfschk4.cc): Likewise.
1004         (CFLAGS-tst-lfschk5.cc): Likewise.
1005         (CFLAGS-tst-lfschk6.cc): Likewise.
1006
1007         * stdio-common/tst-printfsz.c: Include <libc-internal.h>.
1008         (main): Disable -Wdeprecated-declarations around calls to
1009         register_printf_function.
1010
1011         * stdio-common/tst-unlockedio.c: Include <libc-internal.h>.
1012         (do_test): Disable -Wdiv-by-zero around some calls to
1013         fwrite_unlocked and fread_unlocked.
1014
1015         * include/libc-internal.h (DIAG_PUSH_NEEDS_COMMENT): New macro.
1016         (DIAG_POP_NEEDS_COMMENT): Likewise.
1017         (_DIAG_STR1): Likewise.
1018         (_DIAG_STR): Likewise.
1019         (DIAG_IGNORE_NEEDS_COMMENT): Likewise.
1020         * stdio-common/bug21.c: Include <libc-internal.h>.
1021         (do_test): Disable -Wformat around call to sscanf.
1022         * stdio-common/scanf14.c: Include <libc-internal.h>.
1023         (main): Disable -Wformat around some calls to scanf functions.
1024
1025 2014-12-09  Torvald Riegel  <triegel@redhat.com>
1026
1027         * sysdeps/unix/sysv/linux/sh/pthread_once.S: Remove file.
1028
1029 2014-12-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1030
1031         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix wide-character
1032         stack variable alignment.
1033
1034 2014-12-06  Joseph Myers  <joseph@codesourcery.com>
1035
1036         [BZ #17682]
1037         * resource/Versions (libc): Add __getrlimit at GLIBC_PRIVATE.
1038         * resource/getrlimit.c (__getrlimit): Use libc_hidden_def.
1039         * sysdeps/mach/hurd/getrlimit.c (__getrlimit): Likewise.
1040         * include/sys/resource.h (__getrlimit): Use libc_hidden_proto.
1041         * nptl/nptl-init.c (__pthread_initialize_minimal_internal): Use
1042         __getrlimit instead of getrlimit.
1043         * nptl/pthread_cond_timedwait.c (__pthread_cond_timedwait): Use
1044         __gettimeofday instead of gettimeofday.
1045         * nptl/pthread_rwlock_timedrdlock.c (pthread_rwlock_timedrdlock):
1046         Likewise.
1047         * nptl/pthread_rwlock_timedwrlock.c (pthread_rwlock_timedwrlock):
1048         Likewise.
1049         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
1050         * conform/Makefile (test-xfail-POSIX2008/aio.h/linknamespace):
1051         Remove variable.
1052         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
1053         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
1054
1055 2014-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1056
1057         * libio/tst-ftell-active-handler.c (do_ftell_test): Fix buffer overrun
1058         for wide-character tests.
1059
1060 2014-12-04  Roland McGrath  <roland@hack.frob.com>
1061
1062         * io/openat64.c: #include <libc-internal.h>
1063         (__openat64): Prototypify.  Use ignore_value on MODE.
1064         * io/openat.c: Likewise.
1065         * misc/reboot.c: #include <libc-internal.h>
1066         (reboot): Prototypify.  Use ignore_value on HOWTO.
1067         * misc/ptrace.c: #include <libc-internal.h>
1068         (ptrace): Prototypify.  Use ignore_value for va_arg'd parameters.
1069
1070 2014-12-04  Joseph Myers  <joseph@codesourcery.com>
1071
1072         * conform/list-header-symbols.pl (%extra_syms): Add h_errno for
1073         XPG4, UNIX98 and XOPEN2K.
1074         * conform/Makefile (test-xfail-XOPEN2K/grp.h/linknamespace):
1075         Remove variable.
1076         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
1077
1078 2014-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
1079
1080         * libio/fileops.c: Use ISO C style for function definitions.
1081         * libio/iofopen.c: Likewise.
1082         * libio/wfileops.c: Likewise.
1083
1084         [BZ #17653]
1085         * libio/fileops.c (_IO_new_file_underflow): Unset cached
1086         offset on EOF.
1087         * libio/wfileops.c (_IO_wfile_underflow): Likewise.
1088         * libio/tst-ftell-active-handler.c (fgets_func_t): New type.
1089         (fgets_func): Function pointer to fgets and fgetws.
1090         (do_ftell_test): Add test to verify ftell value after read
1091         EOF.
1092         (do_test): Set fgets_func.
1093
1094         * libio/tst-ftell-active-handler.c (do_ftruncate_test): Add
1095         O_TRUNC flag for w and w+ modes.
1096         (do_rewind_test): Likewise.
1097         (do_ftell_test): Likewise.
1098         (do_write_test): Likewise.
1099
1100         [BZ #17647]
1101         * libio/fileops.c (do_ftell): Seek only when there are
1102         unflushed writes.
1103         * libio/wfileops.c (do_ftell_wide): Likewise.
1104         * libio/tst-ftell-active-handler.c (do_ftruncate_test): New
1105         test case.
1106         (do_one_test): Call it.
1107
1108 2014-12-03  Joseph Myers  <joseph@codesourcery.com>
1109
1110         * conform/list-header-symbols.pl (%extra_syms): Add getdate_err
1111         for XPG4, UNIX98, XOPEN2K and XOPEN2K8.
1112         * conform/Makefile (test-xfail-XOPEN2K/pthread.h/linknamespace):
1113         Remove variable.
1114         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
1115         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
1116         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
1117
1118 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
1119
1120         * conform/Makefile (test-xfail-XOPEN2K/aio.h/linknamespace):
1121         Remove variable.
1122         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
1123
1124         [BZ #17668]
1125         * inet/ifaddrs.c (getifaddrs): Rename to __getifaddrs and define
1126         as weak alias of __getifaddrs.  Use libc_hidden_weak.
1127         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1128         __freeifaddrs.  Use libc_hidden_weak.
1129         * sysdeps/gnu/ifaddrs.c (getifaddrs): Rename to __getifaddrs and
1130         define as weak alias of __getifaddrs.  Use libc_hidden_weak.
1131         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1132         __freeifaddrs.  Use libc_hidden_weak.
1133         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Rename to
1134         __getifaddrs and define as weak alias of __getifaddrs.  Use
1135         libc_hidden_weak.
1136         (freeifaddrs): Rename to __freeifaddrs and define as weak alias of
1137         __freeifaddrs.  Use libc_hidden_weak.
1138         * conform/Makefile (test-xfail-XOPEN2K/net/if.h/linknamespace):
1139         Remove variable.
1140         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
1141         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
1142
1143 2014-12-02  Petar Jovanovic  <petar.jovanovic@rt-rk.com>
1144
1145         [BZ #17601]
1146         * sysdeps/mips/start.S (__start): Use indirect jump to call
1147         __libc_start_main.
1148
1149 2014-12-02  Joseph Myers  <joseph@codesourcery.com>
1150
1151         * nptl/tst-stack4.c (dso_process): Use int not uintptr_t for t.
1152
1153         * nptl/tst-mutex1.c: Include <stdbool.h>.
1154         [!ATTR] (ATTR_NULL): New macro.
1155         (do_test): Test !ATTR_NULL instead of ATTR != NULL.
1156         * nptl/tst-mutexpi1.c (ATTR_NULL): New macro.
1157         * nptl/tst-mutexpp1.c (ATTR_NULL): New macro.
1158
1159         * posix/tst-getopt_long1.c (do_test): Cast elements of argv array
1160         to char *.
1161
1162         [BZ #17665]
1163         * posix/unistd.h [__USE_MISC || (__USE_XOPEN && !__USE_UNIX98)]:
1164         Change conditional to [__USE_MISC].
1165
1166         [BZ #17664]
1167         * misc/mntent_r.c (__getmntent_r): Use __fgets_unlocked instead of
1168         fgets_unlocked.
1169         * resolv/res_hconf.c [IS_IN (libc)] (fgets_unlocked): Define to
1170         __fgets_unlocked.
1171         * resolv/res_init.c (__res_vinit): Use __fgets_unlocked instead of
1172         fgets_unlocked.
1173         * conform/Makefile (test-xfail-XPG4/sys/statvfs.h/linknamespace):
1174         Remove variable.
1175         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
1176         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
1177         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
1178         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
1179         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
1180         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
1181         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
1182         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
1183         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
1184
1185         * elf/tst-unique4lib.cc (b): Mark with __attribute__ ((used)).
1186
1187 2014-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
1188
1189         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1190         Remove strpbrk objects.
1191         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1192         (__libc_ifunc_impl_list): Remove strpbrk implementation.
1193         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: Remove file.
1194         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Remove file.
1195         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: Remove file.
1196         * sysdeps/powerpc/powerpc64/strpbrk.S: New file.
1197
1198         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1199         Remove strcspn objects.
1200         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1201         (__libc_ifunc_impl_list): Remove strcspn implementation.
1202         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: Remove file.
1203         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Remove file.
1204         * sysdeps/powerpc/powerpc64/power7/strcspn.S: Remove file.
1205         * sysdeps/powerpc/powerpc64/strcspn.S: New file.
1206
1207         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
1208         Remove strspn objetcs.
1209         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
1210         (__libc_ifunc_impl_list): Remove strspn implementation.
1211         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: Remove file.
1212         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
1213         * sysdeps/powerpc/powerpc64/power7/strspn.S: Remove file.
1214         * sysdeps/powerpc/powerpc64/strspn.S: New file.
1215
1216 2014-12-01  James Lemke  <jwlemke@codesourcery.com>
1217
1218         [BZ #17581]
1219         * malloc/hooks.c
1220         (mem2mem_check): Add a terminator to the chain of checking blocks.
1221         (malloc_check_get_size): Use it here.
1222         (mem2chunk_check): Ditto.
1223
1224 2014-12-01  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
1225
1226         * sysdeps/powerpc/powerpc64/strtok.S: New file.
1227         * sysdeps/powerpc/powerpc64/strtok_r.S: New file.
1228
1229 2014-11-29  Carlos O'Donell  <carlos@redhat.com>
1230
1231         * bits/ioctl-types.h: Indent preprocessor directives correctly.
1232
1233         * nptl/nptl-init.c: Include libc-internal.h.
1234         (__pthread_initialize_minimal_internal): Use ROUND_UP.
1235
1236         * elf/ldconfig.c (search_dir): Expand comment.
1237
1238 2014-11-29  Joseph Myers  <joseph@codesourcery.com>
1239
1240         * conform/Makefile (linknamespace-symlist-stdlibs-base): New
1241         variable.
1242         (linknamespace-symlist-stdlibs-tests): Likewise.
1243         (tests-special): Append $(linknamespace-symlist-stdlibs-tests)
1244         instead of $(objpfx)symlist-stdlibs.
1245         (linknamespace-libs-isoc): New variable.
1246         (linknamespace-libs): Use $(linknamespace-libs-isoc).
1247         (linknamespace-libs-ISO): New variable.
1248         (linknamespace-libs-ISO99): Likewise.
1249         (linknamespace-libs-ISO11): Likewise.
1250         (linknamespace-libs-XPG3): Likewise.
1251         (linknamespace-libs-XPG4): Likewise.
1252         (linknamespace-libs-POSIX): Likewise.
1253         (linknamespace-libs-UNIX98): Likewise.
1254         (linknamespace-libs-XOPEN2K): Likewise.
1255         (linknamespace-libs-POSIX2008): Likewise.
1256         (linknamespace-libs-XOPEN2K8): Likewise.
1257         ($(objpfx)symlist-stdlibs): Replace by
1258         $(linknamespace-symlist-stdlibs-tests).  Use
1259         $(linknamespace-libs-$*) as set of libraries.
1260         ($(linknamespace-header-tests)): Update dependencies.  Use
1261         $(objpfx)symlist-stdlibs-$$std for --libsyms argument.
1262         (test-xfail-XPG4/sys/mman.h/linknamespace): Remove.
1263         * conform/linknamespace.pl: Remove comment about considering
1264         definitions of symbols from irrelevant libraries.
1265
1266 2014-11-28  H.J. Lu  <hongjiu.lu@intel.com>
1267
1268         [BZ #13862]
1269         * elf/dl-tls.c: Include <atomic.h>.
1270         (oom): Remove #ifdef SHARED/#endif.
1271         (_dl_static_dtv, _dl_initial_dtv): Moved before ...
1272         (_dl_resize_dtv): This.  Extracted from _dl_update_slotinfo.
1273         (_dl_allocate_tls_init): Resize DTV if the current DTV isn't
1274         big enough.
1275         (_dl_update_slotinfo): Call _dl_resize_dtv to resize DTV.
1276         * nptl/Makefile (tests): Add tst-stack4.
1277         (modules-names): Add tst-stack4mod.
1278         ($(objpfx)tst-stack4): New.
1279         (tst-stack4mod.sos): Likewise.
1280         ($(objpfx)tst-stack4.out): Likewise.
1281         ($(tst-stack4mod.sos)): Likewise.
1282         (clean): Likewise.
1283         * nptl/tst-stack4.c: New file.
1284         * nptl/tst-stack4mod.c: Likewise.
1285
1286 2014-11-27  J. Brown  <jb999@gmx.de>
1287
1288         * sysdeps/x86/bits/string.h: Add recent CPUs.
1289
1290 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
1291
1292         * misc/tst-pselect.c (do_test): Use sigprocmask instead of
1293         sigblock.
1294
1295         * libio/bug-ungetwc1.c (do_test): Verify results of getwc and
1296         feof.
1297
1298         * dlfcn/failtestmod.c (constr): Do not store result of dlsym in a
1299         variable.
1300
1301 2014-11-27  Stefan Liebler  <stli@linux.vnet.ibm.com>
1302
1303         * nscd/connections.c: Include libc-internal.h because of macro
1304         usage ignore_value.
1305
1306 2014-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
1307
1308         * string/bits/string3.h (__warn_memset_zero_len): Don't
1309         declare for gcc newer than 5.0.
1310         (memset): Don't test for zero-length __LEN for gcc newer than
1311         5.0.
1312
1313 2014-11-27  Joseph Myers  <joseph@codesourcery.com>
1314
1315         * stdio-common/tst-fmemopen.c (do_test): Cast st_size values to
1316         size_t for %zu format.
1317
1318         * nss/tst-nss-test1.c (do_test): Use %td printf format for pointer
1319         difference, not %ju.
1320
1321 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
1322
1323         * include/libc-internal.h (ignore_value): New macro.
1324         * nscd/connections.c (restart): Wrap calls to setuid and setgid
1325         with ignore_value.
1326
1327         * sysdeps/mips/__longjmp.c (____longjmp): Use prototype
1328         definition.
1329
1330         * nptl/tst-cancel-self-cancelstate.c (do_test): Cast argument of
1331         pthread_cleanup_push to void *.
1332
1333         * sysdeps/unix/sysv/linux/arm/libc-do-syscall.S (_FORTIFY_SOURCE):
1334         Undefine.
1335
1336         [BZ #16619]
1337         [BZ #16740]
1338         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Use 1LL << 52
1339         instead of 1L << 52.
1340
1341         * libio/bug-rewind.c (do_test): Check fwscanf return values.
1342         * libio/bug-rewind2.c (do_test): Likewise.
1343
1344         * debug/test-stpcpy_chk-ifunc.c: Remove file.
1345         * debug/test-strcpy_chk-ifunc.c: Likewise.
1346         * wcsmbs/test-wcschr-ifunc.c: Likewise.
1347         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
1348         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
1349         * wcsmbs/test-wcslen-ifunc.c: Likewise.
1350         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
1351         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
1352         * Rules [$(multi-arch) = no] (tests): Do not filter out
1353         $(tests-ifunc).
1354         [$(multi-arch) = no] (xtests): Do not filter out $(xtests-ifunc).
1355         * debug/Makefile (tests-ifunc): Remove variable.
1356         (tests): Do not add $(tests-ifunc).
1357         * wcsmbs/Makefile (tests-ifunc): Remove variable.
1358         (tests): Do not add $(tests-ifunc).
1359         * benchtests/bench-string.h (TEST_IFUNC): Remove macro.
1360         [TEST_IFUNC]: Remove conditionals.
1361         * string/test-string.h (TEST_IFUNC): Remove macro.
1362         [TEST_IFUNC]: Remove conditionals.
1363
1364         * string/test-strchr.c [!WIDE] (L): New macro.
1365         [WIDE] (L): Likewise.
1366         (check1): Use CHAR instead of char.  Use L on string and character
1367         constants.
1368
1369 2014-11-26  Adhemerval Zanella  <azanella@linux.ibm.com>
1370
1371         * csu/tst-atomic.c (do_test): Add atomic_exchange_and_add_{acq,rel}
1372         tests.
1373         * sysdeps/powerpc/bits/atomic.h
1374         (__arch_atomic_exchange_and_add_32_acq): Add definition.
1375         (__arch_atomic_exchange_and_add_32_rel): Likewise.
1376         (atomic_exchange_and_add_acq): Likewise.
1377         (atomic_exchange_and_add_rel): Likewise.
1378         * sysdeps/powerpc/powerpc32/bits/atomic.h
1379         (__arch_atomic_exchange_and_add_64_acq): Add definition.
1380         (__arch_atomic_exchange_and_add_64_rel): Likewise.
1381         * sysdeps/powerpc/powerpc64/bits/atomic.h
1382         (__arch_atomic_exchange_and_add_64_acq): Add definition.
1383         (__arch_atomic_exchange_and_add_64_rel): Likewise.
1384
1385 2014-11-26  Torvald Riegel  <triegel@redhat.com>
1386
1387         * nptl/tpp.c (__init_sched_fifo_prio, __pthread_tpp_change_priority):
1388         Change synchronization of __sched_fifo_min_prio and
1389         __sched_fifo_max_prio.
1390         * nptl/pthread_mutexattr_getprioceiling.c
1391         (pthread_mutexattr_getprioceiling): Likewise.
1392         * nptl/pthread_mutexattr_setprioceiling.c
1393         (pthread_mutexattr_setprioceiling): Likewise.
1394         * nptl/pthread_mutex_init.c (__pthread_mutex_init): Likewise.
1395         * nptl/pthread_mutex_setprioceiling.c (pthread_mutex_setprioceiling):
1396         Likewise.
1397
1398 2014-11-26  Joseph Myers  <joseph@codesourcery.com>
1399
1400         * setjmp/jmpbug.c (test): Make foo volatile and cast it to
1401         void.
1402
1403 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
1404
1405         * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
1406         third argument const.
1407
1408 2014-11-25  Paul Eggert  <eggert@cs.ucla.edu>
1409
1410         fnmatch: work around GCC compiler warning bug with uninit var
1411         * posix/fnmatch_loop.c (FCT): Use a scalar not a one-item array.
1412         This works around a bug with x86-64 GCC 4.9.2 and earlier
1413         where 'gcc -O2 -Wmaybe-uninitialized' incorrectly complains
1414         "../locale/weightwc.h:93:7: warning: '*((void *)&str+4)' may be
1415         used uninitialized in this function [-Wmaybe-uninitialized]".
1416
1417 2014-11-25  Joseph Myers  <joseph@codesourcery.com>
1418
1419         * posix/bug-regex31.c (main): Return RES not 0.
1420
1421 2014-11-25  Anton Blanchard <anton@samba.org>
1422
1423         * sysdeps/powerpc/bits/atomic.h
1424         (__arch_compare_and_exchange_bool_64_rel): Load from mem.
1425
1426 2014-11-24  Sterling Augustine  <saugustine@google.com>
1427
1428         * sysdeps/x86_64/start.S (_start): Use ENTRY and END macros.
1429
1430 2014-11-24  Ryan Cumming  <etaoins@gmail.com>
1431
1432         [BZ #17608]
1433         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_TAI.
1434
1435 2014-11-24  Joseph Myers  <joseph@codesourcery.com>
1436
1437         [BZ #17633]
1438         * stdio-common/perror.c (perror): Call __fileno instead of fileno.
1439         * conform/Makefile (test-xfail-ISO/stdio.h/linknamespace): Remove
1440         variable.
1441         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
1442         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
1443
1444 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
1445
1446         * string/strncpy.c (strncpy): Improve performance by using memset.
1447
1448 2014-11-24  Wilco Dijkstra  <wdijkstr@arm.com>
1449
1450         * string/strcpy.c (strcpy):
1451         Improve performance by using strlen and memcpy.
1452
1453 2014-11-24  Leonhard Holz  <leonhard.holz@web.de>
1454
1455         * string/strcoll_l.c (get_next_seq): __always_inline.
1456         * string/strcoll_l.c (do_compare): __always_inline.
1457
1458 2014-11-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
1459
1460         * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is
1461         defined.
1462         * include/mqueue.h: Likewise.
1463         * include/stdlib.h: Likewise.
1464
1465         * stdlib/isomac.c (fmt): Replace NOT_IN_libc with IN_MODULE.
1466         (get_null_defines): Adjust.
1467         * sunrpc/Makefile: Adjust comment.
1468         * Makerules (CPPFLAGS-nonlib): Remove NOT_IN_libc.
1469         * elf/Makefile (CPPFLAGS-sotruss-lib): Likewise.
1470         (CFLAGS-interp.c): Likewise.
1471         (CFLAGS-ldconfig.c): Likewise.
1472         (CPPFLAGS-.os): Likewise.
1473         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
1474         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
1475         * extra-modules.mk (extra-modules.mk): Likewise.
1476         * iconv/Makefile (CPPFLAGS-iconvprogs): Likewise.
1477         * locale/Makefile (CPPFLAGS-locale_programs): Likewise.
1478         * malloc/Makefile (CPPFLAGS-memusagestat): Likewise.
1479         * nscd/Makefile (CPPFLAGS-nscd): Likewise.
1480         * nss/Makefile (CPPFLAGS-nss_test1): Likewise.
1481         * stdlib/Makefile (CFLAGS-tst-putenvmod.c): Likewise.
1482         * sysdeps/gnu/Makefile ($(objpfx)errlist-compat.c): Likewise.
1483         * sysdeps/unix/sysv/linux/Makefile (CPPFLAGS-lddlibc4): Likewise.
1484         * iconvdata/Makefile (CPPFLAGS): Likewise.
1485         (cpp-srcs-left): Add libof for all iconvdata routines.
1486         * bits/stdio-lock.h: Replace NOT_IN_libc with IS_IN.
1487         * include/assert.h: Likewise.
1488         * include/ctype.h: Likewise.
1489         * include/errno.h: Likewise.
1490         * include/libc-symbols.h: Likewise.
1491         * include/math.h: Likewise.
1492         * include/netdb.h: Likewise.
1493         * include/resolv.h: Likewise.
1494         * include/stdio.h: Likewise.
1495         * include/stdlib.h: Likewise.
1496         * include/string.h: Likewise.
1497         * include/sys/stat.h: Likewise.
1498         * include/wctype.h: Likewise.
1499         * intl/l10nflist.c: Likewise.
1500         * libidn/idn-stub.c: Likewise.
1501         * libio/libioP.h: Likewise.
1502         * nptl/libc_multiple_threads.c: Likewise.
1503         * nptl/pthreadP.h: Likewise.
1504         * posix/regex_internal.h: Likewise.
1505         * resolv/res_hconf.c: Likewise.
1506         * sysdeps/arm/armv7/multiarch/memcpy.S: Likewise.
1507         * sysdeps/arm/memmove.S: Likewise.
1508         * sysdeps/arm/sysdep.h: Likewise.
1509         * sysdeps/generic/_itoa.h: Likewise.
1510         * sysdeps/generic/symbol-hacks.h: Likewise.
1511         * sysdeps/gnu/errlist.awk: Likewise.
1512         * sysdeps/gnu/errlist.c: Likewise.
1513         * sysdeps/i386/i586/memcpy.S: Likewise.
1514         * sysdeps/i386/i586/memset.S: Likewise.
1515         * sysdeps/i386/i686/memcpy.S: Likewise.
1516         * sysdeps/i386/i686/memmove.S: Likewise.
1517         * sysdeps/i386/i686/mempcpy.S: Likewise.
1518         * sysdeps/i386/i686/memset.S: Likewise.
1519         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
1520         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
1521         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: Likewise.
1522         * sysdeps/i386/i686/multiarch/memchr-sse2.S: Likewise.
1523         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
1524         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
1525         * sysdeps/i386/i686/multiarch/memcmp-ssse3.S: Likewise.
1526         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
1527         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
1528         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
1529         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
1530         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
1531         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
1532         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
1533         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
1534         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
1535         * sysdeps/i386/i686/multiarch/memrchr-c.c: Likewise.
1536         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: Likewise.
1537         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: Likewise.
1538         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
1539         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
1540         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
1541         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
1542         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
1543         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
1544         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
1545         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: Likewise.
1546         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
1547         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Likewise.
1548         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
1549         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
1550         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
1551         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
1552         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
1553         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
1554         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
1555         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
1556         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
1557         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
1558         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
1559         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
1560         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
1561         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
1562         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
1563         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
1564         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
1565         * sysdeps/i386/i686/multiarch/wcschr-c.c: Likewise.
1566         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: Likewise.
1567         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
1568         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
1569         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
1570         * sysdeps/i386/i686/multiarch/wcscpy-c.c: Likewise.
1571         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Likewise.
1572         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
1573         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
1574         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: Likewise.
1575         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
1576         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: Likewise.
1577         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: Likewise.
1578         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
1579         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
1580         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
1581         * sysdeps/ia64/fpu/libm-symbols.h: Likewise.
1582         * sysdeps/nptl/bits/libc-lock.h: Likewise.
1583         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
1584         * sysdeps/nptl/bits/stdio-lock.h: Likewise.
1585         * sysdeps/posix/closedir.c: Likewise.
1586         * sysdeps/posix/opendir.c: Likewise.
1587         * sysdeps/posix/readdir.c: Likewise.
1588         * sysdeps/posix/rewinddir.c: Likewise.
1589         * sysdeps/powerpc/novmx-sigjmp.c: Likewise.
1590         * sysdeps/powerpc/powerpc32/__longjmp.S: Likewise.
1591         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
1592         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
1593         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
1594         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Likewise.
1595         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: Likewise.
1596         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: Likewise.
1597         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: Likewise.
1598         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: Likewise.
1599         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: Likewise.
1600         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: Likewise.
1601         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: Likewise.
1602         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: Likewise.
1603         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: Likewise.
1604         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: Likewise.
1605         * sysdeps/powerpc/powerpc32/power4/multiarch/memset.c: Likewise.
1606         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: Likewise.
1607         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: Likewise.
1608         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: Likewise.
1609         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr.c: Likewise.
1610         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: Likewise.
1611         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: Likewise.
1612         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: Likewise.
1613         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: Likewise.
1614         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: Likewise.
1615         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: Likewise.
1616         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: Likewise.
1617         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: Likewise.
1618         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: Likewise.
1619         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: Likewise.
1620         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: Likewise.
1621         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: Likewise.
1622         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: Likewise.
1623         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: Likewise.
1624         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: Likewise.
1625         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
1626         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
1627         * sysdeps/powerpc/powerpc64/__longjmp.S: Likewise.
1628         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: Likewise.
1629         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: Likewise.
1630         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: Likewise.
1631         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: Likewise.
1632         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: Likewise.
1633         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: Likewise.
1634         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Likewise.
1635         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: Likewise.
1636         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: Likewise.
1637         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: Likewise.
1638         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: Likewise.
1639         * sysdeps/powerpc/powerpc64/multiarch/memset.c: Likewise.
1640         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: Likewise.
1641         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.S: Likewise.
1642         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c: Likewise.
1643         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: Likewise.
1644         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: Likewise.
1645         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: Likewise.
1646         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: Likewise.
1647         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: Likewise.
1648         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: Likewise.
1649         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: Likewise.
1650         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: Likewise.
1651         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.S: Likewise.
1652         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c: Likewise.
1653         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: Likewise.
1654         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: Likewise.
1655         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: Likewise.
1656         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: Likewise.
1657         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: Likewise.
1658         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: Likewise.
1659         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: Likewise.
1660         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: Likewise.
1661         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: Likewise.
1662         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: Likewise.
1663         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: Likewise.
1664         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: Likewise.
1665         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: Likewise.
1666         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: Likewise.
1667         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: Likewise.
1668         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: Likewise.
1669         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c: Likewise.
1670         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
1671         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c: Likewise.
1672         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c: Likewise.
1673         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
1674         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Likewise.
1675         * sysdeps/s390/s390-32/multiarch/memcmp.S: Likewise.
1676         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
1677         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
1678         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
1679         * sysdeps/s390/s390-64/multiarch/memcmp.S: Likewise.
1680         * sysdeps/s390/s390-64/multiarch/memcpy.S: Likewise.
1681         * sysdeps/s390/s390-64/multiarch/memset.S: Likewise.
1682         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
1683         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
1684         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: Likewise.
1685         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
1686         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
1687         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Likewise.
1688         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: Likewise.
1689         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
1690         * sysdeps/unix/alpha/sysdep.S: Likewise.
1691         * sysdeps/unix/alpha/sysdep.h: Likewise.
1692         * sysdeps/unix/make-syscalls.sh: Likewise.
1693         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1694         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1695         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1696         * sysdeps/unix/sysv/linux/alpha/vfork.S: Likewise.
1697         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1698         * sysdeps/unix/sysv/linux/arm/sysdep.h: Likewise.
1699         * sysdeps/unix/sysv/linux/getpid.c: Likewise.
1700         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
1701         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1702         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Likewise.
1703         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
1704         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1705         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1706         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
1707         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1708         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
1709         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1710         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
1711         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
1712         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1713         * sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
1714         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
1715         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1716         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1717         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1718         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1719         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
1720         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
1721         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
1722         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: Likewise.
1723         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
1724         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1725         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
1726         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
1727         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
1728         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1729         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
1730         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1731         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
1732         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: Likewise.
1733         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
1734         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1735         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
1736         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
1737         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
1738         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1739         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
1740         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
1741         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1742         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
1743         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
1744         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1745         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1746         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1747         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Likewise.
1748         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
1749         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1750         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1751         * sysdeps/wordsize-32/symbol-hacks.h: Likewise.
1752         * sysdeps/x86_64/memcpy.S: Likewise.
1753         * sysdeps/x86_64/memmove.c: Likewise.
1754         * sysdeps/x86_64/memset.S: Likewise.
1755         * sysdeps/x86_64/multiarch/init-arch.h: Likewise.
1756         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
1757         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
1758         * sysdeps/x86_64/multiarch/memcmp.S: Likewise.
1759         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: Likewise.
1760         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
1761         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
1762         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
1763         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
1764         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
1765         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
1766         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
1767         * sysdeps/x86_64/multiarch/memset-avx2.S: Likewise.
1768         * sysdeps/x86_64/multiarch/memset.S: Likewise.
1769         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
1770         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Likewise.
1771         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
1772         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
1773         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
1774         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
1775         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Likewise.
1776         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
1777         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
1778         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
1779         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
1780         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
1781         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
1782         * sysdeps/x86_64/multiarch/wcscpy-c.c: Likewise.
1783         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
1784         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
1785         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Likewise.
1786         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
1787         * sysdeps/x86_64/strcmp.S: Likewise.
1788
1789         * extra-lib.mk (CPPFLAGS-$(lib)): Remove IS_IN_$(lib).
1790
1791         * elf/Makefile (CPPFLAGS-.os): Remove IS_IN_rtld.
1792         * elf/dl-open.c: Use IS_IN (rtld) instead if IS_IN_rtld.
1793         * elf/rtld-Rules: Likewise.
1794         * elf/setup-vdso.h: Likewise.
1795         * include/assert.h: Likewise.
1796         * include/bits/stdlib-float.h: Likewise.
1797         * include/errno.h: Likewise.
1798         * include/sys/stat.h: Likewise.
1799         * include/unistd.h: Likewise.
1800         * sysdeps/aarch64/setjmp.S: Likewise.
1801         * sysdeps/alpha/setjmp.S: Likewise.
1802         * sysdeps/arm/__longjmp.S: Likewise.
1803         * sysdeps/arm/aeabi_unwind_cpp_pr1.c: Likewise.
1804         * sysdeps/arm/setjmp.S: Likewise.
1805         * sysdeps/arm/sysdep.h: Likewise.
1806         * sysdeps/generic/_itoa.h: Likewise.
1807         * sysdeps/generic/dl-sysdep.h: Likewise.
1808         * sysdeps/generic/ldsodefs.h: Likewise.
1809         * sysdeps/i386/dl-tls.h: Likewise.
1810         * sysdeps/i386/setjmp.S: Likewise.
1811         * sysdeps/m68k/setjmp.c: Likewise.
1812         * sysdeps/mach/hurd/dl-execstack.c: Likewise.
1813         * sysdeps/mach/hurd/opendir.c: Likewise.
1814         * sysdeps/posix/getcwd.c: Likewise.
1815         * sysdeps/posix/opendir.c: Likewise.
1816         * sysdeps/posix/profil.c: Likewise.
1817         * sysdeps/powerpc/dl-procinfo.h: Likewise.
1818         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
1819         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
1820         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
1821         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
1822         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Likewise.
1823         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
1824         * sysdeps/s390/dl-tls.h: Likewise.
1825         * sysdeps/s390/s390-32/setjmp.S: Likewise.
1826         * sysdeps/s390/s390-64/setjmp.S: Likewise.
1827         * sysdeps/sh/sh3/setjmp.S: Likewise.
1828         * sysdeps/sh/sh4/setjmp.S: Likewise.
1829         * sysdeps/unix/alpha/sysdep.h: Likewise.
1830         * sysdeps/unix/arm/sysdep.S: Likewise.
1831         * sysdeps/unix/i386/sysdep.S: Likewise.
1832         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1833         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
1834         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
1835         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
1836         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1837         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: Likewise.
1838         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
1839         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1840         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: Likewise.
1841         * sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: Likewise.
1842         * sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Likewise.
1843         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
1844         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
1845         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
1846         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
1847         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
1848         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
1849         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
1850         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
1851         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
1852         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
1853         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
1854         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
1855         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
1856         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1857         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
1858         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
1859         * sysdeps/unix/x86_64/sysdep.S: Likewise.
1860         * sysdeps/x86_64/setjmp.S: Likewise.
1861
1862         * include/math.h: Use IS_IN instead of IS_IN_libm.
1863         * sysdeps/alpha/fpu/s_copysign.c: Likewise.
1864         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
1865         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
1866         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: Likewise.
1867         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
1868         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
1869         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
1870         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
1871         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
1872         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
1873         * sysdeps/ieee754/ldbl-64-128/s_copysignl.c: Likewise.
1874         * sysdeps/ieee754/ldbl-64-128/s_finitel.c: Likewise.
1875         * sysdeps/ieee754/ldbl-64-128/s_frexpl.c: Likewise.
1876         * sysdeps/ieee754/ldbl-64-128/s_isinfl.c: Likewise.
1877         * sysdeps/ieee754/ldbl-64-128/s_isnanl.c: Likewise.
1878         * sysdeps/ieee754/ldbl-64-128/s_modfl.c: Likewise.
1879         * sysdeps/ieee754/ldbl-64-128/s_scalbnl.c: Likewise.
1880         * sysdeps/ieee754/ldbl-64-128/s_signbitl.c: Likewise.
1881         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: Likewise.
1882         * sysdeps/ieee754/ldbl-opt/s_copysign.c: Likewise.
1883         * sysdeps/ieee754/ldbl-opt/s_finite.c: Likewise.
1884         * sysdeps/ieee754/ldbl-opt/s_frexp.c: Likewise.
1885         * sysdeps/ieee754/ldbl-opt/s_isinf.c: Likewise.
1886         * sysdeps/ieee754/ldbl-opt/s_isnan.c: Likewise.
1887         * sysdeps/ieee754/ldbl-opt/s_ldexp.c: Likewise.
1888         * sysdeps/ieee754/ldbl-opt/s_ldexpl.c: Likewise.
1889         * sysdeps/ieee754/ldbl-opt/s_modf.c: Likewise.
1890         * sysdeps/ieee754/ldbl-opt/s_scalbln.c: Likewise.
1891         * sysdeps/ieee754/ldbl-opt/s_scalbn.c: Likewise.
1892         * sysdeps/powerpc/power5+/fpu/s_modf.c: Likewise.
1893         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Likewise.
1894         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
1895         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
1896         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c:
1897         Likewise.
1898         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c:
1899         Likewise.
1900         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c:
1901         Likewise.
1902         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c:
1903         Likewise.
1904         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c:
1905         Likewise.
1906         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
1907         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Likewise.
1908         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
1909         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
1910         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
1911         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
1912         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: Likewise.
1913         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: Likewise.
1914         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: Likewise.
1915         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: Likewise.
1916         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: Likewise.
1917         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Likewise.
1918         * sysdeps/powerpc/powerpc64/fpu/s_copysignl.S: Likewise.
1919         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
1920         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
1921         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
1922         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
1923         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
1924         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
1925         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
1926         * sysdeps/powerpc/powerpc64/power7/fpu/s_isnan.S: Likewise.
1927         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: Likewise.
1928         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: Likewise.
1929         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: Likewise.
1930         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: Likewise.
1931         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
1932         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S: Likewise.
1933
1934         * nptl/lowlevellock.c: Use IS_IN instead of IS_IN_libpthread.
1935         * nptl/pthreadP.h: Likewise.
1936         * nptl_db/structs.def: Likewise.
1937         * sysdeps/arm/sysdep.h: Likewise.
1938         * sysdeps/nptl/bits/libc-lock.h: Likewise.
1939         * sysdeps/nptl/bits/libc-lockP.h: Likewise.
1940         * sysdeps/sparc/sparc32/lowlevellock.c: Likewise.
1941         * sysdeps/unix/alpha/sysdep.h: Likewise.
1942         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1943         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
1944         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1945         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1946         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1947         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1948         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
1949         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1950         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1951         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1952         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1953         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1954         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1955         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1956         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: Likewise.
1957         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: Likewise.
1958         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1959         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1960         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1961         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1962         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1963         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1964         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
1965         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1966         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: Likewise.
1967         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1968
1969         * include/mqueue.h: Use IS_IN instead of IS_IN_librt.
1970         * nptl/pthreadP.h: Likewise.
1971         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: Likewise.
1972         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: Likewise.
1973         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: Likewise.
1974         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Likewise.
1975         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Likewise.
1976         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: Likewise.
1977         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
1978         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: Likewise.
1979         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: Likewise.
1980         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: Likewise.
1981         * sysdeps/unix/sysv/linux/mips/sysdep-cancel.h: Likewise.
1982         * sysdeps/unix/sysv/linux/not-cancel.h: Likewise.
1983         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
1984         Likewise.
1985         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
1986         Likewise.
1987         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Likewise.
1988         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Likewise.
1989         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Likewise.
1990         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Likewise.
1991         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Likewise.
1992         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: Likewise.
1993         * sysdeps/unix/sysv/linux/tile/waitpid.S: Likewise.
1994         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Likewise.
1995
1996         * dlfcn/dladdr.c: Use IS_IN.
1997         * dlfcn/dladdr1.c: Likewise.
1998         * dlfcn/dlclose.c: Likewise.
1999         * dlfcn/dlerror.c: Likewise.
2000         * dlfcn/dlinfo.c: Likewise.
2001         * dlfcn/dlmopen.c: Likewise.
2002         * dlfcn/dlopen.c: Likewise.
2003         * dlfcn/dlsym.c: Likewise.
2004         * dlfcn/dlvsym.c: Likewise.
2005
2006         * include/ifaddrs.h: Use IS_IN.
2007         * inet/check_pf.c: Likewise.
2008         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
2009         * nscd/Makefile (CPPFLAGS-nscd): Remove IS_IN_nscd.
2010
2011         * elf/Makefile (CFLAGS-ldconfig.c): Remove definition of
2012         IS_IN_ldconfig.
2013         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.c: Use IS_IN.
2014         * sysdeps/unix/sysv/linux/x86_64/dl-procinfo.h: Likewise.
2015
2016         * include/shlib-compat.h [!NOT_IN_libc]: Remove.
2017         * nss/nss_files/files-parse.c (IS_IN_libc): Replace with
2018         IS_IN (libc).
2019
2020         * elf/Makefile (libof-sotruss-lib): Set as extramodules.
2021
2022         * elf/Makefile (CPPFLAGS-.os): Remove IN_LIB.
2023         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
2024         * extra-lib.mk (CPPFLAGS-$(lib)): Likewise.
2025         * include/libc-symbols.h (IS_IN_LIB): New macro.
2026         * include/errno.h: Use IS_IN_LIB instead of IN_LIB.
2027         * include/netdb.h: Likewise.
2028         * include/stap-probe.h: Remove all uses of IN_LIB.
2029
2030         * Makeconfig (module-cppflags-real): Define MODULE_NAME
2031         instead of IN_MODULE.
2032         * include/libc-symbols.h (IN_MODULE): Define using
2033         MODULE_NAME.
2034         (PASTE_NAME, PASTE_NAME1): New macros.
2035         * include/stap-probe.h (LIBC_PROBE_1): Use MODULE_NAME instead
2036         of IN_LIB.
2037         (STAP_PROBE_ASM): Likewise.
2038
2039 2014-11-23  Samuel Thibault  <samuel.thibault@ens-lyon.org>
2040
2041         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Call
2042         __mach_init in dlopened libc.
2043
2044 2014-11-22  Mike Frysinger  <vapier@gentoo.org>
2045
2046         * sysdeps/arm/preconfigure.ac: Delete EABI check.
2047         * sysdeps/arm/preconfigure: Regenerate.
2048
2049 2014-11-21  Roland McGrath  <roland@hack.frob.com>
2050
2051         * nptl/pthread_create.c (__pthread_create_2_1): Set
2052         ATTR_FLAG_POLICY_SET and/or ATTR_FLAG_SCHED_SET in PD->flags
2053         when copying values from IATTR into PD.
2054
2055 2014-11-21  Will Newton  <will.newton@linaro.org>
2056             Andrew Pinski  <andrew.pinski@caviumnetworks.com>
2057
2058         * sysdeps/aarch64/dl-machine.h (elf_machine_load_address):
2059         Refactor inline-asm.  Also add comment.
2060
2061         * sysdeps/aarch64/bits/link.h (la_aarch64_gnu_pltenter): Use
2062         ElfW macro instead of hardcoded Elf64 types.
2063         (la_aarch64_gnu_pltenter): Likewise.
2064         * sysdeps/aarch64/dl-machine.h
2065         (elf_machine_runtime_setup): Use ElfW(Addr).
2066
2067         * elf/elf.h (R_AARCH64_P32_ABS32, R_AARCH64_P32_COPY,
2068         R_AARCH64_P32_GLOB_DAT, R_AARCH64_P32_JUMP_SLOT,
2069         R_AARCH64_P32_RELATIVE, R_AARCH64_P32_TLS_DTPMOD,
2070         R_AARCH64_P32_TLS_DTPREL, R_AARCH64_P32_TLS_TPREL,
2071         R_AARCH64_P32_TLSDESC, R_AARCH64_P32_IRELATIVE): Define.
2072         (R_AARCH64_TLS_DTPMOD64): Rename to ..
2073         (R_AARCH64_TLS_DTPMOD): This.
2074         (R_AARCH64_TLS_DTPREL64): Rename to ...
2075         (R_AARCH64_TLS_DTPREL): This.
2076         (R_AARCH64_TLS_TPREL64): Rename to ...
2077         (R_AARCH64_TLS_TPREL): This.
2078         * sysdeps/aarch64/dl-machine.h (elf_machine_type_class): Update
2079         R_AARCH64_TLS_DTPMOD64, R_AARCH64_TLS_DTPREL64, and
2080         R_AARCH64_TLS_TPREL64.
2081         (elf_machine_rela): Likewise.
2082
2083 2014-11-21  Torvald Riegel  <triegel@redhat.com>
2084
2085         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS): Fix value
2086         by setting it to 0.  64b atomics are not supported currently.
2087
2088 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2089
2090         [BZ #16469]
2091         * resolv/res_query.c (__libc_res_nsearch): Skip leading dot in
2092         search domain names.
2093
2094 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2095
2096         [BZ #16469]
2097         * NEWS: Update.
2098         * resolv/res_query.c (__libc_res_nquerydomain): Retain
2099         trailing dot.
2100         * posix/tst-getaddrinfo5.c: New.
2101         * posix/Makefile (tests): Add it.
2102
2103 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2104
2105         [BZ #14498]
2106         * NEWS: Fixed.
2107         * nss/nss_db/db-XXX.c (_nss_db_get##name##_r): Update hidx
2108         after parsing line but before break_if_match.
2109         * nss/nss_files/files-service (DB_LOOKUP): Don't "continue;"
2110         if there is a protocol mismatch.
2111
2112 2014-11-21  Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>
2113
2114         * manual/sysinfo.texi (addmntent): It is actually MT-Safe,
2115         because the potential race is on the user-supplied stream.
2116
2117 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2118
2119         * sysdeps/posix/ctermid.c (ctermid): Return a pointer to a
2120         string literal if not passed a buffer.
2121         * manual/job.texi (ctermid): Update reasoning, note deviation
2122         from posix, suggest mtasurace when not passed a buffer, for
2123         future non-preliminary safety notes.
2124
2125 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2126
2127         * manual/users.texi (cuserid): Fix MT-Safety note for the case
2128         of not passing it a buffer.
2129         Reported by Peng Haitao.
2130
2131 2014-11-21  Alexandre Oliva <aoliva@redhat.com>
2132
2133         * manual/Makefile ($(objpfx)stamp-summary): Require
2134         check-safety.sh to pass.
2135         * manual/check-safety.sh: Wish for verification that every
2136         @deftypefn and @deftypefun is followed by a @safety remark.
2137
2138 2014-11-20  Roland McGrath  <roland@hack.frob.com>
2139
2140         * nptl/unwind.c (unwind_cleanup): Use __libc_fatal.
2141
2142         * nptl/pthread_setcanceltype.c [!SIGCANCEL]: Return ENOTSUP early for
2143         PTHREAD_CANCEL_ASYNCHRONOUS.
2144         * nptl/pthread_cancel.c [!SIGCANCEL]: Just abort rather than trying to
2145         send SIGCANCEL.
2146
2147         * nptl/default-sched.h: New file.
2148         * sysdeps/unix/sysv/linux/default-sched.h: New file.
2149         * nptl/pthread_create.c: Include it.
2150         (__pthread_create_2_1): Use collect_default_sched instead of making
2151         Linux syscalls here directly.
2152
2153 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2154
2155         * nptl/pthread_once.c (clear_once_control, __pthread_once_slow,
2156         __pthread_once): Use C11 atomics.
2157
2158 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2159
2160         * csu/tst-atomic.c (do_test): Add tests for C11-like atomics.
2161
2162 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2163
2164         * include/atomic.h (__atomic_link_error, __atomic_check_size,
2165         atomic_thread_fence_acquire, atomic_thread_fence_release,
2166         atomic_thread_fence_seq_cst, atomic_load_relaxed,
2167         atomic_load_acquire, atomic_store_relaxed, atomic_store_release,
2168         atomic_compare_exchange_weak_relaxed,
2169         atomic_compare_exchange_weak_acquire,
2170         atomic_compare_exchange_weak_release,
2171         atomic_exchange_acquire, atomic_exchange_release,
2172         atomic_fetch_add_relaxed, atomic_fetch_add_acquire,
2173         atomic_fetch_add_release, atomic_fetch_add_acq_rel,
2174         atomic_fetch_and_acquire,
2175         atomic_fetch_or_relaxed, atomic_fetch_or_acquire): New.
2176
2177 2014-11-20  Torvald Riegel  <triegel@redhat.com>
2178
2179         * sysdeps/aarch64/bits/atomic.h (__HAVE_64B_ATOMICS,
2180         USE_ATOMIC_COMPILER_BUILTINS): Define.
2181         * sysdeps/alpha/bits/atomic.h (__HAVE_64B_ATOMICS,
2182         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2183         * sysdeps/arm/bits/atomic.h (__HAVE_64B_ATOMICS,
2184         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2185         * sysdeps/i386/i486/bits/atomic.h (__HAVE_64B_ATOMICS,
2186         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2187         * sysdeps/ia64/bits/atomic.h (__HAVE_64B_ATOMICS,
2188         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2189         * sysdeps/m68k/coldfire/bits/atomic.h (__HAVE_64B_ATOMICS,
2190         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2191         * sysdeps/m68k/m680x0/m68020/bits/atomic.h (__HAVE_64B_ATOMICS,
2192         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2193         * sysdeps/microblaze/bits/atomic.h (__HAVE_64B_ATOMICS,
2194         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2195         * sysdeps/mips/bits/atomic.h (__HAVE_64B_ATOMICS,
2196         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2197         * sysdeps/powerpc/powerpc32/bits/atomic.h (__HAVE_64B_ATOMICS,
2198         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2199         * sysdeps/powerpc/powerpc64/bits/atomic.h (__HAVE_64B_ATOMICS,
2200         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2201         * sysdeps/s390/bits/atomic.h (__HAVE_64B_ATOMICS,
2202         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2203         * sysdeps/sparc/sparc32/bits/atomic.h (__HAVE_64B_ATOMICS,
2204         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2205         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (__HAVE_64B_ATOMICS,
2206         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2207         * sysdeps/sparc/sparc64/bits/atomic.h (__HAVE_64B_ATOMICS,
2208         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2209         * sysdeps/tile/tilegx/bits/atomic.h (__HAVE_64B_ATOMICS,
2210         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2211         * sysdeps/tile/tilepro/bits/atomic.h (__HAVE_64B_ATOMICS,
2212         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2213         * sysdeps/unix/sysv/linux/hppa/bits/atomic.h (__HAVE_64B_ATOMICS,
2214         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2215         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h
2216         (__HAVE_64B_ATOMICS, USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2217         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (__HAVE_64B_ATOMICS,
2218         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2219         * sysdeps/x86_64/bits/atomic.h (__HAVE_64B_ATOMICS,
2220         USE_ATOMIC_COMPILER_BUILTINS): Likewise.
2221
2222 2014-11-19  Roland McGrath  <roland@hack.frob.com>
2223
2224         * nptl/pthread_create.c (__pthread_create_2_1): Don't try to validate
2225         the sched_priority value here.  It was already checked when the user
2226         called pthread_attr_setschedparam.
2227
2228         * nptl/tst-bad-schedattr.c: New file.
2229         * nptl/Makefile (tests): Add it.
2230
2231 2014-11-19  Carlos O'Donell  <carlos@redhat.com>
2232             Florian Weimer  <fweimer@redhat.com>
2233             Joseph Myers  <joseph@codesourcery.com>
2234             Adam Conrad  <adconrad@0c3.net>
2235             Andreas Schwab  <schwab@suse.de>
2236             Brooks  <bmoses@google.com>
2237
2238         [BZ #17625]
2239         * wordexp-test.c (__dso_handle): Add prototype.
2240         (__register_atfork): Likewise.
2241         (__app_register_atfork): New function.
2242         (registered_forks): New global.
2243         (register_fork): New function.
2244         (test_case): Add 3 new tests for WRDE_CMDSUB.
2245         (main): Call __app_register_atfork.
2246         (testit): If WRDE_NOCMD set registered_forks to zero, run test, and if
2247         fork count is non-zero fail the test.
2248         * posix/wordexp.c (exec_comm): Return WRDE_CMDSUB if WRDE_NOCMD flag
2249         is set.
2250         (parse_dollars): Remove check for WRDE_NOCMD.
2251         (parse_dquote): Likewise.
2252
2253 2014-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
2254
2255         * Makeconfig (built-modules): List non-library modules to be
2256         built.
2257         (module-cppflags): Include libc-modules.h for
2258         everything except shlib-versions.v.i.
2259         (CPPFLAGS): Use it.
2260         (before-compile): Add libc-modules.h.
2261         ($(common-objpfx)libc-modules.h,
2262         $(common-objpfx)libc-modules.stmp): New targets.
2263         (common-generated): Add libc-modules.h and libc-modules.stmp.
2264         ($(common-objpfx)Versions.v.i): Depend on libc-modules.h.
2265         * include/libc-symbols.h: Don't include libc-modules.h.
2266         * include/libc-modules.h: Remove file.
2267         * scripts/gen-libc-modules.awk: New script to generate
2268         libc-modules.h.
2269         * sysdeps/unix/Makefile ($(common-objpfx)sysd-syscalls):
2270         Depend on libc-modules.stmp.
2271
2272         * include/shlib-compat.h (_SHLIB_COMPAT): Use IS_IN.
2273
2274         * Makeconfig (in-module): Get value of libof set for the
2275         translation unit.
2276         (CPPFLAGS): Use $(in-module).
2277         * Makerules: Don't suffix routine names for nonlib.
2278         * include/libc-modules.h: New file.
2279         * include/libc-symbols.h: Include libc-modules.h
2280         (IS_IN): New macro to replace IS_IN_* macros.
2281         * elf/Makefile: Set libof-* for each routine.
2282         * elf/rtld-Rules: Likewise.
2283         * extra-modules.mk: Likewise.
2284         * iconv/Makefile: Likewise.
2285         * iconvdata/Makefile: Likewise.
2286         * locale/Makefile: Likewise.
2287         * malloc/Makefile: Likewise.
2288         * nss/Makefile: Likewise.
2289         * sysdeps/gnu/Makefile: Likewise.
2290         * sysdeps/ieee754/ldbl-opt/Makefile: Likewise.
2291         * sysdeps/unix/sysv/linux/Makefile: Likewise.
2292         * sysdeps/s390/s390-64/Makefile: Likewise.
2293         * nscd/Makefile: Set libof-* for each routine.  Set CFLAGS and
2294         CPPFLAGS for nscd instead of nonlib.
2295
2296 2014-11-18  Roland McGrath  <roland@hack.frob.com>
2297
2298         * nptl/createthread.c: New file.
2299
2300         * nptl/createthread.c: Moved ...
2301         * sysdeps/unix/sysv/linux/createthread.c: ... here.
2302
2303         * nptl/createthread.c: Add proper top-line comment.
2304         (do_clone): Folded into ...
2305         (create_thread): ... here.  Take new arguments STOPPED_START and
2306         THREAD_RAN.  Always set PD->stopped_start to something here.  Don't
2307         increment __nptl_threads, do event-reporting logic, do
2308         CHECK_THREAD_SYSINFO, or set THREAD_SELF->header.multiple_threads
2309         here.  Set *THREAD_RAN after ARCH_CLONE call succeeds.  Don't do any
2310         resource cleanup if sched_setaffinity or sched_setscheduler fails,
2311         just send SIGCANCEL.
2312         * nptl/pthread_create.c: Forward-declare create_thread before
2313         including createthread.c.
2314         (start_thread): Use new macro START_THREAD_DEFN to replace defining
2315         declaration, and new macro START_THREAD_SELF to replace argument.
2316         Remove return statement.
2317         (report_thread_creation): New function.
2318         (__pthread_create_2_1): Use it.  Do TD_CREATE reporting,
2319         synchronization logic, and __nptl_nthreads increment here, around
2320         calling create_thread.  Do CHECK_THREAD_SYSINFO and initialize
2321         PD->parent_cancelhandling here, before create_thread.  When
2322         create_thread fails, do __nptl_nthreads decrement, setxid_futex wake,
2323         __deallocate_stack, and ENOMEM translation here.
2324
2325 2014-11-18  Joseph Myers  <joseph@codesourcery.com>
2326
2327         [BZ #17616]
2328         * sysdeps/ieee754/dbl-64/mpa.c (mpone): Rename to __mpone.
2329         (mptwo): Rename to __mptwo.
2330         (__inv): Use __mptwo instead of mptwo.
2331         * sysdeps/ieee754/dbl-64/mpa.h (mpone): Rename to __mpone.
2332         (mptwo): Rename to __mptwo.
2333         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __mpone instead
2334         of mpone and __mptwo instead of mptwo.
2335         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Use __mpone
2336         instead of mpone.
2337         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
2338         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Likewise.
2339         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use __mpone instead
2340         of mpone and __mptwo instead of mptwo.
2341         (__mpranred): Use __mpone instead of mpone.
2342         * conform/Makefile (test-xfail-ISO/math.h/linknamespace): Remove
2343         variable.
2344         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
2345         (test-xfail-ISO99/math.h/linknamespace): Likewise.
2346         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
2347         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
2348         (test-xfail-ISO11/math.h/linknamespace): Likewise.
2349         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
2350         (test-xfail-XPG3/math.h/linknamespace): Likewise.
2351         (test-xfail-XPG4/math.h/linknamespace): Likewise.
2352         (test-xfail-POSIX/math.h/linknamespace): Likewise.
2353         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
2354         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
2355         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
2356         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
2357         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
2358         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
2359         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
2360         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
2361         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
2362         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
2363
2364 2014-11-18  Tom de Vries  <tom@codesoucery.com>
2365
2366         * manual/signal.texi (Primitives Interrupted by Signals): In section,
2367         replace BSD Handler xref with BSD Signal Handling.
2368
2369 2014-11-17  Richard Henderson  <rth@redhat.com>
2370
2371         * sysdeps/alpha/soft-fp/local-soft-fp.h (_FP_UNPACK_RAW_2): Remove.
2372         (_FP_PACK_RAW_2): Remove.
2373         (AXP_DECL_RETURN_Q): Rename from FP_DECL_RETURN, use _FP_UNION_Q.
2374         (AXP_RETURN_Q): Rename from FP_RETURN, use _FP_UNION_Q.
2375         (AXP_UNPACK_RAW_Q, AXP_UNPACK_SEMIRAW_Q, AXP_UNPACK_Q): New.
2376         (AXP_PACK_RAW_Q, AXP_PACK_SEMIRAW_Q, AXP_PACK_Q): New.
2377         * sysdeps/alpha/soft-fp/ots_add.c (_OtsAddX): Update to match.
2378         * sysdeps/alpha/soft-fp/ots_cmp.c (internal_equality): Likewise.
2379         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Likewise.
2380         * sysdeps/alpha/soft-fp/ots_cvtqux.c (_OtsCvtQUX): Likewise.
2381         * sysdeps/alpha/soft-fp/ots_cvtqx.c (_OtsCvtQX): Likewise.
2382         * sysdeps/alpha/soft-fp/ots_cvttx.c (_OtsConvertFloatTX): Likewise.
2383         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Likewise.
2384         * sysdeps/alpha/soft-fp/ots_cvtxt.c (_OtsConvertFloatXT): Likewise.
2385         * sysdeps/alpha/soft-fp/ots_div.c (_OtsDivX): Likewise.
2386         * sysdeps/alpha/soft-fp/ots_mul.c (_OtsMulX): Likewise.
2387         * sysdeps/alpha/soft-fp/ots_nintxq.c (_OtsNintXQ): Likewise.
2388         * sysdeps/alpha/soft-fp/ots_sub.c (_OtsSubX): Likewise.
2389
2390 2014-11-14  Roland McGrath  <roland@hack.frob.com>
2391
2392         * signal/signal.h [__USE_MISC]
2393         (struct sigvec): Remove type.
2394         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): Remove macros.
2395         (sigvec): Remove declaration.
2396         * sysdeps/posix/sigvec.c: Moved ...
2397         * signal/sigvec.c: ... here, replacing old file.
2398         (struct sigvec): New type, copied from old signal.h definition.
2399         (SV_ONSTACK, SV_INTERRUPT, SV_RESETHAND): New macros, likewise copied.
2400         (__sigvec): Convert definition to prototype.
2401         (sigvec): Replace weak_alias with compat_symbol.
2402         * signal/Versions (libc: GLIBC_2.21): New version set.
2403         * include/signal.h: Remove __sigvec declaration.
2404         * sysdeps/unix/bsd/sigvec.c: Remove file.
2405         * sysdeps/unix/bsd/syscalls.list: Remove sigvec.
2406         * manual/signal.texi (BSD Handler): Remove subsection.
2407         Move siginterrupt up to ...
2408         (BSD Signal Handling): ... here.  Mark it as XPG rather than BSD.
2409         (Blocking in BSD): Fold subsection into its parent.
2410         * NEWS: Mention sigvec removal.
2411
2412 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
2413
2414         * sysdeps/x86_64/fpu/dla.h [__FMA4__ && __GNUC_PREREQ (4, 6)]
2415         (DLA_FMS): Make definition conditional only on [__FMA4__].
2416         [__FMA4__ && !__GNUC_PREREQ (4, 6)] (DLA_FMS): Remove conditional
2417         definition.
2418
2419         * sysdeps/arm/sysdep.h [PROF && __GNUC_PREREQ(4,4)] (CALL_MCOUNT):
2420         Make definition conditional only on [PROF].
2421         [PROF && !__GNUC_PREREQ(4,4)] (CALL_MCOUNT): Remove conditional
2422         definition.
2423         [__GNUC_PREREQ(4,4)] (mcount): Make definition unconditional.
2424         [!__GNUC_PREREQ(4,4)] (mcount): Remove conditional definition.
2425
2426         * signal/signal.h (__sigpause): Only declare if [__USE_XOPEN &&
2427         !__GNUC__].
2428         * include/signal.h (__sigpause): Move declaration above call to
2429         libc_hidden_proto.
2430         * conform/Makefile (test-xfail-ISO/signal.h/linknamespace): Remove
2431         variable.
2432         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
2433         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
2434
2435 2014-11-14  David S. Miller  <davem@davemloft.net>
2436
2437         * sysdeps/sparc/sparc64/rtld-memcpy.c (NO_MEMPCPY_STPCPY_REDIRECT):
2438         Define before including <string/memcpy.c> and <string/mempcpy.c>.
2439
2440 2014-11-14  Joseph Myers  <joseph@codesourcery.com>
2441
2442         * configure.ac (libc_cv_compiler_ok): Require GCC 4.6 or later.
2443         * configure: Regenerated.
2444         * manual/install.texi (Tools for Compilation): Document a
2445         requirement of GCC 4.6 or later and that GCC 4.9 is the newest
2446         compiler verified to work.
2447         * INSTALL: Regenerated.
2448
2449         * include/string.h [NO_MEMPCPY_STPCPY_REDIRECT] (mempcpy): Do not
2450         redeclare with asm name.
2451         [NO_MEMPCPY_STPCPY_REDIRECT] (stpcpy): Likewise.
2452         * string/mempcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Define before
2453         including <string.h>.
2454         * string/stpcpy.c (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2455         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c
2456         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2457         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c
2458         [!NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2459         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c
2460         [SHARED && !NOT_IN_libc] (NO_MEMPCPY_STPCPY_REDIRECT): Likewise.
2461
2462 2014-11-13  Joseph Myers  <joseph@codesourcery.com>
2463
2464         * stdlib/strtol.c (__strtol): Use prototype definition.
2465
2466         [BZ #17594]
2467         * stdlib/strtol.c (SYM__): New macro.
2468         (SYM__1): Likewise.
2469         (__strtol): Likewise.
2470         (strtol): Rename to __strtol and define as weak alias of
2471         __strtol.  Use libc_hidden_weak.
2472
2473 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2474
2475         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START):
2476         Use numbered labels in inline assembly.
2477
2478 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2479
2480         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp):
2481         Add setjmp LIBC_PROBE.
2482         * sysdeps/s390/s390-64/setjmp.S (__sigsetjmp):
2483         Likewise.
2484         * sysdeps/s390/s390-32/__longjmp.c (__longjmp):
2485         Add longjmp, longjmp_target LIBC_PROBE.
2486         * sysdeps/s390/s390-64/__longjmp.c (__longjmp):
2487         Likewise.
2488
2489 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2490
2491         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
2492         Gate the definition of refsym additionally with !RTLD_BOOTSTRAP
2493         to get rid of unused variable warning.
2494
2495 2014-11-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
2496
2497         * sysdeps/s390/s390-32/backtrace.c (__backtrace):
2498         Check for unwind_backtrace ==  NULL only in SHARED case.
2499         (__backchain_backtrace): Compile only in SHARED case.
2500         * sysdeps/s390/s390-64/backtrace.c (__backtrace):
2501         Likewise.
2502         (__backchain_backtrace): Declare as static.
2503
2504 2014-11-12  Roland McGrath  <roland@hack.frob.com>
2505
2506         * nptl/createthread.c [!TLS_MULTIPLE_THREADS_IN_TCB]
2507         (__libc_multiple_threads_ptr): Variable moved ...
2508         * nptl/nptl-init.c [!TLS_MULTIPLE_THREADS_IN_TCB]: ... here.
2509
2510 2014-11-12  Joseph Myers  <joseph@codesourcery.com>
2511
2512         * conform/GlibcConform.pm: New file.
2513         * conform/conformtest.pl: Use GlibcConform module.
2514         * conform/linknamespace.pl: New file.
2515         * conform/list-header-symbols.pl: Likewise.
2516         * conform/Makefile (linknamespace-symlists-base): New variable.
2517         (linknamespace-symlists-tests): Likewise.
2518         (linknamespace-header-base): Likewise.
2519         (linknamespace-header-tests): Likewise.
2520         (tests-special): Add new tests.
2521         ($(linknamespace-symlists-tests)): New rule.
2522         (linknamespace-libs): New variable.
2523         ($(objpfx)symlist-stdlibs): New rule.
2524         ($(linknamespace-header-tests)): Likewise.
2525         (test-xfail-XPG3/varargs.h/linknamespace): New variable.
2526         (test-xfail-XPG4/varargs.h/linknamespace): Likewise.
2527         (test-xfail-UNIX98/varargs.h/linknamespace): Likewise.
2528         (test-xfail-XPG4/ndbm.h/linknamespace): Likewise.
2529         (test-xfail-UNIX98/ndbm.h/linknamespace): Likewise.
2530         (test-xfail-XOPEN2K/ndbm.h/linknamespace): Likewise.
2531         (test-xfail-XOPEN2K8/ndbm.h/linknamespace): Likewise.
2532         (test-xfail-ISO/math.h/linknamespace): Likewise.
2533         (test-xfail-ISO/signal.h/linknamespace): Likewise.
2534         (test-xfail-ISO/stdio.h/linknamespace): Likewise.
2535         (test-xfail-ISO/time.h/linknamespace): Likewise.
2536         (test-xfail-ISO99/complex.h/linknamespace): Likewise.
2537         (test-xfail-ISO99/ctype.h/linknamespace): Likewise.
2538         (test-xfail-ISO99/math.h/linknamespace): Likewise.
2539         (test-xfail-ISO99/signal.h/linknamespace): Likewise.
2540         (test-xfail-ISO99/stdio.h/linknamespace): Likewise.
2541         (test-xfail-ISO99/tgmath.h/linknamespace): Likewise.
2542         (test-xfail-ISO11/complex.h/linknamespace): Likewise.
2543         (test-xfail-ISO11/ctype.h/linknamespace): Likewise.
2544         (test-xfail-ISO11/math.h/linknamespace): Likewise.
2545         (test-xfail-ISO11/signal.h/linknamespace): Likewise.
2546         (test-xfail-ISO11/stdio.h/linknamespace): Likewise.
2547         (test-xfail-ISO11/tgmath.h/linknamespace): Likewise.
2548         (test-xfail-XPG3/ctype.h/linknamespace): Likewise.
2549         (test-xfail-XPG3/fnmatch.h/linknamespace): Likewise.
2550         (test-xfail-XPG3/glob.h/linknamespace): Likewise.
2551         (test-xfail-XPG3/math.h/linknamespace): Likewise.
2552         (test-xfail-XPG3/regex.h/linknamespace): Likewise.
2553         (test-xfail-XPG3/search.h/linknamespace): Likewise.
2554         (test-xfail-XPG3/stdio.h/linknamespace): Likewise.
2555         (test-xfail-XPG3/time.h/linknamespace): Likewise.
2556         (test-xfail-XPG3/unistd.h/linknamespace): Likewise.
2557         (test-xfail-XPG3/wordexp.h/linknamespace): Likewise.
2558         (test-xfail-XPG4/ctype.h/linknamespace): Likewise.
2559         (test-xfail-XPG4/fmtmsg.h/linknamespace): Likewise.
2560         (test-xfail-XPG4/fnmatch.h/linknamespace): Likewise.
2561         (test-xfail-XPG4/glob.h/linknamespace): Likewise.
2562         (test-xfail-XPG4/grp.h/linknamespace): Likewise.
2563         (test-xfail-XPG4/libgen.h/linknamespace): Likewise.
2564         (test-xfail-XPG4/math.h/linknamespace): Likewise.
2565         (test-xfail-XPG4/netdb.h/linknamespace): Likewise.
2566         (test-xfail-XPG4/pwd.h/linknamespace): Likewise.
2567         (test-xfail-XPG4/regex.h/linknamespace): Likewise.
2568         (test-xfail-XPG4/search.h/linknamespace): Likewise.
2569         (test-xfail-XPG4/stdio.h/linknamespace): Likewise.
2570         (test-xfail-XPG4/stdlib.h/linknamespace): Likewise.
2571         (test-xfail-XPG4/sys/mman.h/linknamespace): Likewise.
2572         (test-xfail-XPG4/sys/statvfs.h/linknamespace): Likewise.
2573         (test-xfail-XPG4/syslog.h/linknamespace): Likewise.
2574         (test-xfail-XPG4/time.h/linknamespace): Likewise.
2575         (test-xfail-XPG4/unistd.h/linknamespace): Likewise.
2576         (test-xfail-XPG4/wordexp.h/linknamespace): Likewise.
2577         (test-xfail-POSIX/aio.h/linknamespace): Likewise.
2578         (test-xfail-POSIX/fnmatch.h/linknamespace): Likewise.
2579         (test-xfail-POSIX/glob.h/linknamespace): Likewise.
2580         (test-xfail-POSIX/math.h/linknamespace): Likewise.
2581         (test-xfail-POSIX/mqueue.h/linknamespace): Likewise.
2582         (test-xfail-POSIX/pthread.h/linknamespace): Likewise.
2583         (test-xfail-POSIX/regex.h/linknamespace): Likewise.
2584         (test-xfail-POSIX/sched.h/linknamespace): Likewise.
2585         (test-xfail-POSIX/semaphore.h/linknamespace): Likewise.
2586         (test-xfail-POSIX/sys/mman.h/linknamespace): Likewise.
2587         (test-xfail-POSIX/time.h/linknamespace): Likewise.
2588         (test-xfail-POSIX/unistd.h/linknamespace): Likewise.
2589         (test-xfail-POSIX/wordexp.h/linknamespace): Likewise.
2590         (test-xfail-UNIX98/aio.h/linknamespace): Likewise.
2591         (test-xfail-UNIX98/ctype.h/linknamespace): Likewise.
2592         (test-xfail-UNIX98/fmtmsg.h/linknamespace): Likewise.
2593         (test-xfail-UNIX98/fnmatch.h/linknamespace): Likewise.
2594         (test-xfail-UNIX98/glob.h/linknamespace): Likewise.
2595         (test-xfail-UNIX98/grp.h/linknamespace): Likewise.
2596         (test-xfail-UNIX98/libgen.h/linknamespace): Likewise.
2597         (test-xfail-UNIX98/math.h/linknamespace): Likewise.
2598         (test-xfail-UNIX98/mqueue.h/linknamespace): Likewise.
2599         (test-xfail-UNIX98/netdb.h/linknamespace): Likewise.
2600         (test-xfail-UNIX98/pthread.h/linknamespace): Likewise.
2601         (test-xfail-UNIX98/pwd.h/linknamespace): Likewise.
2602         (test-xfail-UNIX98/regex.h/linknamespace): Likewise.
2603         (test-xfail-UNIX98/sched.h/linknamespace): Likewise.
2604         (test-xfail-UNIX98/search.h/linknamespace): Likewise.
2605         (test-xfail-UNIX98/semaphore.h/linknamespace): Likewise.
2606         (test-xfail-UNIX98/stdio.h/linknamespace): Likewise.
2607         (test-xfail-UNIX98/stdlib.h/linknamespace): Likewise.
2608         (test-xfail-UNIX98/sys/mman.h/linknamespace): Likewise.
2609         (test-xfail-UNIX98/sys/statvfs.h/linknamespace): Likewise.
2610         (test-xfail-UNIX98/syslog.h/linknamespace): Likewise.
2611         (test-xfail-UNIX98/time.h/linknamespace): Likewise.
2612         (test-xfail-UNIX98/unistd.h/linknamespace): Likewise.
2613         (test-xfail-UNIX98/wchar.h/linknamespace): Likewise.
2614         (test-xfail-UNIX98/wordexp.h/linknamespace): Likewise.
2615         (test-xfail-XOPEN2K/aio.h/linknamespace): Likewise.
2616         (test-xfail-XOPEN2K/complex.h/linknamespace): Likewise.
2617         (test-xfail-XOPEN2K/fcntl.h/linknamespace): Likewise.
2618         (test-xfail-XOPEN2K/fmtmsg.h/linknamespace): Likewise.
2619         (test-xfail-XOPEN2K/fnmatch.h/linknamespace): Likewise.
2620         (test-xfail-XOPEN2K/glob.h/linknamespace): Likewise.
2621         (test-xfail-XOPEN2K/grp.h/linknamespace): Likewise.
2622         (test-xfail-XOPEN2K/libgen.h/linknamespace): Likewise.
2623         (test-xfail-XOPEN2K/math.h/linknamespace): Likewise.
2624         (test-xfail-XOPEN2K/mqueue.h/linknamespace): Likewise.
2625         (test-xfail-XOPEN2K/net/if.h/linknamespace): Likewise.
2626         (test-xfail-XOPEN2K/netdb.h/linknamespace): Likewise.
2627         (test-xfail-XOPEN2K/pthread.h/linknamespace): Likewise.
2628         (test-xfail-XOPEN2K/pwd.h/linknamespace): Likewise.
2629         (test-xfail-XOPEN2K/regex.h/linknamespace): Likewise.
2630         (test-xfail-XOPEN2K/search.h/linknamespace): Likewise.
2631         (test-xfail-XOPEN2K/semaphore.h/linknamespace): Likewise.
2632         (test-xfail-XOPEN2K/signal.h/linknamespace): Likewise.
2633         (test-xfail-XOPEN2K/spawn.h/linknamespace): Likewise.
2634         (test-xfail-XOPEN2K/stdlib.h/linknamespace): Likewise.
2635         (test-xfail-XOPEN2K/sys/mman.h/linknamespace): Likewise.
2636         (test-xfail-XOPEN2K/sys/statvfs.h/linknamespace): Likewise.
2637         (test-xfail-XOPEN2K/sys/wait.h/linknamespace): Likewise.
2638         (test-xfail-XOPEN2K/syslog.h/linknamespace): Likewise.
2639         (test-xfail-XOPEN2K/tgmath.h/linknamespace): Likewise.
2640         (test-xfail-XOPEN2K/time.h/linknamespace): Likewise.
2641         (test-xfail-XOPEN2K/ucontext.h/linknamespace): Likewise.
2642         (test-xfail-XOPEN2K/unistd.h/linknamespace): Likewise.
2643         (test-xfail-XOPEN2K/wordexp.h/linknamespace): Likewise.
2644         (test-xfail-POSIX2008/aio.h/linknamespace): Likewise.
2645         (test-xfail-POSIX2008/complex.h/linknamespace): Likewise.
2646         (test-xfail-POSIX2008/ctype.h/linknamespace): Likewise.
2647         (test-xfail-POSIX2008/dirent.h/linknamespace): Likewise.
2648         (test-xfail-POSIX2008/fcntl.h/linknamespace): Likewise.
2649         (test-xfail-POSIX2008/grp.h/linknamespace): Likewise.
2650         (test-xfail-POSIX2008/math.h/linknamespace): Likewise.
2651         (test-xfail-POSIX2008/mqueue.h/linknamespace): Likewise.
2652         (test-xfail-POSIX2008/net/if.h/linknamespace): Likewise.
2653         (test-xfail-POSIX2008/netdb.h/linknamespace): Likewise.
2654         (test-xfail-POSIX2008/pthread.h/linknamespace): Likewise.
2655         (test-xfail-POSIX2008/regex.h/linknamespace): Likewise.
2656         (test-xfail-POSIX2008/semaphore.h/linknamespace): Likewise.
2657         (test-xfail-POSIX2008/spawn.h/linknamespace): Likewise.
2658         (test-xfail-POSIX2008/sys/mman.h/linknamespace): Likewise.
2659         (test-xfail-POSIX2008/sys/statvfs.h/linknamespace): Likewise.
2660         (test-xfail-POSIX2008/tgmath.h/linknamespace): Likewise.
2661         (test-xfail-POSIX2008/time.h/linknamespace): Likewise.
2662         (test-xfail-POSIX2008/unistd.h/linknamespace): Likewise.
2663         (test-xfail-XOPEN2K8/aio.h/linknamespace): Likewise.
2664         (test-xfail-XOPEN2K8/complex.h/linknamespace): Likewise.
2665         (test-xfail-XOPEN2K8/dirent.h/linknamespace): Likewise.
2666         (test-xfail-XOPEN2K8/fcntl.h/linknamespace): Likewise.
2667         (test-xfail-XOPEN2K8/fmtmsg.h/linknamespace): Likewise.
2668         (test-xfail-XOPEN2K8/grp.h/linknamespace): Likewise.
2669         (test-xfail-XOPEN2K8/libgen.h/linknamespace): Likewise.
2670         (test-xfail-XOPEN2K8/math.h/linknamespace): Likewise.
2671         (test-xfail-XOPEN2K8/mqueue.h/linknamespace): Likewise.
2672         (test-xfail-XOPEN2K8/net/if.h/linknamespace): Likewise.
2673         (test-xfail-XOPEN2K8/netdb.h/linknamespace): Likewise.
2674         (test-xfail-XOPEN2K8/pthread.h/linknamespace): Likewise.
2675         (test-xfail-XOPEN2K8/pwd.h/linknamespace): Likewise.
2676         (test-xfail-XOPEN2K8/regex.h/linknamespace): Likewise.
2677         (test-xfail-XOPEN2K8/search.h/linknamespace): Likewise.
2678         (test-xfail-XOPEN2K8/semaphore.h/linknamespace): Likewise.
2679         (test-xfail-XOPEN2K8/spawn.h/linknamespace): Likewise.
2680         (test-xfail-XOPEN2K8/sys/mman.h/linknamespace): Likewise.
2681         (test-xfail-XOPEN2K8/sys/statvfs.h/linknamespace): Likewise.
2682         (test-xfail-XOPEN2K8/syslog.h/linknamespace): Likewise.
2683         (test-xfail-XOPEN2K8/tgmath.h/linknamespace): Likewise.
2684         (test-xfail-XOPEN2K8/time.h/linknamespace): Likewise.
2685         (test-xfail-XOPEN2K8/unistd.h/linknamespace): Likewise.
2686
2687         [BZ #17589]
2688         * intl/localealias.c [_LIBC] (FGETS): Use __fgets_unlocked instead
2689         of fgets_unlocked.
2690
2691         [BZ #17585]
2692         * string/memmem.c [!_LIBC] (__memmem): Define to memmem.
2693         (memmem): Rename to __memmem and define as weak alias of
2694         __memmem.  Use libc_hidden_weak.
2695         (__memmem): Use libc_hidden_def.
2696         * include/string.h (__memmem): Declare.  Use libc_hidden_proto.
2697         * locale/findlocale.c (valid_locale_name): Use __memmem instead of
2698         memmem.
2699
2700         [BZ #17582]
2701         * libio/iofgets.c [weak_alias && !_IO_MTSAFE_IO]
2702         (__fgets_unlocked): Add alias of _IO_fgets.  Use libc_hidden_def.
2703         * libio/iofgets_u.c (fgets_unlocked): Rename to __fgets_unlocked
2704         and define as weak alias of __fgets_unlocked.  Use
2705         libc_hidden_weak.
2706         (__fgets_unlocked): Use libc_hidden_def.
2707         * include/stdio.h (__fgets_unlocked): Declare.  Use
2708         libc_hidden_proto.
2709         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Use
2710         __fgets_unlocked instead of fgets_unlocked.
2711         * sysdeps/unix/sysv/linux/alpha/getsysstats.c
2712         (GET_NPROCS_CONF_PARSER): Likewise.
2713         * sysdeps/unix/sysv/linux/sparc/getsysstats.c
2714         (GET_NPROCS_CONF_PARSER): Likewise.
2715
2716         [BZ #17574]
2717         * wcsmbs/wmemset.c (wmemset): Rename to __wmemset and define as
2718         weak alias of __wmemset.  Use libc_hidden_weak.
2719         (__wmemset): Use libc_hidden_def.
2720         * include/wchar.h (__wmemset): Declare.  Use libc_hidden_proto.
2721         * stdio-common/printf_fp.c (___printf_fp): Call __wmemset instead
2722         of wmemset.
2723
2724         [BZ #17573]
2725         * include/string.h [NOT_IN_libc || !SHARED] (mempcpy): Declare
2726         with asm name __mempcpy.
2727         [NOT_IN_libc || !SHARED] (stpcpy): Declare with asm name __stpcpy.
2728
2729         [BZ #17572]
2730         * sysdeps/x86_64/rawmemchr.S (rawmemchr): Rename to __rawmemchr
2731         and define as weak alias of __rawmemchr.
2732         (__rawmemchr): Do not define as strong alias of rawmemchr.
2733
2734         [BZ #17571]
2735         * stdlib/msort.c (qsort_r): Rename to __qsort_r and define as weak
2736         alias of __qsort_r.
2737         (qsort): Call __qsort_r instead of qsort_r.
2738         * include/stdlib.h (qsort_r): Do not call libc_hidden_proto.
2739         (__qsort_r): Declare.  Call libc_hidden_proto.
2740         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Call __qsort_r
2741         instead of qsort_r.
2742         * nscd/gai.c (__qsort_r): Define to qsort_r.
2743         * posix/tst-rfc3484.c (__qsort_r): Likewise.
2744         * posix/tst-rfc3484-2.c (__qsort_r): Likewise.
2745         * posix/tst-rfc3484-3.c (__qsort_r): Likewise.
2746
2747         [BZ #17570]
2748         * malloc/malloc.c (malloc_info): Rename to __malloc_info and
2749         define as weak alias of __malloc_info.
2750
2751         [BZ #17584]
2752         * dirent/rewinddir.c (rewinddir): Rename to __rewinddir and define
2753         as weak alias of __rewinddir.  Don't use libc_hidden_def.
2754         (__rewinddir): Use libc_hidden_def.
2755         * sysdeps/mach/hurd/rewinddir.c: Rename to __rewinddir and define
2756         as weak alias of __rewinddir.  Don't use libc_hidden_def.
2757         (__rewinddir): Use libc_hidden_def.
2758         * sysdeps/posix/rewinddir.c: Rename to __rewinddir and define as
2759         weak alias of __rewinddir.  Don't use libc_hidden_def.
2760         (__rewinddir): Use libc_hidden_def.
2761         * include/dirent.h (rewinddir): Don't use libc_hidden_proto.
2762         (__rewinddir): Use libc_hidden_proto.
2763         * sysdeps/posix/getcwd.c [!_LIBC] (__rewinddir): Define to
2764         rewinddir.
2765         (__getcwd): Use __rewinddir instead of rewinddir.
2766
2767         [BZ #17583]
2768         * libio/fileno.c (fileno): Rename to __fileno and define as weak
2769         alias of __fileno.  Use libc_hidden_weak.
2770         (__fileno): Use libc_hidden_def.
2771         [weak_alias] (fileno_unlocked): Define as weak alias of __fileno.
2772         * libio/ftello.c (ftello): Rename to __ftello and define as weak
2773         alias of __ftello.
2774         [__OFF_T_MATCHES_OFF64_T] (ftello64): Define as weak alias of
2775         __ftello.
2776         * libio/iofread.c [weak_alias && !_IO_MTSAFE_IO]
2777         (__fread_unlocked): Define as strong alias of _IO_fread.  Use
2778         libc_hidden_def.
2779         (fread_unlocked): Don't use libc_hidden_ver.
2780         * libio/iofread_u.c (fread_unlocked): Rename to __fread_unlocked
2781         and define as weak alias of __fread_unlocked.  Don't use
2782         libc_hidden_def.
2783         (__fread_unlocked): Use libc_hidden_def.
2784         * include/stdio.h (__fileno): Declare.  Use libc_hidden_proto.
2785         (ftello): Don't use libc_hidden_proto.
2786         (__ftello): Declare.  Use libc_hidden_proto.
2787         (fread_unlocked): Don't use libc_hidden_proto.
2788         (__fread_unlocked): Declare.  Use libc_hidden_proto.
2789         * time/tzfile.c (__tzfile_read): Use __fileno, __fread_unlocked
2790         and __ftello instead of fileno, fread_unlocked and ftello.
2791
2792 2012-11-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
2793
2794         * sysdeps/s390/s390-32/bcopy.S (__bcopy): Use GOT instead of
2795         GOT12.
2796         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_load_address):
2797         Likewise.
2798         (_dl_start_user): Likewise.
2799         * sysdeps/s390/s390-32/setjmp.S (__sigsetjmp): Likewise.
2800
2801 2014-11-12  Carlos O'Donell  <carlos@redhat.com>
2802             Siddhesh Poyarekar  <siddhesh@redhat.com>
2803
2804         * sysdeps/s390/s390-32/dl-machine.h (_dl_start_user):
2805         Move argv and envp down instead of moving argc up.
2806         * sysdeps/s390/s390-32/dl-sysdep.h: New file.
2807
2808 2014-11-12  Leonhard Holz  <leonhard.holz@web.de>
2809
2810         [BZ #17506]
2811         * test-skeleton.c (main): Return successful if one of
2812         EXPECTED_SIGNAL or EXPECTED_STATUS is met when both given.
2813         * string/tst-strcoll-overflow.c: Define expected status.
2814
2815 2014-11-12  Tatiana Udalova  <t.udalova@samsung.com>
2816
2817         [BZ #17475]
2818         * locale/iso-639.def: Define Bhili and Tulu language codes.
2819
2820 2014-11-11  Alan Hayward  <alan.hayward@arm.com>
2821
2822         * sysdeps/unix/sysv/linux/aarch64/bits/ipc.h: New file.
2823
2824 2014-11-10  Renlin Li  <Renlin.Li@arm.com>
2825
2826         [BZ #17555]
2827         * sysdeps/aarch64/start.S (_start): Delete x29 overwritten assignment.
2828
2829 2014-11-10  Andrew Senkevich  <andrew.n.senkevich@gmail.com>
2830
2831         * configure.ac: Updated check of minimal required version to
2832         2.22.
2833         * manual/install.texi (Tools for Compilation): Updated version
2834         number.
2835         * configure: Regenerated.
2836         * INSTALL: Likewise.
2837
2838 2014-11-07  Andreas Schwab  <schwab@linux-m68k.org>
2839
2840         * sysdeps/unix/sysv/linux/m68k/localplt.data (ld.so): Remove
2841         __tls_get_addr.
2842
2843 2014-11-07  Joseph Myers  <joseph@codesourcery.com>
2844
2845         * include/sys/wait.h (__libc_waitpid): Remove declaration.
2846         * posix/waitpid.c (__libc_waitpid): Rename to __waitpid.
2847         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2848         libc_hidden_weak.
2849         (waitpid): Define as alias of __waitpid.
2850         * sysdeps/unix/bsd/waitpid.c (__libc_waitpid): Rename to
2851         __waitpid.
2852         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2853         libc_hidden_weak.
2854         (waitpid): Define as alias of __waitpid.
2855         * sysdeps/unix/sysv/linux/i386/syscalls.list (waitpid): Remove
2856         __libc_waitpid alias.
2857         * sysdeps/unix/sysv/linux/m68k/syscalls.list (waitpid): Likewise.
2858         * sysdeps/unix/sysv/linux/powerpc/syscalls.list (waitpid):
2859         Likewise.
2860         * sysdeps/unix/sysv/linux/sh/syscalls.list (waitpid): Likewise.
2861         * sysdeps/unix/sysv/linux/sparc/syscalls.list (waitpid): Likewise.
2862         * sysdeps/unix/sysv/linux/tile/waitpid.S (__libc_waitpid): Remove
2863         alias.
2864         * sysdeps/unix/sysv/linux/waitpid.c (__libc_waitpid): Rename to
2865         __waitpid.
2866         (__waitpid): Don't define as alias.  Use libc_hidden_def not
2867         libc_hidden_weak.
2868         (waitpid): Define as alias of __waitpid.
2869
2870 2014-11-06  Carlos O'Donell  <carlos@redhat.com>
2871
2872         * manual/llio.texi: Add comment that write safety has been
2873         fixed in Linux.
2874
2875         * elf/Makefile (all-built-dso): Add $(common-objpfx)elf/ld.so.
2876         (localplt-build-dso): Add elf/ld.so.
2877         * sysdeps/unix/sysv/linux/i386/localplt.data: Add ___tls_get_addr
2878         i.e. 3 underscore version, __libc_memalign, malloc, calloc, realloc,
2879         and free for ld.so.
2880         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: Add
2881         __libc_memalign, malloc, calloc, realloc, and free for ld.so.
2882         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data:
2883         Likewise.
2884         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
2885         Likewise.
2886         * sysdeps/unix/sysv/linux/s390/localplt.data: Likewise.
2887         * sysdeps/generic/localplt.data: Add __tls_get_addr i.e. 2 underscore
2888         version, __libc_memalign, malloc, calloc, realloc and free for ld.so.
2889         * sysdeps/unix/sysv/linux/aarch64/localplt.data: Likewise.
2890         * sysdeps/unix/sysv/linux/arm/localplt.data: Likewise.
2891         * sysdeps/unix/sysv/linux/alpha/localplt.data: Likewise.
2892         * sysdeps/unix/sysv/linux/ia64/localplt.data: Likewise.
2893         * sysdeps/unix/sysv/linux/m68k/localplt.data: Likewise.
2894         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Likewise.
2895         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: Likewise.
2896         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: Likewise.
2897
2898 2014-11-05  Joseph Myers  <joseph@codesourcery.com>
2899
2900         [BZ #14132]
2901         * include/libc-symbols.h (INTUSE): Remove macro.
2902         (INTDEF): Likewise.
2903         (INTVARDEF): Likewise.
2904         (_INTVARDEF): Likewise.
2905         (INTDEF2): Likewise.
2906         (INTVARDEF2): Likewise.
2907         * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use
2908         rtld_hidden_def instead of INTVARDEF.
2909         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]
2910         (_dl_starting_up_internal): Remove declaration.
2911         (_dl_starting_up): Use rtld_hidden_proto.
2912         * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove
2913         declaration.
2914         [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise.
2915         (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with
2916         _dl_starting_up.
2917         * elf/dl-writev.h (_dl_writev): Likewise.
2918         * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS]
2919         (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of
2920         _dl_starting_up_internal.
2921
2922 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2923
2924         * stdio-common/tst-fmemopen.c (do_test): Refactor to use
2925         test-skeleton.c.
2926
2927 2014-11-05  Will Newton  <will.newton@linaro.org>
2928
2929         * benchtests/Makefile: (bench-malloc): Add malloc thread
2930         scalability benchmark.
2931         * benchtests/bench-malloc-threads.c: New file.
2932
2933 2014-11-05  Richard Earnshaw  <rearnsha@arm.com>
2934
2935         * sysdeps/aarch64/strchrnul.S: New file.
2936
2937 2014-11-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
2938
2939         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Simplify
2940         definition.
2941         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
2942         Likwise.
2943         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
2944         Likewise.
2945         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
2946         Likewise.
2947         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
2948         Likewise.
2949         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
2950         Likewise.
2951
2952 2014-11-05  Arjun Shankar  <arjun.is@lostca.se>
2953
2954         * catgets/test-gencat.c: Use test-skeleton.c.
2955         * catgets/tst-catgets.c: Likewise.
2956         * csu/tst-empty.c: Likewise.
2957         * elf/tst-audit2.c: Likewise.
2958         * elf/tst-global1.c: Likewise.
2959         * elf/tst-pathopt.c: Likewise.
2960         * elf/tst-piemod1.c: Likewise.
2961         * elf/tst-tls10.c: Likewise.
2962         * elf/tst-tls11.c: Likewise.
2963         * elf/tst-tls12.c: Likewise.
2964         * gnulib/tst-gcc.c: Likewise.
2965         * iconvdata/tst-e2big.c: Likewise.
2966         * iconvdata/tst-loading.c: Likewise.
2967         * iconv/tst-iconv1.c: Likewise.
2968         * iconv/tst-iconv2.c: Likewise.
2969         * inet/test-inet6_opt.c: Likewise.
2970         * inet/tst-gethnm.c: Likewise.
2971         * inet/tst-network.c: Likewise.
2972         * inet/tst-ntoa.c: Likewise.
2973         * intl/tst-codeset.c: Likewise.
2974         * intl/tst-gettext2.c: Likewise.
2975         * intl/tst-gettext3.c: Likewise.
2976         * intl/tst-ngettext.c: Likewise.
2977         * intl/tst-translit.c: Likewise.
2978         * io/test-stat.c: Likewise.
2979         * libio/test-fmemopen.c: Likewise.
2980         * libio/tst-freopen.c: Likewise.
2981         * libio/tst-sscanf.c: Likewise.
2982         * libio/tst-ungetwc1.c: Likewise.
2983         * libio/tst-ungetwc2.c: Likewise.
2984         * libio/tst-widetext.c: Likewise.
2985         * localedata/tst-ctype.c: Likewise.
2986         * localedata/tst-digits.c: Likewise.
2987         * localedata/tst-leaks.c: Likewise.
2988         * localedata/tst-mbswcs1.c: Likewise.
2989         * localedata/tst-mbswcs2.c: Likewise.
2990         * localedata/tst-mbswcs3.c: Likewise.
2991         * localedata/tst-mbswcs4.c: Likewise.
2992         * localedata/tst-mbswcs5.c: Likewise.
2993         * localedata/tst-setlocale.c: Likewise.
2994         * localedata/tst-trans.c: Likewise.
2995         * localedata/tst-wctype.c: Likewise.
2996         * localedata/tst-xlocale1.c: Likewise.
2997         * login/tst-grantpt.c: Likewise.
2998         * malloc/tst-calloc.c: Likewise.
2999         * malloc/tst-malloc.c: Likewise.
3000         * malloc/tst-mallocstate.c: Likewise.
3001         * malloc/tst-mcheck.c: Likewise.
3002         * malloc/tst-mtrace.c: Likewise.
3003         * malloc/tst-obstack.c: Likewise.
3004         * math/atest-exp2.c: Likewise.
3005         * math/atest-exp.c: Likewise.
3006         * math/atest-sincos.c: Likewise.
3007         * math/test-matherr.c: Likewise.
3008         * math/test-misc.c: Likewise.
3009         * math/test-powl.c: Likewise.
3010         * math/tst-definitions.c: Likewise.
3011         * misc/tst-dirname.c: Likewise.
3012         * misc/tst-efgcvt.c: Likewise.
3013         * misc/tst-fdset.c: Likewise.
3014         * misc/tst-hsearch.c: Likewise.
3015         * misc/tst-mntent2.c: Likewise.
3016         * nptl/tst-sem7.c: Likewise.
3017         * nptl/tst-sem8.c: Likewise.
3018         * nptl/tst-sem9.c: Likewise.
3019         * nss/test-netdb.c: Likewise.
3020         * posix/tst-fnmatch.c: Likewise.
3021         * posix/tst-getlogin.c: Likewise.
3022         * posix/tst-gnuglob.c: Likewise.
3023         * posix/tst-mmap.c: Likewise.
3024         * pwd/tst-getpw.c: Likewise.
3025         * resolv/tst-inet_ntop.c: Likewise.
3026         * rt/tst-timer.c: Likewise.
3027         * stdio-common/test-fseek.c: Likewise.
3028         * stdio-common/test-popen.c: Likewise.
3029         * stdio-common/test-vfprintf.c: Likewise.
3030         * stdio-common/tst-cookie.c: Likewise.
3031         * stdio-common/tst-fileno.c: Likewise.
3032         * stdio-common/tst-gets.c: Likewise.
3033         * stdio-common/tst-obprintf.c: Likewise.
3034         * stdio-common/tst-perror.c: Likewise.
3035         * stdio-common/tst-sprintf2.c: Likewise.
3036         * stdio-common/tst-sprintf3.c: Likewise.
3037         * stdio-common/tst-sprintf.c: Likewise.
3038         * stdio-common/tst-swprintf.c: Likewise.
3039         * stdio-common/tst-tmpnam.c: Likewise.
3040         * stdio-common/tst-unbputc.c: Likewise.
3041         * stdio-common/tst-wc-printf.c: Likewise.
3042         * stdlib/tst-environ.c: Likewise.
3043         * stdlib/tst-fmtmsg.c: Likewise.
3044         * stdlib/tst-limits.c: Likewise.
3045         * stdlib/tst-rand48-2.c: Likewise.
3046         * stdlib/tst-rand48.c: Likewise.
3047         * stdlib/tst-random2.c: Likewise.
3048         * stdlib/tst-random.c: Likewise.
3049         * stdlib/tst-strtol.c: Likewise.
3050         * stdlib/tst-strtoll.c: Likewise.
3051         * stdlib/tst-tls-atexit.c: Likewise.
3052         * stdlib/tst-xpg-basename.c: Likewise.
3053         * string/test-ffs.c: Likewise.
3054         * string/tst-bswap.c: Likewise.
3055         * string/tst-inlcall.c: Likewise.
3056         * string/tst-strtok.c: Likewise.
3057         * string/tst-strxfrm.c: Likewise.
3058         * sysdeps/x86_64/tst-audit10.c: Likewise.
3059         * sysdeps/x86_64/tst-audit3.c: Likewise.
3060         * sysdeps/x86_64/tst-audit4.c: Likewise.
3061         * sysdeps/x86_64/tst-audit5.c: Likewise.
3062         * time/tst-ftime_l.c: Likewise.
3063         * time/tst-getdate.c: Likewise.
3064         * time/tst-mktime3.c: Likewise.
3065         * time/tst-mktime.c: Likewise.
3066         * time/tst-posixtz.c: Likewise.
3067         * time/tst-strptime2.c: Likewise.
3068         * time/tst-strptime3.c: Likewise.
3069         * wcsmbs/tst-btowc.c: Likewise.
3070         * wcsmbs/tst-mbrtowc.c: Likewise.
3071         * wcsmbs/tst-mbsrtowcs.c: Likewise.
3072         * wcsmbs/tst-wchar-h.c: Likewise.
3073         * wcsmbs/tst-wcpncpy.c: Likewise.
3074         * wcsmbs/tst-wcrtomb.c: Likewise.
3075         * wcsmbs/tst-wcsnlen.c: Likewise.
3076         * wcsmbs/tst-wcstof.c: Likewise.
3077
3078 2014-11-04  Joseph Myers  <joseph@codesourcery.com>
3079
3080         [BZ #14132]
3081         * elf/dl-profile.c (_dl_mcount): Use rtld_hidden_def instead of
3082         INTDEF.
3083         * sysdeps/generic/ldsodefs.h (_dl_mcount_internal): Remove
3084         declaration.
3085         (_dl_mcount): Use rtld_hidden_proto.
3086         * elf/dl-runtime.c (_dl_profile_fixup): Don't use INTUSE with
3087         _dl_mcount.
3088         * elf/rtld.c (_rtld_global_ro): Likewise.
3089
3090         [BZ #14132]
3091         * elf/dl-init.c (_dl_init): Don't use INTDEF.
3092         * sysdeps/aarch64/dl-machine.h (RTLD_START): Use _dl_init instead
3093         of _dl_init_internal.
3094         * sysdeps/alpha/dl-machine.h (RTLD_START): Likewise.
3095         * sysdeps/arm/dl-machine.h (RTLD_START): Likewise.
3096         * sysdeps/hppa/dl-machine.h (RTLD_START): Likewise.
3097         * sysdeps/i386/dl-machine.h (RTLD_START): Likewise.
3098         * sysdeps/ia64/dl-machine.h (RTLD_START): Likewise.
3099         * sysdeps/m68k/dl-machine.h (RTLD_START): Likewise.
3100         * sysdeps/microblaze/dl-machine.h (RTLD_START): Likewise.
3101         * sysdeps/mips/dl-machine.h (RTLD_START): Likewise.
3102         * sysdeps/powerpc/powerpc32/dl-start.S (_start): Likewise.
3103         * sysdeps/s390/s390-32/dl-machine.h (RTLD_START): Likewise.
3104         * sysdeps/s390/s390-64/dl-machine.h (RTLD_START): Likewise.
3105         * sysdeps/sh/dl-machine.h (RTLD_START): Likewise.
3106         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
3107         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
3108         * sysdeps/tile/dl-start.S (_start): Likewise.
3109         * sysdeps/x86_64/dl-machine.h (RTLD_START): Likewise.
3110         * sysdeps/x86_64/x32/dl-machine.h (RTLD_START): Likewise.
3111
3112         [BZ #14132]
3113         * sysdeps/generic/ldsodefs.h (_dl_argv): Use rtld_hidden_proto.
3114         [IS_IN_rtld] (_dl_argv_internal): Do not declare.
3115         (rtld_progname): Make macro definition unconditional.
3116         * elf/rtld.c (_dl_argv): Use rtld_hidden_data_def instead of
3117         INTDEF.
3118         (dlmopen_doit): Do not use INTUSE with _dl_argv.
3119         (dl_main): Likewise.
3120         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
3121         * sysdeps/alpha/dl-machine.h (RTLD_START): Use __GI__dl_argv
3122         instead of _dl_argv_internal.
3123         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
3124         __GI__dl_argv instead of INTUSE(_dl_argv).
3125         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Use
3126         __GI__dl_argv instead of _dl_argv_internal.
3127
3128         * soft-fp/op-common.h (_FP_TO_INT_ROUND): New macro.
3129         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_D): New
3130         macro.
3131         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_D): Likewise.
3132         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_E):
3133         New macro.
3134         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_E): Likewise.
3135         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_ROUND_Q): New
3136         macro.
3137         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_ROUND_Q): Likewise.
3138         * soft-fp/single.h (FP_TO_INT_ROUND_S): New macro.
3139
3140 2014-11-04  Andreas Schwab  <schwab@suse.de>
3141
3142         * posix/regex_internal.h: Don't include <locale/elem-hash.h>.
3143
3144 2014-11-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
3145
3146         * sysdeps/powerpc/powerpc64/power8/memset.S (MTVSRD_V1_R4): Encode
3147         mtvsrd instruction in binary form.
3148
3149 2014-11-03  Andreas Schwab  <schwab@suse.de>
3150
3151         [BZ #17522]
3152         * libio/wfileops.c (_IO_wdo_write): If the file buffer has room
3153         for less than MB_LEN_MAX use a local buffer of that size.
3154         * libio/tst-fputws.c: New file.
3155         * libio/Makefile (tests): Add tst-fputws.
3156
3157 2014-11-01  Jose E. Marchesi  <jose.marchesi@oracle.com>
3158
3159         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu): fix
3160         the size of the fpu_fr.fpu_dregs[] array.
3161
3162 2014-11-01  Joseph Myers  <joseph@codesourcery.com>
3163
3164         * posix/nanosleep.c (__libc_nanosleep): Rename to __nanosleep.
3165         (__nanosleep): Do not define as alias.
3166         (nanosleep): Define as alias of __nanosleep.
3167         * sysdeps/unix/sysv/linux/syscalls.list (nanosleep): Remove
3168         __libc_nanosleep name.
3169
3170 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
3171
3172         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): Mention need to update
3173         install.texi in comment.
3174
3175 2014-10-31  Torvald Riegel  <triegel@redhat.com>
3176
3177         * sysdeps/powerpc/bits/atomic.h (atomic_write_barrier): Remove and...
3178         * sysdeps/powerpc/powerpc32/bits/atomic.h (atomic_write_barrier):
3179         ... add here and use lwsync or sync ...
3180         * sysdeps/powerpc/powerpc64/bits/atomic.h (atomic_write_barrier):
3181         ... and add here using lwsync.
3182
3183 2014-10-31  Matthew Fortune  <matthew.fortune@imgtec.com>
3184
3185         * elf/dl-machine-reject-phdr.h: New file.
3186         * elf/dl-load.c: #include that.
3187         (open_verify): Call elf_machine_reject_phdr_p and ignore the file
3188         if that returned true.
3189
3190 2014-10-31  Roland McGrath  <roland@hack.frob.com>
3191
3192         [BZ #17496]
3193         * Makerules: Move gnu/lib-names.h generation chunk up, to right after
3194         gen-as-const-headers chunk.  Add a big scare comment after the last
3195         safe place to touch before-compile.
3196
3197 2014-10-31  Joseph Myers  <joseph@codesourcery.com>
3198
3199         * manual/install.texi (Tools for Compilation): Update autoconf
3200         version requirements.
3201         * INSTALL: Regenerated.
3202
3203         * misc/pselect.c [!__pselect] (__libc_pselect): Remove alias.
3204         * sysdeps/unix/sysv/linux/pselect.c [__NR_pselect6]
3205         (__libc_pselect): Likewise.
3206
3207         [BZ #14138]
3208         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Remove file.
3209         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
3210         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
3211         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
3212
3213 2014-10-31  Torvald Riegel  <triegel@redhat.com>
3214
3215         * sysdeps/sparc/sparc32/bits/atomic.h (atomic_write_barrier): Use
3216         correct barrier instruction.
3217         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h (atomic_write_barrier):
3218         Likewise.
3219         * sysdeps/sparc/sparc64/bits/atomic.h (atomic_write_barrier):
3220         Likewise.
3221
3222 2014-10-30  Roland McGrath  <roland@hack.frob.com>
3223
3224         * include/ctype.h: Include <ctype/ctype.h> first thing rather than
3225         after defining inlines.  Instead, just use parens to defeat macro
3226         expansion of __isctype in its declaration.
3227
3228 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
3229
3230         * include/sys/uio.h (__libc_readv): Remove declaration.
3231         (__libc_writev): Likewise.
3232         * misc/readv.c (__libc_readv): Rename to __readv.
3233         (__readv): Do not define as alias.
3234         (readv): Define as alias of __readv.
3235         * misc/writev.c (__libc_writev): Rename to __writev.
3236         (__writev): Do not define as alias.
3237         (writev): Define as alias of __writev.
3238         * sysdeps/posix/readv.c (__libc_readv): Rename to __readv.
3239         (__readv): Do not define as alias.
3240         (readv): Define unconditionally as alias of __readv.
3241         * sysdeps/posix/writev.c (__libc_writev): Rename to __writev.
3242         (__writev): Do not define as alias.
3243         (writev): Define unconditionally as alias of __writev.
3244         * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv
3245         name.
3246         (writev): Do not define __libc_writev name.
3247
3248 2014-10-30  Roland McGrath  <roland@hack.frob.com>
3249
3250         * iconv/iconv_charmap.c (add_bytes): Make IN argument pointer to const.
3251         (convert_charseq): New function, broken out of ...
3252         (use_from_charmap): ... here.  Call it.
3253         (use_to_charmap): Use convert_charseq and free instead of duplicating
3254         its code with a variable-length stack struct.
3255
3256 2014-10-30  Joseph Myers  <joseph@codesourcery.com>
3257
3258         * include/fcntl.h (__libc_creat): Remove declaration.
3259         * io/creat.c (__libc_creat): Rename to creat.
3260         (creat): Do not define as alias.
3261         * sysdeps/unix/sysv/linux/alpha/creat.c (creat64): Define as alias
3262         of creat instead of __libc_creat.
3263         * sysdeps/unix/sysv/linux/generic/creat.c (__libc_creat): Rename
3264         to creat.
3265         (creat): Do not define as alias.
3266         [__WORDSIZE == 64] (creat64): Define as alias of creat instead of
3267         __libc_creat.
3268         * sysdeps/unix/sysv/linux/syscalls.list (creat): Do not define
3269         __libc_creat name.
3270         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list (creat):
3271         Likewise.
3272
3273 2014-10-29  Carlos O'Donell  <carlos@redhat.com>
3274
3275         * manual/llio.texi: Add comments discussing why write() may be
3276         considered MT-unsafe on Linux.
3277
3278 2014-10-28  Carlos O'Donell  <carlos@redhat.com>
3279
3280         * dl-load.c (local_strdup): Remove.
3281         (expand_dynamic_string_token): Use __strdup.
3282         (decompose_rpath): Likewise.
3283         (_dl_map_object): Likewise.
3284
3285 2014-10-28  Joseph Myers  <joseph@codesourcery.com>
3286
3287         [BZ #14132]
3288         * sysdeps/generic/unwind-dw2-fde.c
3289         (__register_frame_info_bases_internal): Do not declare.
3290         (__register_frame_info_table_bases_internal): Likewise.
3291         (__deregister_frame_info_bases_internal): Likewise.
3292         (__register_frame_info_bases): Declare and use hidden_proto before
3293         definition.  Use hidden_def instead of INTDEF.
3294         (__register_frame_info_table_bases): Likewise.
3295         (__deregister_frame_info_bases): Likewise.
3296         (__register_frame_info): Do not use INTUSE.
3297         (__register_frame): Likewise.
3298         (__register_frame_info_table): Likewise.
3299         (__register_frame_table): Likewise.
3300         (__deregister_frame_info): Likewise.
3301         (__deregister_frame): Likewise.
3302
3303 2014-10-27  Gratian Crisan  <gratian.crisan@ni.com>
3304
3305         * sysdeps/unix/sysv/linux/arm/kernel-features.h
3306         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_FUTEX_LOCK_PI): Do
3307         not undefine.
3308         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_REQUEUE_PI):
3309         Likewise.
3310         [__LINUX_KERNEL_VERSION >= 0x030E03] (__ASSUME_SET_ROBUST_LIST):
3311         Likewise.
3312
3313 2014-10-27  Joseph Myers  <joseph@codesourcery.com>
3314
3315         [BZ #14138]
3316         * sysdeps/unix/sysv/linux/arm/setfsgid.c: Remove file.
3317         * sysdeps/unix/sysv/linux/arm/setfsuid.c: Likewise.
3318         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Likewise.
3319         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Likewise.
3320         * sysdeps/unix/sysv/linux/m68k/setfsgid.c: Likewise.
3321         * sysdeps/unix/sysv/linux/m68k/setfsuid.c: Likewise.
3322         * sysdeps/unix/sysv/linux/s390/s390-32/setfsgid.c: Likewise.
3323         * sysdeps/unix/sysv/linux/s390/s390-32/setfsuid.c: Likewise.
3324         * sysdeps/unix/sysv/linux/sh/setfsgid.c: Likewise.
3325         * sysdeps/unix/sysv/linux/sh/setfsuid.c: Likewise.
3326         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsgid.c: Likewise.
3327         * sysdeps/unix/sysv/linux/sparc/sparc32/setfsuid.c: Likewise.
3328         * sysdeps/unix/sysv/linux/arm/syscalls.list (setfsgid): Add
3329         syscall.
3330         (setfsuid): Likewise.
3331         * sysdeps/unix/sysv/linux/i386/syscalls.list (setfsgid): Likewise.
3332         (setfsuid): Likewise.
3333         * sysdeps/unix/sysv/linux/m68k/syscalls.list (setfsgid): Likewise.
3334         (setfsuid): Likewise.
3335         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setfsgid):
3336         Likewise.
3337         (setfsuid): Likewise.
3338         * sysdeps/unix/sysv/linux/sh/syscalls.list (setfsgid): Likewise.
3339         (setfsuid): Likewise.
3340         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (setfsgid):
3341         Likewise.
3342         (setfsuid): Likewise.
3343
3344 2014-10-27  Andreas Schwab  <schwab@suse.de>
3345
3346         [BZ #17501]
3347         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Fix
3348         check for Slow_SSE4_2 feature bit.
3349         * sysdeps/i386/i686/multiarch/strcmp.S (STRCMP): Likewise.
3350         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
3351         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP, __strcascmp):
3352         Likewise.  Fix check for Fast_Unaligned_Load feature bit.
3353
3354 2014-10-24  Roland McGrath  <roland@hack.frob.com>
3355
3356         * configure.ac: Validate compiler version with a empirical test of
3357         __GNUC__ and __GNUC_MINOR__ predefined values, rather than by grepping
3358         $CC -v output.
3359         * configure: Regenerated.
3360
3361         * inet/htons.c (htons): Prototypify.
3362         * inet/htonl.c (htonl): Likewise.
3363
3364 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3365
3366         * string/strncat.c (strncat): Improve performance by using strlen.
3367
3368 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3369
3370         * string/strcat.c (strcat): Improve performance by using strlen/strcpy.
3371
3372 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3373
3374         * sysdeps/aarch64/fpu/fgetexcptflg.c (fegetexceptflag):
3375         Call libc_fetestexcept_aarch64.
3376
3377 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3378
3379         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept):
3380         Call libc_feholdexcept_aarch64.
3381
3382 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3383
3384         * sysdeps/aarch64/fpu/fegetround.c (fegetround):
3385         Call get_rounding_mode.
3386
3387 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3388
3389         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
3390         Simplify logic.
3391
3392 2014-10-24  Wilco Dijkstra  <wdijkstr@arm.com>
3393
3394         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
3395         Simplify logic.
3396
3397 2014-10-24  Joseph Myers  <joseph@codesourcery.com>
3398
3399         [BZ #14138]
3400         * sysdeps/unix/sysv/linux/arm/getegid.c: Remove file.
3401         * sysdeps/unix/sysv/linux/arm/geteuid.c: Likewise.
3402         * sysdeps/unix/sysv/linux/arm/getgid.c: Likewise.
3403         * sysdeps/unix/sysv/linux/arm/getgroups.c: Likewise.
3404         * sysdeps/unix/sysv/linux/arm/getresgid.c: Likewise.
3405         * sysdeps/unix/sysv/linux/arm/getresuid.c: Likewise.
3406         * sysdeps/unix/sysv/linux/arm/getuid.c: Likewise.
3407         * sysdeps/unix/sysv/linux/i386/getegid.c: Likewise.
3408         * sysdeps/unix/sysv/linux/i386/geteuid.c: Likewise.
3409         * sysdeps/unix/sysv/linux/i386/getgid.c: Likewise.
3410         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
3411         * sysdeps/unix/sysv/linux/i386/getresgid.c: Likewise.
3412         * sysdeps/unix/sysv/linux/i386/getresuid.c: Likewise.
3413         * sysdeps/unix/sysv/linux/i386/getuid.c: Likewise.
3414         * sysdeps/unix/sysv/linux/m68k/getegid.c: Likewise.
3415         * sysdeps/unix/sysv/linux/m68k/geteuid.c: Likewise.
3416         * sysdeps/unix/sysv/linux/m68k/getgid.c: Likewise.
3417         * sysdeps/unix/sysv/linux/m68k/getgroups.c: Likewise.
3418         * sysdeps/unix/sysv/linux/m68k/getresgid.c: Likewise.
3419         * sysdeps/unix/sysv/linux/m68k/getresuid.c: Likewise.
3420         * sysdeps/unix/sysv/linux/m68k/getuid.c: Likewise.
3421         * sysdeps/unix/sysv/linux/s390/s390-32/getegid.c: Likewise.
3422         * sysdeps/unix/sysv/linux/s390/s390-32/geteuid.c: Likewise.
3423         * sysdeps/unix/sysv/linux/s390/s390-32/getgid.c: Likewise.
3424         * sysdeps/unix/sysv/linux/s390/s390-32/getgroups.c: Likewise.
3425         * sysdeps/unix/sysv/linux/s390/s390-32/getresgid.c: Likewise.
3426         * sysdeps/unix/sysv/linux/s390/s390-32/getresuid.c: Likewise.
3427         * sysdeps/unix/sysv/linux/s390/s390-32/getuid.c: Likewise.
3428         * sysdeps/unix/sysv/linux/sh/getegid.c: Likewise.
3429         * sysdeps/unix/sysv/linux/sh/geteuid.c: Likewise.
3430         * sysdeps/unix/sysv/linux/sh/getgid.c: Likewise.
3431         * sysdeps/unix/sysv/linux/sh/getgroups.c: Likewise.
3432         * sysdeps/unix/sysv/linux/sh/getresgid.c: Likewise.
3433         * sysdeps/unix/sysv/linux/sh/getresuid.c: Likewise.
3434         * sysdeps/unix/sysv/linux/sh/getuid.c: Likewise.
3435         * sysdeps/unix/sysv/linux/sparc/sparc32/getegid.c: Likewise.
3436         * sysdeps/unix/sysv/linux/sparc/sparc32/geteuid.c: Likewise.
3437         * sysdeps/unix/sysv/linux/sparc/sparc32/getgid.c: Likewise.
3438         * sysdeps/unix/sysv/linux/sparc/sparc32/getgroups.c: Likewise.
3439         * sysdeps/unix/sysv/linux/sparc/sparc32/getuid.c: Likewise.
3440         * sysdeps/unix/sysv/linux/arm/syscalls.list (getegid): Add
3441         syscall.
3442         (geteuid): Likewise.
3443         (getgid): Likewise.
3444         (getuid): Likewise.
3445         (getresgid): Likewise.
3446         (getresuid): Likewise.
3447         (getgroups): Likewise.
3448         * sysdeps/unix/sysv/linux/i386/syscalls.list (getegid): Likewise.
3449         (geteuid): Likewise.
3450         (getgid): Likewise.
3451         (getuid): Likewise.
3452         (getresgid): Likewise.
3453         (getresuid): Likewise.
3454         (getgroups): Likewise.
3455         * sysdeps/unix/sysv/linux/m68k/syscalls.list (getegid): Likewise.
3456         (geteuid): Likewise.
3457         (getgid): Likewise.
3458         (getuid): Likewise.
3459         (getresgid): Likewise.
3460         (getresuid): Likewise.
3461         (getgroups): Likewise.
3462         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (getegid):
3463         Likewise.
3464         (geteuid): Likewise.
3465         (getgid): Likewise.
3466         (getuid): Likewise.
3467         (getresgid): Likewise.
3468         (getresuid): Likewise.
3469         (getgroups): Likewise.
3470         * sysdeps/unix/sysv/linux/sh/syscalls.list (getegid): Likewise.
3471         (geteuid): Likewise.
3472         (getgid): Likewise.
3473         (getuid): Likewise.
3474         (getresgid): Likewise.
3475         (getresuid): Likewise.
3476         (getgroups): Likewise.
3477         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (getegid):
3478         Likewise.
3479         (geteuid): Likewise.
3480         (getgid): Likewise.
3481         (getuid): Likewise.
3482         (getgroups): Likewise.
3483
3484         [BZ #14138]
3485         * sysdeps/unix/sysv/linux/i386/chown.c: Remove file.
3486         * sysdeps/unix/sysv/linux/i386/fchown.c: Likewise.
3487         * sysdeps/unix/sysv/linux/i386/lchown.c: Likewise.
3488         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
3489         * sysdeps/unix/sysv/linux/s390/s390-32/fchown.c: Remove file.
3490         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Likewise.
3491         * sysdeps/unix/sysv/linux/sh/chown.c: Likewise.
3492         * sysdeps/unix/sysv/linux/sh/fchown.c: Likewise.
3493         * sysdeps/unix/sysv/linux/sh/lchown.c: Likewise.
3494         * sysdeps/unix/sysv/linux/sparc/sparc32/chown.c: Likewise.
3495         * sysdeps/unix/sysv/linux/sparc/sparc32/fchown.c: Likewise.
3496         * sysdeps/unix/sysv/linux/sparc/sparc32/lchown.c: Likewise.
3497         * sysdeps/unix/sysv/linux/s390/s390-32/Versions (GLIBC_2.1): Add
3498         __chown.
3499         * sysdeps/unix/sysv/linux/i386/syscalls.list (chown): Add syscall.
3500         (lchown): Likewise.
3501         (fchown): Likewise.
3502         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (chown):
3503         Likewise.
3504         (lchown): Likewise.
3505         (fchown): Likewise.
3506         * sysdeps/unix/sysv/linux/sh/syscalls.list (chown): Likewise.
3507         (lchown): Likewise.
3508         (fchown): Likewise.
3509         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list (chown):
3510         Likewise.
3511         (lchown): Likewise.
3512         (fchown): Likewise.
3513
3514 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3515
3516         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept):
3517         Simplify logic.
3518
3519 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3520
3521         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
3522         Cleanup logic.
3523
3524 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3525
3526         * sysdeps/aarch64/fpu/fsetexcptflg.c (fsetexceptflag):
3527         Remove unused include.
3528
3529 2014-10-23  Wilco Dijkstra  <wdijkstr@arm.com>
3530
3531         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Remove spaces.
3532         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Remove spaces.
3533         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Remove spaces.
3534         * sysdeps/aarch64/fpu/fraiseexcpt.c (feraiseexcept): Remove spaces.
3535
3536 2014-10-23  Carlos O'Donell  <carlos@systemhalted.org>
3537             Helge Deller <deller@gmx.de>
3538
3539         [BZ #17508]
3540         * sysdeps/unix/sysv/linux/hppa/bits/signum.h: Remove SIGEMT.
3541         Define SIGSTKFLT as 7. Define SIGSYS as 31. Define SIGXCPU as 12.
3542         Remove SIGLOST. Define SIGXFSZ as 30. Define __SIGRTMIN as 32.
3543
3544 2014-10-23  Joseph Myers  <joseph@codesourcery.com>
3545
3546         [BZ #14132]
3547         * sysdeps/powerpc/powerpc32/libgcc-compat.S (__ashldi3_v_glibc20):
3548         Remove macro definition.
3549         (__ashrdi3_v_glibc20): Likewise.
3550         (__lshrdi3_v_glibc20): Likewise.
3551         (__cmpdi2_v_glibc20): Likewise.
3552         (__ucmpdi2_v_glibc20): Likewise.
3553         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixdfdi_v_glibc20): Likewise.
3554         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
3555         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
3556         [!_SOFT_FLOAT && !__NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
3557         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
3558         [!_SOFT_FLOAT && !__NO_FPRS__] (__floatdisf_v_glibc20): Likewise.
3559
3560 2014-10-22  Roland McGrath  <roland@hack.frob.com>
3561
3562         * inet/netgroup.h (struct name_list): Use C99 [] syntax rather than
3563         old GNU extension [0] syntax.
3564         * nscd/nscd_helper.c (open_socket): Use a flexible array member and
3565         alloca rather than an array member with variable length.
3566         * nscd/netgroupcache.c (addgetnetgrentX): Likewise.
3567         * nscd/nscd.c (invalidate_db): New function, broken out of ...
3568         (parse_opt): ... here.  Likewise use alloca there.
3569         Validate the -i argument before checking for rootness.
3570         (send_shutdown): New function, broken out of ...
3571         (parse_opt): ... here.
3572
3573 2014-10-22  Roland McGrath  <roland@hack.frob.com>
3574
3575         * sysdeps/arm/__longjmp.S [NEED_HWCAP] [IS_IN_rtld]: Use LDST_PCREL
3576         macro to get at the _rt_local_ro field.
3577         [NEED_HWCAP] [!IS_IN_rtld]: Use LDR_GLOBAL to get at _rtld_global_ro
3578         ([PIC] case) or _dl_hwcap ([!PIC] case).
3579         * sysdeps/arm/setjmp.S: Likewise.
3580
3581         * config.h.in (ARM_PCREL_MOVW_OK): New macro.
3582         * sysdeps/arm/configure.ac: New check to define it.
3583         * sysdeps/arm/configure: Regenerated.
3584         * sysdeps/arm/sysdep.h [__ASSEMBLER__]: Include <arm-features.h>.
3585         (LDST_INDEXED_NOINDEX, LDST_INDEXED_INDEX): New macros.
3586         (LDST_INDEXED, LDST_PC_INDEXED): New macros, differing definitions
3587         depending on [ARM_NO_INDEX_REGISTER] and [__thumb2__].
3588         (LDST_PCREL) [!__thumb2__ && ARCH_HAS_T2 && ARM_PCREL_MOVW_OK]:
3589         Use move/movt pair instead of a load.
3590         (LDST_GLOBAL): Macro removed.
3591         (LDR_GLOBAL): New macro replaces it.
3592         (LDR_HIDDEN): New macro.
3593         (PTR_MANGLE_LOAD): Use LDR_GLOBAL rather than LDST_GLOBAL.
3594         Use LDR_HIDDEN instead for __pointer_chk_guard_local.
3595
3596         * setjmp/tst-setjmp-static.c: New file.
3597         * setjmp/Makefile (tests): Add it.
3598         (tests-static): New variable.
3599
3600 2014-10-22  Maciej W. Rozycki  <macro@codesourcery.com>
3601
3602         [BZ #17485]
3603         * sysdeps/unix/sysv/linux/mips/vfork.S (__libc_vfork): Define.
3604
3605 2014-10-21  Joseph Myers  <joseph@codesourcery.com>
3606
3607         [BZ #14132]
3608         * math/s_ldexpf.c (__ldexpf): Do not use INTDEF.
3609
3610 2014-10-21  Roland McGrath  <roland@hack.frob.com>
3611
3612         * nptl/version.c (__nptl_main): Call __libc_write, not __write.
3613
3614 2014-10-20  Roland McGrath  <roland@hack.frob.com>
3615
3616         * io/fts.c (dirent_not_directory): New function.
3617         (fts_build): Call it.
3618
3619 2014-10-20  Roland McGrath  <roland@hack.frob.com>
3620
3621         * nptl/version.c (__nptl_main): Use normal __write rather than
3622         INTERNAL_SYSCALL.
3623         (banner): Update copyright years.
3624
3625         * nptl/pthread_rwlock_timedrdlock.c: #include <sys/time.h> before using
3626         gettimeofday.
3627         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
3628         * nptl/pthread_cond_timedwait.c: Likewise.
3629         * nptl/pthread_mutex_timedlock.c: Likewise.
3630         * nptl/sem_timedwait.c: Likewise.
3631
3632         * sysdeps/nptl/bits/libc-lock.h
3633         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
3634         (__libc_lock_init_recursive): Return void, not 0.
3635         * sysdeps/nptl/bits/libc-lockP.h (__libc_lock_init): Likewise.
3636         (__libc_rwlock_init): Likewise.
3637         * sysdeps/nptl/bits/stdio-lock.h (_IO_lock_init): Likewise.
3638
3639 2014-10-20  Torvald Riegel  <triegel@redhat.com>
3640
3641         [BZ #15215]
3642         * nptl/pthread_once.c (__pthread_once): Split out fast path to ...
3643         (__pthread_once_slow): ... here.
3644         * sysdeps/unix/sysv/linux/i386/pthread_once.S: Remove file.
3645         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Remove file.
3646
3647 2014-10-20  Torvald Riegel  <triegel@redhat.com>
3648
3649         [BZ #15215]
3650         * nptl/pthreadP.h (__PTHREAD_ONCE_INPROGRESS, __PTHREAD_ONCE_DONE,
3651         __PTHREAD_ONCE_FORK_GEN_INCR): New.
3652         * sysdeps/nptl/fork.c (__libc_fork): Use them.
3653         * nptl/pthread_once.c (__pthread_once): Likewise.
3654         Update comments.
3655
3656 2014-10-20  Joseph Myers  <joseph@codesourcery.com>
3657
3658         [BZ #14138]
3659         * sysdeps/unix/syscalls.list (readv): Use __libc_readv as strong
3660         name.
3661         (writev): Use __libc_writev as strong name.
3662         * sysdeps/unix/sysv/linux/readv.c: Remove file.
3663         * sysdeps/unix/sysv/linux/writev.c: Likewise.
3664
3665 2014-10-17  Roland McGrath  <roland@hack.frob.com>
3666
3667         * nptl/createthread.c (TLS_DEFINE_INIT_TP, TLS_VALUE): Macros removed.
3668
3669         * sysdeps/i386/nptl/tls.h
3670         (THREAD_SELF_SYSINFO, THREAD_SYSINFO): Macros removed.
3671         [NEED_DL_SYSINFO] (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO):
3672         New macros.
3673         * sysdeps/ia64/nptl/tls.h [NEED_DL_SYSINFO]
3674         (SETUP_THREAD_SYSINFO, CHECK_THREAD_SYSINFO): New macros.
3675         * nptl/allocatestack.c (allocate_stack) [NEED_DL_SYSINFO]:
3676         Call SETUP_THREAD_SYSINFO instead of doing an assignment.
3677         * nptl/createthread.c (create_thread) [NEED_DL_SYSINFO]:
3678         Call CHECK_THREAD_SYSINFO instead of doing an assert.
3679
3680         * nptl/nptl-init.c (__pthread_initialize_minimal_internal):
3681         Conditionalize FUTEX_PRIVATE_FLAG and FUTEX_CLOCK_REALTIME probes
3682         on [__NR_futex].
3683         * nptl/pthread_mutex_init.c (prio_inherit_missing): New function,
3684         broken out of ...
3685         (__pthread_mutex_init): ... here.  Call it.
3686         * nptl/pthread_mutex_lock.c (__pthread_mutex_lock_full):
3687         Conditionalize PI cases on [__NR_futex].
3688         * nptl/pthread_mutex_timedlock.c (pthread_mutex_timedlock): Likewise.
3689         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock): Likewise.
3690         * nptl/pthread_mutex_unlock.c (__pthread_mutex_unlock_full): Likewise.
3691
3692         * nptl/nptl-init.c (sighandler_setxid, __xidcmd): Make definitions
3693         conditional on [SIGSETXID].
3694         (sigcancel_handler): Make definition conditional on [SIGCANCEL].
3695         (__pthread_initialize_minimal_internal): Set up SIGCANCEL only if it
3696         is defined.  Likewise for SIGSETXID.
3697         * nptl/allocatestack.c (setxid_mark_thread, setxid_unmark_thread):
3698         Conditionalize definitions on [SIGSETXID].
3699         (setxid_signal_thread, __nptl_setxid_error, __nptl_setxid): Likewise.
3700         * nptl/pthread_create.c (start_thread): Conditionalize SIGCANCEL
3701         unblocking on [SIGCANCEL].
3702
3703         * nptl/nptl-init.c (__nptl_set_robust): Conditionalize body on
3704         [__NR_set_robust_list].
3705
3706 2014-10-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
3707
3708         * string/strcoll_l.c (get_next_seq): Fix up formatting.
3709         (do_compare): Likewise.
3710
3711 2014-10-17  Leonhard Holz  <leonhard.holz@web.de>
3712
3713         [BZ #15884]
3714         * string/strcoll_l.c: Don't include stdio.h.
3715         (coll_seq): Remove members idxarr and rulearr.
3716         (get_next_seq_cached): Remove function.
3717         (get_next_seq): Likewise.
3718         (get_next_seq_nocache): Rename to get_next_seq.
3719         (do_compare): Remove function.
3720         (do_compare_nocache): Rename to do_compare.
3721         (STRCOLL): Remove weight and rules cache.
3722
3723 2014-10-16  Roland McGrath  <roland@hack.frob.com>
3724
3725         * sysdeps/arm/soft-fp/sfp-machine.h: Filed moved ...
3726         * sysdeps/arm/sfp-machine.h: ... to here.
3727         * sysdeps/arm/Implies: Remove arm/soft-fp.
3728
3729 2014-10-14  Joseph Myers  <joseph@codesourcery.com>
3730
3731         * conform/data/sys/utsname.h-data (*_t): Allow.
3732         * conform/data/sys/wait.h-data [POSIX] (uid_t): Do not define.
3733         [POSIX] (WEXITED): Do not expect constant.
3734         [POSIX] (WSTOPPED): Likewise.
3735         [POSIX] (WNOHANG): Likewise.
3736         [POSIX] (WNOWAIT): Likewise.
3737         [POSIX] (siginfo_t): Do not expect type or elements.
3738         [POSIX] (pid_t): Do not expect type.
3739         [POSIX] (signal.h): Do not allow header.
3740         [POSIX] (sys/resource.h): Likewise.
3741         [POSIX] (si_*): Do not allow pattern.
3742         [POSIX] (W*): Likewise.
3743         [POSIX] (P_*): Likewise.
3744         [POSIX] (BUS_*): Likewise.
3745         [POSIX] (CLD_*): Likewise.
3746         [POSIX] (FPE_*): Likewise.
3747         [POSIX] (ILL_*): Likewise.
3748         [POSIX] (POLL_*): Likewise.
3749         [POSIX] (SEGV_*): Likewise.
3750         [POSIX] (SI_*): Likewise.
3751         [POSIX] (TRAP_*): Likewise.
3752         * conform/Makefile (test-xfail-POSIX/sys/wait.h/conform): New
3753         variable.
3754
3755 2014-10-14  Paul Pluzhnikov  <ppluzhnikov@google.com>
3756
3757         [BZ #12926]
3758         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Avoid
3759         infinite loop when __recvmsg returns 0.
3760
3761 2014-10-10  Joseph Myers  <joseph@codesourcery.com>
3762
3763         * CANCEL-FCT-WAIVE: Remove file.
3764         * CANCEL-FILE-WAIVE: Likewise.
3765
3766         [BZ #14132]
3767         * elf/dl-sysdep.c (__libc_enable_secure): Use rtld_hidden_data_def
3768         instead of INTVARDEF.
3769         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
3770         * sysdeps/mach/hurd/dl-sysdep.c (__libc_enable_secure): Use
3771         rtld_hidden_data_def instead of INTVARDEF.
3772         (_dl_sysdep_start): Do not use INTUSE with __libc_enable_secure.
3773         * elf/dl-deps.c (expand_dst): Likewise.
3774         * elf/dl-load.c (_dl_dst_count): Likewise.
3775         (_dl_dst_substitute): Likewise.
3776         (decompose_rpath): Likewise.
3777         (_dl_init_paths): Likewise.
3778         (open_path): Likewise.
3779         (_dl_map_object): Likewise.
3780         * elf/rtld.c (dl_main): Likewise.
3781         (process_dl_audit): Likewise.
3782         (process_envvars): Likewise.
3783         * include/unistd.h [IS_IN_rtld] (__libc_enable_secure_internal):
3784         Remove declaration.
3785         (__libc_enable_secure): Use rtld_hidden_proto.
3786
3787 2014-10-09  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
3788
3789         * elf/dl-load.c
3790         (add_path): New function broken out of _dl_rtld_di_serinfo.
3791         (_dl_rtld_di_serinfo): Remove that nested function.  Update call sites.
3792
3793 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
3794
3795         * soft-fp/double.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_D): Use
3796         parentheses around macro arguments.
3797         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_DP): Likewise.
3798         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_D): Likewise.
3799         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_DP): Likewise.
3800         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_D): Likewise.
3801         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_DP): Likewise.
3802         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_D): Likewise.
3803         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
3804         [_FP_W_TYPE_SIZE < 64] (FP_PACK_D): Likewise.
3805         [_FP_W_TYPE_SIZE < 64] (FP_PACK_DP): Likewise.
3806         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_D): Likewise.
3807         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_DP): Likewise.
3808         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_D): Likewise.
3809         [_FP_W_TYPE_SIZE < 64] (FP_CMP_D): Likewise.
3810         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_D): Likewise.
3811         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_D): Likewise.
3812         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_D): Likewise.
3813         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_D): Likewise.
3814         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_D): Likewise.
3815         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_DP): Likewise.
3816         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_D): Likewise.
3817         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_DP): Likewise.
3818         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_D): Likewise.
3819         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_DP): Likewise.
3820         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_D): Likewise.
3821         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_DP): Likewise.
3822         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_D): Likewise.
3823         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_DP): Likewise.
3824         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_D): Likewise.
3825         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_DP): Likewise.
3826         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_D): Likewise.
3827         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_D): Likewise.
3828         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_D): Likewise.
3829         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_D): Likewise.
3830         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_D): Likewise.
3831         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_D): Likewise.
3832         * soft-fp/extended.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_E):
3833         Likewise.
3834         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_EP): Likewise.
3835         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_E): Likewise.
3836         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
3837         [_FP_W_TYPE_SIZE < 64] (FP_PACK_E): Likewise.
3838         [_FP_W_TYPE_SIZE < 64] (FP_PACK_EP): Likewise.
3839         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_E): Likewise.
3840         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_EP): Likewise.
3841         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_E): Likewise.
3842         [_FP_W_TYPE_SIZE < 64] (FP_CMP_E): Likewise.
3843         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_E): Likewise.
3844         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_E): Likewise.
3845         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_E): Likewise.
3846         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_E): Likewise.
3847         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_E): Likewise.
3848         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_EP): Likewise.
3849         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_E): Likewise.
3850         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_EP): Likewise.
3851         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_E): Likewise.
3852         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_EP): Likewise.
3853         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_E): Likewise.
3854         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_EP): Likewise.
3855         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_E): Likewise.
3856         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_E): Likewise.
3857         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_E): Likewise.
3858         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_E): Likewise.
3859         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_E): Likewise.
3860         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_E): Likewise.
3861         * soft-fp/op-1.h (_FP_FRAC_SRST_1): Likewise.
3862         (_FP_FRAC_SRS_1): Likewise.
3863         (_FP_FRAC_CLZ_1): Likewise.
3864         (_FP_MUL_MEAT_1_imm): Likewise.
3865         (_FP_MUL_MEAT_1_wide): Likewise.
3866         (_FP_MUL_MEAT_1_hard): Likewise.
3867         (_FP_SQRT_MEAT_1): Likewise.
3868         (_FP_FRAC_ASSEMBLE_1): Likewise.
3869         (_FP_FRAC_DISASSEMBLE_1): Likewise.
3870         * soft-fp/op-2.h (_FP_FRAC_CLZ_2): Likewise.
3871         (__FP_CLZ_2): Likewise.
3872         (_FP_MUL_MEAT_2_wide): Likewise.
3873         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
3874         (_FP_MUL_MEAT_2_gmp): Likewise.
3875         (_FP_MUL_MEAT_2_120_240_double): Likewise.
3876         (_FP_SQRT_MEAT_2): Likewise.
3877         (_FP_FRAC_ASSEMBLE_2): Likewise.
3878         (_FP_FRAC_DISASSEMBLE_2): Likewise.
3879         * soft-fp/op-4.h (_FP_FRAC_SRS_4): Likewise.
3880         (_FP_FRAC_CLZ_4): Likewise.
3881         (_FP_MUL_MEAT_4_wide): Likewise.
3882         (_FP_MUL_MEAT_4_gmp): Likewise.
3883         (_FP_SQRT_MEAT_4): Likewise.
3884         (_FP_FRAC_ASSEMBLE_4): Likewise.
3885         (_FP_FRAC_DISASSEMBLE_4): Likewise.
3886         * soft-fp/op-common.h (_FP_CMP): Likewise.
3887         (_FP_CMP_EQ): Likewise.
3888         (_FP_CMP_UNORD): Likewise.
3889         (_FP_TO_INT): Likewise.
3890         (_FP_FROM_INT): Likewise.
3891         [!__FP_CLZ] (__FP_CLZ): Likewise.
3892         (_FP_DIV_HELP_imm): Likewise.
3893         * soft-fp/quad.h [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_Q):
3894         Likewise.
3895         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_RAW_QP): Likewise.
3896         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_Q): Likewise.
3897         [_FP_W_TYPE_SIZE < 64] (FP_PACK_RAW_QP): Likewise.
3898         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_Q): Likewise.
3899         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_QP): Likewise.
3900         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
3901         [_FP_W_TYPE_SIZE < 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
3902         [_FP_W_TYPE_SIZE < 64] (FP_PACK_Q): Likewise.
3903         [_FP_W_TYPE_SIZE < 64] (FP_PACK_QP): Likewise.
3904         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_Q): Likewise.
3905         [_FP_W_TYPE_SIZE < 64] (FP_PACK_SEMIRAW_QP): Likewise.
3906         [_FP_W_TYPE_SIZE < 64] (_FP_SQRT_MEAT_Q): Likewise.
3907         [_FP_W_TYPE_SIZE < 64] (FP_CMP_Q): Likewise.
3908         [_FP_W_TYPE_SIZE < 64] (FP_CMP_EQ_Q): Likewise.
3909         [_FP_W_TYPE_SIZE < 64] (FP_CMP_UNORD_Q): Likewise.
3910         [_FP_W_TYPE_SIZE < 64] (FP_TO_INT_Q): Likewise.
3911         [_FP_W_TYPE_SIZE < 64] (FP_FROM_INT_Q): Likewise.
3912         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_Q): Likewise.
3913         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_RAW_QP): Likewise.
3914         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_Q): Likewise.
3915         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_RAW_QP): Likewise.
3916         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_Q): Likewise.
3917         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_QP): Likewise.
3918         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_Q): Likewise.
3919         [_FP_W_TYPE_SIZE >= 64] (FP_UNPACK_SEMIRAW_QP): Likewise.
3920         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_Q): Likewise.
3921         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_QP): Likewise.
3922         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_Q): Likewise.
3923         [_FP_W_TYPE_SIZE >= 64] (FP_PACK_SEMIRAW_QP): Likewise.
3924         [_FP_W_TYPE_SIZE >= 64] (_FP_SQRT_MEAT_Q): Likewise.
3925         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_Q): Likewise.
3926         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_EQ_Q): Likewise.
3927         [_FP_W_TYPE_SIZE >= 64] (FP_CMP_UNORD_Q): Likewise.
3928         [_FP_W_TYPE_SIZE >= 64] (FP_TO_INT_Q): Likewise.
3929         [_FP_W_TYPE_SIZE >= 64] (FP_FROM_INT_Q): Likewise.
3930         * soft-fp/single.h (FP_UNPACK_RAW_S): Likewise.
3931         (FP_UNPACK_RAW_SP): Likewise.
3932         (FP_PACK_RAW_S): Likewise.
3933         (FP_PACK_RAW_SP): Likewise.
3934         (FP_UNPACK_S): Likewise.
3935         (FP_UNPACK_SP): Likewise.
3936         (FP_UNPACK_SEMIRAW_S): Likewise.
3937         (FP_UNPACK_SEMIRAW_SP): Likewise.
3938         (FP_PACK_S): Likewise.
3939         (FP_PACK_SP): Likewise.
3940         (FP_PACK_SEMIRAW_S): Likewise.
3941         (FP_PACK_SEMIRAW_SP): Likewise.
3942         (_FP_SQRT_MEAT_S): Likewise.
3943         (FP_CMP_S): Likewise.
3944         (FP_CMP_EQ_S): Likewise.
3945         (FP_CMP_UNORD_S): Likewise.
3946         (FP_TO_INT_S): Likewise.
3947         (FP_FROM_INT_S): Likewise.
3948
3949         * soft-fp/op-common.h (_FP_TO_INT): Handle rsigned == 2.
3950
3951         * soft-fp/soft-fp.h (FP_EX_INVALID_SNAN): New macro.
3952         (FP_EX_INVALID_IMZ): Likewise.
3953         (FP_EX_INVALID_IMZ_FMA): Likewise.
3954         (FP_EX_INVALID_ISI): Likewise.
3955         (FP_EX_INVALID_ZDZ): Likewise.
3956         (FP_EX_INVALID_IDI): Likewise.
3957         (FP_EX_INVALID_SQRT): Likewise.
3958         (FP_EX_INVALID_CVI): Likewise.
3959         (FP_EX_INVALID_VC): Likewise.
3960         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Specify more precise
3961         "invalid" exceptions.
3962         (_FP_CHECK_SIGNAN_SEMIRAW): Likewise.
3963         (_FP_ADD_INTERNAL): Likewise.
3964         (_FP_MUL): Likewise.
3965         (_FP_FMA): Likewise.
3966         (_FP_DIV): Likewise.
3967         (_FP_CMP_CHECK_NAN): Likewise.
3968         (_FP_SQRT): Likewise.
3969         (_FP_TO_INT): Likewise.
3970         (FP_EXTEND): Likewise.
3971
3972 2014-10-09  Allan McRae  <allan@archlinux.org>
3973
3974         * po/fr.po: Update French translation from translation project.
3975
3976 2014-10-09  Joseph Myers  <joseph@codesourcery.com>
3977
3978         [BZ #14132]
3979         * stdlib/cxa_atexit.c (__cxa_atexit): Use libc_hidden_def instead
3980         of INTDEF.
3981         * include/stdlib.h (__cxa_atexit_internal): Remove declaration.
3982         (__cxa_atexit): Use libc_hidden_proto.
3983         [!NOT_IN_libc] (__cxa_atexit): Remove macro definition.
3984
3985         [BZ #14132]
3986         * include/wctype.h [!_ISOMAC] (__iswalpha_l_internal): Remove
3987         declaration.
3988         [!_ISOMAC] (__iswdigit_l_internal): Likewise.
3989         [!_ISOMAC] (__iswspace_l_internal): Likewise.
3990         [!_ISOMAC] (__iswxdigit_l_internal): Likewise.
3991         [!_ISOMAC] (__iswctype_internal): Likewise.
3992         * stdio-common/siglist.c (_sys_siglist_internal): Remove alias.
3993         * sysdeps/unix/syscalls.list (chown): Remove __chown_internal
3994         alias.
3995         (fcntl): Remove __fcntl_internal alias.
3996         * sysdeps/unix/sysv/linux/hppa/syscalls.list (connect): Remove
3997         __connect_internal alias.
3998         * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (connect):
3999         Likewise.
4000
4001         * soft-fp/soft-fp.h (FP_DENORM_ZERO): New macro.
4002         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Check
4003         FP_DENORM_ZERO.
4004         (_FP_CHECK_FLUSH_ZERO): New macro.
4005         (_FP_ADD_INTERNAL): Call _FP_CHECK_FLUSH_ZERO.
4006         (_FP_CMP): Likewise.
4007         (_FP_CMP_EQ): Likewise.
4008         (_FP_TO_INT): Do not set inexact for subnormal arguments if
4009         FP_DENORM_ZERO.
4010         (FP_EXTEND): Call _FP_CHECK_FLUSH_ZERO.
4011         (FP_TRUNC): Likewise.
4012
4013         * soft-fp/op-common.h (_FP_TO_INT): Ensure maximum exponent is
4014         treated as invalid conversion, not as normal exponent.
4015
4016         * soft-fp/op-common.h (_FP_CMP_CHECK_NAN): New macro.
4017         (_FP_CMP): Add extra argument EX.  Call _FP_CMP_CHECK_NAN.
4018         (_FP_CMP_EQ): Likewise.
4019         (_FP_CMP_UNORD): Likewise.
4020         * soft-fp/double.h (FP_CMP_D): Add extra argument EX.
4021         (FP_CMP_EQ_D): Likewise.
4022         (FP_CMP_UNORD_D): Likewise.
4023         * soft-fp/extended.h (FP_CMP_E): Likewise.
4024         (FP_CMP_EQ_E): Likewise.
4025         (FP_CMP_UNORD_E): Likewise.
4026         * soft-fp/quad.h (FP_CMP_Q): Likewise.
4027         (FP_CMP_EQ_Q): Likewise.
4028         (FP_CMP_UNORD_Q): Likewise.
4029         * soft-fp/single.h (FP_CMP_S): Likewise.
4030         (FP_CMP_EQ_S): Likewise.
4031         (FP_CMP_UNORD_S): Likewise.
4032         * soft-fp/eqdf2.c (__eqdf2): Update call to FP_CMP_EQ_D.
4033         * soft-fp/eqsf2.c (__eqsf2): Update call to FP_CMP_EQ_S.
4034         * soft-fp/eqtf2.c (__eqtf2): Update call to FP_CMP_EQ_Q.
4035         * soft-fp/gedf2.c (__gedf2): Update call to FP_CMP_D.
4036         * soft-fp/gesf2.c (__gesf2): Update call to FP_CMP_S.
4037         * soft-fp/getf2.c (__getf2): Update call to FP_CMP_Q.
4038         * soft-fp/ledf2.c (__ledf2): Update call to FP_CMP_D.
4039         * soft-fp/lesf2.c (__lesf2): Update call to FP_CMP_S.
4040         * soft-fp/letf2.c (__letf2): Update call to FP_CMP_Q.
4041         * soft-fp/unorddf2.c (__unorddf2): Update call to FP_CMP_UNORD_D.
4042         * soft-fp/unordsf2.c (__unordsf2): Update call to FP_CMP_UNORD_S.
4043         * soft-fp/unordtf2.c (__unordtf2): Update call to FP_CMP_UNORD_Q.
4044         * sysdeps/alpha/soft-fp/ots_cmpe.c (internal_compare): Update call
4045         to FP_CMP_Q.
4046         * sysdeps/sparc/sparc32/soft-fp/q_cmp.c (_Q_cmp): Update call to
4047         FP_CMP_Q.
4048         * sysdeps/sparc/sparc32/soft-fp/q_cmpe.c (_Q_cmpe): Likewise.
4049         * sysdeps/sparc/sparc32/soft-fp/q_feq.c (_Q_feq): Update call to
4050         FP_CMP_EQ_Q.
4051         * sysdeps/sparc/sparc32/soft-fp/q_fge.c (_Q_fge): Update call to
4052         FP_CMP_Q.
4053         * sysdeps/sparc/sparc32/soft-fp/q_fgt.c (_Q_fgt): Likewise.
4054         * sysdeps/sparc/sparc32/soft-fp/q_fle.c (_Q_fle): Likewise.
4055         * sysdeps/sparc/sparc32/soft-fp/q_flt.c (_Q_flt): Likewise.
4056         * sysdeps/sparc/sparc32/soft-fp/q_fne.c (_Q_fne): Update call to
4057         FP_CMP_EQ_Q.
4058         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c (_Qp_cmp): Update call to
4059         FP_CMP_Q.
4060         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c (_Qp_cmpe): Likewise.
4061         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c (_Qp_feq): Update call to
4062         FP_CMP_EQ_Q.
4063         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c (_Qp_fge): Update call to
4064         FP_CMP_Q.
4065         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c (_Qp_fgt): Likewise.
4066         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c (_Qp_fle): Likewise.
4067         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c (_Qp_flt): Likewise.
4068         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c (_Qp_fne): Update call to
4069         FP_CMP_EQ_Q.
4070
4071         * soft-fp/op-common.h (FP_EXTEND): When a subnormal input produces
4072         a subnormal result, set the underflow exception if trapping on
4073         underflow is enabled.
4074         * soft-fp/soft-fp.h (FP_INIT_TRAPPING_EXCEPTIONS): New macro.
4075         (FP_INIT_EXCEPTIONS): Default to FP_INIT_TRAPPING_EXCEPTIONS.
4076         [FP_NO_EXACT_UNDERFLOW] (FP_TRAPPING_EXCEPTIONS): Undefine and
4077         redefine to 0.
4078         * soft-fp/extenddftf2.c (FP_NO_EXACT_UNDERFLOW): Define.
4079         * soft-fp/extendsfdf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
4080         * soft-fp/extendsftf2.c (FP_NO_EXACT_UNDERFLOW): Likewise.
4081         * soft-fp/extendxftf2.c (__extendxftf2): Use
4082         FP_INIT_TRAPPING_EXCEPTIONS instead of FP_INIT_ROUNDMODE.
4083
4084         * soft-fp/soft-fp.h (FP_CLEAR_EXCEPTIONS): Remove macro.
4085         * sysdeps/sparc/sparc32/soft-fp/q_itoq.c: Define FP_NO_EXCEPTIONS.
4086         (_Q_itoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4087         FP_HANDLE_EXCEPTIONS.
4088         * sysdeps/sparc/sparc32/soft-fp/q_lltoq.c: Define FP_NO_EXCEPTIONS.
4089         (_Q_lltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4090         FP_HANDLE_EXCEPTIONS.
4091         * sysdeps/sparc/sparc32/soft-fp/q_ulltoq.c: Define FP_NO_EXCEPTIONS.
4092         (_Q_ulltoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4093         FP_HANDLE_EXCEPTIONS.
4094         * sysdeps/sparc/sparc32/soft-fp/q_utoq.c: Define FP_NO_EXCEPTIONS.
4095         (_Q_utoq): Do not use FP_DECL_EX, FP_CLEAR_EXCEPTIONS or
4096         FP_HANDLE_EXCEPTIONS.
4097
4098 2014-10-08  Joseph Myers  <joseph@codesourcery.com>
4099
4100         [BZ #14132]
4101         * sysdeps/unix/sysv/linux/include/sys/timex.h: New file.
4102         * sysdeps/unix/sysv/linux/adjtime.c [!ADJTIMEX] (ADJTIMEX): Do not
4103         use INTUSE.
4104         [!ADJTIMEX] (INTUSE(__adjtimex)): Remove declaration.
4105         * sysdeps/unix/sysv/linux/alpha/adjtime.c (__adjtimex_internal):
4106         Remove alias.
4107         (__adjtimex): Define using libc_hidden_ver.
4108         * sysdeps/unix/sysv/linux/ntp_gettime.c (INTUSE(__adjtimex)):
4109         Remove declaration.
4110         (ntp_gettime): Call __adjtimex directly.
4111         * sysdeps/unix/sysv/linux/ntp_gettimex.c (INTUSE(__adjtimex)):
4112         Remove declaration.
4113         (ntp_gettimex): Call __adjtimex directly.
4114         * sysdeps/unix/sysv/linux/syscalls.list (adjtimex): Remove
4115         __adjtimex_internal alias.
4116
4117 2014-10-08  Roland McGrath  <roland@hack.frob.com>
4118
4119         [BZ #17460]
4120         * nscd/nscd.c (more_help): Rewrite list of tables collection
4121         using xstrdup and asprintf.
4122
4123         * nscd/nscd_conf.c: Remove local xstrdup declaration.
4124
4125 2014-10-08  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4126             Roland McGrath  <roland@hack.frob.com>
4127
4128         * elf/dl-lookup.c (enter_unique_sym): New function, broken out of ...
4129         (do_lookup_unique): ... local function 'enter' here; update callers.
4130
4131 2014-10-06  Joseph Myers  <joseph@codesourcery.com>
4132
4133         * sysdeps/unix/make-syscalls.sh (emit_weak_aliases): Condition
4134         compat_symbol calls on [SHARED].
4135         * sysdeps/unix/sysv/linux/powerpc/lchown.S: Remove file.
4136         * sysdeps/unix/sysv/linux/i386/syscalls.list (oldsetrlimit):
4137         Remove.
4138         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4139         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list
4140         (oldsetrlimit): Remove.
4141         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4142         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
4143         (lchown): New syscall entry.
4144         (oldsetrlimit): Remove.
4145         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4146         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list
4147         (oldsetrlimit): Remove.
4148         (setrlimit): Add setrlimit@GLIBC_2.0 alias.
4149
4150         [BZ #14138]
4151         * sysdeps/unix/sysv/linux/arm/fchown.c: Remove file.
4152         * sysdeps/unix/sysv/linux/arm/lchown.c: Likewise.
4153         * sysdeps/unix/sysv/linux/m68k/fchown.c: Likewise.
4154         * sysdeps/unix/sysv/linux/m68k/lchown.c: Likewise.
4155         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
4156         * sysdeps/unix/sysv/linux/arm/syscalls.list (lchown): Add syscall.
4157         (fchown): Likewise.
4158         * sysdeps/unix/sysv/linux/m68k/syscalls.list (lchown): Likewise.
4159         (fchown): Likewise.
4160         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list (chown):
4161         Likewise.
4162
4163 2014-10-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4164
4165         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Remove file.
4166         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c
4167         (pthread_spin_unlock): Use __ARCH_REL_INSTR instead of
4168         __lll_rel_instr and __ARCH_ACQ_INSTR instead of __lll_acq_instr.
4169         * sysdeps/unix/sysv/linux/powerpc/sem_post.c (__new_sem_post):
4170         Likewise.
4171         (__old_sem_post): Likewise.
4172
4173 2014-10-06  Chris Metcalf  <cmetcalf@tilera.com>
4174
4175         * sysdeps/unix/sysv/linux/tile/sysdep.h (INLINE_VSYSCALL): Define
4176         INLINE_VSYSCALL, INTERNAL_VSYSCALL, and
4177         HAVE_CLOCK_GETTIME_VSYSCALL macros.
4178         * sysdeps/unix/sysv/linux/tile/gettimeofday.c (__gettimeofday):
4179         Use INLINE_VSYSCALL macro.
4180         * sysdeps/unix/sysv/linux/tile/bits/libc-vdso: Add declaration of
4181         __vdso_clock_gettime.
4182         * sysdeps/unix/sysv/linux/tile/init-first.c
4183         (_libc_vdso_platform_setup): Set new __vdso_clock_gettime global.
4184         * sysdeps/unix/sysv/linux/tile/Versions (GLIBC_PRIVATE): Add
4185         __vdso_clock_gettime.
4186
4187         * sysdeps/unix/sysv/linux/tile/clone.S (__clone): Fix code
4188         to set up frame more cleanly.
4189
4190         * sysdeps/tile/memcmp.c: New file.
4191
4192         * sysdeps/unix/sysv/linux/tile/sysconf.c: New file.
4193
4194         * sysdeps/tile/tilegx/string-endian.h (STRSHIFT): New macro.
4195         * sysdeps/tile/tilegx/strcasestr.c: New file.
4196         * sysdeps/tile/tilegx/strnlen.c: New file.
4197         * sysdeps/tile/tilegx/strstr.c: New file.
4198
4199         * sysdeps/tile/tilegx/string-endian.h (copy_byte): Optimize.
4200
4201 2014-10-06  Arjun Shankar  <arjun.is@lostca.se>
4202
4203         * nptl/tst-setuid3.c: Write errors to stdout.
4204
4205 2014-10-01  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4206
4207         * elf/dl-deps.c
4208         (preload): New functions broken out of _dl_map_object_deps.
4209         (_dl_map_object_deps):  Remove a nested function. Update call sites.
4210
4211 2014-10-01  Joseph Myers  <joseph@codesourcery.com>
4212
4213         [BZ #14138]
4214         * sysdeps/unix/sysv/linux/execve.c: Remove file.
4215         * sysdeps/unix/sysv/linux/syscalls.list (execve): Add syscall.
4216
4217 2014-10-01  Steve Ellcey  <sellcey@mips.com>
4218
4219         * sysdeps/mips/strcmp.S: New.
4220
4221 2014-09-30  Joseph Myers  <joseph@codesourcery.com>
4222
4223         [BZ #14138]
4224         * sysdeps/unix/sysv/linux/syscalls.list (fchownat): New syscall.
4225         (linkat): Likewise.
4226         (mkdirat): Likewise.
4227         (readlinkat): Likewise.
4228         (renameat): Likewise.
4229         (symlinkat): Likewise.
4230         (unlinkat): Likewise.
4231         * sysdeps/unix/sysv/linux/fchownat.c: Remove file.
4232         * sysdeps/unix/sysv/linux/linkat.c: Likewise.
4233         * sysdeps/unix/sysv/linux/mkdirat.c: Likewise.
4234         * sysdeps/unix/sysv/linux/readlinkat.c: Likewise.
4235         * sysdeps/unix/sysv/linux/renameat.c: Likewise.
4236         * sysdeps/unix/sysv/linux/symlinkat.c: Likewise.
4237         * sysdeps/unix/sysv/linux/unlinkat.c: Likewise.
4238
4239 2014-09-30  Will Newton  <will.newton@linaro.org>
4240
4241         * math/math.h: Define long double math functions if
4242         _LIBC_TEST is defined.
4243         * stdlib/tst-strtod-round.c: Define _LIBC_TEST.
4244
4245         * localedata/Makefile: Move assignment to tests-special
4246         into an ifdef testing run-built-tests.
4247         * timezone/Makefile: Likewise.
4248
4249 2014-09-29  Joseph Myers  <joseph@codesourcery.com>
4250
4251         * sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
4252         with $(BASH) not $(SHELL).
4253
4254 2014-09-29  Carlos O'Donell  <carlos@redhat.com>
4255             Matthew LeGendre  <legendre1@llnl.gov>
4256
4257         [BZ #17411]
4258         * elf/dl-reloc.c (_dl_relocate_object): Allocate correct amount for
4259         l_reloc_result.
4260
4261 2014-09-29  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4262
4263         * stdio-common/printf_fp.c
4264         (hack_digit): New function, broken out of ...
4265         (__printf_fp): ... local function here.  Update call sites.
4266         hack_digit now takes an additional parameter that is a pointer
4267         to a struct of the referenced locals.  Those locals moved inside
4268         the struct and references updated.
4269
4270 2014-09-29  H.J. Lu  <hongjiu.lu@intel.com>
4271
4272         * aclocal.m4: Require autoconf 2.69.
4273         * configure: Regenerated.
4274         * sysdeps/aarch64/configure: Likewise.
4275         * sysdeps/alpha/configure: Likewise.
4276         * sysdeps/arm/armv7/configure: Likewise.
4277         * sysdeps/arm/configure: Likewise.
4278         * sysdeps/ia64/configure: Likewise.
4279         * sysdeps/mach/configure: Likewise.
4280         * sysdeps/mips/configure: Likewise.
4281         * sysdeps/s390/configure: Likewise.
4282         * sysdeps/unix/sysv/linux/mips/configure: Likewise.
4283         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Likewise.
4284
4285         * sysdeps/alpha/configure.ac: Avoid empty lines at the end of
4286         file.
4287         * sysdeps/ia64/configure.ac: Likewise.
4288
4289 2014-09-26  Joseph Myers  <joseph@codesourcery.com>
4290
4291         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Do not
4292         specify symbol version for ld.so.  Do not include entry for
4293         libpthread.
4294         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4295         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
4296         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4297
4298         [BZ #14171]
4299         * Makeconfig [$(build-shared) = yes]
4300         ($(common-objpfx)soversions.mk): Don't handle SONAMEs specified in
4301         makefiles.
4302         [$(build-shared) = yes && $(soversions.mk-done) = t]
4303         ($(common-objpfx)gnu/lib-names.h): Remove rule.
4304         [$(build-shared) = yes && $(soversions.mk-done) = t]
4305         ($(common-objpfx)gnu/lib-names.stmp): Likewise.  Split and moved
4306         to Makerules.
4307         [$(build-shared) = yes && $(soversions.mk-done) = t]
4308         (before-compile): Don't append $(common-objpfx)gnu/lib-names.h
4309         here.
4310         [$(build-shared) = yes && $(soversions.mk-done) = t]
4311         (common-generated): Don't append gnu/lib-names.h and
4312         gnu/lib-names.stmp here.
4313         * Makerules [$(build-shared) = yes && $(soversions.mk-done) = t]
4314         (lib-names-h-abi): New variable.
4315         [$(build-shared) = yes && $(soversions.mk-done) = t]
4316         (lib-names-stmp-abi): Likewise.
4317         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4318         abi-variants] (before-compile): Append
4319         $(common-objpfx)$(lib-names-h-abi).
4320         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4321         abi-variants] (common-generated): Append gnu/lib-names.h.
4322         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4323         abi-variants] (install-others-nosubdir): Depend on
4324         $(inst_includedir)/$(lib-names-h-abi).
4325         [$(build-shared) = yes && $(soversions.mk-done) = t &&
4326         abi-variants] ($(common-objpfx)gnu/lib-names.h): New rule.
4327         [$(build-shared) = yes && $(soversions.mk-done) = t]
4328         ($(common-objpfx)$(lib-names-h-abi)): New rule.
4329         [$(build-shared) = yes && $(soversions.mk-done) = t]
4330         ($(common-objpfx)$(lib-names-stmp-abi)): Likewise.
4331         [$(build-shared) = yes && $(soversions.mk-done) = t]
4332         (common-generated): Append $(lib-names-h-abi) and
4333         $(lib-names-stmp-abi).
4334         * scripts/lib-names.awk: Do not handle multi being set.
4335         * sysdeps/unix/sysv/linux/aarch64/Makefile (abi-lp64-ld-soname):
4336         Remove variable.
4337         (abi-lp64_be-ld-soname): Likewise.
4338         * sysdeps/unix/sysv/linux/arm/Makefile (abi-soft-ld-soname):
4339         Likewise.
4340         (abi-hard-ld-soname): Likewise.
4341         * sysdeps/unix/sysv/linux/i386/shlib-versions: New file.
4342         * sysdeps/unix/sysv/linux/mips/Makefile (abi-o32_soft-ld-soname):
4343         Remove variable.
4344         (abi-o32_hard-ld-soname): Likewise.
4345         (abi-o32_soft_2008-ld-soname): Likewise.
4346         (abi-o32_hard_2008-ld-soname): Likewise.
4347         (abi-n32_soft-ld-soname): Likewise.
4348         (abi-n32_hard-ld-soname): Likewise.
4349         (abi-n32_soft_2008-ld-soname): Likewise.
4350         (abi-n32_hard_2008-ld-soname): Likewise.
4351         (abi-n64_soft-ld-soname): Likewise.
4352         (abi-n64_hard-ld-soname): Likewise.
4353         (abi-n64_soft_2008-ld-soname): Likewise.
4354         (abi-n64_hard_2008-ld-soname): Likewise.
4355         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-64-v1-ld-soname):
4356         Likewise.
4357         (abi-64-v2-ld-soname): Likewise.
4358         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: Add
4359         ld.so entries.
4360         * sysdeps/unix/sysv/linux/s390/Makefile (abi-64-ld-soname): Remove
4361         variable.
4362         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Add ld.so
4363         entry.
4364         * sysdeps/unix/sysv/linux/x86/Makefile (abi-32-ld-soname): Remove
4365         variable.
4366         (abi-64-ld-soname): Likewise.
4367         (abi-x32-ld-soname): Likewise.
4368         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Add ld.so
4369         entry.
4370         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4371
4372 2014-09-23  Joseph Myers  <joseph@codesourcery.com>
4373
4374         [BZ #14138]
4375         * sysdeps/unix/sysv/linux/arm/setrlimit.c: Remove file.
4376         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Likewise.
4377         * sysdeps/unix/sysv/linux/m68k/setrlimit.c: Likewise.
4378         * sysdeps/unix/sysv/linux/powerpc/setrlimit.c: Likewise.
4379         * sysdeps/unix/sysv/linux/s390/s390-32/setrlimit.c: Likewise.
4380         * sysdeps/unix/sysv/linux/sh/setrlimit.c: Likewise.
4381         * sysdeps/unix/sysv/linux/i386/syscalls.list (setrlimit): Add
4382         syscall entry for GLIBC_2.2 symbol version.
4383         * sysdeps/unix/sysv/linux/m68k/m680x0/syscalls.list (setrlimit):
4384         Likewise.
4385         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list
4386         (setrlimit): Likewise.
4387         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list (setrlimit):
4388         Likewise.
4389
4390 2014-09-23  Will Newton  <will.newton@linaro.org>
4391
4392         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h: Check for
4393         _LINUX_ARM_SYSDEP_H include guard too.
4394         * sysdeps/unix/sysv/linux/arm/sysdep.h (_SYS_AUXV_H): Remove
4395         define.
4396
4397 2014-09-20  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
4398
4399         * sysdeps/unix/sysv/linux/eventfd.c:
4400         Make first argument unsigned.
4401         * sysdeps/unix/sysv/linux/hppa/sys/eventfd.h: Likewise.
4402         * sysdeps/unix/sysv/linux/sys/eventfd.h: Likewise.
4403
4404 2014-09-20  Ondřej Bílka  <neleai@seznam.cz>
4405
4406         * socket/recvmmsg.c (recvmmsg): Drop const argument.
4407         * socket/sys/socket.h: Likewise
4408         * sysdeps/unix/sysv/linux/recvmmsg.c: Likewise.
4409
4410 2014-09-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
4411
4412         * stdlib/longlong.h: Add __udiv_w_sdiv prototype.
4413
4414 2014-09-17  Arjun Shankar  <arjun.is@lostca.se>
4415
4416         * time/tst-ftime.c: New test.
4417         * time/Makefile (tests): Add tst-ftime.
4418
4419 2014-09-17  Joseph Myers  <joseph@codesourcery.com>
4420
4421         * soft-fp/extended.h: Fix comment formatting.
4422         * soft-fp/op-1.h: Likewise.
4423         * soft-fp/op-2.h: Likewise.
4424         * soft-fp/op-4.h: Likewise.
4425         * soft-fp/op-8.h: Likewise.
4426         * soft-fp/op-common.h: Likewise.
4427         * soft-fp/soft-fp.h: Likewise.
4428
4429         * soft-fp/op-common.h (_FP_TO_INT): Correct formatting.
4430
4431 2014-09-16  Joseph Myers  <joseph@codesourcery.com>
4432
4433         [BZ #6652]
4434         * Makeconfig (soversions-default-setname): Remove variable.
4435         ($(common-objpfx)soversions.i): Don't pass default_setname to
4436         soversions.awk.
4437         * Makerules ($(common-objpfx)abi-versions.h): Don't pass
4438         oldest_abi to abi-versions.awk.
4439         * config.h.in (GLIBC_OLDEST_ABI): Remove macro undefine.
4440         * config.make.in (oldest-abi): Remove variable.
4441         * configure.ac (--enable-oldest-abi): Remove configure option.
4442         * configure: Regenerated.
4443         * csu/version.c (banner) [GLIBC_OLDEST_ABI]: Remove conditional
4444         text.
4445         * scripts/abi-versions.awk: Do not handle oldest_abi variable.
4446         * scripts/soversions.awk: Do not handle default_setname variable.
4447         * sysdeps/mach/hurd/configure.ac: Do not handle oldest_abi
4448         variable.
4449         * sysdeps/mach/hurd/configure: Regenerated.
4450         * sysdeps/unix/sysv/linux/configure.ac: Do not handle oldest_abi
4451         variable.
4452         * sysdeps/unix/sysv/linux/configure: Regenerated.
4453
4454 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
4455
4456         * elf/Makefile (CFLAGS-interp.c): Remove.
4457         ($(elf-objpfx)runtime-linker.h): Generate header with linker
4458         path string.
4459         * elf/interp.c: Include generated runtime-linker.h
4460
4461         * Makerules (lib%.so): Don't include $(+interp) in
4462         prerequisites.
4463         * elf/Makefile (CFLAGS-interp.c): Don't define NOT_IN_libc.
4464         * dlfcn/eval.c: Remove file.
4465
4466         * posix/getconf.c (vars): Don't check for _[SP]C_* and _CS
4467         macros.
4468
4469         [BZ #17266]
4470         * misc/sys/cdefs.h: Define __extern_always_inline for clang
4471         4.2 and newer.
4472
4473         [BZ #17370]
4474         * libio/wfileops.c (do_ftell_wide): Free OUT on error path.
4475
4476 2014-09-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
4477             Jakub Jelinek  <jakub@redhat.com>
4478
4479         [BZ #17266]
4480         * libio/stdio.h: Check definition of __fortify_function
4481         instead of __extern_always_inline to include bits/stdio2.h.
4482         * math/bits/math-finite.h [__USE_XOPEN || __USE_ISOC99]: Also
4483         check if __extern_always_inline is defined.
4484         [__USE_MISC || __USE_XOPEN]: Likewise.
4485         [__USE_ISOC99] Likewise.
4486         * misc/sys/cdefs.h (__fortify_function): Define only if
4487         __extern_always_inline is defined.
4488         [!__cplusplus || __GNUC_PREREQ (4,3)]: Revert to defining
4489         __extern_always_inline and __extern_inline only for g++-4.3
4490         and newer or a compatible gcc.
4491
4492 2014-09-15  Andreas Schwab  <schwab@linux-m68k.org>
4493
4494         [BZ #17371]
4495         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
4496         last change to handle zero prefix length.
4497
4498 2014-09-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
4499
4500         * sysdeps/posix/sysconf.c (__sysconf): Return -1 for
4501         _SC_REGEX_VERSION.
4502
4503         * posix/getconf.c (vars): Add _POSIX_IPV6 and
4504         _POSIX_RAW_SOCKETS.
4505
4506 2014-09-13  Allan McRae  <allan@archlinux.org>
4507
4508         * po/ru.po: Update Russian translation from translation project.
4509
4510 2014-09-12  Roland McGrath  <roland@hack.frob.com>
4511
4512         * locale/programs/locale.c (show_locale_vars): Inline local function
4513         into its sole call site.  Clean up some style nits.
4514         (print_item): New function, broken out of ...
4515         (show_info): ... local function here.  Clean up style nits.
4516
4517         * locale/programs/ld-ctype.c (set_one_default): New function, broken
4518         out of ...
4519         (set_class_defaults): ... local function set_default here.
4520         Define set_default as a macro locally to pass constant parameters.
4521         (allocate_arrays, set_class_defaults): Use C99 for scope for each CNT,
4522         rather than a shared local.
4523
4524         * stdlib/rpmatch.c (try): New function, broken out of ...
4525         (rpmatch): ... local function here.  Also, prototypify definition.
4526
4527 2014-09-12  Joseph Myers  <joseph@codesourcery.com>
4528
4529         * scripts/soversions.awk: Do not handle configuration names.
4530         * Makeconfig ($(common-objpfx)soversions.i): Do not pass cpu,
4531         vendor and os variables to soversions.awk.
4532         * configure.ac: Do not modify gnu-* host_os.
4533         * configure: Regenerated
4534         * shlib-versions: Remove first column with configuration names.
4535         * nptl/shlib-versions: Likewise.
4536         * nptl_db/shlib-versions: Likewise.
4537         * sysdeps/hppa/shlib-versions: Likewise.
4538         * sysdeps/m68k/shlib-versions: Likewise.
4539         * sysdeps/mach/hurd/shlib-versions: Likewise.
4540         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: Likewise.
4541         * sysdeps/unix/sysv/linux/alpha/shlib-versions: Likewise.
4542         * sysdeps/unix/sysv/linux/arm/shlib-versions: Likewise.
4543         * sysdeps/unix/sysv/linux/hppa/shlib-versions: Likewise.
4544         * sysdeps/unix/sysv/linux/ia64/shlib-versions: Likewise.
4545         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: Likewise.
4546         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: Likewise.
4547         * sysdeps/unix/sysv/linux/mips/shlib-versions: Likewise.
4548         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
4549         Likewise.
4550         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4551         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
4552         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
4553         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
4554         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
4555         * sysdeps/unix/sysv/linux/tile/shlib-versions: Likewise.
4556         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Likewise.
4557         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Likewise.
4558
4559         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
4560         (HAVE_ELFV2_ABI): AC_DEFINE in ELFv2 case.
4561         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
4562         Regenerated.
4563         * config.h.in (HAVE_ELFV2_ABI): New macro undefine.
4564         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions:
4565         Condition symbol version definitions on [HAVE_ELFV2_ABI].
4566
4567         * shlib-versions: Remove OS-specific entries.  Moved to files in
4568         sysdeps.
4569         * sysdeps/mach/hurd/shlib-versions: New file.
4570         * sysdeps/unix/sysv/linux/shlib-versions: Likewise.
4571
4572         * nptl/shlib-versions: Remove architecture-specific entries.
4573         Moved to files in sysdeps.
4574         * shlib-versions: Likewise.
4575         * sysdeps/unix/sysv/linux/powerpc/powerpc64/shlib-versions: New
4576         file.
4577         * sysdeps/unix/sysv/linux/s390/s390-64/shlib-versions: Likewise.
4578         * sysdeps/unix/sysv/linux/sh/shlib-versions: Likewise.
4579         * sysdeps/unix/sysv/linux/sparc/sparc32/shlib-versions: Likewise.
4580         * sysdeps/unix/sysv/linux/sparc/sparc64/shlib-versions: Likewise.
4581
4582         * sysdeps/gnu/netinet/udp.h (UDP_NO_CHECK6_TX): New macro.
4583         (UDP_NO_CHECK6_RX): Likewise.
4584
4585 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
4586
4587         * sysdeps/posix/sysconf.c (__sysconf): Spell
4588         _POSIX_DEVICE_SPECIFIC and _POSIX_DEVICE_SPECIFIC_R correctly.
4589
4590 2014-08-12  Florian Weimer  <fweimer@redhat.com>
4591
4592         * iconv/gconv_open.c (__gconv_open): Remove transliteration module
4593         loading.
4594         * iconv/Versions (__gconv_transliterate): Export for use from
4595         gconv modules.
4596         * iconv/gconv.h (__GCONV_TRANSLIT): New flag.
4597         (struct __gconv_trans_data, __gconv_trans_fct,
4598         __gconv_trans_context_fct, __gconv_trans_query_fct,
4599         __gconv_trans_init_fct, __gconv_trans_end_fct): Remove type
4600         definitions.
4601         (struct __gconv_step_data): Remove __trans member.
4602         (__gconv_transliterate): Declaration moved from gconv_int.h.  No
4603         longer hidden.  Remove unused trans_data argument.
4604         * iconv/gconv_int.h (struct trans_struct): Remove definition.
4605         (__gconv_translit_find): Remove declaration.
4606         (__gconv_transliterate): Declaration moved to gconv.h.  Add hidden
4607         prototype.
4608         * iconv/gconv_close.c (__gconv_close): Remove __trans cleanup.
4609         * iconv/gconv_trans.c (__gconv_transliterate): Remove unused
4610         trans_data argument.  Add hidden definition.
4611         (__gconv_translit_find): Remove.
4612         * iconv/loop.c (STANDARD_TO_LOOP_ERR_HANDLER): Call
4613         __gconv_transliterate directly if __GCONV_TRANSLIT is set.
4614         * iconv/skeleton.c: Remove transliteration initialization.
4615         * libio/fileops.c (_IO_new_file_fopen): Adjust struct
4616         __gconv_step_data initialization.
4617         * libio/iofwide.c (__libio_translit_): Remove.
4618         (_IO_fwide): Adjust struct __gconv_step_data initialization.
4619         * wcsmbs/btowc.c (__btowc): Likewise.
4620         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
4621         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
4622         * wcsmbs/mbsnrtowcs.c (__mbsnrtowcs): Likewise.
4623         * wcsmbs/mbsrtowcs_l.c (__mbsrtowcs_l): Likewise.
4624         * wcsmbs/wcrtomb.c (__wcrtomb): Likewise.
4625         * wcsmbs/wcsnrtombs.c (__wcsnrtombs): Likewise.
4626         * wcsmbs/wcsrtombs.c (__wcsrtombs): Likewise.
4627         * wcsmbs/wctob.c (wctob): Likewise.
4628
4629 2014-09-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
4630
4631         [BZ #16194]
4632         * sysdeps/x86/tst-xmmymm.sh: Rename file to...
4633         * sysdeps/x86/tst-ld-sse-use.sh: ... this.  Check for zmm
4634         register usage.
4635         * sysdeps/x86/Makefile: Adjust.
4636
4637 2014-09-11  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
4638             Roland McGrath  <roland@hack.frob.com>
4639
4640         * locale/weight.h: Add include guard.
4641         (findidx): Make static rather than auto; take new parameters
4642         TABLE, INDIRECT, and EXTRA instead of getting them as outer locals.
4643         * locale/weightwc.h: Likewise.
4644         * posix/fnmatch_loop.c
4645         (FCT): Change type of EXTRA from int32_t to wint_t.
4646         Don't include either header inside the function.
4647         Call FINDIDX rather than findidx, and pass new arguments.
4648         #undef FINDIDX at the end of the file.
4649         * posix/fnmatch.c [_LIBC]: #include <locale/weight.h> and define
4650         FINDIDX before including fnmatch_loop.c for the non-wide version.
4651         [_LIBC] [HANDLE_MULTIBYTE]: #define findidx to findidxwc around
4652         #include <locale/weightwc.h>, and define FINDIDX to findidxwc
4653         for the wide version.
4654         * posix/regcomp.c [_LIBC]: #include <locale/weight.h>.
4655         (build_equiv_class) [_LIBC]: Don't #include it inside the function.
4656         Pass new arguments to findidx.
4657         * posix/regexec.c [RE_ENABLE_I18N] [_LIBC]: #include <locale/weight.h>.
4658         [RE_ENABLE_I18N] (check_node_accept_bytes) [_LIBC]:
4659         Don't #include it inside the function.  Pass new arguments to findidx.
4660         * posix/regex_internal.h
4661         [!NOT_IN_libc] [_LIBC]: #include <locale/weight.h>.
4662         (re_string_elem_size_at): Don't #include it inside the function.
4663         Pass new arguments to findidx.
4664         * string/strcoll_l.c: #include WEIGHT_H at top level.
4665         (get_next_seq): Don't #include it inside the function.
4666         Pass new arguments to findidx.
4667         (get_next_seq_nocache): Likewise.
4668         * string/strxfrm_l.c: #include WEIGHT_H at top level.
4669         (STRXFRM): Don't #include it inside the function.
4670         Pass new arguments to findidx.
4671
4672 2014-09-11  Florian Weimer  <fweimer@redhat.com>
4673
4674         [BZ #17344]
4675         * malloc/malloc.c (unlink): Turn asserts into a call to
4676         malloc_printerr.
4677
4678 2014-09-11  Tim Lammens  <tim.lammens@gmail.com>
4679
4680         [BZ #17370]
4681         * libio/wfileops (do_ftell_wide): Free OUT.
4682
4683 2014-09-10  Chris Metcalf  <cmetcalf@tilera.com>
4684
4685         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Remove file.
4686
4687 2014-09-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
4688
4689         [BZ #17363]
4690         * inet/getnetgrent_r.c (__internal_getnetgrent_r): Try next
4691         group if the current group is empty.
4692
4693 2014-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
4694
4695         * benchtests/bench-memset.c (test_main): Add more test from size
4696         from 32 to 512 bytes.
4697         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
4698         Add POWER8 memset object.
4699         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
4700         (__libc_ifunc_impl_list): Add POWER8 memset and bzero implementations.
4701         * sysdeps/powerpc/powerpc64/multiarch/bzero.c (__bzero): Add POWER8
4702         implementation.
4703         * sysdeps/powerpc/powerpc64/multiarch/memset.c (__libc_memset):
4704         Likewise.
4705         * sysdeps/powerpc/powerpc64/multiarch/memset-power8.S: New file:
4706         multiarch POWER8 memset optimization.
4707         * sysdeps/powerpc/powerpc64/power8/memset.S: New file: optimized
4708         POWER8 memset optimization.
4709
4710         * sysdeps/powerpc/powerpc64/multiarch/Makefile [sysdep_routines]:
4711         Remove bzero multiarch objects.
4712         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: Remove file.
4713         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: Likewise.
4714         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: Likewise.
4715         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S [NO_BZERO_IMPL]:
4716         Remove define.
4717         [__bzero]: Redefine to specific name.
4718         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: Likewise.
4719         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: Likewise.
4720         * sysdeps/powerpc/powerpc64/power4/memset.S [NO_BZERO_IMPL]: Remove
4721         define.
4722         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
4723         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
4724
4725 2014-09-10  Florian Weimer  <fweimer@redhat.com>
4726
4727         * Makeconfig (gccwarn-c): Turn implicit-function-declaration
4728         warnings into errors.
4729
4730         * stdlib/tst-tls-atexit-lib.c: Include <stdlib.h>, for the
4731         __cxa_thread_atexit_impl prototype.
4732
4733 2014-09-09  Steve Ellcey  <sellcey@mips.com>
4734
4735         * sysdeps/mips/preconfigure: Put code inside mips* case statement.
4736         Fix capitalization of error message.
4737
4738 2014-09-09  Steve Ellcey  <sellcey@mips.com>
4739
4740         * sysdeps/mips/preconfigure: Modify ABI tests.
4741
4742 2014-09-07  Carlos O'Donell  <carlos@systemhalted.org>
4743
4744         * sysdeps/unix/sysv/linux/hppa/c++-types.data: New file.
4745
4746 2014-09-07  Roland McGrath  <roland@hack.frob.com>
4747             Carlos O'Donell  <carlos@systemhalted.org>
4748
4749         * sysdeps/unix/sysv/linux/hppa/nptl/libc-lowlevellock.c: File removed.
4750         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Moved ...
4751         * sysdeps/unix/sysv/linux/hppa/lowlevellock.h: ... here.
4752         * sysdeps/unix/sysv/linux/hppa/nptl/pt-vfork.S: Moved ...
4753         * sysdeps/unix/sysv/linux/hppa/pt-vfork.S: ... here.
4754         * sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Moved ...
4755         * sysdeps/unix/sysv/linux/hppa/pthread.h: ... here.
4756         * sysdeps/unix/sysv/linux/hppa/nptl/pthreadP.h: Moved ...
4757         * sysdeps/unix/sysv/linux/hppa/pthreadP.h: ... here.
4758         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_broadcast.c: Moved ...
4759         * sysdeps/unix/sysv/linux/hppa/pthread_cond_broadcast.c: ... here.
4760         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_destroy.c: Moved ...
4761         * sysdeps/unix/sysv/linux/hppa/pthread_cond_destroy.c: ... here.
4762         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_init.c: Moved ...
4763         * sysdeps/unix/sysv/linux/hppa/pthread_cond_init.c: ... here.
4764         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_signal.c: Moved ...
4765         * sysdeps/unix/sysv/linux/hppa/pthread_cond_signal.c: ... here.
4766         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_timedwait.c: Moved ...
4767         * sysdeps/unix/sysv/linux/hppa/pthread_cond_timedwait.c: ... here.
4768         * sysdeps/unix/sysv/linux/hppa/nptl/pthread_cond_wait.c: Moved ...
4769         * sysdeps/unix/sysv/linux/hppa/pthread_cond_wait.c: ... here.
4770         * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Moved ...
4771         * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h: ... here.
4772         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h: Moved ...
4773         * sysdeps/hppa/nptl/bits/pthreadtypes.h: ... here.
4774         * sysdeps/unix/sysv/linux/hppa/nptl/bits/semaphore.h: Moved ...
4775         * sysdeps/hppa/nptl/bits/semaphore.h: ... here.
4776         * sysdeps/unix/sysv/linux/hppa/clone.S: Include <tcb-offsets.h>.
4777         Deconditionalize the code that was previously under [RESET_PID].
4778         * sysdeps/unix/sysv/linux/hppa/nptl/clone.S: File removed.
4779         * sysdeps/unix/sysv/linux/hppa/arch-fork.h: New file.
4780         * sysdeps/unix/sysv/linux/hppa/nptl/fork.c: File removed.
4781         * sysdeps/hppa/nptl/tcb-offsets.sym: Include pthread.h and don't
4782         include sysdep.h.
4783
4784 2014-09-08  Allan McRae  <allan@archlinux.org>
4785
4786         * version.h (RELEASE): Set to "development".
4787         (VERSION): Set to "2.20.90"
4788
4789 2014-09-07  Allan McRae  <allan@archlinux.org
4790
4791         * version.h (RELEASE): Set to "stable".
4792         (VERSION): Set to "2.20"
4793         * include/features.h (__GLIBC_MINOR__): Set to 20.
4794
4795         * manual/contrib.texi: Add entries for Wilco Dijkstra and Stefan
4796         Liebler.
4797
4798         * po/ko.po: Update Korean translation from translation project.
4799
4800 2014-09-06  Chris Metcalf  <cmetcalf@tilera.com>
4801
4802         [BZ #17354]
4803         * sysdeps/tile/dl-machine.h (elf_machine_rela): Add a MUNGE_SIGNED
4804         macro for handling signed relocations.
4805
4806 2014-09-03  Florian Weimer  <fweimer@redhat.com>
4807
4808         [BZ #17325]
4809         * iconvdata/ibm1364.c (BODY): Fix check for sentinel.
4810         * iconvdata/ibm932.c (BODY): Replace invalid sentinel check with
4811         assert.
4812         * iconvdata/ibm933.c (BODY): Fix check for sentinel.
4813         * iconvdata/ibm935.c (BODY): Likewise.
4814         * iconvdata/ibm937.c (BODY): Likewise.
4815         * iconvdata/ibm939.c (BODY): Likewise.
4816         * iconvdata/ibm943.c (BODY): Replace invalid sentinel check with
4817         assert.
4818         * iconvdata/Makefile (iconv-test.out): Pass module list to test
4819         script.
4820         * iconvdata/run-iconv-test.sh: New test loop for checking for
4821         decoder crashers.
4822
4823 2014-09-02  Khem Raj  <raj.khem@gmail.com>
4824
4825         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c (fegetenv): Add
4826         libm_hidden_ver.
4827
4828 2014-09-01  Allan McRae  <allan@archlinux.org>
4829
4830         * po/eo.po: Update Esperanto translation from translation project.
4831
4832         * po/ca.po: Update Catalan translation from translation project.
4833
4834 2014-08-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4835
4836         * sysdeps/mach/hurd/fork.c (__fork): Lock SS->lock around
4837         __proc_dostop call.
4838
4839 2014-08-27  Mark Wielaard  <mjw@redhat.com>
4840
4841         [BZ #17319]
4842         * sysdeps/i386/nptl/tls.h (TLS_INIT_TP): Use INTERNAL_SYSCALL
4843         to call set_thread_area instead of hand written asm.
4844         (__NR_set_thread_area): Removed define.
4845         (TLS_FLAG_WRITABLE): Likewise.
4846         (__ASSUME_SET_THREAD_AREA): Remove check.
4847         (TLS_EBX_ARG): Remove define.
4848         (TLS_LOAD_EBX): Likewise.
4849
4850 2014-08-27  Samuel Thibault  <samuel.thibault@ens-lyon.org>
4851
4852         Simplify atomicity of socket creation in bind.
4853
4854         * sysdeps/mach/hurd/bind.c (__bind): Use dir_lookup(node, "") instead of
4855         looking up the name after linking the file.
4856
4857 2014-08-27  Allan McRae  <allan@archlinux.org>
4858
4859         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
4860
4861 2014-08-26  Florian Weimer  <fweimer@redhat.com>
4862
4863         [BZ #17187]
4864         * iconv/gconv_trans.c (struct known_trans, search_tree, lock,
4865         trans_compare, open_translit, __gconv_translit_find):
4866         Remove module loading code.
4867
4868 2014-08-26  Allan McRae  <allan@archlinux.org>
4869
4870         * po/vi.po: Update Vietnamese translation from translation project.
4871
4872         * po/uk.po: Update Ukrainian translation from translation project.
4873
4874         * po/fr.po: Update French translation from translation project.
4875
4876         * po/ru.po: Update Russian translation from translation project.
4877
4878         * po/pl.po: Update Polish translation from translation project.
4879
4880         * po/cs.po: Update Czech translation from translation project.
4881
4882         * po/de.po: Update German translation from translation project.
4883
4884         * po/bg.po: Update Bulgarian translation from translation project.
4885
4886         * po/sv.po: Update Sweedish translation from translation project.
4887
4888         * po/nl.po: Update Dutch translation from translation project.
4889
4890         * po/es.po: Update Spanish translation from translation project.
4891
4892 2014-08-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
4893
4894         * nptl/Makefile (CFLAGS-pthread_atfork.c): Remove.
4895
4896         * catgets/Makefile (CPPFLAGS-gencat): Remove.
4897         * iconv/Makefile (CPPFLAGS-iconv_prog): Likewise.
4898         (CPPFLAGS-iconvconfig): Likewise.
4899         * timezone/Makefile (CPPFLAGS-zic): Likewise.
4900
4901         * include/libc-symbols.h: Remove unnecessary check for
4902         NOT_IN_libc.
4903         * nptl/pthreadP.h: Likewise.
4904         * sysdeps/aarch64/setjmp.S: Likewise.
4905         * sysdeps/alpha/setjmp.S: Likewise.
4906         * sysdeps/arm/sysdep.h: Likewise.
4907         * sysdeps/i386/setjmp.S: Likewise.
4908         * sysdeps/m68k/setjmp.c: Likewise.
4909         * sysdeps/posix/getcwd.c: Likewise.
4910         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
4911         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise.
4912         * sysdeps/s390/s390-32/setjmp.S: Likewise.
4913         * sysdeps/s390/s390-64/setjmp.S: Likewise.
4914         * sysdeps/sh/sh3/setjmp.S: Likewise.
4915         * sysdeps/sh/sh4/setjmp.S: Likewise.
4916         * sysdeps/unix/alpha/sysdep.h: Likewise.
4917         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Likewise.
4918         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
4919         * sysdeps/unix/sysv/linux/ia64/setjmp.S: Likewise.
4920         * sysdeps/unix/sysv/linux/ia64/sysdep.h: Likewise.
4921         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
4922         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
4923         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
4924         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
4925         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
4926         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
4927         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
4928         * sysdeps/unix/sysv/linux/tile/sysdep.h: Likewise.
4929         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
4930         * sysdeps/x86_64/setjmp.S: Likewise.
4931
4932 2014-08-13  Joseph Myers  <joseph@codesourcery.com>
4933
4934         [BZ #17263]
4935         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Include
4936         <stdint.h>.
4937         (__get_clockfreq): Use uint64_t instead of hp_timing_t in
4938         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK call.
4939
4940 2014-08-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
4941
4942         * sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
4943
4944         [BZ #17262]
4945         * sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
4946         and __x86_64__ when disabling x87 inline functions.
4947
4948 2014-08-12  H.J. Lu  <hongjiu.lu@intel.com>
4949
4950         [BZ #17259]
4951         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Replace cpuid
4952         asm statement with __cpuid_count.
4953
4954 2014-08-12  Mike Frysinger  <vapier@gentoo.org>
4955
4956         * configure.ac: Change __ehdr_start code to dereference the struct.
4957         Run readelf on the output to look for relocations.
4958         * configure: Regenerated.
4959
4960 2014-08-12  Joseph Myers  <joseph@codesourcery.com>
4961
4962         [BZ #17261]
4963         * sysdeps/powerpc/nofpu/fenv_const.c (__fe_enabled_env): Change
4964         value to 0.
4965         (__fe_nonieee_env): Define as an alias for __fe_dfl_env.
4966
4967 2014-08-12  Roland McGrath  <roland@hack.frob.com>
4968
4969         * NEWS: Mention x86-64 ld.so use of Intel MPX instructions.
4970
4971 2014-08-12  Bernard Ogden  <bernie.ogden@linaro.org>
4972
4973         [BZ #16892]
4974         * sysdeps/nptl/lowlevellock.h (__lll_timedlock): Use
4975         atomic_compare_and_exchange_bool_acq rather than atomic_exchange_acq.
4976
4977 2014-08-12  Sean Anderson  <seanga2@gmail.com>
4978
4979         * malloc/malloc.c: Fix typo in comment.
4980
4981 2014-08-09  Allan McRae  <allan@archlinux.org>
4982
4983         * Regenerate libc.po.
4984
4985 2014-08-08  Mike Frysinger  <vapier@gentoo.org>
4986
4987         * intl/tst-gettext2.sh: Check every lang file for creation.
4988
4989 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
4990
4991         * sysdeps/aarch64/fpu/math_private.h
4992         (libc_feholdsetround_noex_aarch64_ctx): New function.
4993
4994 2014-08-07  Wilco Dijkstra  <wdijkstr@arm.com>
4995
4996         * sysdeps/arm/armv6/strcpy.S (strcpy):
4997         Fix performance issue in misaligned cases.
4998
4999 2014-08-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5000
5001         * sysdeps/unix/sysv/linux/powerpc/bits/ioctl-types.h (struct winsize):
5002         Move definition from termios.h.
5003         (struct termio): Likewise.
5004         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
5005         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
5006         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
5007         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
5008         Likewise.
5009         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h (struct winsize):
5010         Move definition to ioctl-types.h
5011         (struct termio): Likewise.
5012         (NCC, TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
5013         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI, N_TTY, N_SLIP,
5014         N_MOUSE, N_PPP, N_STRIP, N_AX25, N_X25, N_6PACK, N_MASC, N_R3964,
5015         N_PROFIBUS_FDL, N_IRDA, N_SMSBLOCK, N_HDLC, N_SYNC_PPP, N_HCI):
5016         Likewise.
5017
5018 2014-08-05  Richard Henderson  <rth@redhat.com>
5019
5020         * sysdeps/alpha/soft-fp/ots_cvtxq.c (_OtsCvtXQ): Always raise
5021         exceptions.
5022         * sysdeps/alpha/soft-fp/Makefile [soft-fp] (sysdep_routines):
5023         Add fraiseexcpt.
5024         * sysdeps/alpha/soft-fp/sfp-machine.h (FP_HANDLE_EXCEPTIONS):
5025         Use __feraiseexcept.
5026         * sysdeps/unix/sysv/linux/alpha/fraiseexcpt.S (feraiseexcept):
5027         Protect libm symbols with IS_IN_libm.
5028
5029         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Remove file.
5030
5031 2014-08-04  Bernard Ogden  <bernie.ogden@linaro.org>
5032
5033         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Remove file.
5034
5035 2014-08-04  Will Newton  <will.newton@linaro.org>
5036
5037         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Remove
5038         file.
5039
5040 2014-08-04  Mike Frysinger  <vapier@gentoo.org>
5041
5042         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h (PSEUDO): Add nocancel
5043         variants for each function.
5044
5045 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5046
5047         * sysdeps/unix/sysv/linux/ia64/nptl/Makefile: File removed, contents
5048         appended ...
5049         * sysdeps/unix/sysv/linux/ia64/Makefile: ... here.
5050         * sysdeps/unix/sysv/linux/ia64/nptl/Versions: File removed, contents
5051         appended ...
5052         * sysdeps/unix/sysv/linux/ia64/Versions: ... here.
5053         * sysdeps/unix/sysv/linux/ia64/nptl/__ia64_longjmp.S: Moved ...
5054         * sysdeps/unix/sysv/linux/ia64/__ia64_longjmp.S: ... here.
5055         * sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Moved ...
5056         * sysdeps/unix/sysv/linux/ia64/__sigstack_longjmp.c: ... here.
5057         * sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data: Moved ...
5058         * sysdeps/unix/sysv/linux/ia64/c++-types.data: ... here.
5059         * sysdeps/unix/sysv/linux/ia64/nptl/dl-sysdep.h: Moved ...
5060         * sysdeps/unix/sysv/linux/ia64/dl-sysdep.h: ... here.
5061         * sysdeps/unix/sysv/linux/ia64/nptl/ld.abilist: Moved ...
5062         * sysdeps/unix/sysv/linux/ia64/ld.abilist: ... here.
5063         * sysdeps/unix/sysv/linux/ia64/nptl/libBrokenLocale.abilist: Moved ...
5064         * sysdeps/unix/sysv/linux/ia64/libBrokenLocale.abilist: ... here.
5065         * sysdeps/unix/sysv/linux/ia64/nptl/libanl.abilist: Moved ...
5066         * sysdeps/unix/sysv/linux/ia64/libanl.abilist: ... here.
5067         * sysdeps/unix/sysv/linux/ia64/nptl/libc.abilist: Moved ...
5068         * sysdeps/unix/sysv/linux/ia64/libc.abilist: ... here.
5069         * sysdeps/unix/sysv/linux/ia64/nptl/libcrypt.abilist: Moved ...
5070         * sysdeps/unix/sysv/linux/ia64/libcrypt.abilist: ... here.
5071         * sysdeps/unix/sysv/linux/ia64/nptl/libdl.abilist: Moved ...
5072         * sysdeps/unix/sysv/linux/ia64/libdl.abilist: ... here.
5073         * sysdeps/unix/sysv/linux/ia64/nptl/libm.abilist: Moved ...
5074         * sysdeps/unix/sysv/linux/ia64/libm.abilist: ... here.
5075         * sysdeps/unix/sysv/linux/ia64/nptl/libnsl.abilist: Moved ...
5076         * sysdeps/unix/sysv/linux/ia64/libnsl.abilist: ... here.
5077         * sysdeps/unix/sysv/linux/ia64/nptl/libpthread.abilist: Moved ...
5078         * sysdeps/unix/sysv/linux/ia64/libpthread.abilist: ... here.
5079         * sysdeps/unix/sysv/linux/ia64/nptl/libresolv.abilist: Moved ...
5080         * sysdeps/unix/sysv/linux/ia64/libresolv.abilist: ... here.
5081         * sysdeps/unix/sysv/linux/ia64/nptl/librt.abilist: Moved ...
5082         * sysdeps/unix/sysv/linux/ia64/librt.abilist: ... here.
5083         * sysdeps/unix/sysv/linux/ia64/nptl/libthread_db.abilist: Moved ...
5084         * sysdeps/unix/sysv/linux/ia64/libthread_db.abilist: ... here.
5085         * sysdeps/unix/sysv/linux/ia64/nptl/libutil.abilist: Moved ...
5086         * sysdeps/unix/sysv/linux/ia64/libutil.abilist: ... here.
5087         * sysdeps/unix/sysv/linux/ia64/nptl/localplt.data: Moved ...
5088         * sysdeps/unix/sysv/linux/ia64/localplt.data: ... here.
5089         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Moved ...
5090         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h: ... here.
5091         * sysdeps/unix/sysv/linux/ia64/nptl/sysdep-cancel.h: Moved ...
5092         * sysdeps/unix/sysv/linux/ia64/sysdep-cancel.h: ... here.
5093         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Moved ...
5094         * sysdeps/unix/sysv/linux/ia64/timer_create.c: ... here.
5095         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Moved ...
5096         * sysdeps/unix/sysv/linux/ia64/timer_delete.c: ... here.
5097         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Moved ...
5098         * sysdeps/unix/sysv/linux/ia64/timer_getoverr.c: ... here.
5099         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c: Moved ...
5100         * sysdeps/unix/sysv/linux/ia64/timer_gettime.c: ... here.
5101         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c: Moved ...
5102         * sysdeps/unix/sysv/linux/ia64/timer_settime.c: ... here.
5103         * sysdeps/unix/sysv/linux/ia64/nptl/unwind-forcedunwind.c: Moved ...
5104         * sysdeps/unix/sysv/linux/ia64/unwind-forcedunwind.c: ... here.
5105         Update #include.
5106         * sysdeps/unix/sysv/linux/ia64/nptl/unwind_longjmp.c: Moved ...
5107         * sysdeps/unix/sysv/linux/ia64/unwind_longjmp.c: ... here.
5108
5109 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5110
5111         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h: Moved ...
5112         * sysdeps/ia64/nptl/bits/pthreadtypes.h: ... here.
5113         * sysdeps/unix/sysv/linux/ia64/nptl/bits/semaphore.h: Moved ...
5114         * sysdeps/ia64/nptl/bits/semaphore.h: ... here.
5115         * sysdeps/unix/sysv/linux/ia64/nptl/bits/local_lim.h: Moved ...
5116         * sysdeps/unix/sysv/linux/ia64/bits/local_lim.h: ... here.
5117
5118 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5119
5120         * nptl/sysdeps/pthread/createthread.c: Include <arch-fork.h>.
5121         * sysdeps/unix/sysv/linux/ia64/arch-fork.h (ARCH_CLONE): New macro.
5122         * sysdeps/ia64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
5123         * sysdeps/unix/sysv/linux/ia64/nptl/createthread.c: File removed.
5124
5125 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5126
5127         * sysdeps/unix/sysv/linux/ia64/nptl/vfork.S: Moved ...
5128         * sysdeps/unix/sysv/linux/ia64/vfork.S: ... here.
5129         (__libc_vfork): Define function under this name.
5130         (__vfork): Define as an alias.
5131         * sysdeps/unix/sysv/linux/ia64/pt-vfork.S: New file.
5132         * sysdeps/unix/sysv/linux/ia64/nptl/pt-vfork.S: File removed.
5133
5134 2014-08-04  Roland McGrath  <roland@hack.frob.com>
5135
5136         * sysdeps/unix/sysv/linux/ia64/clone2.S: Deconditionalize the code
5137         that was previously under [RESET_PID].
5138         * sysdeps/unix/sysv/linux/ia64/nptl/clone2.S: File removed.
5139
5140 2014-08-04  Andreas Schwab  <schwab@suse.de>
5141
5142         * sysdeps/ieee754/ldbl-96/s_fma.c: Include <math_private.h>.
5143
5144 2014-08-03  Mike Frysinger  <vapier@gentoo.org>
5145
5146         * stdlib/tst-setcontext.c (test_stack): Fix coding style.
5147         (main): Likewise.
5148
5149 2014-08-01  Roland McGrath  <roland@hack.frob.com>
5150
5151         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: File removed.
5152
5153 2014-08-01  Richard Henderon  <rth@redhat.com>
5154
5155         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use math_force_eval before
5156         feclearexcept; use math_opt_barrier instead of open-coded asm; fix
5157         typo in exact zero test.
5158         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
5159         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
5160         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
5161
5162 2014-08-01  Roland McGrath  <roland@hack.frob.com>
5163
5164         * sysdeps/unix/sysv/linux/arm/sysdep.h (PTR_MANGLE_LOAD, PTR_MANGLE)
5165         (PTR_MANGLE2, PTR_DEMANGLE, PTR_DEMANGLE2): Move these macros...
5166         * sysdeps/arm/sysdep.h: ... here.
5167         [!__ASSEMBLER__]: Include <stdint.h>.
5168
5169 2014-08-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
5170
5171         * include/libc-symbols.h (HAVE_LIBINTL_H): Define macro.
5172         (HAVE_WCTYPE_H): Likewise.
5173         (HAVE_ISWCTYPE): Likewise.
5174         (ENABLE_NLS): Likewise.
5175         * posix/regex_internal.h [(defined MB_CUR_MAX && HAVE_WCTYPE_H
5176         && HAVE_ISWCTYPE) || _LIBC]: Sync up with gnulib.
5177
5178         * posix/regex_internal.c: Check if DEBUG is defined and is
5179         set.
5180
5181         * include/libc-symbols.h (HAVE_MBSTATE_T): Define macro.
5182         (HAVE_MBSRTOWCS): Likewise.
5183         * posix/fnmatch.c: Include string.h unconditionally.
5184
5185 2014-08-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
5186
5187         * NEWS: Explain the s390 jmp_buf / ucontext_t ABI change
5188         reversal.
5189
5190 2014-07-31  Roland McGrath  <roland@hack.frob.com>
5191
5192         * sysdeps/generic/safe-fatal.h: New file.
5193         * sysdeps/unix/sysv/linux/safe-fatal.h: New file.
5194         * nptl/forward.c: Include it.
5195         (__pthread_unwind): Use __safe_fatal as default action, rather
5196         than a bogus use of INTERNAL_SYSCALL that could never work.
5197
5198         * config.h.in (HAVE_BUILTIN_TRAP): New #define to 0.
5199         * configure.ac (libc_cv_builtin_trap): New test.
5200         * configure: Regenerated.
5201         * sysdeps/generic/abort-instr.h [HAVE_BUILTIN_TRAP]
5202         (ABORT_INSTRUCTION): Define using __builtin_trap.
5203
5204         * nptl/pthreadP.h (SIGCANCEL, SIGTIMER, SIGSETXID, __xidcmd): Moved ...
5205         * sysdeps/unix/sysv/linux/nptl-signals.h: ... to this new file.
5206         * sysdeps/nptl/nptl-signals.h: New file.
5207         * nptl/pthreadP.h: Include <nptl-signals.h>.
5208
5209 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
5210
5211         * sysdeps/s390/s390-64/utf16-utf32-z9.c
5212         (ONE_DIRECTION): Define.
5213         * sysdeps/s390/s390-64/utf8-utf16-z9.c
5214         (ONE_DIRECTION): Define.
5215         * sysdeps/s390/s390-64/utf8-utf32-z9.c
5216         (ONE_DIRECTION): Define.
5217
5218 2014-07-31  Stefan Liebler  <stli@linux.vnet.ibm.com>
5219
5220         * sysdeps/s390/Makefile: Delete file.
5221         * sysdeps/s390/Versions (GLIBC_2.19): Remove __setjmp.
5222         * sysdeps/s390/__longjmp.c: Delete file.
5223         * sysdeps/s390/bits/setjmp.h (__s390_jmp_buf):
5224         Remove fields __flags and __reserved.
5225         * sysdeps/s390/longjmp.c: Include setjmp/longjmp.c
5226         and add versioning.
5227         * sysdeps/s390/rtld-__longjmp.c: Delete file.
5228         * sysdeps/s390/rtld-global-offsets.sym: Likewise.
5229         * sysdeps/s390/rtld-setjmp.S: Likewise.
5230         * sysdeps/s390/s390-32/__longjmp-common.c: Move to ...
5231         * sysdeps/s390/s390-32/__longjmp.c: ... here.
5232         * sysdeps/s390/s390-32/setjmp-common.S: Move to ...
5233         * sysdeps/s390/s390-32/setjmp.S: ... here.
5234         Add versioning.
5235         (__sigsetjmp): Remove setting __flags field.
5236         * sysdeps/s390/s390-64/__longjmp-common.c:Move to ...
5237         * sysdeps/s390/s390-64/__longjmp.c: ... here.
5238         * sysdeps/s390/s390-64/setjmp-common.S: Move to ...
5239         * sysdeps/s390/s390-64/setjmp.S: ... here.
5240         Add versioning.
5241         (__sigsetjmp): Remove setting __flags field.
5242         * sysdeps/s390/setjmp.S: Delete file.
5243         * sysdeps/s390/sigjmp.c: Likewise.
5244         * sysdeps/s390/v1-longjmp.c: Likewise.
5245         * sysdeps/s390/v1-setjmp.h: Likewise.
5246         * sysdeps/s390/v1-sigjmp.c: Likewise.
5247         * sysdeps/unix/sysv/linux/s390/Makefile (sysdep_routines):
5248         Remove v1-longjmp_chk.
5249         * sysdeps/unix/sysv/linux/s390/getcontext.S: Delete file.
5250         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c:
5251         Include debug/longjmp_chk.c and add versioning.
5252         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c:
5253         Include nptl/pt-longjmp.c and add versioning.
5254         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: Delete file.
5255         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c:
5256         Include __longjmp.c.
5257         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
5258         Move to ...
5259         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: ... here.
5260         (__getcontext): Remove setting __flags field.
5261         Add versioning.
5262         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
5263         Don't restore upper high grps.
5264         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S:
5265         Likewise.
5266         (__swapcontext): Remove setting uc_flags field.
5267         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym:
5268         Delete file.
5269         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
5270         Include __longjmp.c.
5271         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
5272         Move to ...
5273         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: ... here.
5274         (__getcontext): Remove setting __flags field.
5275         Add versioning.
5276         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S:
5277         (__swapcontext): Remove setting uc_flags field.
5278         * unix/sysv/linux/s390/s390-64/ucontext_i.sym: Delete file.
5279         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (ucontext):
5280         Remove fields uc_high_gprs and __reserved.
5281         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym:
5282         New file with reverted content.
5283         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: Delete file.
5284         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist:
5285         Regenerated.
5286         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist:
5287         Regenerated.
5288
5289 2014-07-31  Andreas Schwab  <schwab@suse.de>
5290
5291         * config.h.in (HAVE_IFUNC): Define to 0.
5292         * rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
5293         definedness.
5294
5295 2014-07-30  Ling Ma  <ling.ml@alibaba-inc.com>
5296
5297         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
5298         memmove-avx-unaligned, memcpy-avx-unaligned and
5299         mempcpy-avx-unaligned.
5300         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
5301         Add tests for AVX memcpy functions.
5302         * sysdeps/x86_64/multiarch/memcpy.S: Add support for AVX memcpy.
5303         * sysdeps/x86_64/multiarch/memcpy_chk.S: Add support for AVX
5304         memcpy_chk.
5305         * sysdeps/x86_64/multiarch/memmove.c: Add support for AVX memmove.
5306         * sysdeps/x86_64/multiarch/memmove_chk.c: Add support for AVX
5307         memmove_chk.
5308         * sysdeps/x86_64/multiarch/mempcpy.S: Add support for AVX mempcpy.
5309         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Add support for AVX
5310         mempcpy_chk.
5311         * sysdeps/x86_64/multiarch/memcpy-avx-unaligned.S: New file.
5312         * sysdeps/x86_64/multiarch/mempcpy-avx-unaligned.S: New file.
5313         * sysdeps/x86_64/multiarch/memmove-avx-unaligned.S: New file.
5314
5315 2013-07-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5316
5317         [BZ #17213]
5318         * sysdeps/powerpc/powerpc64/entry.h: Fix TEXT_START definition for
5319         powerpc64le.
5320
5321 2014-07-29  Jeff Layton  <jlayton@poochiereds.net>
5322
5323         [BZ #16839]
5324         * manual/llio.texi: Add section about open file description locks.
5325         * manual/examples/ofdlocks.c: Example of open file description
5326         lock usage.
5327         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Define F_OFD_GETLK,
5328         F_OFD_SETLK, and F_OFD_SETLKW.
5329
5330 2014-07-23  Allan McRae  <allan@archlinux.org>
5331
5332         * po/es.po: Update Spanish translation from translation project.
5333
5334 2014-07-18  Andreas Schwab  <schwab@linux-m68k.org>
5335
5336         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Removed.
5337
5338 2014-07-17  Maciej W. Rozycki  <macro@codesourcery.com>
5339
5340         [BZ #17078]
5341         * sysdeps/arm/dl-machine.h (elf_machine_rela)
5342         [RESOLVE_CONFLICT_FIND_MAP]: Handle R_ARM_TLS_DESC relocation.
5343         (elf_machine_lazy_rel): Handle prelinked R_ARM_TLS_DESC entries.
5344
5345 2014-07-17  Joseph Myers  <joseph@codesourcery.com>
5346
5347         [BZ #17088]
5348         * math/fesetenv.c (__fesetenv)
5349         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Return 1 for FE_NOMASK_ENV.
5350         * math/feupdateenv.c (__feupdateenv)
5351         [FE_NOMASK_ENV && FE_ALL_EXCEPT != 0]: Likewise.
5352
5353         * sysdeps/unix/sysv/linux/s390/kernel-features.h: New file.
5354         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
5355         (__ASSUME_SOCKETCALL): Do not define.
5356
5357         * sysdeps/unix/sysv/linux/sh/kernel-features.h: New file.
5358         * sysdeps/unix/sysv/linux/kernel-features.h [__sh__]
5359         (__ASSUME_SOCKETCALL): Do not define.
5360         (__ASSUME_ST_INO_64_BIT): Define unconditionally.
5361         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
5362         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5363         [__LINUX_KERNEL_VERSION >= 0x020625 && __sh__]
5364         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5365         [__LINUX_KERNEL_VERSION >= 0x030000 && __sh__]
5366         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5367         [__sh__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5368
5369         * sysdeps/unix/sysv/linux/powerpc/kernel-features.h: New file.
5370         * sysdeps/unix/sysv/linux/kernel-features.h [__powerpc__]
5371         (__ASSUME_SOCKETCALL): Do not define.
5372         (__ASSUME_IPC64): Define unconditionally.
5373         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
5374         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5375         [__LINUX_KERNEL_VERSION >= 0x020625 && __powerpc__]
5376         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5377         [__LINUX_KERNEL_VERSION >= 0x030000 && __powerpc__]
5378         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5379         [__powerpc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL):
5380         Likewise.
5381
5382         * sysdeps/unix/sysv/linux/sparc/kernel-features.h: New file.
5383         * sysdeps/unix/sysv/linux/kernel-features.h [__sparc__]
5384         (__ASSUME_SOCKETCALL): Do not define.
5385         (__ASSUME_SET_ROBUST_LIST): Define unconditionally.
5386         (__ASSUME_FUTEX_LOCK_PI): Likewise.
5387         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5388         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
5389         (__ASSUME_REQUEUE_PI): Define unconditionally.
5390         [__LINUX_KERNEL_VERSION >= 0x020621 && __sparc__]
5391         (__ASSUME_RECVMMSG_SYSCALL): Do not define.
5392         [__sparc__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5393         [__LINUX_KERNEL_VERSION >= 0x030000 && __sparc__]
5394         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5395         [__sparc__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5396
5397         * sysdeps/unix/sysv/linux/i386/kernel-features.h: New file.
5398         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__]
5399         (__ASSUME_SOCKETCALL): Do not define.
5400         [__LINUX_KERNEL_VERSION >= 0x020621 && __i386__]
5401         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5402         [__i386__] (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5403         [__LINUX_KERNEL_VERSION >= 0x030000 && __i386__]
5404         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5405         [__i386__] (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
5406
5407         * sysdeps/unix/sysv/linux/x86_64/kernel-features.h: New file.
5408         * sysdeps/unix/sysv/linux/kernel-features.h [__x86_64__]
5409         (__ASSUME_ACCEPT4_SYSCALL): Do not define.
5410         [__LINUX_KERNEL_VERSION >= 0x020621 && __x86_64__]
5411         (__ASSUME_RECVMMSG_SYSCALL): Likewise.
5412         [__LINUX_KERNEL_VERSION >= 0x030000 && __x86_64__]
5413         (__ASSUME_SENDMMSG_SYSCALL): Likewise.
5414         [__x86_64__ && __LINUX_KERNEL_VERSION >= 0x030100]
5415         (__ASSUME_GETCPU_SYSCALL): Likewise.
5416
5417         * aclocal.m4 (LIBC_SLIBDIR_RTLDDIR): New macro.
5418         * sysdeps/gnu/configure.ac: Use LIBC_SLIBDIR_RTLDDIR.  Remove
5419         cases for individual architectures.
5420         * sysdeps/gnu/configure: Regenerated.
5421         * sysdeps/unix/sysv/linux/aarch64/configure.ac: Use
5422         LIBC_SLIBDIR_RTLDDIR.
5423         * sysdeps/unix/sysv/linux/aarch64/configure: Regenerated.
5424         * sysdeps/unix/sysv/linux/mips/configure.ac: Use
5425         LIBC_SLIBDIR_RTLDDIR.
5426         * sysdeps/unix/sysv/linux/mips/configure: Regenerated.
5427         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: Use
5428         LIBC_SLIBDIR_RTLDDIR.
5429         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure:
5430         Regenerated.
5431         * sysdeps/unix/sysv/linux/s390/s390-64/configure.ac: New file.
5432         * sysdeps/unix/sysv/linux/s390/s390-64/configure: New generated
5433         file.
5434         * sysdeps/unix/sysv/linux/sparc/sparc64/configure.ac: New file.
5435         * sysdeps/unix/sysv/linux/sparc/sparc64/configure: New generated
5436         file.
5437         * sysdeps/unix/sysv/linux/x86_64/64/configure.ac: New file.
5438         * sysdeps/unix/sysv/linux/x86_64/64/configure: New generated file.
5439         * sysdeps/unix/sysv/linux/x86_64/x32/configure.ac: New file.
5440         * sysdeps/unix/sysv/linux/x86_64/x32/configure: Generate.
5441
5442         * sysdeps/aarch64/shlib-versions: Move to ...
5443         * sysdeps/unix/sysv/linux/aarch64/shlib-versions: ... here.
5444         * sysdeps/alpha/shlib-versions: Move to ...
5445         * sysdeps/unix/sysv/linux/alpha/shlib-versions: ... here.
5446         * sysdeps/arm/shlib-versions: Move to ...
5447         * sysdeps/unix/sysv/linux/arm/shlib-versions: ... here.
5448         * sysdeps/hppa/shlib-versions: Move all contents except for
5449         libgcc_s entry to ...
5450         * sysdeps/unix/sysv/linux/hppa/shlib-versions: ... here.  Merge in
5451         entry from ...
5452         * sysdeps/hppa/nptl/shlib-versions: ... here.  Remove file.
5453         * sysdeps/ia64/shlib-versions: Move to ...
5454         * sysdeps/unix/sysv/linux/ia64/shlib-versions: ... here.  Merge in
5455         entry from ...
5456         * sysdeps/ia64/nptl/shlib-versions: ... here.  Remove file.
5457         * sysdeps/m68k/coldfire/shlib-versions: Move to ...
5458         * sysdeps/unix/sysv/linux/m68k/coldfire/shlib-versions: ... here.
5459         * sysdeps/microblaze/shlib-versions: Move to ...
5460         * sysdeps/unix/sysv/linux/microblaze/shlib-versions: ... here.
5461         * sysdeps/mips/shlib-versions: Move to ...
5462         * sysdeps/unix/sysv/linux/mips/shlib-versions: ... here.  Merge in
5463         entry from ...
5464         * sysdeps/mips/nptl/shlib-versions: ... here.  Remove file.
5465         * sysdeps/tile/shlib-versions: Move to ...
5466         * sysdeps/unix/sysv/linux/tile/shlib-versions: ... here.
5467         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: Merge in entry
5468         from ...
5469         * sysdeps/x86_64/64/shlib-versions: ... here.  Remove file.
5470         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: Merge in
5471         entry from ...
5472         * sysdeps/x86_64/x32/shlib-versions: ... here.  Remove file.
5473
5474 2014-07-17  Will Newton  <will.newton@linaro.org>
5475
5476         * sysdeps/arm/bits/atomic.h
5477         (__arch_compare_and_exchange_bool_8_int): Evaluate to zero.
5478         (__arch_compare_and_exchange_bool_16_int): Likewise.
5479         (__arch_compare_and_exchange_bool_64_int): Likewise.
5480
5481         * iconv/loop.c: Move definition of LOOPFCT and gconv_btowc
5482         into an #else block.
5483
5484 2014-07-16  Roland McGrath  <roland@hack.frob.com>
5485
5486         * sysdeps/arm/preconfigure.ac: Apply EABI sanity check to arm*, not
5487         just Linux configurations.  Test empirically that the compiler sets
5488         __ARM_EABI__, rather than using the tuple to decide.
5489         * sysdeps/arm/preconfigure: Regenerated.
5490         * sysdeps/unix/sysv/linux/arm/configure: File removed.
5491         * sysdeps/unix/sysv/linux/arm/configure.ac: File removed,
5492         contents appended ...
5493         * sysdeps/arm/configure.ac: ... here.
5494         * sysdeps/arm/configure: Regenerated.
5495
5496 2014-07-15  Roland McGrath  <roland@hack.frob.com>
5497
5498         * nptl/pthread_kill.c: New file.
5499         * nptl/pthread_sigmask.c: New file.
5500         * nptl/pthread_sigqueue.c: New file.
5501
5502         * sysdeps/nptl/lowlevellock.h: New file.
5503         * sysdeps/unix/sysv/linux/lowlevellock-futex.h: New file.
5504         * sysdeps/nptl/lowlevellock-futex.h: New file.
5505
5506         * nptl/pthreadP.h (__current_sigrtmin, __current_sigrtmax):
5507         Remove dead declarations.
5508
5509 2014-07-14  H.J. Lu  <hongjiu.lu@intel.com>
5510
5511         * config.h.in (HAVE_AVX2_SUPPORT): New #undef.
5512         * sysdeps/i386/configure.ac: Set HAVE_AVX2_SUPPORT and
5513         config-cflags-avx2.
5514         * sysdeps/x86_64/configure.ac: Likewise.
5515         * sysdeps/i386/configure: Regenerated.
5516         * sysdeps/x86_64/configure: Likewise.
5517         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
5518         memset-avx2 only if config-cflags-avx2 is yes.
5519         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
5520         Tests for memset_chk and memset only if HAVE_AVX2_SUPPORT is
5521         defined.
5522         * sysdeps/x86_64/multiarch/memset.S: Define multiple versions
5523         only if HAVE_AVX2_SUPPORT is defined.
5524         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
5525
5526 2014-07-14  Alan Modra  <amodra@gmail.com>
5527
5528         [BZ #17153]
5529         * elf/elf.h (DT_PPC64_NUM): Correct value.
5530         * NEWS: Add to fixed bug list.
5531
5532 2014-07-13  Jim Meyering  <meyering@fb.com>
5533
5534         [BZ 17150]
5535         regex: don't deref NULL upon heap allocation failure
5536         * posix/regcomp.c: (parse_dup_op): Handle duplicate_tree
5537         failure in one more place.
5538         To trigger the segfault, configure grep -with-included-regex,
5539         build it, and run these commands:
5540         ( ulimit -v 300000; echo a|src/grep -E a+++++++++++++++++++++ )
5541
5542 2014-07-13  Andreas Schwab  <schwab@linux-m68k.org>
5543
5544         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
5545
5546 2014-07-11  Richard Henderson  <rth@redhat.com>
5547
5548         * sysdeps/aarch64/libm-test-ulps: Update.
5549
5550 2014-07-10  Florian Weimer  <fweimer@redhat.com>
5551
5552         [BZ #17135]
5553         * nptl/pthreadP.h (__nptl_setxid_error): Declare function.
5554         * nptl/allocatestack.c (__nptl_setxid_error): New function.
5555         (__nptl_setxid): Initialize error member.  Call
5556         __nptl_setxid_error.
5557         * nptl/nptl-init.c (sighandler_setxid): Call __nptl_setxid_error.
5558         * nptl/descr.h (struct xid_command): Add error member.
5559         * nptl/tst-setuid3.c: New file.
5560         * nptl/Makefile (tests): Add it.
5561
5562 2014-07-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5563
5564         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h (__lll_base_trylock):
5565         New define.
5566         (__lll_trylock): Use __lll_base_trylock.
5567         (__lll_cond_trylock): Likewise.
5568
5569 2014-07-10  Roland McGrath  <roland@hack.frob.com>
5570
5571         * nptl/pthread_create.c (start_thread): Use atomic_or and
5572         lll_futex_wake directly rather than lll_robust_dead.
5573         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
5574         (lll_robust_dead): Macro removed.
5575         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: Likewise.
5576         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
5577         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
5578         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
5579         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
5580         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
5581         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
5582         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
5583         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
5584         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
5585         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5586         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5587         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
5588         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
5589         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5590
5591         * nptl/pthread_mutex_trylock.c (__pthread_mutex_trylock):
5592         Use atomic_compare_and_exchange_val_acq directly rather than
5593         lll_robust_trylock.
5594         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h
5595         (__lll_robust_trylock, lll_robust_trylock): Removed.
5596         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: Likewise.
5597         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: Likewise.
5598         * sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.h: Likewise.
5599         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: Likewise.
5600         * sysdeps/unix/sysv/linux/ia64/nptl/lowlevellock.h: Likewise.
5601         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: Likewise.
5602         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Likewise.
5603         * sysdeps/unix/sysv/linux/mips/lowlevellock.h: Likewise.
5604         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Likewise.
5605         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: Likewise.
5606         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: Likewise.
5607         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Likewise.
5608         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: Likewise.
5609         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Likewise.
5610
5611 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5612
5613         * manual/locale.texi (Locale Names): New section documenting
5614         locale name syntax.  Adjust menu and node chaining accordingly.
5615         (Choosing Locale): Reference Locale Names, Locale Categories.
5616         Mention setting LC_ALL=C.  Reflect that name syntax is now
5617         documented.
5618         (Locale Categories): New section title.  Reference Locale Names.
5619         LC_ALL is an environment variable, but not a category.
5620         (Setting the Locale): Remove "locale -a" invocation and LOCPATH
5621         description, now in Locale Name.  Reference that section.  Locale
5622         name syntax is now documented.
5623
5624 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5625
5626         [BZ #17137]
5627         * locale/findlocale.c (name_present, valid_locale_name): New
5628         functions.
5629         (_nl_find_locale): Use the loc_name variable to store name
5630         candidates.  Call name_present and valid_locale_name to check and
5631         validate locale names.  Return an error if the locale is invalid.
5632
5633 2014-07-02  Florian Weimer  <fweimer@redhat.com>
5634
5635         * locale/setlocale.c (setlocale): Use strdup for allocating
5636         composite name copy.
5637
5638 2014-07-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
5639
5640         Sync up with gnulib.
5641         * misc/error.c: Use !_LIBC instead of HAVE_CONFIG_H.
5642         [!_LIBC && ENABLE_NLS]: Include gettext.h.
5643         [_LIBC]: Define USE_UNLOCKED_IO, _GL_ATTRIBUTE_FORMAT_PRINTF
5644         and _GL_ARG_NONNULL.
5645         [USE_UNLOCKED_IO]: Include unlocked-io.h.
5646         [!_LIBC]: Include code for Windows and Cygwin.
5647         [!_LIBC && !HAVE_DECL_STRERROR_R && !STRERROR_R_CHAR_P]:
5648         Include prototype for int strerror_r.
5649         [!_LIBC] (is_open): New function.
5650         (flush_stdout): New function.
5651         (print_errno_message): Use it.
5652         (error): Likewise.
5653         (error_at_line): Likewise.
5654         (error_tail) Add function attribute macros.  Use
5655         __builtin_expect.
5656
5657         * time/strptime_l.c [_LIBC]: Define HAVE_LOCALTIME_R.
5658
5659         * time/strftime_l.c [_LIBC]: Define HAVE_STRFTIME.
5660
5661         * io/ftw.c: Include sys/param.h unconditionally.
5662
5663         * locale/programs/simple-hash.c [!HAVE_OBSTACK]: Remove code.
5664
5665         [BZ #17125]
5666         * sysdeps/unix/sysv/linux/check_pf.c (cache): Don't use
5667         libc_freeres_ptr.
5668         (freecache): New function to free CACHE on exit.
5669
5670         * sunrpc/xdr.c (xdr_string): Add comment about SIZE
5671         initialization.
5672
5673 2014-07-09  David S. Miller  <davem@davemloft.net>
5674
5675         * sysdeps/sparc/fpu/libm-test-ulps: Update.
5676
5677         * sysdeps/sparc/nptl/internaltypes.h: Delete.
5678         * sysdeps/sparc/nptl/sparc-nptl.h: New file.
5679         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: Include it.
5680         * sysdeps/sparc/nptl/pthread_barrier_init.c: Likewise.
5681         * sysdeps/sparc/nptl/pthread_barrier_wait.c: Likewise.
5682         * sysdeps/sparc/nptl/sem_init.c: Likewise.
5683         * sysdeps/sparc/nptl/sem_post.c: Likewise.
5684         * sysdeps/sparc/nptl/sem_timedwait.c: Likewise.
5685         * sysdeps/sparc/nptl/sem_wait.c: Likewise.
5686         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Likewise.
5687         * sysdeps/sparc/sparc32/nptl/sem_post.c: Likewise.
5688         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Likewise.
5689         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Likewise.
5690
5691 2014-07-09  Andreas Schwab  <schwab@suse.de>
5692
5693         * sysdeps/powerpc/test-gettimebase.c (do_test): Add newline to
5694         output.
5695         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c
5696         (do_test): Likewise.
5697
5698         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
5699
5700 2014-07-09  Will Newton  <will.newton@linaro.org>
5701
5702         * sysdeps/aarch64/tlsdesc.c (_dl_unmap): Test SHARED with #ifdef.
5703         * sysdeps/arm/tlsdesc.c (_dl_unmap): Likewise.
5704         * sysdeps/i386/tlsdesc.c (_dl_unmap): Likewise.
5705         * sysdeps/x86_64/tlsdesc.c (_dl_unmap): Likewise.
5706         * sysdeps/hppa/start.S (_start): Likewise.
5707
5708 2014-07-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
5709
5710         * sunrpc/xdr.c (xdr_string): Initialize SIZE to 0.
5711
5712         * sysdeps/generic/unwind-pe.h: Only check if __cplusplus is
5713         defined.
5714
5715 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
5716
5717         * resolv/res_query.c (__libc_res_nsearch): Dereference resplen2
5718         after checking that it is non-NULL.
5719
5720         * sysdeps/i386/dl-machine.h: Define ELF_MACHINE_NO_REL.
5721
5722 2014-07-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5723
5724         * sysdeps/powerpc/memmove.c: Remove file.
5725         * sysdeps/powerpc/powerpc32/power4/memcopy.h
5726         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Define it to 1.
5727         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c
5728         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Remove define.
5729         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c:
5730         [MEMCPY_OK_FOR_FWD_MEMMOVE]: Likewise.
5731         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Include default
5732         string memmove instead of removed powerpc one.
5733
5734         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
5735         [weak_alias]: Fix compiler warning due trailing data.
5736         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S:
5737         [weak_alias]: Likewise.
5738         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: Fix compile
5739         warnigs due missing definition of __strcpy_power7 and __strlen_power7.
5740
5741         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
5742         (__libc_ifunc_impl_list): Add memmove functions.
5743
5744 2014-07-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
5745
5746         * localedata/tests-mbwc/dat_iswalnum.c [SHOJI_IS_RIGHT]:
5747         Remove code.
5748         * localedata/tests-mbwc/dat_iswalpha.c [SHOJI_IS_RIGHT]:
5749         Likewise
5750         * localedata/tests-mbwc/dat_iswctype.c [SHOJI_IS_RIGHT]:
5751         Likewise
5752         * localedata/tests-mbwc/dat_iswgraph.c [SHOJI_IS_RIGHT]:
5753         Likewise
5754         * localedata/tests-mbwc/dat_iswprint.c [SHOJI_IS_RIGHT]:
5755         Likewise
5756         * localedata/tests-mbwc/dat_iswpunct.c [SHOJI_IS_RIGHT]:
5757         Likewise
5758         * localedata/tests-mbwc/dat_mbrlen.c [SHOJI_IS_RIGHT]:
5759         Likewise
5760         * localedata/tests-mbwc/dat_mbstowcs.c [SHOJI_IS_RIGHT]:
5761         Likewise
5762         * localedata/tests-mbwc/dat_mbtowc.c [SHOJI_IS_RIGHT]:
5763         Likewise
5764         * localedata/tests-mbwc/dat_strcoll.c [SHOJI_IS_RIGHT]:
5765         Likewise
5766         * localedata/tests-mbwc/dat_swscanf.c [SHOJI_IS_RIGHT]:
5767         Likewise
5768         * localedata/tests-mbwc/dat_towctrans.c [SHOJI_IS_RIGHT]:
5769         Likewise
5770         * localedata/tests-mbwc/dat_wcscoll.c [SHOJI_IS_RIGHT]:
5771         Likewise
5772         * localedata/tests-mbwc/dat_wcswidth.c [SHOJI_IS_RIGHT]:
5773         Likewise
5774         * localedata/tests-mbwc/dat_wctob.c [SHOJI_IS_RIGHT]:
5775         Likewise
5776         * localedata/tests-mbwc/dat_wcwidth.c [SHOJI_IS_RIGHT]:
5777         Likewise
5778         * localedata/tests-mbwc/tst_towctrans.c [SHOJI_IS_RIGHT]:
5779         Likewise
5780
5781 2014-07-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
5782
5783         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Align VSX copies to 16B
5784         to avoid alignment traps in non-cacheable memory.
5785         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
5786
5787         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memmove
5788         multiarch objects.
5789         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-power7.c: New
5790         file: multiarch power7 memmove.
5791         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove-ppc.c: New file:
5792         multiarch default memmove.
5793         * sysdeps/powerpc/powerpc32/power4/multiarch/memmove.c: New file:
5794         multiarch memove for powerpc32/power4.
5795
5796         * string/bcopy.c: Use full path to include memmove.c.
5797         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memmove and bcopy
5798         multiarch objects.
5799         * sysdeps/powerpc/powerpc64/multiarch/bcopy-ppc64.c: New file: default
5800         bcopy for powerpc64.
5801         * sysdeps/powerpc/powerpc64/multiarch/bcopy.c: New file: multiarch
5802         bcopy for powerpc64.
5803         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Add bcopy
5804         and memmove implementations.
5805         * sysdeps/powerpc/powerpc64/multiarch/memmove-power7.S: New file:
5806         optimized multiarch memmove for POWER7/powerpc64.
5807         * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: New file:
5808         default multiarch memmove for powerpc64.
5809         * sysdeps/powerpc/powerpc64/multiarch/memmove.c: New file: memmove
5810         multiarch for powerpc64.
5811         * sysdeps/powerpc/powerpc64/power7/bcopy.c: New file: optimized bcopy
5812         for POWER7/powerpc64.
5813         * sysdeps/powerpc/powerpc64/power7/memmove.S: New file: optimized
5814         memmove for POWER7/powerpc64.
5815
5816         * sysdeps/powerpc/memmove.c (memmove): Cleanup impplementation to use
5817         glibc default one.
5818
5819         * sysdeps/powerpc/bits/link.h [_CALL_ELF]: Guard check for
5820         __ELF_NATIVE_CLASS equal to 64.
5821
5822 2014-07-07  Roland McGrath  <roland@hack.frob.com>
5823
5824         * sysdeps/nptl/lowlevellock.h: File removed.
5825
5826         * NEWS: NPTL is no longer an add-on!
5827         * nptl/internaltypes.h: Moved ...
5828         * sysdeps/nptl/internaltypes.h: ... here.
5829         * sysdeps/nptl/aio_misc.h: Use <nptl/pthreadP.h> in #include.
5830         * sysdeps/nptl/fork.c: Likewise.
5831         * sysdeps/nptl/gai_misc.h: Likewise.
5832         * sysdeps/nptl/librt-cancellation.c: Likewise.
5833         * sysdeps/nptl/jmp-unwind.c: Likewise.
5834         * sysdeps/nptl/setxid.h: Likewise.
5835         * sysdeps/unix/sysv/linux/aarch64/Implies: New file.
5836         * sysdeps/unix/sysv/linux/alpha/Implies: Add alpha/nptl.
5837         * sysdeps/unix/sysv/linux/arm/Implies: New file.
5838         * sysdeps/unix/sysv/linux/hppa/Implies: New file.
5839         * sysdeps/unix/sysv/linux/i386/Implies: Add i386/nptl.
5840         * sysdeps/unix/sysv/linux/i386/i686/Implies: New file.
5841         * sysdeps/unix/sysv/linux/ia64/Implies: Add ia64/nptl.
5842         * sysdeps/unix/sysv/linux/m68k/Implies: New file.
5843         * sysdeps/unix/sysv/linux/microblaze/Implies: New file.
5844         * sysdeps/unix/sysv/linux/mips/Implies: New file.
5845         * sysdeps/unix/sysv/linux/powerpc/Implies: New file.
5846         * sysdeps/unix/sysv/linux/s390/Implies: Add s390/nptl.
5847         * sysdeps/unix/sysv/linux/sh/Implies: New file.
5848         * sysdeps/unix/sysv/linux/sparc/Implies: New file.
5849         * sysdeps/unix/sysv/linux/tile/Implies: New file.
5850         * sysdeps/unix/sysv/linux/x86_64/Implies: Add x86_64/nptl.
5851         * sysdeps/unix/sysv/linux/x86_64/x32/Implies: New file.
5852         * nptl/Makeconfig: Moved ...
5853         * sysdeps/nptl/Makeconfig: ... here.
5854         * nptl/configure: File removed.
5855         * nptl/ANNOUNCE: File removed.
5856         * sysdeps/unix/sysv/linux/configure.ac: Remove nptl sanity check.
5857         * sysdeps/unix/sysv/linux/configure: Regenerated.
5858
5859         * nptl/Makefile (routines): Add libc_pthread_init,
5860         libc_multiple_threads, register-atfork and unregister-atfork.
5861         (libpthread-routines): Add pthread_mutex_cond_lock and pt-fork here.
5862         (gen-as-const-headers): Add lowlevelcond.sym, lowlevelrwlock.sym,
5863         lowlevelbarrier.sym, unwindbuf.sym, lowlevelrobustlock.sym,
5864         pthread-pi-defines.sym, structsem.sym.
5865         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = posix]
5866         (CFLAGS-fork.c, CFLAGS-getpid.o, CFLAGS-getpid.os): New variables.
5867         [$(subdir) = nptl] (tests): Add tst-setgetname.
5868         * nptl/sysdeps/unix/sysv/linux/Makefile: File removed.
5869         * sysdeps/unix/sysv/linux/sigaction.c: Just include
5870         <nptl/sigaction.c> directly here, instead of WRAPPER_INCLUDE.
5871         [!LIBC_SIGACTION]: Remove aliases.
5872         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
5873         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
5874         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
5875         * sysdeps/unix/sysv/linux/ia64/sigaction.c: Likewise.
5876         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
5877         * sysdeps/unix/sysv/linux/s390/s390-64/sigaction.c: Likewise.
5878         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
5879         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
5880         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
5881         * nptl/Versions (libc: GLIBC_2.3.2): Add __register_atfork.
5882         (libc: GLIBC_PRIVATE): Add __libc_pthread_init,
5883         __libc_current_sigrtmin_private, __libc_current_sigrtmax_private,
5884         __libc_allocate_rtsig_private.
5885         * nptl/sysdeps/unix/sysv/linux/Versions: File removed.
5886         * sysdeps/unix/sysv/linux/sigtimedwait.c: Include <nptl/pthreadP.h>.
5887         * sysdeps/unix/sysv/linux/sigwait.c: Likewise.
5888         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Likewise.
5889         * sysdeps/unix/sysv/linux/sleep.c: Likewise.
5890         * nptl/sysdeps/unix/sysv/linux/sigwait.c: File removed.
5891         * nptl/sysdeps/unix/sysv/linux/sigtimedwait.c: File removed.
5892         * nptl/sysdeps/unix/sysv/linux/sigwaitinfo.c: File removed.
5893         * nptl/sysdeps/unix/sysv/linux/sleep.c: File removed.
5894         * nptl/sysdeps/unix/sysv/linux/createthread.c: File removed.
5895         * sysdeps/unix/sysv/linux/ia64/fork.S: File removed.
5896         * nptl/sysdeps/unix/sysv/linux/internaltypes.h: Moved ...
5897         * nptl/internaltypes.h: ... here.
5898         * nptl/sysdeps/unix/sysv/linux/jmp-unwind.c: Moved ...
5899         * sysdeps/nptl/jmp-unwind.c: ... here.
5900         * nptl/sysdeps/unix/sysv/linux/libc-lowlevellock.c: Moved ...
5901         * nptl/libc-lowlevellock.c: ... here.
5902         * nptl/sysdeps/unix/sysv/linux/libc_multiple_threads.c: Moved ...
5903         * nptl/libc_multiple_threads.c: ... here.
5904         * nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c: Moved ...
5905         * nptl/libc_pthread_init.c: ... here.
5906         * nptl/sysdeps/unix/sysv/linux/lowlevelbarrier.sym: Moved ...
5907         * nptl/lowlevelbarrier.sym: ... here.
5908         * nptl/sysdeps/unix/sysv/linux/lowlevelcond.sym: Moved ...
5909         * nptl/lowlevelcond.sym: ... here.
5910         * nptl/sysdeps/unix/sysv/linux/lowlevellock.c: Moved ...
5911         * nptl/lowlevellock.c: ... here.
5912         * nptl/lowlevellock.h: Moved ...
5913         * sysdeps/nptl/lowlevellock.h: ... here.
5914         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Moved ...
5915         * nptl/lowlevelrobustlock.c: ... here.
5916         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.sym: Moved ...
5917         * nptl/lowlevelrobustlock.sym: ... here.
5918         * nptl/sysdeps/unix/sysv/linux/lowlevelrwlock.sym: Moved ...
5919         * nptl/lowlevelrwlock.sym: ... here.
5920         * nptl/sysdeps/unix/sysv/linux/pt-fork.c: Moved ...
5921         * nptl/pt-fork.c: ... here.
5922         * nptl/sysdeps/unix/sysv/linux/pthread-pi-defines.sym: Moved ...
5923         * nptl/pthread-pi-defines.sym: ... here.
5924         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Moved ...
5925         * nptl/pthread_attr_getaffinity.c: ... here.
5926         * nptl/sysdeps/unix/sysv/linux/pthread_attr_setaffinity.c: Moved ...
5927         * nptl/pthread_attr_setaffinity.c: ... here.
5928         * nptl/sysdeps/unix/sysv/linux/pthread_mutex_cond_lock.c: Moved ...
5929         * nptl/pthread_mutex_cond_lock.c: ... here.
5930         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
5931         Update #include.
5932         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Likewise.
5933         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: Moved ...
5934         * nptl/pthread_once.c: ... here, replacing old file.
5935         * nptl/sysdeps/unix/sysv/linux/pthread_yield.c: Moved ...
5936         * nptl/pthread_yield.c: ... here.
5937         * nptl/sysdeps/unix/sysv/linux/register-atfork.c: Moved ...
5938         * nptl/register-atfork.c: ... here.
5939         * nptl/sysdeps/unix/sysv/linux/sem_post.c: Moved ...
5940         * nptl/sem_post.c: ... here.
5941         * sysdeps/unix/sysv/linux/alpha/sem_post.c: Update #include.
5942         * nptl/sysdeps/unix/sysv/linux/sem_timedwait.c: Moved ...
5943         * nptl/sem_timedwait.c: ... here.
5944         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Moved ...
5945         * nptl/sem_trywait.c: ... here.
5946         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: Update #include.
5947         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Moved ...
5948         * nptl/sem_wait.c: ... here.
5949         * nptl/sysdeps/unix/sysv/linux/structsem.sym: Moved ...
5950         * nptl/structsem.sym: ... here.
5951         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Moved ...
5952         * sysdeps/unix/sysv/linux/mq_notify.c: ... here, replacing old file.
5953         * nptl/sysdeps/unix/sysv/linux/unregister-atfork.c: Moved ...
5954         * nptl/unregister-atfork.c: ... here.
5955         * nptl/sysdeps/unix/sysv/linux/unwindbuf.sym: Moved ...
5956         * nptl/unwindbuf.sym: ... here.
5957         * nptl/sysdeps/unix/sysv/linux/fork.c: Moved ...
5958         * sysdeps/nptl/fork.c: ... here.
5959         * nptl/sysdeps/unix/sysv/linux/fork.h: Moved ...
5960         * sysdeps/nptl/fork.h: ... here.
5961         * sysdeps/unix/sysv/linux/syscalls.list: Remove fork.
5962         * nptl/sysdeps/unix/sysv/linux/aio_misc.h: Moved ...
5963         * sysdeps/unix/sysv/linux/aio_misc.h: ... here.
5964         * nptl/sysdeps/unix/sysv/linux/allocrtsig.c: Moved ...
5965         * sysdeps/unix/sysv/linux/allocrtsig.c: ... here.
5966         * nptl/sysdeps/unix/sysv/linux/getpid.c: Moved ...
5967         * sysdeps/unix/sysv/linux/getpid.c: ... here.
5968         * nptl/sysdeps/unix/sysv/linux/kernel-posix-timers.h: Moved ...
5969         * sysdeps/unix/sysv/linux/kernel-posix-timers.h: ... here.
5970         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Moved ...
5971         * sysdeps/unix/sysv/linux/pt-raise.c: ... here.
5972         * nptl/sysdeps/unix/sysv/linux/pthread_getaffinity.c: Moved ...
5973         * sysdeps/unix/sysv/linux/pthread_getaffinity.c: ... here.
5974         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Moved ...
5975         * sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: ... here.
5976         * nptl/sysdeps/unix/sysv/linux/pthread_getname.c: Moved ...
5977         * sysdeps/unix/sysv/linux/pthread_getname.c: ... here.
5978         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Moved ...
5979         * sysdeps/unix/sysv/linux/pthread_kill.c: ... here.
5980         * nptl/sysdeps/unix/sysv/linux/pthread_setaffinity.c: Moved ...
5981         * sysdeps/unix/sysv/linux/pthread_setaffinity.c: ... here.
5982         * nptl/sysdeps/unix/sysv/linux/pthread_setname.c: Moved ...
5983         * sysdeps/unix/sysv/linux/pthread_setname.c: ... here.
5984         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Moved ...
5985         * sysdeps/unix/sysv/linux/pthread_sigqueue.c: ... here.
5986         * nptl/sysdeps/unix/sysv/linux/raise.c: Moved ...
5987         * sysdeps/unix/sysv/linux/raise.c: ... here.
5988         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Moved ...
5989         * sysdeps/unix/sysv/linux/timer_create.c: ... here.
5990         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Moved ...
5991         * sysdeps/unix/sysv/linux/timer_delete.c: ... here.
5992         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Moved ...
5993         * sysdeps/unix/sysv/linux/timer_getoverr.c: ... here.
5994         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Moved ...
5995         * sysdeps/unix/sysv/linux/timer_gettime.c: ... here.
5996         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Moved ...
5997         * sysdeps/unix/sysv/linux/timer_routines.c: ... here.
5998         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Moved ...
5999         * sysdeps/unix/sysv/linux/timer_settime.c: ... here.
6000         * nptl/sysdeps/unix/sysv/linux/tst-setgetname.c: Moved ...
6001         * sysdeps/unix/sysv/linux/tst-setgetname.c: ... here.
6002         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Update #include.
6003
6004 2014-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
6005
6006         * sysdeps/generic/memcopy.h: Add comment for
6007         MEMCPY_OK_FOR_FWD_MEMMOVE.
6008
6009 2014-07-04  Will Newton  <will.newton@linaro.org>
6010
6011         * string/memchr.c: Merge from gnulib.
6012         [_LIBC]: Remove conditionals.
6013         (__ptr_t): Remove define.
6014         (LONG_MAX_32_BITS): Likewise.
6015         (LONG_MAX): Likewise.
6016         (MEMCHR): Use ANSI prototype and optimize algorithm.
6017
6018         * sysdeps/arm/dl-machine.h (ELF_MACHINE_NO_REL): Define.
6019
6020 2014-07-03  Roland McGrath  <roland@hack.frob.com>
6021
6022         * sysdeps/unix/sysv/linux/ia64/lowlevellock.h
6023         (lll_futex_timed_wait_bitset): Fix syscall argument count.
6024
6025         * sysdeps/nptl/configure.ac (libc_cv_forced_unwind):
6026         Use -Dinhibit_libc=1 for unwind.h check to prevent false failure
6027         in a bare environment with no <stdlib.h> installed.
6028         * sysdeps/nptl/configure: Regenerated.
6029
6030         * sysdeps/alpha/fpu/s_nearbyint.c: Include <math_ldbl_opt.h>.
6031
6032         * sysdeps/unix/sysv/linux/configure.ac: Use AC_TRY_COMPILE rather than
6033         AC_EGREP_CPP for kernel header checks, so they only succeed if
6034         including <linux/version.h> actually works right.
6035         * sysdeps/unix/sysv/linux/configure: Regenerated.
6036
6037         * sysdeps/s390/nptl/tls.h (THREAD_SET_POINTER_GUARD): Refer to the
6038         value so it's not diagnosed as unused.
6039
6040         * sysdeps/pthread/Makefile: Conditionalize tst-timer bits (the only
6041         thing) with "ifeq ($(subdir),rt)".
6042
6043 2014-07-03  Richard Henderson  <rth@redhat.com>
6044
6045         * sysdeps/alpha/fpu/s_nearbyintf.c: Remove file.
6046         * sysdeps/alpha/fpu/s_nearbyint.c (__nearbyint): Remove;
6047         include sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c.
6048
6049         * sysdeps/alpha/fpu/math_private.h (math_opt_barrier): New.
6050         (math_force_eval): New.
6051
6052         * sysdeps/alpha/fpu/s_lround.c: Add 0.5 with chopped rounding.
6053         * sysdeps/alpha/fpu/s_lroundf.c: Likewise.
6054
6055         * sysdeps/alpha/fpu/s_round.c: Remove file.
6056         * sysdeps/alpha/fpu/s_roundf.c: Remove file.
6057
6058         * elf/dl-support.c (HP_TIMING_AVAIL): Do not redefine.
6059         (_dl_non_dynamic_init): Check HP_SMALL_TIMING_AVAIL instead.
6060         * elf/rtld.c (HP_TIMING_AVAIL): Do not redefine.
6061         (_dl_start_final): Check HP_SMALL_TIMING_AVAIL instead.
6062         (_dl_start, print_statistics): Likewise.
6063         * sysdeps/generic/ldsodefs.h (struct rtld_global): Only check
6064         HP_SMALL_TIMING_AVAIL in defining _dl_cpuclock_offset.
6065
6066         * sysdeps/aarch64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6067         * sysdeps/generic/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6068         * sysdeps/i386/i686/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6069         * sysdeps/ia64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6070         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6071         (HP_SMALL_TIMING_AVAIL): Define.
6072         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6073         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
6074         (HP_SMALL_TIMING_AVAIL): Define.
6075         * sysdeps/sparc/sparc64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6076         * sysdeps/x86_64/hp-timing.h (HP_SMALL_TIMING_AVAIL): Define.
6077
6078         * sysdeps/aarch64/hp-timing.h: New file.
6079
6080         * sysdeps/generic/hp-timing.h: Remove dead comment.
6081         * sysdeps/generic/hp-timing-common.h: New file.
6082         * sysdeps/alpha/hp-timing.h: Include it.
6083         (HP_TIMING_DIFF, HP_TIMING_ACCUM_NT, HP_TIMING_PRINT): Remove.
6084         * sysdeps/i386/i686/hp-timing.h: Likewise.
6085         * sysdeps/ia64/hp-timing.h: Likewise.
6086         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
6087         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
6088         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
6089         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
6090         * sysdeps/x86_64/hp-timing.h: Don't include the i686 version.
6091         (HP_TIMING_AVAIL, HP_TIMING_INLINE): Define.
6092         (hp_timing_t): New.
6093
6094         * benchtests/bench-string.h (_dl_hp_timing_overhead): Remove.
6095         * benchtests/bench-timing.h (_dl_hp_timing_overhead): Remove.
6096         (TIMING_INIT): Remove call to HP_TIMING_DIFF_INIT.
6097         * elf/rtld.c (_dl_start_final): Likewise.
6098         * sysdeps/generic/ldsodefs.h (_dl_hp_timing_overhead): Remove.
6099         * sysdeps/alpha/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6100         * sysdeps/generic/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6101         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6102         * sysdeps/ia64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6103         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6104         (HP_TIMING_DIFF_INIT): Remove.
6105         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6106         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h
6107         (HP_TIMING_DIFF_INIT): Remove.
6108         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_DIFF_INIT): Remove.
6109         * sysdeps/i386/i686/hp-timing.c: Remove file.
6110         * sysdeps/x86_64/hp-timing.c: Remove file.
6111         * sysdeps/ia64/hp-timing.c: Remove file.
6112         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Remove file.
6113         * sysdeps/powerpc/powerpc64/hp-timing.c: Remove file.
6114         * sysdeps/sparc/sparc32/sparcv9/hp-timing.c: Remove file.
6115         * sysdeps/sparc/sparc64/hp-timing.c: Remove file.
6116
6117         * sysdeps/alpha/hp-timing.h (HP_TIMING_ACCUM): Remove.
6118         * sysdeps/generic/hp-timing.h (HP_TIMING_ACCUM): Remove.
6119         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ACCUM): Remove.
6120         * sysdeps/ia64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6121         * sysdeps/powerpc/powerpc32/power4/hp-timing.h
6122         (HP_TIMING_ACCUM): Remove.
6123         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6124         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ACCUM): Remove.
6125         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ACCUM): Remove.
6126
6127         * sysdeps/alpha/hp-timing.h (HP_TIMING_ZERO): Remove.
6128         * sysdeps/generic/hp-timing.h (HP_TIMING_ZERO): Remove.
6129         * sysdeps/i386/i686/hp-timing.h (HP_TIMING_ZERO): Remove.
6130         * sysdeps/ia64/hp-timing.h (HP_TIMING_ZERO): Remove.
6131         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_ZERO): Remove.
6132         * sysdeps/powerpc/powerpc64/hp-timing.h (HP_TIMING_ZERO): Remove.
6133         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h (HP_TIMING_ZERO): Remove.
6134         * sysdeps/sparc/sparc64/hp-timing.h (HP_TIMING_ZERO): Remove.
6135
6136         * sysdeps/powerpc/powerpc32/hp-timing.h: Remove file.
6137
6138 2014-07-03  Maciej W. Rozycki  <macro@codesourcery.com>
6139
6140         * stdlib/tst-strtod-overflow.c (TIMEOUT): Bump up to 30.
6141
6142 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6143
6144         Sync up with gettext.
6145         * intl/loadmsgcat.c: Define O_BINARY if not defined.
6146         [_MSC_VER]: Include malloc.h
6147         [_LIBC]: Define PRI_MACROS_BROKEN if it is not defined.
6148         (get_sysdep_segment_value) [!__UCLIBC__]: Return "I" flag.
6149         (_nl_load_domain): Open DOMAIN_FILE in binary mode.  Don't use
6150         TEMP_FAILURE_RETRY.  Cast return of alloca.
6151         [!_LIBC] Call gl_rwlock_init.
6152         [IN_LIBGLOCALE]: Call _nl_find_msg with one less argument.
6153
6154 2014-07-02  Roland McGrath  <roland@hack.frob.com>
6155
6156         * misc/sys/cdefs.h: Check if __STDC_VERSION__ is defined
6157         before checking its value.
6158
6159 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6160
6161         * intl/loadmsgcat.c (_nl_load_domain): Use __builtin_expect.
6162
6163         * debug/memcpy_chk.c: Don't include pagecopy.h.
6164         * debug/mempcpy_chk.c: Likewise.
6165         * string/memcpy.c: Likewise.
6166         * string/memmove.c: Likewise.
6167         * sysdeps/powerpc/memmove.c: Likewise.
6168         * sysdeps/generic/memcopy.h: Include pagecopy.h.  Move
6169         definition of PAGE_COPY_FWD_MAYBE here...
6170         * sysdeps/generic/pagecopy.h: ... from here.
6171         * sysdeps/mach/pagecopy.h: Don't include generic pagecopy.h.
6172
6173 2014-07-02  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
6174             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6175
6176         * sysdeps/powerpc/strcat.c: Using macro to redefine symbol name.
6177         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcat multiarch
6178         optimizations.
6179         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
6180         (__libc_ifunc_impl_list): Likewise.
6181         * sysdeps/powerpc/powerpc64/multiarch/strcat.c: New file:
6182         multiarch strcat for PPC64.
6183         * sysdeps/powerpc/powerpc64/multiarch/strcat-ppc64.c: New file/
6184         * sysdeps/powerpc/powerpc64/multiarch/strcat-power7.c: New file.
6185
6186 2014-07-02  Roland McGrath  <roland@hack.frob.com>
6187
6188         * sysdeps/unix/sysv/linux/dl-sysdep.c: Include <sys/param.h>.
6189
6190 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6191
6192         * intl/loadmsgcat.c: Remove declaration of
6193         get_sysdep_segment_value.
6194         (get_sysdep_segment_value): Use ISO C style.
6195         (_nl_load_domain): Use ISO C style.  Get rid of redundant
6196         semicolon.  Fix typo and formatting in comment.
6197         (_nl_unload_domain): Use ISO C style.
6198
6199         * sysdeps/posix/sysconf.c (__sysconf): Fix typo in macro name.
6200
6201 2014-07-02  Will Newton  <will.newton@linaro.org>
6202
6203         * malloc/obstack.c: Merge from gnulib master.
6204         [HAVE_CONFIG_H]: Remove conditional code.
6205         [!_LIBC]: Include config.h.
6206         [!ELIDE_CODE]: Don't include inttypes.h, include
6207         stdint.h unconditionally.
6208         (print_and_abort): Mark as _Noreturn.
6209         (_obstack_allocated_p): Mark as __attribute_pure__.
6210         (obstack_free): Rename to __obstack_free.
6211         [!__attribute__]: Remove conditional code.
6212         * malloc/obstack.h: Merge from gnulib master.
6213         [__cplusplus]: Move conditional down.
6214         [!__attribute_pure__]: Define __attribute_pure__ here
6215         if it is not already defined.
6216         (_obstack_memory_used): Mark as __attribute_pure__.
6217         [!__obstack_free]: Define as obstack_free.
6218         [__GNUC__]: Remove check for ancient NeXT gcc.
6219
6220 2014-07-02  Will Newton  <will.newton@linaro.org>
6221             Paul Eggert  <eggert@cs.ucla.edu>
6222
6223         * misc/sys/cdefs.h (_Noreturn): New macro, for pre-C11 compilers.
6224
6225 2014-07-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
6226
6227         * resolv/gethnamaddr.c: Add comment warning that the file is
6228         not maintained.
6229
6230 2014-07-01  Carlos O'Donell  <carlos@redhat.com>
6231
6232         * sysdeps/unix/sysv/linux/hppa/librt.abilist: Remove GLIBC_2.3
6233         entries.
6234
6235         * sysdeps/unix/sysv/linux/hppa/Versions: Remove librt GLIBC_2.3
6236         entry for aio_cancel and aio_cancel64.
6237         * sysdeps/unix/sysv/linux/hppa/ld.abilist: New file.
6238         * sysdeps/unix/sysv/linux/hppa/libBrokenLocale.abilist: New file.
6239         * sysdeps/unix/sysv/linux/hppa/libanl.abilist: New file.
6240         * sysdeps/unix/sysv/linux/hppa/libc.abilist: New file.
6241         * sysdeps/unix/sysv/linux/hppa/libcrypt.abilist: New file.
6242         * sysdeps/unix/sysv/linux/hppa/libdl.abilist: New file.
6243         * sysdeps/unix/sysv/linux/hppa/libm.abilist: New file.
6244         * sysdeps/unix/sysv/linux/hppa/libnsl.abilist: New file.
6245         * sysdeps/unix/sysv/linux/hppa/libpthread.abilist: New file.
6246         * sysdeps/unix/sysv/linux/hppa/libresolv.abilist: New file.
6247         * sysdeps/unix/sysv/linux/hppa/librt.abilist: New file.
6248         * sysdeps/unix/sysv/linux/hppa/libthread_db.abilist: New file.
6249         * sysdeps/unix/sysv/linux/hppa/libutil.abilist: New file.
6250
6251 2014-07-01  Roland McGrath  <roland@hack.frob.com>
6252
6253         * sysdeps/unix/sysv/linux/sysconf.c: Include <sys/param.h>.
6254         * nptl/pthread_mutex_lock.c: Likewise.
6255         * nptl/pthread_mutex_timedlock.c: Likewise.
6256         * nptl/sysdeps/unix/sysv/linux/pthread_attr_getaffinity.c: Likewise.
6257
6258 2014-07-01  Richard henderson  <rth@redhat.com>
6259
6260         * sysdeps/alpha/fpu/bits/mathinline.h (__isnanf): Remove.
6261         (__isnan, __isnanl): Remove.
6262         * sysdeps/alpha/fpu/s_isnan.c (__isnan): Use integer arithmetic.
6263
6264         * sysdeps/alpha/fpu/libm-test-ulps: Update.
6265
6266 2014-07-01  Stefan Liebler  <stli@linux.vnet.ibm.com>
6267
6268         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
6269
6270 2014-07-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
6271
6272         * resolv/nss_dns/dns-host.c (getanswer_r)
6273         [MULTI_PTRS_ARE_ALIASES]: Remove code.
6274
6275 2014-07-01  Joseph Myers  <joseph@codesourcery.com>
6276
6277         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
6278         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PSELECT): Do not
6279         undefine.
6280         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PREADV): Likewise.
6281         [__LINUX_KERNEL_VERSION >= 0x030f00] (__ASSUME_PWRITEV): Likewise.
6282
6283 2014-07-01  Roland McGrath <roland@hack.frob.com>
6284
6285         * sysdeps/unix/sysv/linux/microblaze/arch-fork.h: New file.
6286         * sysdeps/unix/sysv/linux/microblaze/nptl/fork.c: File removed.
6287
6288         * sysdeps/microblaze/nptl/tls.h: Define TLS_DEFINE_INIT_TP.
6289         * sysdeps/unix/sysv/linux/microblaze/nptl/createthread.c: File removed.
6290
6291         * sysdeps/microblaze/nptl/bits/pthreadtypes.h: Moved ...
6292         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h:
6293         ... here.
6294         * sysdeps/microblaze/nptl/bits/semaphore.h: Moved ...
6295         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/semaphore.h: ... here.
6296
6297         * sysdeps/unix/sysv/linux/microblaze/pt-vfork.S: Moved ...
6298         * sysdeps/unix/sysv/linux/microblaze/nptl/pt-vfork.S: ... here.
6299         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Moved ...
6300         * sysdeps/unix/sysv/linux/microblaze/vfork.S: ... here.
6301
6302         * sysdeps/unix/sysv/linux/microblaze/c++-types.data: Moved ...
6303         * sysdeps/unix/sysv/linux/microblaze/nptl/c++-types.data: ... here.
6304         * sysdeps/unix/sysv/linux/microblaze/ld.abilist: Moved ...
6305         * sysdeps/unix/sysv/linux/microblaze/nptl/ld.abilist: ... here.
6306         * sysdeps/unix/sysv/linux/microblaze/libBrokenLocale.abilist:
6307         Moved ...
6308         * sysdeps/unix/sysv/linux/microblaze/nptl/libBrokenLocale.abilist:
6309         ... here.
6310         * sysdeps/unix/sysv/linux/microblaze/libanl.abilist: Moved ...
6311         * sysdeps/unix/sysv/linux/microblaze/nptl/libanl.abilist: ... here.
6312         * sysdeps/unix/sysv/linux/microblaze/libc.abilist: Moved ...
6313         * sysdeps/unix/sysv/linux/microblaze/nptl/libc.abilist: ... here.
6314         * sysdeps/unix/sysv/linux/microblaze/libcrypt.abilist: Moved ...
6315         * sysdeps/unix/sysv/linux/microblaze/nptl/libcrypt.abilist: ... here.
6316         * sysdeps/unix/sysv/linux/microblaze/libdl.abilist: Moved ...
6317         * sysdeps/unix/sysv/linux/microblaze/nptl/libdl.abilist: ... here.
6318         * sysdeps/unix/sysv/linux/microblaze/libm.abilist: Moved ...
6319         * sysdeps/unix/sysv/linux/microblaze/nptl/libm.abilist: ... here.
6320         * sysdeps/unix/sysv/linux/microblaze/libnsl.abilist: Moved ...
6321         * sysdeps/unix/sysv/linux/microblaze/nptl/libnsl.abilist: ... here.
6322         * sysdeps/unix/sysv/linux/microblaze/libpthread.abilist: Moved ...
6323         * sysdeps/unix/sysv/linux/microblaze/nptl/libpthread.abilist: ... here.
6324         * sysdeps/unix/sysv/linux/microblaze/libresolv.abilist: Moved ...
6325         * sysdeps/unix/sysv/linux/microblaze/nptl/libresolv.abilist: ... here.
6326         * sysdeps/unix/sysv/linux/microblaze/librt.abilist: Moved ...
6327         * sysdeps/unix/sysv/linux/microblaze/nptl/librt.abilist: ... here.
6328         * sysdeps/unix/sysv/linux/microblaze/libthread_db.abilist: Moved ...
6329         * sysdeps/unix/sysv/linux/microblaze/nptl/libthread_db.abilist:
6330         ... here.
6331         * sysdeps/unix/sysv/linux/microblaze/libutil.abilist: Moved ...
6332         * sysdeps/unix/sysv/linux/microblaze/nptl/libutil.abilist: ... here.
6333         * sysdeps/unix/sysv/linux/microblaze/localplt.data: Moved ...
6334         * sysdeps/unix/sysv/linux/microblaze/nptl/localplt.data: ... here.
6335         * sysdeps/unix/sysv/linux/microblaze/lowlevellock.h: Moved ...
6336         * sysdeps/unix/sysv/linux/microblaze/nptl/lowlevellock.h: ... here.
6337         * sysdeps/unix/sysv/linux/microblaze/nptl/pthread_once.c: Moved ...
6338         * sysdeps/unix/sysv/linux/microblaze/pthread_once.c: ... here.
6339
6340 2014-07-01  David Holsgrove  <david.holsgrove@xilinx.com>
6341
6342         * sysdeps/unix/sysv/linux/microblaze/sysdep-cancel.h: New file.
6343         * sysdeps/unix/sysv/linux/microblaze/socket.S: Update SINGLE_THREAD_P use.
6344         * sysdeps/unix/sysv/linux/microblaze/Makefile(libpthread-routines):
6345         Add sysdep.
6346
6347 2014-06-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
6348
6349         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
6350
6351 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
6352
6353         * sysdeps/mips/mips32/libm-test-ulps: Regenerated.
6354         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
6355
6356         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
6357
6358         * sysdeps/arm/libm-test-ulps: Regenerated.
6359
6360 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
6361             Roland McGrath <roland@hack.frob.com>
6362
6363         * test-skeleton.c (signal_handler): Kill the whole process group
6364         before killing the child individually.
6365         (main): Report any failure on `setpgid'.
6366
6367 2014-06-30  Roland McGrath  <roland@hack.frob.com>
6368
6369         * sysdeps/arm/nptl/tls.h: Rename the multiple inclusion guard
6370         from _TLS_H to _ARM_NPTL_TLS_H.
6371         (TLS_INIT_TP): Move macro, and #include of <sysdep.h>, to ...
6372         * sysdeps/unix/sysv/linux/arm/tls.h: ... this new file.
6373
6374 2014-06-30  Joseph Myers  <joseph@codesourcery.com>
6375
6376         [BZ #16539]
6377         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Include <float.h>.
6378         (__expm1l): Return argument unchanged when small but not
6379         subnormal.
6380
6381         * soft-fp/op-1.h (_FP_UNPACK_RAW_1): Rename local variables to
6382         include macro name.
6383         (_FP_UNPACK_RAW_1_P): Likewise.
6384         (_FP_PACK_RAW_1): Likewise.
6385         (_FP_PACK_RAW_1_P): Likewise.
6386         (_FP_MUL_MEAT_1_wide): Likewise.
6387         (_FP_MUL_MEAT_DW_1_hard): Likewise.
6388         (_FP_MUL_MEAT_1_hard): Likewise.
6389         (_FP_DIV_MEAT_1_imm): Likewise.
6390         (_FP_DIV_MEAT_1_udiv_norm): Likewise.
6391         (_FP_DIV_MEAT_1_udiv): Likewise.
6392         * soft-fp/op-2.h (__FP_FRAC_DEC_2): Likewise.
6393         (_FP_UNPACK_RAW_2): Likewise.
6394         (_FP_UNPACK_RAW_2_P): Likewise.
6395         (_FP_PACK_RAW_2): Likewise.
6396         (_FP_PACK_RAW_2_P): Likewise.
6397         (_FP_MUL_MEAT_DW_2_wide): Likewise.
6398         (_FP_MUL_MEAT_2_wide): Likewise.
6399         (_FP_MUL_MEAT_DW_2_wide_3mul): Likewise.
6400         (_FP_MUL_MEAT_2_wide_3mul): Likewise.
6401         (_FP_MUL_MEAT_DW_2_gmp): Likewise.
6402         (_FP_MUL_MEAT_2_gmp): Likewise.
6403         (_FP_DIV_MEAT_2_udiv): Likewise.
6404         * soft-fp/op-4.h (_FP_FRAC_SLL_4): Likewise.
6405         (_FP_FRAC_SRL_4): Likewise.
6406         (_FP_FRAC_SRST_4): Likewise.
6407         (_FP_FRAC_SRS_4): Likewise.
6408         (_FP_UNPACK_RAW_4): Likewise.
6409         (_FP_UNPACK_RAW_4_P): Likewise.
6410         (_FP_PACK_RAW_4): Likewise.
6411         (_FP_PACK_RAW_4_P): Likewise.
6412         (_FP_MUL_MEAT_DW_4_wide): Likewise.
6413         (_FP_MUL_MEAT_4_wide): Likewise.
6414         (_FP_MUL_MEAT_4_gmp): Likewise.
6415         (umul_ppppmnnn): Likewise.
6416         (_FP_DIV_MEAT_4_udiv): Likewise.
6417         (__FP_FRAC_ADD_4): Likewise.
6418         (__FP_FRAC_SUB_3): Likewise.
6419         (__FP_FRAC_SUB_4): Likewise.
6420         (__FP_FRAC_DEC_3): Likewise.
6421         (__FP_FRAC_DEC_4): Likewise.
6422         (__FP_FRAC_ADDI_4): Likewise.
6423         * soft-fp/op-8.h (_FP_FRAC_SLL_8): Likewise.
6424         (_FP_FRAC_SRL_8): Likewise.
6425         (_FP_FRAC_SRS_8): Likewise.
6426
6427         * soft-fp/extended.h (FP_UNPACK_RAW_E): Rename local variables to
6428         include macro name.
6429         (FP_UNPACK_RAW_EP): Likewise.
6430         (FP_PACK_RAW_E): Likewise.
6431         (FP_PACK_RAW_EP): Likewise.
6432         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Likewise.
6433         (_FP_ISSIGNAN): Likewise.
6434         (_FP_ADD_INTERNAL): Likewise.
6435         (_FP_FMA): Likewise.
6436         (_FP_CMP): Likewise.
6437         (_FP_SQRT): Likewise.
6438         (_FP_TO_INT): Likewise.
6439         (_FP_FROM_INT): Likewise.
6440         (FP_EXTEND): Likewise.
6441         (_FP_DIV_MEAT_N_loop): Likewise.
6442
6443 2014-06-30  Maciej W. Rozycki  <macro@codesourcery.com>
6444
6445         * sysdeps/unix/sysv/linux/bits/socket.h: Adjust macro formatting
6446         throughout.
6447
6448 2014-06-29  Joseph Myers  <joseph@codesourcery.com>
6449
6450         [BZ #17097]
6451         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Return
6452         result with correct sign in case of exponents that produce
6453         overflow except for X very close to 1.
6454
6455 2014-06-28  Paul Eggert  <eggert@cs.ucla.edu>
6456
6457         mktime: merge #if/#ifdef usage from glibc
6458         * lib/mktime.c: Use "#if defined DEBUG && DEBUG", not "#if DEBUG",
6459         as that works with both Glibc's and Gnulib's style.
6460         See thread starting at Siddhesh Poyarekar's bug report at:
6461         http://lists.gnu.org/archive/html/bug-gnulib/2014-06/msg00102.html
6462
6463 2014-06-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
6464
6465         * sysdeps/generic/memcopy.h: Define MEMCPY_OK_FOR_FWD_MEMMOVE.
6466         * sysdeps/tile/memcopy.h: Redefine MEMCPY_OK_FOR_FWD_MEMMOVE.
6467         * sysdeps/tile/tilegx/memmove.c: Remove file.
6468
6469 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
6470
6471         * Makeconfig ($(common-objpfx)soversions.mk): Do not generate
6472         abi-name definition.
6473         * scripts/soversions.awk: Do not handle or generate ABI lines.
6474         * shlib-versions: Remove ABI entries.
6475         * sysdeps/powerpc/nofpu/shlib-versions: Remove file.
6476         * sysdeps/x86_64/x32/shlib-versions: Remove ABI entry.
6477
6478 2014-06-27  Roland McGrath  <roland@hack.frob.com>
6479
6480         * sysdeps/unix/sysv/linux/mips/mips32/nptl/c++-types.data: Moved ...
6481         * sysdeps/unix/sysv/linux/mips/mips32/c++-types.data: ... here.
6482         * sysdeps/unix/sysv/linux/mips/mips32/fpu/nptl/libc.abilist: Moved ...
6483         * sysdeps/unix/sysv/linux/mips/mips32/fpu/libc.abilist: ... here.
6484         * sysdeps/unix/sysv/linux/mips/mips32/nptl/ld.abilist: Moved ...
6485         * sysdeps/unix/sysv/linux/mips/mips32/ld.abilist: ... here.
6486         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libBrokenLocale.abilist:
6487         Moved ...
6488         * sysdeps/unix/sysv/linux/mips/mips32/libBrokenLocale.abilist:
6489         ... here.
6490         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libanl.abilist: Moved ...
6491         * sysdeps/unix/sysv/linux/mips/mips32/libanl.abilist: ... here.
6492         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcidn.abilist: Moved ...
6493         * sysdeps/unix/sysv/linux/mips/mips32/libcidn.abilist: ... here.
6494         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libcrypt.abilist: Moved ...
6495         * sysdeps/unix/sysv/linux/mips/mips32/libcrypt.abilist: ... here.
6496         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libdl.abilist: Moved ...
6497         * sysdeps/unix/sysv/linux/mips/mips32/libdl.abilist: ... here.
6498         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libm.abilist: Moved ...
6499         * sysdeps/unix/sysv/linux/mips/mips32/libm.abilist: ... here.
6500         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnsl.abilist: Moved ...
6501         * sysdeps/unix/sysv/linux/mips/mips32/libnsl.abilist: ... here.
6502         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_compat.abilist:
6503         Moved ...
6504         * sysdeps/unix/sysv/linux/mips/mips32/libnss_compat.abilist: ... here.
6505         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_db.abilist: Moved ...
6506         * sysdeps/unix/sysv/linux/mips/mips32/libnss_db.abilist: ... here.
6507         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_dns.abilist: Moved ...
6508         * sysdeps/unix/sysv/linux/mips/mips32/libnss_dns.abilist: ... here.
6509         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_files.abilist:
6510         Moved ...
6511         * sysdeps/unix/sysv/linux/mips/mips32/libnss_files.abilist: ... here.
6512         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_hesiod.abilist:
6513         Moved ...
6514         * sysdeps/unix/sysv/linux/mips/mips32/libnss_hesiod.abilist: ... here.
6515         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nis.abilist: Moved ...
6516         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nis.abilist: ... here.
6517         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libnss_nisplus.abilist:
6518         Moved ...
6519         * sysdeps/unix/sysv/linux/mips/mips32/libnss_nisplus.abilist: ... here.
6520         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libpthread.abilist: Moved ...
6521         * sysdeps/unix/sysv/linux/mips/mips32/libpthread.abilist: ... here.
6522         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libresolv.abilist: Moved ...
6523         * sysdeps/unix/sysv/linux/mips/mips32/libresolv.abilist: ... here.
6524         * sysdeps/unix/sysv/linux/mips/mips32/nptl/librt.abilist: Moved ...
6525         * sysdeps/unix/sysv/linux/mips/mips32/librt.abilist: ... here.
6526         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libthread_db.abilist:
6527         Moved ...
6528         * sysdeps/unix/sysv/linux/mips/mips32/libthread_db.abilist: ... here.
6529         * sysdeps/unix/sysv/linux/mips/mips32/nptl/libutil.abilist: Moved ...
6530         * sysdeps/unix/sysv/linux/mips/mips32/libutil.abilist: ... here.
6531         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/nptl/libc.abilist:
6532         Moved ...
6533         * sysdeps/unix/sysv/linux/mips/mips32/nofpu/libc.abilist: ... here.
6534         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/c++-types.data:
6535         Moved ...
6536         * sysdeps/unix/sysv/linux/mips/mips64/n32/c++-types.data: ... here.
6537         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/ld.abilist: Moved ...
6538         * sysdeps/unix/sysv/linux/mips/mips64/n32/ld.abilist: ... here.
6539         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libBrokenLocale.abilist:
6540         Moved ...
6541         * sysdeps/unix/sysv/linux/mips/mips64/libBrokenLocale.abilist:
6542         ... here.
6543         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libBrokenLocale.abilist:
6544         Identical file removed.
6545         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libanl.abilist:
6546         Moved ...
6547         * sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist: ... here.
6548         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libanl.abilist:
6549         Identical file removed.
6550         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libc.abilist: Moved ...
6551         * sysdeps/unix/sysv/linux/mips/mips64/n32/libc.abilist: ... here.
6552         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libcrypt.abilist:
6553         Moved ...
6554         * sysdeps/unix/sysv/linux/mips/mips64/libcrypt.abilist: ... here.
6555         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libcrypt.abilist:
6556         Identical file removed.
6557         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libdl.abilist: Moved ...
6558         * sysdeps/unix/sysv/linux/mips/mips64/libdl.abilist: ... here.
6559         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libdl.abilist:
6560         Identical file removed.
6561         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libm.abilist: Moved ...
6562         * sysdeps/unix/sysv/linux/mips/mips64/libm.abilist: ... here.
6563         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libm.abilist:
6564         Identical file removed.
6565         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libnsl.abilist: Moved ...
6566         * sysdeps/unix/sysv/linux/mips/mips64/libnsl.abilist: ... here.
6567         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libnsl.abilist:
6568         Identical file removed.
6569         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libpthread.abilist:
6570         Moved ...
6571         * sysdeps/unix/sysv/linux/mips/mips64/libpthread.abilist: ... here.
6572         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libpthread.abilist:
6573         Identical file removed.
6574         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libresolv.abilist:
6575         Moved ...
6576         * sysdeps/unix/sysv/linux/mips/mips64/n32/libresolv.abilist: ... here.
6577         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/librt.abilist: Moved ...
6578         * sysdeps/unix/sysv/linux/mips/mips64/librt.abilist: ... here.
6579         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/librt.abilist:
6580         Identical file removed.
6581         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libthread_db.abilist:
6582         Moved ...
6583         * sysdeps/unix/sysv/linux/mips/mips64/libthread_db.abilist:
6584         ... here.
6585         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libthread_db.abilist:
6586         Identical file removed.
6587         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libutil.abilist:
6588         Moved ...
6589         * sysdeps/unix/sysv/linux/mips/mips64/libutil.abilist: ... here.
6590         * sysdeps/unix/sysv/linux/mips/mips64/n32/nptl/libutil.abilist:
6591         Identical file removed.
6592         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/c++-types.data:
6593         Moved ...
6594         * sysdeps/unix/sysv/linux/mips/mips64/n64/c++-types.data: ... here.
6595         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/ld.abilist: Moved ...
6596         * sysdeps/unix/sysv/linux/mips/mips64/n64/ld.abilist: ... here.
6597         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libc.abilist: Moved ...
6598         * sysdeps/unix/sysv/linux/mips/mips64/n64/libc.abilist: ... here.
6599         * sysdeps/unix/sysv/linux/mips/mips64/n64/nptl/libresolv.abilist:
6600         Moved ...
6601         * sysdeps/unix/sysv/linux/mips/mips64/n64/libresolv.abilist: ... here.
6602         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h: Moved ...
6603         * sysdeps/unix/sysv/linux/mips/mips64/sysdep-cancel.h: ... here.
6604
6605         * sysdeps/unix/sysv/linux/mips/vfork.S: Incorporate
6606         SAVE_PID and RESTORE_PID blocks from nptl/pt-vfork.S.
6607         * sysdeps/unix/sysv/linux/mips/nptl/vfork.S: File removed.
6608         * sysdeps/unix/sysv/linux/mips/nptl/pt-vfork.S: File removed.
6609         * sysdeps/unix/sysv/linux/mips/pt-vfork.S: New file.
6610
6611 2014-06-27  Arjun Shankar  <arjun.is@lostca.se>
6612
6613         [BZ #17092]
6614         * nscd/nscd.c (monitor_child): Return exit status of child
6615         instead of return value from wait syscall.
6616
6617 2014-06-27  Joseph Myers  <joseph@codesourcery.com>
6618
6619         * configure.ac (libc_commonpagesize): Remove variable.
6620         (libc_relro_required): Likewise.
6621         (libc_cv_z_relro): Remove configure test.
6622         * configure: Regenerated.
6623         * sysdeps/aarch64/preconfigure (libc_commonpagesize): Do not set
6624         variable.
6625         (libc_relro_required): Likewise.
6626         * sysdeps/alpha/preconfigure (libc_commonpagesize): Likewise.
6627         (libc_relro_required): Likewise.
6628         * sysdeps/arm/preconfigure.ac (libc_commonpagesize): Likewise.
6629         (libc_relro_required): Likewise.
6630         * sysdeps/arm/preconfigure: Regenerated.
6631         * sysdeps/ia64/preconfigure: Remove file.
6632         * sysdeps/tile/preconfigure (libc_commonpagesize): Do not set
6633         variable.
6634         (libc_relro_required): Likewise.
6635
6636         [BZ #16561]
6637         [BZ #16562]
6638         * sysdeps/ieee754/dbl-64/e_jn.c: Include <float.h>.
6639         (__ieee754_yn): Set FE_TONEAREST mode internally and then
6640         recompute overflowing results in original rounding mode.
6641         * sysdeps/ieee754/flt-32/e_jnf.c: Include <float.h>.
6642         (__ieee754_ynf): Set FE_TONEAREST mode internally and then
6643         recompute overflowing results in original rounding mode.
6644         * sysdeps/ieee754/ldbl-128/e_jnl.c: Include <float.h>.
6645         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6646         recompute overflowing results in original rounding mode.
6647         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Include <float.h>.
6648         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6649         recompute overflowing results in original rounding mode.
6650         * sysdeps/ieee754/ldbl-96/e_jnl.c: Include <float.h>.
6651         (__ieee754_ynl): Set FE_TONEAREST mode internally and then
6652         recompute overflowing results in original rounding mode.
6653         * sysdeps/i386/fpu/fenv_private.h [!__SSE2_MATH__]
6654         (libc_feholdsetround_ctx): New macro.
6655         * math/libm-test.inc (yn_test): Use ALL_RM_TEST.
6656         * sysdeps/i386/fpu/libm-test-ulps: Update.
6657         * sysdeps/x86_64/fpu/libm-test-ulps : Likewise.
6658
6659 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6660
6661         * sysdeps/unix/sysv/linux/mips/mips64/nptl/sysdep-cancel.h
6662         [__PIC__] (PSEUDO): Use name of _nocancel entry point in
6663         corresponding .cpsetup call.
6664
6665 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6666
6667         * sysdeps/unix/sysv/linux/arm/libc-aeabi_read_tp.S: Moved ...
6668         * sysdeps/arm/libc-aeabi_read_tp.S: ... here.
6669         * sysdeps/arm/Makefile [$(subdir) = csu]
6670         (aeabi_routines): Add aeabi_read_tp and libc-aeabi_read_tp here.
6671         (static-only-routines): Add aeabi_read_tp here.
6672         (shared-only-routines): Add libc-aeabi_read_tp here.
6673         (CFLAGS-libc-start.c): Add -fexceptions here.
6674         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = csu]
6675         (sysdep_routines, static-only-routines, shared-only-routines):
6676         Don't add to these here.
6677         (CFLAGS-libc-start.c): Likewise.
6678
6679         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: Moved ...
6680         * sysdeps/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
6681         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: Moved ...
6682         * sysdeps/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
6683         * sysdeps/arm/Makefile [$(subdir) = rt]
6684         (librt-sysdep_routines, librt-shared-only-routines):
6685         Append rt-aeabi_unwind_cpp_pr1 here.
6686         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = rt]
6687         (librt-sysdep_routines, librt-shared-only-routines): Don't do it here.
6688         * sysdeps/arm/nptl/Makefile [$(subdir) = nptl]
6689         (libpthread-sysdep_routines, libpthread-shared-only-routines):
6690         Append nptl-aeabi_unwind_cpp_pr1 here.
6691         (tests): Filter out tst-cleanupx4 here.
6692         * sysdeps/unix/sysv/linux/arm/Makefile [$(subdir) = nptl]
6693         (libpthread-sysdep_routines, libpthread-shared-only-routines, tests):
6694         Don't do those here.
6695
6696 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6697
6698         * scripts/list-sources.sh: Do not handle ports specially.
6699
6700 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6701
6702         * sysdeps/arm/fesetenv.c: Include <fpu_control.h>.
6703         * sysdeps/arm/feupdateenv.c: Likewise.
6704
6705         * posix/spawn_faction_addopen.c: Include <stdlib.h> for free decl.
6706
6707 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6708
6709         * manual/texinfo.tex: Update to version 2014-05-05.10 with
6710         trailing whitespace removed.
6711         * scripts/config.guess: Update to version 2014-03-23.
6712         * scripts/config.sub: Update to version 2014-05-01
6713         * scripts/install-sh: Update to version 2013-12-25.23.
6714         * scripts/move-if-change: Update from gnulib.
6715
6716 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
6717
6718         * debug/memmove_chk.c: Remove pagecopy.h include.
6719
6720 2014-06-26  Paul Eggert  <eggert@cs.ucla.edu>
6721
6722         * time/mktime.c (leapyear): Remove inline keyword.  The code is now
6723         identical to gnulib mktime.
6724
6725 2014-06-26  Joseph Myers  <joseph@codesourcery.com>
6726
6727         * configure.ac: Do not test for machine being rs6000.  Do not test
6728         for powerpc*-*soft.
6729         * configure: Regenerated.
6730
6731         * configure.ac (libc_cv_asm_cfi_directives): Remove configure
6732         test.
6733         * configure: Regenerated.
6734         * config.h.in (HAVE_ASM_CFI_DIRECTIVES): Remove macro undefine.
6735         * sysdeps/arm/configure.ac (libc_cv_asm_cfi_directive_sections):
6736         Remove configure test.
6737         * sysdeps/arm/configure: Regenerated.
6738         * sysdeps/nptl/configure.ac: Do not check
6739         libc_cv_asm_cfi_directives.
6740         * sysdeps/nptl/configure: Regenerated.
6741         * sysdeps/x86_64/nptl/configure.ac: Remove file.
6742         * sysdeps/x86_64/nptl/configure: Remove generated file.
6743         * b/sysdeps/generic/sysdep.h [HAVE_ASM_CFI_DIRECTIVES]: Make code
6744         unconditional.
6745         [!HAVE_ASM_CFI_DIRECTIVES]: Remove conditional code.
6746
6747 2014-06-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
6748
6749         * posix/fnmatch.c: Define WIDE_CHAR_VERSION.
6750         * posix/fnmatch_loop.c: Undefine WIDE_CHAR_VERSION.
6751         (FCT): Check value of WIDE_CHAR_VERSION instead of checking if
6752         it is defined.
6753
6754         * elf/dl-runtime.c: Check for value of ELF_MACHINE_NO_RELA
6755         instead of whether it is defined.
6756         * sysdeps/aarch64/dl-machine.h: Define ELF_MACHINE_NO_RELA.
6757         * sysdeps/hppa/dl-machine.h: Likewise.
6758         * sysdeps/ia64/dl-machine.h: Likewise.
6759         * sysdeps/m68k/dl-machine.h: Likewise.
6760         * sysdeps/microblaze/dl-machine.h: Likewise.
6761         * sysdeps/mips/dl-machine.: Likewise.
6762         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
6763         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
6764         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
6765         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
6766         * sysdeps/sh/dl-machine.h: Likewise.
6767         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
6768         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
6769         * sysdeps/tile/dl-machine.h: Likewise.
6770         * sysdeps/x86_64/dl-machine.h: Likewise.
6771
6772         * nscd/connections.c (enum usekey) [SEPARATE_KEY]: Remove
6773         code.
6774         (verify_persistent_db): Likewise.
6775
6776 2014-06-26  Roland McGrath  <roland@hack.frob.com>
6777
6778         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data: Moved ...
6779         * sysdeps/unix/sysv/linux/s390/s390-32/c++-types.data: ... here.
6780         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Moved ...
6781         * sysdeps/unix/sysv/linux/s390/s390-32/ld.abilist: ... here.
6782         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
6783         Moved ...
6784         * sysdeps/unix/sysv/linux/s390/s390-32/libBrokenLocale.abilist:
6785         ... here.
6786         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: Moved ...
6787         * sysdeps/unix/sysv/linux/s390/libanl.abilist: ... here.
6788         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist:
6789         Identical file removed.
6790         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Moved ...
6791         * sysdeps/unix/sysv/linux/s390/s390-32/libc.abilist: ... here.
6792         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: Moved ...
6793         * sysdeps/unix/sysv/linux/s390/s390-32/libcrypt.abilist: ... here.
6794         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: Moved ...
6795         * sysdeps/unix/sysv/linux/s390/s390-32/libdl.abilist: ... here.
6796         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Moved ...
6797         * sysdeps/unix/sysv/linux/s390/s390-32/libm.abilist: ... here.
6798         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: Moved ...
6799         * sysdeps/unix/sysv/linux/s390/s390-32/libnsl.abilist: ... here.
6800         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
6801         Moved ...
6802         * sysdeps/unix/sysv/linux/s390/s390-32/libpthread.abilist: ... here.
6803         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: Moved ...
6804         * sysdeps/unix/sysv/linux/s390/s390-32/libresolv.abilist: ... here.
6805         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Moved ...
6806         * sysdeps/unix/sysv/linux/s390/s390-32/librt.abilist: ... here.
6807         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
6808         Moved ...
6809         * sysdeps/unix/sysv/linux/s390/s390-32/libthread_db.abilist: ... here.
6810         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Moved ...
6811         * sysdeps/unix/sysv/linux/s390/s390-32/libutil.abilist: ... here.
6812         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data: Moved ...
6813         * sysdeps/unix/sysv/linux/s390/localplt.data: ... here.
6814         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
6815         Identical file removed.
6816         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data: Moved ...
6817         * sysdeps/unix/sysv/linux/s390/s390-64/c++-types.data: ... here.
6818         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Moved ...
6819         * sysdeps/unix/sysv/linux/s390/s390-64/ld.abilist: ... here.
6820         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
6821         Moved ...
6822         * sysdeps/unix/sysv/linux/s390/s390-64/libBrokenLocale.abilist:
6823         ... here.
6824         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Moved ...
6825         * sysdeps/unix/sysv/linux/s390/s390-64/libc.abilist: ... here.
6826         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: Moved ...
6827         * sysdeps/unix/sysv/linux/s390/s390-64/libcrypt.abilist: ... here.
6828         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: Moved ...
6829         * sysdeps/unix/sysv/linux/s390/s390-64/libdl.abilist: ... here.
6830         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Moved ...
6831         * sysdeps/unix/sysv/linux/s390/s390-64/libm.abilist: ... here.
6832         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: Moved ...
6833         * sysdeps/unix/sysv/linux/s390/s390-64/libnsl.abilist: ... here.
6834         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
6835         Moved ...
6836         * sysdeps/unix/sysv/linux/s390/s390-64/libpthread.abilist: ... here.
6837         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist:
6838         Moved ...
6839         * sysdeps/unix/sysv/linux/s390/s390-64/libresolv.abilist: ... here.
6840         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: Moved ...
6841         * sysdeps/unix/sysv/linux/s390/s390-64/librt.abilist: ... here.
6842         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
6843         Moved ...
6844         * sysdeps/unix/sysv/linux/s390/s390-64/libthread_db.abilist: ... here.
6845         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: Moved ...
6846         * sysdeps/unix/sysv/linux/s390/s390-64/libutil.abilist: ... here.
6847
6848         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: File removed, contents
6849         folded into ...
6850         * sysdeps/unix/sysv/linux/s390/Makefile [$(subdir) = nptl]: ... here.
6851         * sysdeps/unix/sysv/linux/s390/Versions
6852         (libpthread: GLIBC_2.19): New version set.
6853         * nptl/sysdeps/unix/sysv/linux/s390/Versions: File removed.
6854         * sysdeps/unix/sysv/linux/s390/s390-64/Versions
6855         (librt: GLIBC_2.3.3): New version set.
6856         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/Versions: File removed.
6857         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: Moved ...
6858         * sysdeps/unix/sysv/linux/s390/elision-conf.c: ... here.
6859         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Moved ...
6860         * sysdeps/unix/sysv/linux/s390/elision-conf.h: ... here.
6861         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Moved ...
6862         * sysdeps/unix/sysv/linux/s390/elision-lock.c: ... here.
6863         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Moved ...
6864         * sysdeps/unix/sysv/linux/s390/elision-timed.c: ... here.
6865         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Moved ...
6866         * sysdeps/unix/sysv/linux/s390/elision-trylock.c: ... here.
6867         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Moved ...
6868         * sysdeps/unix/sysv/linux/s390/elision-unlock.c: ... here.
6869         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Moved ...
6870         * sysdeps/unix/sysv/linux/s390/force-elision.h: ... here.
6871         * nptl/sysdeps/unix/sysv/linux/s390/jmp-unwind.c: Moved ...
6872         * sysdeps/unix/sysv/linux/s390/jmp-unwind.c: ... here.
6873         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h: Moved ...
6874         * sysdeps/unix/sysv/linux/s390/lowlevellock.h: ... here.
6875         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: Moved ...
6876         * sysdeps/unix/sysv/linux/s390/pt-longjmp.c: ... here.
6877         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: Moved ...
6878         * sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c: ... here.
6879         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: Moved ...
6880         * sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c: ... here.
6881         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: Moved ...
6882         * sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c: ... here.
6883         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: Moved ...
6884         * sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c: ... here.
6885         * nptl/sysdeps/unix/sysv/linux/s390/pthread_once.c: Moved ...
6886         * sysdeps/unix/sysv/linux/s390/pthread_once.c: ... here.
6887         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: Moved ...
6888         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep-cancel.h: ... here.
6889         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: Moved ...
6890         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep-cancel.h: ... here.
6891         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Moved ...
6892         * sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: ... here.
6893         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Moved ...
6894         * sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: ... here.
6895         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Moved ...
6896         * sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: ... here.
6897         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Moved ...
6898         * sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: ... here.
6899         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Moved ...
6900         * sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: ... here.
6901
6902         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Moved ...
6903         * sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: ... here.
6904         (__libc_vfork): Define the function under this name.
6905         [!NOT_IN_libc] (__vfork): Make this an alias.
6906         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
6907         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Moved ...
6908         * sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: ... here.
6909         (__libc_vfork): Define the function under this name.
6910         [!NOT_IN_libc] (__vfork): Make this an alias.
6911         [!NOT_IN_libc] (vfork): Conditionalize the weak_alias.
6912         * sysdeps/unix/sysv/linux/s390/pt-vfork.S: New file.
6913         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: File removed.
6914         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: File removed.
6915         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Remove vfork.
6916         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
6917
6918         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Deconditionalize the
6919         code that was previously under [RESET_PID].
6920         * sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Likewise.
6921         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/clone.S: File removed.
6922         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/clone.S: File removed.
6923
6924         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h: Moved ...
6925         * sysdeps/aarch64/nptl/bits/pthreadtypes.h: ... here.
6926         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/semaphore.h: Moved ...
6927         * sysdeps/aarch64/nptl/bits/semaphore.h: ... here.
6928         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/local_lim.h: Moved ...
6929         * sysdeps/unix/sysv/linux/aarch64/bits/local_lim.h: ... here.
6930         * sysdeps/unix/sysv/linux/aarch64/nptl/c++-types.data: Moved ...
6931         * sysdeps/unix/sysv/linux/aarch64/c++-types.data: ... here.
6932         * sysdeps/unix/sysv/linux/aarch64/nptl/ld.abilist: Moved ...
6933         * sysdeps/unix/sysv/linux/aarch64/ld.abilist: ... here.
6934         * sysdeps/unix/sysv/linux/aarch64/nptl/libBrokenLocale.abilist:
6935         Moved ...
6936         * sysdeps/unix/sysv/linux/aarch64/libBrokenLocale.abilist: ... here.
6937         * sysdeps/unix/sysv/linux/aarch64/nptl/libanl.abilist: Moved ...
6938         * sysdeps/unix/sysv/linux/aarch64/libanl.abilist: ... here.
6939         * sysdeps/unix/sysv/linux/aarch64/nptl/libc.abilist: Moved ...
6940         * sysdeps/unix/sysv/linux/aarch64/libc.abilist: ... here.
6941         * sysdeps/unix/sysv/linux/aarch64/nptl/libcrypt.abilist: Moved ...
6942         * sysdeps/unix/sysv/linux/aarch64/libcrypt.abilist: ... here.
6943         * sysdeps/unix/sysv/linux/aarch64/nptl/libdl.abilist: Moved ...
6944         * sysdeps/unix/sysv/linux/aarch64/libdl.abilist: ... here.
6945         * sysdeps/unix/sysv/linux/aarch64/nptl/libm.abilist: Moved ...
6946         * sysdeps/unix/sysv/linux/aarch64/libm.abilist: ... here.
6947         * sysdeps/unix/sysv/linux/aarch64/nptl/libnsl.abilist: Moved ...
6948         * sysdeps/unix/sysv/linux/aarch64/libnsl.abilist: ... here.
6949         * sysdeps/unix/sysv/linux/aarch64/nptl/libpthread.abilist: Moved ...
6950         * sysdeps/unix/sysv/linux/aarch64/libpthread.abilist: ... here.
6951         * sysdeps/unix/sysv/linux/aarch64/nptl/libresolv.abilist: Moved ...
6952         * sysdeps/unix/sysv/linux/aarch64/libresolv.abilist: ... here.
6953         * sysdeps/unix/sysv/linux/aarch64/nptl/librt.abilist: Moved ...
6954         * sysdeps/unix/sysv/linux/aarch64/librt.abilist: ... here.
6955         * sysdeps/unix/sysv/linux/aarch64/nptl/libthread_db.abilist: Moved ...
6956         * sysdeps/unix/sysv/linux/aarch64/libthread_db.abilist: ... here.
6957         * sysdeps/unix/sysv/linux/aarch64/nptl/libutil.abilist: Moved ...
6958         * sysdeps/unix/sysv/linux/aarch64/libutil.abilist: ... here.
6959         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data: Moved ...
6960         * sysdeps/unix/sysv/linux/aarch64/localplt.data: ... here.
6961         * sysdeps/unix/sysv/linux/aarch64/nptl/lowlevellock.h: Moved ...
6962         * sysdeps/unix/sysv/linux/aarch64/lowlevellock.h: ... here.
6963         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Moved ...
6964         * sysdeps/unix/sysv/linux/aarch64/sysdep-cancel.h: ... here.
6965
6966 2014-06-25  Roland McGrath  <roland@hack.frob.com>
6967
6968         * sysdeps/unix/sysv/linux/mips/clone.S: Deconditionalize the code
6969         that was previously under [RESET_PID].
6970         * sysdeps/unix/sysv/linux/mips/nptl/clone.S: File removed.
6971
6972 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
6973
6974         * sysdeps/unix/sysv/linux/dl-opendir.c (__ASSUME_O_CLOEXEC): Do
6975         not undefine and redefine.
6976         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs)
6977         [O_CLOEXEC]: Make code unconditional.
6978         (__get_nprocs) [!O_CLOEXEC]: Remove conditional code.
6979         * sysdeps/unix/sysv/linux/shm_open.c: Do not include
6980         <kernel-features.h>.
6981         [O_CLOEXEC && !__ASSUME_O_CLOEXEC] (have_o_cloexec): Remove
6982         conditional variable definition.
6983         (shm_open) [O_CLOEXEC]: Make code unconditional.
6984         (shm_open) [!O_CLOEXEC || !__ASSUME_O_CLOEXEC]: Remove conditional
6985         code.
6986
6987         * configure.ac (USE_REGPARMS): Don't define here.
6988         * configure: Regenerated.
6989         * sysdeps/i386/configure.ac (USE_REGPARMS): Define here.
6990         * sysdeps/i386/configure: Regenerated.
6991
6992         * nptl/createthread.c: Don't include kernel-features.h.
6993         * nptl/pthread_cancel.c: Likewise.
6994         * nptl/pthread_condattr_setclock.c: Likewise.
6995         * nptl/sysdeps/unix/sysv/linux/pt-raise.c: Likewise.
6996         * nptl/sysdeps/unix/sysv/linux/pthread_getcpuclockid.c: Likewise.
6997         * nptl/sysdeps/unix/sysv/linux/pthread_kill.c: Likewise.
6998         * nptl/sysdeps/unix/sysv/linux/pthread_sigqueue.c: Likewise.
6999         * nptl/sysdeps/unix/sysv/linux/raise.c: Likewise.
7000         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/pt-vfork.S: Likewise.
7001         * nptl/sysdeps/unix/sysv/linux/s390/s390-32/vfork.S: Likewise.
7002         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/pt-vfork.S: Likewise.
7003         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/vfork.S: Likewise.
7004         * nptl/sysdeps/unix/sysv/linux/timer_create.c: Likewise.
7005         * nptl/sysdeps/unix/sysv/linux/timer_delete.c: Likewise.
7006         * nptl/sysdeps/unix/sysv/linux/timer_getoverr.c: Likewise.
7007         * nptl/sysdeps/unix/sysv/linux/timer_gettime.c: Likewise.
7008         * nptl/sysdeps/unix/sysv/linux/timer_routines.c: Likewise.
7009         * nptl/sysdeps/unix/sysv/linux/timer_settime.c: Likewise.
7010         * nscd/gai.c: Likewise.
7011         * nss/nss_db/db-open.c: Likewise.
7012         * sysdeps/generic/ldsodefs.h: Likewise.
7013         * sysdeps/sh/nptl/tls.h: Likewise.
7014         * sysdeps/unix/sysv/linux/aarch64/sigaction.c: Likewise.
7015         * sysdeps/unix/sysv/linux/aarch64/sigcontextinfo.h: Likewise.
7016         * sysdeps/unix/sysv/linux/aarch64/vfork.S: Likewise.
7017         * sysdeps/unix/sysv/linux/adjtime.c: Likewise.
7018         * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise.
7019         * sysdeps/unix/sysv/linux/arm/sigaction.c: Likewise.
7020         * sysdeps/unix/sysv/linux/arm/sigcontextinfo.h: Likewise.
7021         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
7022         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
7023         * sysdeps/unix/sysv/linux/clock_getres.c: Likewise.
7024         * sysdeps/unix/sysv/linux/clock_gettime.c: Likewise.
7025         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
7026         * sysdeps/unix/sysv/linux/clock_settime.c: Likewise.
7027         * sysdeps/unix/sysv/linux/dl-execstack.c: Likewise.
7028         * sysdeps/unix/sysv/linux/dl-osinfo.h: Likewise.
7029         * sysdeps/unix/sysv/linux/dl-sysdep.c: Likewise.
7030         * sysdeps/unix/sysv/linux/generic/futimesat.c: Likewise.
7031         * sysdeps/unix/sysv/linux/generic/poll.c: Likewise.
7032         * sysdeps/unix/sysv/linux/generic/wordsize-32/fcntl.c: Likewise.
7033         * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise.
7034         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread.c: Likewise.
7035         * sysdeps/unix/sysv/linux/generic/wordsize-32/pread64.c: Likewise.
7036         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv.c: Likewise.
7037         * sysdeps/unix/sysv/linux/generic/wordsize-32/preadv64.c: Likewise.
7038         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite.c: Likewise.
7039         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwrite64.c: Likewise.
7040         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev.c: Likewise.
7041         * sysdeps/unix/sysv/linux/generic/wordsize-32/pwritev64.c: Likewise.
7042         * sysdeps/unix/sysv/linux/getcwd.c: Likewise.
7043         * sysdeps/unix/sysv/linux/getpagesize.c: Likewise.
7044         * sysdeps/unix/sysv/linux/getsysstats.c: Likewise.
7045         * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise.
7046         * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise.
7047         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
7048         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
7049         * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise.
7050         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
7051         * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
7052         * sysdeps/unix/sysv/linux/ia64/system.c: Likewise.
7053         * sysdeps/unix/sysv/linux/if_index.c: Likewise.
7054         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
7055         * sysdeps/unix/sysv/linux/ifreq.c: Likewise.
7056         * sysdeps/unix/sysv/linux/ldsodefs.h: Likewise.
7057         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
7058         * sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
7059         * sysdeps/unix/sysv/linux/microblaze/nptl/vfork.S: Likewise.
7060         * sysdeps/unix/sysv/linux/mips/mips32/accept4.c: Likewise.
7061         * sysdeps/unix/sysv/linux/mips/mips32/recvmmsg.c: Likewise.
7062         * sysdeps/unix/sysv/linux/mips/mips32/sendmmsg.c: Likewise.
7063         * sysdeps/unix/sysv/linux/mips/pread.c: Likewise.
7064         * sysdeps/unix/sysv/linux/mips/pread64.c: Likewise.
7065         * sysdeps/unix/sysv/linux/mips/pwrite.c: Likewise.
7066         * sysdeps/unix/sysv/linux/mips/pwrite64.c: Likewise.
7067         * sysdeps/unix/sysv/linux/mips/sigaction.c: Likewise.
7068         * sysdeps/unix/sysv/linux/mmap64.c: Likewise.
7069         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
7070         * sysdeps/unix/sysv/linux/powerpc/chown.c: Likewise.
7071         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Likewise.
7072         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
7073         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c: Likewise.
7074         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c: Likewise.
7075         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Likewise.
7076         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Likewise.
7077         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Likewise.
7078         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Likewise.
7079         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Likewise.
7080         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
7081         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
7082         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Likewise.
7083         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c: Likewise.
7084         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c: Likewise.
7085         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S: Likewise.
7086         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
7087         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
7088         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
7089         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
7090         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
7091         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S: Likewise.
7092         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S: Likewise.
7093         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Likewise.
7094         * sysdeps/unix/sysv/linux/pread.c: Likewise.
7095         * sysdeps/unix/sysv/linux/pread64.c: Likewise.
7096         * sysdeps/unix/sysv/linux/prof-freq.c: Likewise.
7097         * sysdeps/unix/sysv/linux/pwrite.c: Likewise.
7098         * sysdeps/unix/sysv/linux/pwrite64.c: Likewise.
7099         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S: Likewise.
7100         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S: Likewise.
7101         * sysdeps/unix/sysv/linux/s390/system.c: Likewise.
7102         * sysdeps/unix/sysv/linux/sh/pread.c: Likewise.
7103         * sysdeps/unix/sysv/linux/sh/pread64.c: Likewise.
7104         * sysdeps/unix/sysv/linux/sh/pwrite.c: Likewise.
7105         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Likewise.
7106         * sysdeps/unix/sysv/linux/sigaction.c: Likewise.
7107         * sysdeps/unix/sysv/linux/sigpending.c: Likewise.
7108         * sysdeps/unix/sysv/linux/sigprocmask.c: Likewise.
7109         * sysdeps/unix/sysv/linux/sigsuspend.c: Likewise.
7110         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
7111         * sysdeps/unix/sysv/linux/sparc/system.c: Likewise.
7112         * sysdeps/unix/sysv/linux/syslog.c: Likewise.
7113         * sysdeps/unix/sysv/linux/system.c: Likewise.
7114         * sysdeps/unix/sysv/linux/testrtsig.h: Likewise.
7115         * sysdeps/unix/sysv/linux/timespec_get.c: Likewise.
7116         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
7117         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
7118         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
7119         * sysdeps/unix/sysv/linux/x86_64/sigaction.c: Likewise.
7120         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
7121
7122         * configure.ac (libc_cv_c_asmcr0_bug): Remove configure test.
7123         * configure: Regenerated.
7124         * config.h.in (BROKEN_PPC_ASM_CR0): Remove macro.
7125
7126         * configure.ac (base_machine): Do not set specially for particular
7127         machines here.
7128         * configure: Regenerated.
7129         * sysdeps/powerpc/preconfigure: Move machine and base_machine
7130         settings from configure.ac.
7131         * sysdeps/i386/preconfigure: New file.
7132         * sysdeps/s390/preconfigure: Likewise.
7133         * sysdeps/sh/preconfigure: Likewise.
7134         * sysdeps/sparc/preconfigure: Likewise.
7135
7136 2014-06-25  Roland McGrath  <roland@hack.frob.com>
7137
7138         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: Moved ...
7139         * sysdeps/sparc/sparc64/cpu_relax.S: ... here.
7140         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: Moved ...
7141         * sysdeps/sparc/sparc64/pthread_spin_init.c: ... here.
7142         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: Moved ...
7143         * sysdeps/sparc/sparc64/pthread_spin_lock.S: ... here.
7144         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: Moved ...
7145         * sysdeps/sparc/sparc64/pthread_spin_trylock.S: ... here.
7146         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: Moved ...
7147         * sysdeps/sparc/sparc64/pthread_spin_unlock.S: ... here.
7148         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: Moved ...
7149         * sysdeps/sparc/sparc64/pthreaddef.h: ... here.
7150         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Update #include.
7151         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Likewise.
7152         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Likewise.
7153         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Likewise.
7154         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Likewise.
7155         * sysdeps/sparc/sparc64/nptl/Makefile: File removed, its contents ...
7156         * sysdeps/sparc/sparc64/Makefile: ... appended here.
7157
7158         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: Moved ...
7159         * sysdeps/sparc/sparc32/lowlevellock.c: ... here.
7160         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: Moved ...
7161         * sysdeps/sparc/sparc32/pthread_barrier_wait.c: ... here.
7162         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: Moved ...
7163         * sysdeps/sparc/sparc32/pthread_spin_lock.S: ... here.
7164         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: Moved ...
7165         * sysdeps/sparc/sparc32/pthread_spin_trylock.S: ... here.
7166         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: Moved ...
7167         * sysdeps/sparc/sparc32/pthreaddef.h: ... here.
7168         * sysdeps/sparc/sparc32/nptl/sem_post.c: Moved ...
7169         * sysdeps/sparc/sparc32/sem_post.c: ... here.
7170         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: Moved ...
7171         * sysdeps/sparc/sparc32/sem_timedwait.c: ... here.
7172         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: Moved ...
7173         * sysdeps/sparc/sparc32/sem_trywait.c: ... here.
7174         * sysdeps/sparc/sparc32/nptl/sem_wait.c: Moved ...
7175         * sysdeps/sparc/sparc32/sem_wait.c: ... here.
7176         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: Moved ...
7177         * sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: ... here.
7178         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: Moved ...
7179         * sysdeps/sparc/sparc32/sparcv9/pthread_barrier_wait.c: ... here.
7180         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: Moved ...
7181         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: ... here.
7182         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: Moved ...
7183         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: ... here.
7184         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: Moved ...
7185         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: ... here.
7186         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: Moved ...
7187         * sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: ... here.
7188         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: Moved ...
7189         * sysdeps/sparc/sparc32/sparcv9/sem_post.c: ... here.
7190         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: Moved ...
7191         * sysdeps/sparc/sparc32/sparcv9/sem_timedwait.c: ... here.
7192         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: Moved ...
7193         * sysdeps/sparc/sparc32/sparcv9/sem_trywait.c: ... here.
7194         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: Moved ...
7195         * sysdeps/sparc/sparc32/sparcv9/sem_wait.c: ... here.
7196
7197         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data: Moved ...
7198         * sysdeps/unix/sysv/linux/sparc/sparc32/c++-types.data: ... here.
7199         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: Moved ...
7200         * sysdeps/unix/sysv/linux/sparc/sparc32/ld.abilist: ... here.
7201         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
7202         Moved ...
7203         * sysdeps/unix/sysv/linux/sparc/sparc32/libBrokenLocale.abilist:
7204         ... here.
7205         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: Moved ...
7206         * sysdeps/unix/sysv/linux/sparc/sparc32/libanl.abilist: ... here.
7207         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Moved ...
7208         * sysdeps/unix/sysv/linux/sparc/sparc32/libc.abilist: ... here.
7209         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist:
7210         Moved ...
7211         * sysdeps/unix/sysv/linux/sparc/sparc32/libcrypt.abilist: ... here.
7212         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: Moved ...
7213         * sysdeps/unix/sysv/linux/sparc/sparc32/libdl.abilist: ... here.
7214         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: Moved ...
7215         * sysdeps/unix/sysv/linux/sparc/sparc32/libm.abilist: ... here.
7216         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: Moved ...
7217         * sysdeps/unix/sysv/linux/sparc/sparc32/libnsl.abilist: ... here.
7218         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
7219         Moved ...
7220         * sysdeps/unix/sysv/linux/sparc/sparc32/libpthread.abilist: ... here.
7221         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
7222         Moved ...
7223         * sysdeps/unix/sysv/linux/sparc/sparc32/libresolv.abilist: ... here.
7224         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: Moved ...
7225         * sysdeps/unix/sysv/linux/sparc/sparc32/librt.abilist: ... here.
7226         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
7227         Moved ...
7228         * sysdeps/unix/sysv/linux/sparc/sparc32/libthread_db.abilist: ... here.
7229         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: Moved ...
7230         * sysdeps/unix/sysv/linux/sparc/sparc32/libutil.abilist: ... here.
7231         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data: Moved ...
7232         * sysdeps/unix/sysv/linux/sparc/sparc32/localplt.data: ... here.
7233         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data: Moved ...
7234         * sysdeps/unix/sysv/linux/sparc/sparc64/c++-types.data: ... here.
7235         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: Moved ...
7236         * sysdeps/unix/sysv/linux/sparc/sparc64/ld.abilist: ... here.
7237         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
7238         Moved ...
7239         * sysdeps/unix/sysv/linux/sparc/sparc64/libBrokenLocale.abilist:
7240         ... here.
7241         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: Moved ...
7242         * sysdeps/unix/sysv/linux/sparc/sparc64/libanl.abilist: ... here.
7243         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Moved ...
7244         * sysdeps/unix/sysv/linux/sparc/sparc64/libc.abilist: ... here.
7245         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist:
7246         Moved ...
7247         * sysdeps/unix/sysv/linux/sparc/sparc64/libcrypt.abilist: ... here.
7248         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: Moved ...
7249         * sysdeps/unix/sysv/linux/sparc/sparc64/libdl.abilist: ... here.
7250         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: Moved ...
7251         * sysdeps/unix/sysv/linux/sparc/sparc64/libm.abilist: ... here.
7252         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: Moved ...
7253         * sysdeps/unix/sysv/linux/sparc/sparc64/libnsl.abilist: ... here.
7254         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
7255         Moved ...
7256         * sysdeps/unix/sysv/linux/sparc/sparc64/libpthread.abilist: ... here.
7257         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
7258         Moved ...
7259         * sysdeps/unix/sysv/linux/sparc/sparc64/libresolv.abilist: ... here.
7260         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: Moved ...
7261         * sysdeps/unix/sysv/linux/sparc/sparc64/librt.abilist: ... here.
7262         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
7263         Moved ...
7264         * sysdeps/unix/sysv/linux/sparc/sparc64/libthread_db.abilist: ... here.
7265         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: Moved ...
7266         * sysdeps/unix/sysv/linux/sparc/sparc64/libutil.abilist: ... here.
7267         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data: Moved ...
7268         * sysdeps/unix/sysv/linux/sparc/sparc64/localplt.data: ... here.
7269
7270 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
7271
7272         * timezone/checktab.awk: Update from tzcode 2014e.
7273         * timezone/private.h: Likewise.
7274         * timezone/tzfile.h: Likewise.
7275         * timezone/zdump.c: Likewise.
7276         * timezone/zic.c: Likewise.
7277
7278         * sysdeps/unix/sysv/linux/kernel-features.h
7279         (__ASSUME_XFS_RESTRICTED_CHOWN): Remove macro.
7280         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_chown_restricted)
7281         [__ASSUME_XFS_RESTRICTED_CHOWN]: Make code unconditional.
7282         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
7283         Remove conditional code.
7284
7285 2014-06-25  Will Newton  <will.newton@linaro.org>
7286
7287         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c
7288         (_dl_arm_cap_flags): Add HWCAP2 values.
7289         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h
7290         (_DL_HWCAP_COUNT): Increase to 37.
7291         (_DL_HWCAP_LAST): New define.
7292         (_DL_HWCAP2_LAST): New define.
7293         (_dl_procinfo): Add support for printing
7294         AT_HWCAP2 entries.
7295         (_dl_string_hwcap): Use _dl_hwcap_string.
7296
7297 2014-06-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7298
7299         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
7300
7301 2014-06-25  Joseph Myers  <joseph@codesourcery.com>
7302
7303         * README: Do not mention ports directory.
7304
7305         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMENSAT):
7306         Remove macro.
7307         * sysdeps/unix/sysv/linux/futimes.c: Do not include
7308         <kernel-features.h>.
7309         [__NR_utimensat && !__ASSUME_UTIMENSAT] (miss_utimensat): Remove
7310         conditional variable definition.
7311         (__futimes): Update comment.
7312         (__futimes) [__ASSUME_UTIMENSAT]: Make code unconditional.
7313         (__futimes) [!__ASSUME_UTIMENSAT]: Remove conditional code.
7314
7315         [BZ #16560]
7316         * sysdeps/ieee754/dbl-64/e_exp10.c (__ieee754_exp10): Return 1 for
7317         arguments close to 0.
7318         * sysdeps/ieee754/ldbl-128/e_exp10l.c (__ieee754_exp10l):
7319         Likewise.
7320         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c (__ieee754_exp10l):
7321         Likewise.
7322         * math/auto-libm-test-in: Add more tests of exp10.
7323         * math/auto-libm-test-out: Regenerated.
7324         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
7325
7326         * sysdeps/unix/sysv/linux/kernel-features.h
7327         (__ASSUME_COMPLETE_READV_WRITEV): Remove macro.
7328         * sysdeps/unix/sysv/linux/readv.c: Do not include
7329         <kernel-features.h>.
7330         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
7331         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
7332         (__libc_readv) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
7333         unconditional.
7334         (__libc_readv) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
7335         conditional code.
7336         * sysdeps/unix/sysv/linux/writev.c: Do not include
7337         <kernel-features.h>.
7338         [!__ASSUME_COMPLETE_READV_WRITEV]: Remove conditional code.
7339         [!UIO_FASTIOV] (UIO_FASTIOV): Remove macro.
7340         (__libc_writev) [__ASSUME_COMPLETE_READV_WRITEV]: Make code
7341         unconditional.
7342         (__libc_writev) [!__ASSUME_COMPLETE_READV_WRITEV]: Remove
7343         conditional code.
7344
7345 2014-06-25  Will Newton  <will.newton@linaro.org>
7346
7347         * sysdeps/posix/tempname.c: Merge from gnulib, cosmetic
7348         comment changes throughout the file.  Remove checks
7349         for HAVE_*_H definitions that are not required.
7350         (__gen_tempname): Call abort if an unknown kind value is
7351         passed.
7352
7353 2014-06-25  Andreas Schwab  <schwab@suse.de>
7354
7355         [BZ #17086]
7356         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Add compat symbols for
7357         scalbln, scalblnf, scalblnl in libc.
7358
7359 2014-06-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
7360
7361         [BZ #17086]
7362         * sysdeps/i386/fpu/s_scalbn.S: Add compat symbol for libc.so.
7363         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
7364         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
7365
7366 2014-06-24  Roland McGrath  <roland@hack.frob.com>
7367
7368         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: Moved ...
7369         * sysdeps/i386/i486/pthread_spin_trylock.S: ... here.
7370         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: Moved ...
7371         * sysdeps/i386/i586/pthread_spin_trylock.S: ... here.
7372         Update #include.
7373         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: Moved ...
7374         * sysdeps/i386/i686/pthread_spin_trylock.S: ... here.
7375         Update #include.
7376         * sysdeps/x86_64/64/nptl/shlib-versions: Moved ...
7377         * sysdeps/unix/sysv/linux/x86_64/64/shlib-versions: ... here.
7378         * sysdeps/x86_64/x32/nptl/shlib-versions: Moved ...
7379         * sysdeps/unix/sysv/linux/x86_64/x32/shlib-versions: ... here.
7380         * sysdeps/x86/nptl/bits/pthreadtypes.h: Moved ...
7381         * sysdeps/x86/bits/pthreadtypes.h: ... here.
7382         * sysdeps/x86/nptl/bits/semaphore.h: Moved ...
7383         * sysdeps/x86/bits/semaphore.h: ... here.
7384         * sysdeps/x86/nptl/elide.h: Moved ...
7385         * sysdeps/x86/elide.h: ... here.
7386         * sysdeps/x86_64/nptl/Implies: File removed.
7387         * sysdeps/i386/nptl/Implies: File removed.
7388
7389 2014-06-24  Joseph Myers  <joseph@codesourcery.com>
7390
7391         [BZ #16539]
7392         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Just
7393         return the argument for normal arguments with exponent below -64.
7394         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
7395         Likewise.
7396         * math/auto-libm-test-in: Add another test of expm1.
7397         * math/auto-libm-test-out: Regenerated.
7398
7399         [BZ #16287]
7400         * sysdeps/ieee754/ldbl-128/s_erfl.c (__erfl): Return 1 without
7401         calling __erfcl for arguments at least 16.
7402         * math/auto-libm-test-in: Add more tests of erf.
7403         * math/auto-libm-test-out: Regenerated.
7404
7405         * sysdeps/unix/sysv/linux/configure.ac: Remove cases for
7406         individual architectures.
7407         * sysdeps/unix/sysv/linux/configure: Regenerated.
7408         * sysdeps/unix/sysv/linux/i386/configure.ac: New file.
7409         * sysdeps/unix/sysv/linux/i386/configure: New generated file.
7410         * sysdeps/unix/sysv/linux/powerpc/configure.ac
7411         (ldd_rewrite_script): Define variable.
7412         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
7413         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure.ac: New
7414         file.
7415         * sysdeps/unix/sysv/linux/powerpc/powerpc32/configure: New
7416         generated file.
7417         * sysdeps/unix/sysv/linux/s390/configure.ac: New file.
7418         * sysdeps/unix/sysv/linux/s390/configure: New generated file.
7419         * sysdeps/unix/sysv/linux/sh/configure.ac: New file.
7420         * sysdeps/unix/sysv/linux/sh/configure: New generated file.
7421         * sysdeps/unix/sysv/linux/sparc/configure.ac: New file.
7422         * sysdeps/unix/sysv/linux/sparc/configure: New generated file.
7423         * sysdeps/unix/sysv/linux/x86_64/configure.ac: New file.
7424         * sysdeps/unix/sysv/linux/x86_64/configure: New generated file.
7425
7426 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
7427
7428         [BZ #17084]
7429         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_mutex_t):
7430         Rename member __data.d to __data.__elision_data.
7431
7432 2014-06-24  Wilco  <wdijkstr@arm.com>
7433
7434         * NEWS: Add 16918 to fixed bug list.
7435
7436 2014-06-24  Wilco  <wdijkstr@arm.com>
7437
7438         * sysdeps/arm/fesetenv.c (fesetenv): Optimize implementation.
7439
7440 2014-06-24  Wilco  <wdijkstr@arm.com>
7441
7442         * sysdeps/arm/fpu_control.h (_FPU_MASK_RM): Define.
7443         * sysdeps/arm/fenv_private.h (libc_fesetround_vfp)
7444         (libc_feholdexcept_setround_vfp) (libc_feholdsetround_vfp)
7445         (libc_feresetround_vfp) (libc_feholdsetround_vfp_ctx)
7446         (libc_feresetround_vfp_ctx): Use _FPU_MASK_RM.
7447         * sysdeps/arm/fesetround.c (fesetround): Use _FPU_MASK_RM.
7448         * sysdeps/arm/get-rounding-mode.h (get_rounding_mode):
7449         Use _FPU_MASK_RM.
7450
7451 2014-06-24  Wilco  <wdijkstr@arm.com>
7452
7453         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Remove unused include.
7454
7455 2014-06-24  Wilco  <wdijkstr@arm.com>
7456
7457         * sysdeps/arm/feholdexcpt.c (feholdexcept): Remove space.
7458         * sysdeps/arm/fesetenv.c (fesetenv): Remove space.
7459         * sysdeps/arm/fesetround.c (fesetround): Remove space.
7460         * sysdeps/arm/fraiseexcpt.c (feraiseexcept): Remove space.
7461
7462 2014-06-24  Wilco  <wdijkstr@arm.com>
7463
7464         [BZ #16918]
7465         * sysdeps/arm/feupdateenv.c (feupdateenv):
7466         Rewrite to reduce FPSCR accesses and fix return value.
7467
7468 2014-06-24  Wilco  <wdijkstr@arm.com>
7469
7470         * sysdeps/arm/fclrexcpt.c (feclearexcept):
7471         Optimize to avoid unnecessary FPSCR writes.
7472         * sysdeps/arm/fedisblxcpt.c (fedisableexcept): Likewise.
7473         * sysdeps/arm/feenablxcpt.c (feenableexcept): Likewise.
7474         * sysdeps/arm/fsetexcptflg.c (fesetexceptflag): Likewise.
7475         * sysdeps/arm/setfpucw.c (__setfpucw): Likewise.
7476
7477 2014-06-24  Wilco  <wdijkstr@arm.com>
7478
7479         * sysdeps/arm/fegetround.c (fegetround): Call get_rounding_mode.
7480         * sysdeps/arm/feholdexcpt.c (feholdexcept): Call libc_feholdexcept_vfp.
7481         * sysdeps/arm/fesetround.c (fesetround): Call libc_fesetround_vfp.
7482         * sysdeps/arm/fgetexcptflg.c (fegetexceptflag):
7483         Call libc_fetestexcept_vfp.
7484         * sysdeps/arm/ftestexcept.c (fetestexcept): Call libc_fetestexcept_vfp.
7485         * sysdeps/arm/fenv_private.h: Move libc_*_vfp functions outside of
7486         __SOFTFP__ ifdef so that they can be built for softfp.
7487
7488 2014-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
7489
7490         * sysdeps/x86/nptl/elide.h (elision_adapt): Make first
7491         argument type signed char.
7492
7493         * Makerules (check-abi): Dump diff of symlist if the test
7494         fails.
7495
7496 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7497
7498         * sysdeps/generic/get-rounding-mode.h: Include <stdlib.h> before
7499         using abort.
7500
7501         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
7502         Remove unused variable ST.
7503
7504 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
7505
7506         [BZ #16354]
7507         [BZ #17061]
7508         * sysdeps/ieee754/dbl-64/e_cosh.c (__ieee754_cosh): Check for
7509         small arguments before calling __expm1.
7510         * sysdeps/ieee754/flt-32/e_coshf.c (__ieee754_coshf): Check for
7511         small arguments before calling __expm1f.
7512         * sysdeps/ieee754/ldbl-128/e_coshl.c (__ieee754_coshl): Check for
7513         small arguments before calling __expm1l.
7514         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
7515         Likewise.
7516         * sysdeps/ieee754/ldbl-96/e_coshl.c (__ieee754_coshl): Likewise.
7517         * math/auto-libm-test-in: Add more cosh tests.  Do not allow
7518         spurious underflow for some cosh tests.
7519         * math/auto-libm-test-out: Regenerated.
7520         * sysdeps/i386/fpu/libm-test-ulps: Update.
7521
7522         [BZ #17050]
7523         * sysdeps/ieee754/dbl-64/e_j1.c: Include <errno.h>.
7524         (__ieee754_y1): Set errno if return value overflows.
7525         * sysdeps/ieee754/flt-32/e_j1f.c: Include <errno.h>.
7526         (__ieee754_y1f): Set errno if return value overflows.
7527         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <errno.h>.
7528         (__ieee754_y1l): Set errno if return value overflows.
7529         * sysdeps/ieee754/ldbl-96/e_j1l.c: Include <errno.h>.
7530         (__ieee754_y1l): Set errno if return value overflows.
7531         * math/auto-libm-test-in: Add more tests of y0, y1 and yn.
7532         * math/auto-libm-test-out: Regenerated.
7533
7534         * math/gen-auto-libm-tests.c: Document use of
7535         ignore-zero-inf-sign.
7536         (input_flag_type): Add value flag_ignore_zero_inf_sign.
7537         (input_flags): Add ignore-zero-inf-sign.
7538         (output_for_one_input_case): Handle flag_ignore_zero_inf_sign.
7539         * math/gen-libm-test.pl (generate_testfile): Handle
7540         ignore-zero-inf-sign.
7541         * math/auto-libm-test-in: Mark some cpow tests with
7542         ignore-zero-inf-sign and some with xfail-rounding.
7543         * math/auto-libm-test-out: Regenerated.
7544         * math/libm-test.inc (cpow_test): Use ALL_RM_TEST.
7545         * sysdeps/i386/fpu/libm-test-ulps: Update.
7546         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
7547
7548         [BZ #16315]
7549         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Ensure possibly
7550         overflowing or underflowing operations take place with sign of
7551         result.
7552         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
7553         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
7554         * sysdeps/ieee754/dbl-64/e_pow.c: Include <math.h>.
7555         (__ieee754_pow): Recompute overflowing and underflowing results in
7556         original rounding mode.
7557         * sysdeps/x86/fpu/powl_helper.c: Include <stdbool.h>.
7558         (__powl_helper): Allow negative argument X and scale negated value
7559         as needed.  Avoid passing value outside [-1, 1] to f2xm1.
7560         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Ensure possibly
7561         overflowing or underflowing operations take place with sign of
7562         result.
7563         * sysdeps/x86_64/fpu/multiarch/e_pow.c [HAVE_FMA4_SUPPORT]:
7564         Include <math.h>.
7565         * math/auto-libm-test-in: Add more tests of pow.
7566         * math/auto-libm-test-out: Regenerated.
7567         * math/libm-test.inc (pow_test): Use ALL_RM_TEST.
7568         (pow_tonearest_test_data): Remove.
7569         (pow_test_tonearest): Likewise.
7570         (pow_towardzero_test_data): Likewise.
7571         (pow_test_towardzero): Likewise.
7572         (pow_downward_test_data): Likewise.
7573         (pow_test_downward): Likewise.
7574         (pow_upward_test_data): Likewise.
7575         (pow_test_upward): Likewise.
7576         (main): Don't call removed functions.
7577         * sysdeps/i386/fpu/libm-test-ulps: Update.
7578         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
7579
7580 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7581
7582         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/c++-types.data:
7583         Moved ...
7584         * sysdeps/unix/sysv/linux/powerpc/powerpc32/c++-types.data: ... here.
7585         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
7586         Moved ...
7587         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libc.abilist: ... here.
7588         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
7589         Moved ...
7590         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/libm.abilist: ... here.
7591         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
7592         Moved ...
7593         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/localplt.data: ... here.
7594         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
7595         File removed.
7596         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
7597         File removed.
7598         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libBrokenLocale.abilist:
7599         File removed.
7600         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libanl.abilist:
7601         File removed.
7602         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libcrypt.abilist:
7603         File removed.
7604         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libdl.abilist:
7605         File removed.
7606         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libnsl.abilist:
7607         File removed.
7608         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
7609         File removed.
7610         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libresolv.abilist:
7611         File removed.
7612         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
7613         File removed.
7614         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libthread_db.abilist:
7615         File removed.
7616         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libutil.abilist:
7617         File removed.
7618         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/ld.abilist:
7619         Moved ...
7620         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ld.abilist: ... here.
7621         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libBrokenLocale.abilist:
7622         Moved ...
7623         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libBrokenLocale.abilist:
7624         ... here.
7625         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libanl.abilist:
7626         Moved ...
7627         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libanl.abilist: ... here.
7628         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libcrypt.abilist:
7629         Moved ...
7630         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libcrypt.abilist: ... here.
7631         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libdl.abilist:
7632         Moved ...
7633         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libdl.abilist: ... here.
7634         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libnsl.abilist:
7635         Moved ...
7636         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libnsl.abilist: ... here.
7637         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libpthread.abilist:
7638         Moved ...
7639         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libpthread.abilist: ... here.
7640         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libresolv.abilist:
7641         Moved ...
7642         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libresolv.abilist: ... here.
7643         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/librt.abilist:
7644         Moved ...
7645         * sysdeps/unix/sysv/linux/powerpc/powerpc32/librt.abilist: ... here.
7646         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libthread_db.abilist: Moved ...
7647         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libthread_db.abilist:
7648         ... here.
7649         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libutil.abilist:
7650         Moved ...
7651         * sysdeps/unix/sysv/linux/powerpc/powerpc32/libutil.abilist: ... here.
7652         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
7653         Moved ...
7654         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libc.abilist:
7655         ... here.
7656         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libm.abilist:
7657         Moved ...
7658         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/libm.abilist:
7659         ... here.
7660         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
7661         Moved ...
7662         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/localplt.data:
7663         ... here.
7664         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
7665         Moved ...
7666         * sysdeps/unix/sysv/linux/powerpc/powerpc64/c++-types.data: ... here.
7667         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
7668         Moved ...
7669         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld-le.abilist: ... here.
7670         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: Moved ...
7671         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ld.abilist: ... here.
7672         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
7673         Moved ...
7674         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale-le.abilist:
7675         ... here.
7676         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
7677         Moved ...
7678         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libBrokenLocale.abilist:
7679         ... here.
7680         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
7681         Moved ...
7682         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl-le.abilist: ... here.
7683         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
7684         Moved ...
7685         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libanl.abilist: ... here.
7686         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
7687         Moved ...
7688         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc-le.abilist: ... here.
7689         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
7690         Moved ...
7691         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libc.abilist: ... here.
7692         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
7693         Moved ...
7694         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt-le.abilist:
7695         ... here.
7696         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
7697         Moved ...
7698         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libcrypt.abilist: ... here.
7699         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
7700         Moved ...
7701         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl-le.abilist: ... here.
7702         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
7703         Moved ...
7704         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libdl.abilist: ... here.
7705         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
7706         Moved ...
7707         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm-le.abilist: ... here.
7708         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: Moved ...
7709         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libm.abilist: ... here.
7710         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
7711         Moved ...
7712         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl-le.abilist: ... here.
7713         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
7714         Moved ...
7715         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libnsl.abilist: ... here.
7716         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
7717         Moved ...
7718         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread-le.abilist:
7719         ... here.
7720         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
7721         Moved ...
7722         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libpthread.abilist:
7723         ... here.
7724         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
7725         Moved ...
7726         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv-le.abilist:
7727         ... here.
7728         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
7729         Moved ...
7730         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libresolv.abilist: ... here.
7731         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
7732         Moved ...
7733         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt-le.abilist: ... here.
7734         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
7735         Moved ...
7736         * sysdeps/unix/sysv/linux/powerpc/powerpc64/librt.abilist: ... here.
7737         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
7738         Moved ...
7739         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db-le.abilist:
7740         ... here.
7741         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
7742         Moved ...
7743         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libthread_db.abilist:
7744         ... here.
7745         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
7746         Moved ...
7747         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil-le.abilist:
7748         ... here.
7749         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
7750         Moved ...
7751         * sysdeps/unix/sysv/linux/powerpc/powerpc64/libutil.abilist: ... here.
7752         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
7753         Moved ...
7754         * sysdeps/unix/sysv/linux/powerpc/powerpc64/localplt.data: ... here.
7755
7756 2014-06-23  Will Newton  <will.newton@linaro.org>
7757             Wilco  <wdijkstr@arm.com>
7758
7759         * sysdeps/generic/math_private.h: Add generic HAVE_RM_CTX
7760         implementation.  Include get-rounding-mode.h.
7761         [!HAVE_RM_CTX]: Define HAVE_RM_CTX to zero.
7762         [!libc_feholdsetround_noex_ctx]: Define
7763         libc_feholdsetround_noex_ctx.
7764         [!libc_feholdsetround_noexf_ctx]: Define
7765         libc_feholdsetround_noexf_ctx.
7766         [!libc_feholdsetround_noexl_ctx]: Define
7767         libc_feholdsetround_noexl_ctx.
7768         (libc_feholdsetround_ctx): New function.
7769         (libc_feresetround_ctx): New function.
7770         (libc_feholdsetround_noex_ctx): New function.
7771         (libc_feresetround_noex_ctx): New function.
7772
7773 2014-06-23  Roland McGrath  <roland@hack.frob.com>
7774
7775         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h: Moved ...
7776         * sysdeps/mips/nptl/bits/pthreadtypes.h: ... here.
7777         * sysdeps/unix/sysv/linux/mips/nptl/bits/semaphore.h: Moved ...
7778         * sysdeps/mips/nptl/bits/semaphore.h: ... here.
7779         * sysdeps/unix/sysv/linux/mips/nptl/bits/local_lim.h: Moved ...
7780         * sysdeps/unix/sysv/linux/mips/bits/local_lim.h: ... here.
7781
7782         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Moved ...
7783         * sysdeps/m68k/nptl/bits/pthreadtypes.h: ... here.
7784         * sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: Moved ...
7785         * sysdeps/m68k/nptl/bits/semaphore.h: ... here.
7786         * sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: Moved ...
7787         * sysdeps/unix/sysv/linux/m68k/c++-types.data: ... here.
7788         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: Moved ...
7789         * sysdeps/unix/sysv/linux/m68k/coldfire/bits/atomic.h: ... here.
7790         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: Moved ...
7791         * sysdeps/unix/sysv/linux/m68k/coldfire/ld.abilist: ... here.
7792         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
7793         Moved ...
7794         * sysdeps/unix/sysv/linux/m68k/coldfire/libBrokenLocale.abilist:
7795         ... here.
7796         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: Moved ...
7797         * sysdeps/unix/sysv/linux/m68k/coldfire/libanl.abilist: ... here.
7798         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Moved ...
7799         * sysdeps/unix/sysv/linux/m68k/coldfire/libc.abilist: ... here.
7800         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist:
7801         Moved ...
7802         * sysdeps/unix/sysv/linux/m68k/coldfire/libcrypt.abilist: ... here.
7803         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: Moved ...
7804         * sysdeps/unix/sysv/linux/m68k/coldfire/libdl.abilist: ... here.
7805         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: Moved ...
7806         * sysdeps/unix/sysv/linux/m68k/coldfire/libm.abilist: ... here.
7807         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: Moved ...
7808         * sysdeps/unix/sysv/linux/m68k/coldfire/libnsl.abilist: ... here.
7809         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
7810         Moved ...
7811         * sysdeps/unix/sysv/linux/m68k/coldfire/libpthread.abilist: ... here.
7812         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
7813         Moved ...
7814         * sysdeps/unix/sysv/linux/m68k/coldfire/libresolv.abilist: ... here.
7815         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: Moved ...
7816         * sysdeps/unix/sysv/linux/m68k/coldfire/librt.abilist: ... here.
7817         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
7818         Moved ...
7819         * sysdeps/unix/sysv/linux/m68k/coldfire/libthread_db.abilist: ... here.
7820         * sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: Moved ...
7821         * sysdeps/unix/sysv/linux/m68k/coldfire/libutil.abilist: ... here.
7822         * sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: Moved ...
7823         * sysdeps/unix/sysv/linux/m68k/localplt.data: ... here.
7824         * sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Moved ...
7825         * sysdeps/unix/sysv/linux/m68k/lowlevellock.h: ... here.
7826         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: Moved ...
7827         * sysdeps/unix/sysv/linux/m68k/m680x0/ld.abilist: ... here.
7828         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
7829         Moved ...
7830         * sysdeps/unix/sysv/linux/m68k/m680x0/libBrokenLocale.abilist:
7831         ... here.
7832         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: Moved ...
7833         * sysdeps/unix/sysv/linux/m68k/m680x0/libanl.abilist: ... here.
7834         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Moved ...
7835         * sysdeps/unix/sysv/linux/m68k/m680x0/libc.abilist: ... here.
7836         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: Moved ...
7837         * sysdeps/unix/sysv/linux/m68k/m680x0/libcrypt.abilist: ... here.
7838         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: Moved ...
7839         * sysdeps/unix/sysv/linux/m68k/m680x0/libdl.abilist: ... here.
7840         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: Moved ...
7841         * sysdeps/unix/sysv/linux/m68k/m680x0/libm.abilist: ... here.
7842         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: Moved ...
7843         * sysdeps/unix/sysv/linux/m68k/m680x0/libnsl.abilist: ... here.
7844         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
7845         Moved ...
7846         * sysdeps/unix/sysv/linux/m68k/m680x0/libpthread.abilist: ... here.
7847         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: Moved ...
7848         * sysdeps/unix/sysv/linux/m68k/m680x0/libresolv.abilist: ... here.
7849         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: Moved ...
7850         * sysdeps/unix/sysv/linux/m68k/m680x0/librt.abilist: ... here.
7851         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
7852         Moved ...
7853         * sysdeps/unix/sysv/linux/m68k/m680x0/libthread_db.abilist: ... here.
7854         * sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: Moved ...
7855         * sysdeps/unix/sysv/linux/m68k/m680x0/libutil.abilist: ... here.
7856         * sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: Moved ...
7857         * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h: ... here.
7858
7859         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: Moved ...
7860         * sysdeps/unix/sysv/linux/sh/c++-types.data: ... here.
7861         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: Moved ...
7862         * sysdeps/unix/sysv/linux/sh/ld.abilist: ... here.
7863         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: Moved ...
7864         * sysdeps/unix/sysv/linux/sh/libBrokenLocale.abilist: ... here.
7865         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: Moved ...
7866         * sysdeps/unix/sysv/linux/sh/libanl.abilist: ... here.
7867         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Moved ...
7868         * sysdeps/unix/sysv/linux/sh/libc.abilist: ... here.
7869         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: Moved ...
7870         * sysdeps/unix/sysv/linux/sh/libcrypt.abilist: ... here.
7871         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: Moved ...
7872         * sysdeps/unix/sysv/linux/sh/libdl.abilist: ... here.
7873         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Moved ...
7874         * sysdeps/unix/sysv/linux/sh/libm.abilist: ... here.
7875         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: Moved ...
7876         * sysdeps/unix/sysv/linux/sh/libnsl.abilist: ... here.
7877         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: Moved ...
7878         * sysdeps/unix/sysv/linux/sh/libpthread.abilist: ... here.
7879         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: Moved ...
7880         * sysdeps/unix/sysv/linux/sh/libresolv.abilist: ... here.
7881         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Moved ...
7882         * sysdeps/unix/sysv/linux/sh/librt.abilist: ... here.
7883         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: Moved ...
7884         * sysdeps/unix/sysv/linux/sh/libthread_db.abilist: ... here.
7885         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: Moved ...
7886         * sysdeps/unix/sysv/linux/sh/libutil.abilist: ... here.
7887
7888 2014-06-23  Joseph Myers  <joseph@codesourcery.com>
7889
7890         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
7891         (FALLOC_FL_COLLAPSE_RANGE): New macro.
7892         [__USE_GNU] (FALLOC_FL_ZERO_RANGE): Likewise.
7893         * sysdeps/unix/sysv/linux/bits/in.h (IP_PMTUDISC_OMIT): Likewise.
7894         (IPV6_PMTUDISC_INTERFACE): Likewise.
7895         (IPV6_PMTUDISC_OMIT): Likewise.
7896
7897 2014-06-23  Andreas Schwab  <schwab@suse.de>
7898
7899         * nptl/sysdeps/unix/sysv/linux/mq_notify.c (init_mq_netlink):
7900         Remove unused errout label.
7901
7902 2014-06-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
7903
7904         * sysdeps/powerpc/bits/hwcap.h [PPC_FEATURE2_HAS_VEC_CRYPTO]: New
7905         macro: hardware supports Vector Crypto instructions.
7906
7907 2014-06-23  Will Newton  <will.newton@linaro.org>
7908
7909         * elf/dl-lookup.c: Use __glibc_unlikely and __glibc_likely
7910         rather than __builtin_expect.
7911
7912         * elf/dl-lookup.c (undefined_msg): Remove variable.
7913         (_dl_lookup_symbol_x): Replace undefined_msg with string
7914         literal.
7915
7916         * elf/dl-lookup.c (do_lookup_unique): New function.
7917         (do_lookup_x): Move STB_GNU_UNIQUE handling code
7918         to a separate function.
7919
7920 2014-06-23  Andreas Schwab  <schwab@suse.de>
7921
7922         [BZ #17079]
7923         * nss/nss_files/files-XXX.c (get_contents): Store overflow marker
7924         before reading the next line.
7925
7926 2014-06-23  Will Newton  <will.newton@linaro.org>
7927
7928         * test-skeleton.c (signal_handler): Use printf and %m
7929         rather than perror.  Use printf rather than fprintf to
7930         stderr.  Use puts rather than fputs to stderr.
7931         (main): Likewise.
7932
7933 2014-06-22  Ludovic Courtès  <ludo@gnu.org>
7934
7935         * nscd/nscd.c (thread_info_t): Remove typedef.
7936         (thread_info): Remove variable.
7937
7938 2014-06-21  Allan McRae  <allan@archlinux.org>
7939
7940         * NEWS: Mention CVE-2014-4043.
7941
7942 2014-06-20  Roland McGrath  <roland@hack.frob.com>
7943
7944         * nptl/sysdeps/unix/sysv/linux/smp.h: Moved ...
7945         * nptl/smp.h: ... here.
7946
7947         * nptl/sysdeps/unix/sysv/linux/rtld-lowlevel.h: File removed.
7948
7949         * include/libc-symbols.h (HAVE_CONFIG_H, STDC_HEADERS): New macros.
7950         * catgets/Makefile (catgets-CPPFLAGS): Remove -DHAVE_CONFIG_H.
7951         * locale/Makefile (CPPFLAGS-locale-programs): Likewise.
7952         * stdlib/strtol_l.c [_LIBC] (STDC_HEADERS): Don't define it.
7953
7954         * nptl/allocatestack.c: Include <stack-aliasing.h>.
7955         * nptl/stack-aliasing.h: New file.
7956         * sysdeps/i386/i686/stack-aliasing.h: New file.
7957         * sysdeps/i386/i686/nptl/Makefile: File removed.
7958         * sysdeps/x86_64/stack-aliasing.h: New file.
7959         * sysdeps/x86_64/nptl/Makefile
7960         (CFLAGS-pthread_create.c): Variable removed.
7961
7962         * nptl/sysdeps/unix/sysv/linux/bits/local_lim.h: Moved ...
7963         * sysdeps/unix/sysv/linux/bits/local_lim.h: ... here, replacing the
7964         old file.
7965         * nptl/sysdeps/unix/sysv/linux/bits/posix_opt.h: Moved ...
7966         * sysdeps/unix/sysv/linux/bits/posix_opt.h: ... here, replacing the
7967         old file.
7968
7969 2014-06-21  Joseph Myers  <joseph@codesourcery.com>
7970
7971         * sysdeps/unix/sysv/linux/arm/kernel-features.h
7972         (__ASSUME_SIGFRAME_V2): Remove macro.
7973         * sysdeps/unix/sysv/linux/arm/sigrestorer.S: Update comment.
7974         [!__ASSUME_SIGFRAME_V2]: Remove conditional code.
7975         (__default_sa_restorer_v2): Rename to __default_sa_restorer.
7976         (__default_rt_sa_restorer_v2): Rename to __default_rt_sa_restorer.
7977         * sysdeps/unix/sysv/linux/arm/sigaction.c (__default_sa_restorer):
7978         Declare as function.  Remove conditional macro definitions.
7979         (__default_rt_sa_restorer): Likewise.
7980         (__default_sa_restorer_v1): Remove declaration.
7981         (__default_sa_restorer_v2): Likewise.
7982         (__default_rt_sa_restorer_v1): Likewise.
7983         (__default_rt_sa_restorer_v2): Likewise.
7984         * sysdeps/unix/sysv/linux/arm/Versions (GLIBC_PRIVATE): Remove
7985         __default_sa_restorer_v1, __default_rt_sa_restorer_v1,
7986         __default_sa_restorer_v2 and __default_rt_sa_restorer_v2.
7987
7988 2014-06-20  Roland McGrath  <roland@hack.frob.com>
7989
7990         * sysdeps/unix/sysv/linux/sparc/Makefile [$(subdir) = nptl]
7991         (libpthread-routines): Add sysdep.
7992         * nptl/sysdeps/unix/sysv/linux/sparc/Makefile: File removed.
7993         * sysdeps/unix/sysv/linux/sparc/Versions
7994         (libpthread: GLIBC_2.3.3): New version set.
7995         * nptl/sysdeps/unix/sysv/linux/sparc/Versions: File removed.
7996         * nptl/sysdeps/unix/sysv/linux/sparc/aio_cancel.c: Moved ...
7997         * sysdeps/unix/sysv/linux/sparc/aio_cancel.c: ... here.
7998         * nptl/sysdeps/unix/sysv/linux/sparc/internaltypes.h: Moved ...
7999         * sysdeps/sparc/nptl/internaltypes.h: ... here.  Use #include_next.
8000         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_destroy.c:
8001         Moved ...
8002         * sysdeps/sparc/nptl/pthread_barrier_destroy.c: ... here.
8003         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_init.c: Moved ...
8004         * sysdeps/sparc/nptl/pthread_barrier_init.c: ... here.
8005         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_barrier_wait.c: Moved ...
8006         * sysdeps/sparc/nptl/pthread_barrier_wait.c: ... here.
8007         * nptl/sysdeps/unix/sysv/linux/sparc/sem_init.c: Moved ...
8008         * sysdeps/sparc/nptl/sem_init.c: ... here.
8009         * nptl/sysdeps/unix/sysv/linux/sparc/sem_post.c: Moved ...
8010         * sysdeps/sparc/nptl/sem_post.c: ... here.
8011         * nptl/sysdeps/unix/sysv/linux/sparc/sem_timedwait.c: Moved ...
8012         * sysdeps/sparc/nptl/sem_timedwait.c: ... here.
8013         * nptl/sysdeps/unix/sysv/linux/sparc/sem_wait.c: Moved ...
8014         * sysdeps/sparc/nptl/sem_wait.c: ... here.
8015         * nptl/sysdeps/unix/sysv/linux/sparc/lowlevellock.h: Moved ...
8016         * sysdeps/unix/sysv/linux/sparc/lowlevellock.h: ... here.
8017         * sysdeps/sparc/sparc32/sparcv9/Makefile [$(subdir) = nptl]
8018         (libpthread-routines): Add cpu_relax.
8019         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/Makefile:
8020         File removed.
8021         * sysdeps/unix/sysv/linux/sparc/sparc64/Versions
8022         (librt: GLIBC_2.3.3): New version set.
8023         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Versions: File removed.
8024         * sysdeps/sparc/sparc64/nptl/Makefile: New file.
8025         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile [$(subdir) = nptl]
8026         (CFLAGS-pause.c, CFLAGS-sigsuspend.c): New variables.
8027         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/Makefile: File removed.
8028         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/lowlevellock.c: Moved ...
8029         * sysdeps/sparc/sparc32/nptl/lowlevellock.c: ... here.
8030         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pthread_barrier_wait.c:
8031         Moved ...
8032         * sysdeps/sparc/sparc32/nptl/pthread_barrier_wait.c: ... here.
8033         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Moved ...
8034         * sysdeps/sparc/sparc32/nptl/sem_post.c: ... here.
8035         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_timedwait.c: Moved ...
8036         * sysdeps/sparc/sparc32/nptl/sem_timedwait.c: ... here.
8037         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_trywait.c: Moved ...
8038         * sysdeps/sparc/sparc32/nptl/sem_trywait.c: ... here.
8039         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_wait.c: Moved ...
8040         * sysdeps/sparc/sparc32/nptl/sem_wait.c: ... here.
8041         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/cpu_relax.S:
8042         Moved ...
8043         * sysdeps/sparc/sparc32/sparcv9/nptl/cpu_relax.S: ... here.
8044         Update #include.
8045         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/pthread_barrier_wait.c:
8046         Moved ...
8047         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_barrier_wait.c: ... here.
8048         Update #include.
8049         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_post.c:
8050         Moved ...
8051         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_post.c: ... here.
8052         Update #include.
8053         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_timedwait.c:
8054         Moved ...
8055         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_timedwait.c: ... here.
8056         Update #include.
8057         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_trywait.c:
8058         Moved ...
8059         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_trywait.c: ... here.
8060         Update #include.
8061         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/sem_wait.c:
8062         Moved ...
8063         * sysdeps/sparc/sparc32/sparcv9/nptl/sem_wait.c: ... here.
8064         Update #include.
8065         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/cpu_relax.S: Moved ...
8066         * sysdeps/sparc/sparc64/nptl/cpu_relax.S: ... here.
8067         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: Moved ...
8068         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h: ... here.
8069         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: Moved ...
8070         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h: ... here.
8071         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: Moved ...
8072         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c: ... here.
8073         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: Moved ...
8074         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c: ... here.
8075         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
8076         Moved ...
8077         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c: ... here.
8078         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: Moved ...
8079         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c: ... here.
8080         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: Moved ...
8081         * sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c: ... here.
8082
8083 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8084
8085         * nptl/pthread_cond_wait.c: Include <kernel-features.h>.
8086         * nptl/pthread_rwlock_timedrdlock.c: Likewise.
8087         * nptl/pthread_rwlock_timedwrlock.c: Likewise.
8088         * nptl/sysdeps/unix/sysv/linux/lowlevelrobustlock.c: Likewise.
8089         * nscd/nscd.c: Likewise.
8090         * sysdeps/i386/nptl/tcb-offsets.sym: Likewise.
8091         * sysdeps/powerpc/nptl/tcb-offsets.sym: Likewise.
8092         * sysdeps/sh/nptl/tcb-offsets.sym: Likewise.
8093         * sysdeps/x86_64/nptl/tcb-offsets.sym: Likewise.
8094
8095         * nptl/sysdeps/unix/sysv/linux/mq_notify.c: Do not include
8096         <kernel-features.h>.
8097         (init_mq_netlink): Remove conditional have_sock_cloexec
8098         definitions.  Remove code conditional on have_sock_cloexec < 0.
8099         (init_mq_netlink) [!SOCK_CLOEXEC]: Remove conditional code.
8100         (init_mq_netlink) [!__ASSUME_SOCK_CLOEXEC]: Likewise.
8101         * sysdeps/unix/sysv/linux/opensock.c: Do not include
8102         <kernel-features.h>.
8103         (__opensock) [SOCK_CLOEXEC]: Make code unconditional.
8104         (__opensock) [!__ASSUME_SOCK_CLOEXEC]: Remove conditional code.
8105
8106 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
8107
8108         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
8109         Add tests for memset_chk and memset.
8110
8111         * sysdeps/x86_64/multiarch/init-arch.h (HAS_AVX2): Defined
8112         with AVX2_Usable.
8113
8114 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
8115
8116         [BZ #16046]
8117         * elf/tst-dl-iter-static.c: New file.
8118         * elf/Makefile (tests-static): Add tst-dl-iter-static.
8119
8120         * stdlib/tst-qsort2.c (main): Fix off-by-one argc interpretation
8121         error.
8122
8123 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8124
8125         * sysdeps/unix/sysv/linux/kernel-features.h
8126         (__ASSUME_F_GETOWN_EX): Remove macro.
8127         * sysdeps/unix/sysv/linux/fcntl.c: Do not include
8128         <kernel-features.h>.
8129         (miss_F_GETOWN_EX): Remove variable or macro.
8130         (do_fcntl): Do not check miss_F_GETOWN_EX.
8131         (do_fcntl) [!__ASSUME_F_GETOWN_EX]: Remove conditional code.
8132
8133         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_RANDOM):
8134         Remove macro.
8135         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard)
8136         [!__ASSUME_AT_RANDOM]: Remove conditional code.
8137         (_dl_setup_pointer_guard) [!__ASSUME_AT_RANDOM]: Likewise.
8138
8139         * sysdeps/unix/sysv/linux/kernel-features.h
8140         (__ASSUME_ADJ_OFFSET_SS_READ): Remove macro.
8141         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME)
8142         [ADJ_OFFSET_SS_READ]: Make code unconditional.
8143         (ADJTIME) [!ADJ_OFFSET_SS_READ]: Remove conditional code.
8144
8145 2014-06-20  Maciej W. Rozycki  <macro@codesourcery.com>
8146
8147         [BZ #17075]
8148         * sysdeps/arm/dl-machine.h (elf_machine_rel) <R_ARM_TLS_DESC>:
8149         Fix calculation of the symbol's value.
8150         * sysdeps/arm/tst-armtlsdescloc.c: New file.
8151         * sysdeps/arm/tst-armtlsdesclocmod.c: New file.
8152         * sysdeps/arm/tst-armtlsdescextnow.c: New file.
8153         * sysdeps/arm/tst-armtlsdescextlazymod.c: New file.
8154         * sysdeps/arm/tst-armtlsdescextlazy.c: New file.
8155         * sysdeps/arm/tst-armtlsdescextnowmod.c: New file.
8156         * sysdeps/arm/Makefile (tests): Add `tst-armtlsdesc',
8157         `tst-armtlsdescextnow' and `tst-armtlsdescextlazy'.
8158         (modules-names): Add `tst-armtlsdescmod',
8159         `tst-armtlsdescextlazymod' and `tst-armtlsdescextnowmod'.
8160         (CPPFLAGS-tst-armtlsdescextnowmod.c): New variable.
8161         (CPPFLAGS-tst-armtlsdescextlazymod.c): Likewise.
8162         (CFLAGS-tst-armtlsdesclocmod.c): Likewise.
8163         (CFLAGS-tst-armtlsdescextnowmod.c): Likewise.
8164         (CFLAGS-tst-armtlsdescextlazymod.c): Likewise.
8165         (LDFLAGS-tst-armtlsdescextnowmod.so): Likewise.
8166         ($(objpfx)tst-armtlsdescloc): New dependency.
8167         ($(objpfx)tst-armtlsdescextnow): Likewise.
8168         ($(objpfx)tst-armtlsdescextlazy): Likewise.
8169         * sysdeps/arm/configure.ac: Add a check for tools' GNU descriptor
8170         TLS scheme support.
8171         * sysdeps/arm/configure: Regenerate.
8172
8173 2014-06-20  Joseph Myers  <joseph@codesourcery.com>
8174
8175         * include/fcntl.h (__atfct_seterrno): Remove prototype.
8176         (__atfct_seterrno_2): Likewise.
8177         * sysdeps/unix/sysv/linux/alpha/dl-fxstatat64.c: Do not include
8178         <kernel-features.h>.
8179         (__ASSUME_ATFCTS): Do not undefine and redefine.
8180         * sysdeps/unix/sysv/linux/alpha/fxstatat.c [__ASSUME_ATFCTS]
8181         (__have_atfcts): Remove conditional definition.
8182         (__fxstatat([__NR_fstatat64]: Make code unconditional.
8183         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code and code
8184         unreachable if [__ASSUME_ATFCTS].
8185         * sysdeps/unix/sysv/linux/dl-fxstatat64.c (__ASSUME_ATFCTS): Do
8186         not undefine and redefine.
8187         * sysdeps/unix/sysv/linux/faccessat.c: Do not include
8188         <kernel-features.h>.
8189         (faccessat) [__NR_faccessat]: Make code unconditional.
8190         (faccessat) [!__ASSUME_ATFCTS]: Remove conditional code.
8191         * sysdeps/unix/sysv/linux/fchmodat.c: Do not include
8192         <kernel-features.h>.
8193         (fchmodat) [__NR_fchmodat]: Make code unconditional.
8194         (fchmodat) [!__ASSUME_ATFCTS]: Remove conditional code.
8195         * sysdeps/unix/sysv/linux/fchownat.c: Do not include
8196         <kernel-features.h>.
8197         (fchownat) [__NR_fchownat]: Make code unconditional.
8198         (fchownat) [!__ASSUME_ATFCTS]: Remove conditional code.
8199         * sysdeps/unix/sysv/linux/futimesat.c: Do not include
8200         <kernel-features.h>.
8201         (futimesat) [__NR_futimesat]: Make code unconditional.
8202         (futimesat) [!__ASSUME_ATFCTS]: Remove conditional code.
8203         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
8204         <kernel-features.h>.
8205         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
8206         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8207         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
8208         <kernel-features.h>.
8209         (__fxstatat64) [__NR_fstatat64]: Make code unconditional.
8210         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
8211         * sysdeps/unix/sysv/linux/i386/fchownat.c: Remove file.
8212         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
8213         <kernel-features.h>.
8214         (__fxstatat) [__NR_fstatat64]: Make code unconditional.
8215         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8216         * sysdeps/unix/sysv/linux/linkat.c: Do not include
8217         <kernel-features.h>.
8218         (linkat) [__NR_linkat]: Make code unconditional.
8219         (linkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8220         * sysdeps/unix/sysv/linux/m68k/fchownat.c: Remove file.
8221         * sysdeps/unix/sysv/linux/mips/mips64/fxstatat64.c: Do not include
8222         <kernel-features.h>.
8223         (__fxstatat64) [__NR_newfstatat]: Make code unconditional.
8224         (__fxstatat64) [!__ASSUME_ATFCTS]: Remove conditional code.
8225         * sysdeps/unix/sysv/linux/mkdirat.c: Do not include
8226         <kernel-features.h>.
8227         (mkdirat) [__NR_mkdirat]: Make code unconditional.
8228         (mkdirat) [!__ASSUME_ATFCTS]: Remove conditional code.
8229         * sysdeps/unix/sysv/linux/openat.c: Do not include
8230         <kernel-features.h>.
8231         [!__ASSUME_ATFCTS] (__atfct_seterrno): Remove function.
8232         [!__ASSUME_ATFCTS] (__have_atfcts): Remove variable.
8233         (OPENAT_NOT_CANCEL) [__NR_openat]: Make code unconditional.
8234         (OPENAT_NOT_CANCEL) [!__ASSUME_ATFCTS]: Remove conditional code.
8235         * sysdeps/unix/sysv/linux/powerpc/fchownat.c: Remove file.
8236         * sysdeps/unix/sysv/linux/readlinkat.c: Do not include
8237         <kernel-features.h>.
8238         (readlinkat) [__NR_readlinkat]: Make code unconditional.
8239         (readlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.  Return
8240         result of INLINE_SYSCALL directly, not via int variable.
8241         * sysdeps/unix/sysv/linux/renameat.c: Do not include
8242         <kernel-features.h>.
8243         [!__ASSUME_ATFCTS] (__atfct_seterrno_2): Remove function.
8244         (renameat) [__NR_renameat]: Make code unconditional.
8245         (renameat) [!__ASSUME_ATFCTS]: Remove conditional code.
8246         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Remove file.
8247         * sysdeps/unix/sysv/linux/sh/fchownat.c: Remove file.
8248         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Remove file.
8249         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c
8250         (__ASSUME_ATFCTS): Do not undefine and redefine.
8251         * sysdeps/unix/sysv/linux/symlinkat.c: Do not include
8252         <kernel-features.h>.
8253         (symlinkat) [__NR_symlinkat]: Make code unconditional.
8254         (symlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8255         * sysdeps/unix/sysv/linux/unlinkat.c: Do not include
8256         <kernel-features.h>.
8257         (unlinkat) [__NR_unlinkat]: Make code unconditional.
8258         (unlinkat) [!__ASSUME_ATFCTS]: Remove conditional code.
8259         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c
8260         (__ASSUME_ATFCTS): Do not undefine and redefine.
8261         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
8262         <kernel-features.h>.
8263         (__fxstatat) [__NR_newfstatat]: Make code unconditional.
8264         (__fxstatat) [!__ASSUME_ATFCTS]: Remove conditional code.
8265         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
8266         <kernel-features.h>.
8267         (__xmknodat) [__NR_mknodat]: Make code unconditional.
8268         (__xmknodat) [!__ASSUME_ATFCTS]: Remove conditional code.
8269
8270 2014-06-20  H.J. Lu  <hongjiu.lu@intel.com>
8271
8272         * sysdeps/x86_64/multiarch/rtld-strlen.S: Removed.
8273
8274 2014-06-20  Andreas Schwab  <schwab@linux-m68k.org>
8275
8276         [BZ #17069]
8277         * posix/regcomp.c (parse_reg_exp): Deallocate partially
8278         constructed tree before returning error.
8279         * posix/bug-regexp36.c: Expand test case.
8280
8281 2014-06-20  Stefan Liebler  <stli@linux.vnet.ibm.com>
8282
8283         [BZ #6803]
8284         * math/libm-test.inc (scalbln_test_date):
8285         Add errno expectations.
8286         * math/w_scalblnf.c: New File.
8287         Add wrapper which checks for setting errno to ERANGE.
8288         Add weak_alias for corresponding scalbln function.
8289         * math/w_scalbln.c: Likewise.
8290         * math/w_scalblnl.c: Likewise.
8291         * math/Makefile (libm-calls): Add w_scalbln.
8292         * sysdeps/ieee754/flt-32/s_scalblnf.c:
8293         Remove weak_alias for corresponding scalbln function.
8294         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
8295         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
8296         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
8297         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
8298         * sysdeps/sparc/sparc64/soft-fp/s_scalblnl.c: Likewise.
8299         * sysdeps/i386/fpu/s_scalbnf.S: Likewise.
8300         * sysdeps/i386/fpu/s_scalbn.S: Likewise.
8301         * sysdeps/i386/fpu/s_scalbnl.S: Likewise.
8302         * sysdeps/m68k/m680x0/fpu/s_scalbn.c: Likewise.
8303         * sysdeps/ieee754/ldbl-64-128/s_scalblnl.c:
8304         Remove long_double_symbol for scalblnl function in libm, libc.
8305         * sysdeps/ieee754/ldbl-64-128/w_scalblnl.c: New File.
8306         Add wrapper which checks for setting errno to ERANGE.
8307         Add long_double_symbol for scalblnl function in libm, libc.
8308         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c:
8309         Remove long_double_symbol for scalblnl in libm.
8310         * sysdeps/ieee754/ldbl-128ibm/w_scalblnl.c: New File.
8311         Add wrapper which checks for setting errno to ERANGE.
8312         Add long_double_symbol for scalblnl function in libm.
8313         * sysdeps/ia64/fpu/w_scalblnf.c: New File.
8314         Do not use wrapper because of own implementation.
8315
8316 2014-06-19  H.J. Lu  <hongjiu.lu@intel.com>
8317
8318         * sysdeps/x86/nptl/bits/pthreadtypes.h (pthread_rwlock_t): Use
8319         3 bytes for __pad1 for x32.
8320         (__PTHREAD_RWLOCK_ELISION_EXTRA): Likewise.
8321
8322 2014-06-19  Ling Ma  <ling.ml@alibaba-inc.com>
8323             H.J. Lu  <hongjiu.lu@intel.com>
8324
8325         * sysdeps/x86_64/multiarch/Makefile: Add memset-avx2.
8326         * sysdeps/x86_64/multiarch/memset-avx2.S: New file.
8327         * sysdeps/x86_64/multiarch/memset.S: Likewise.
8328         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
8329         * sysdeps/x86_64/multiarch/rtld-memset.S: Likewise.
8330
8331 2014-06-19  Andreas Schwab  <schwab@linux-m68k.org>
8332
8333         [BZ #17069]
8334         * posix/regcomp.c (parse_expression): Deallocate partially
8335         constructed tree before returning error.
8336         * posix/Makefile.c (tests): Add bug-regex36.
8337         (generated): Add bug-regex36.mtrace.
8338         (tests-special): Add $(objpfx)bug-regex36-mem.out
8339         (bug-regex36-ENV): New variable.
8340         ($(objpfx)bug-regex36-mem.out): New rule.
8341         * posix/bug-regex36.c: New file.
8342
8343 2014-06-19  Will Newton  <will.newton@linaro.org>
8344
8345         * malloc/malloc.c (systrim): If extra is zero then return
8346         early.
8347
8348 2014-06-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
8349
8350         * benchtests/Makefile ($(objpfx)bench-%.c): Remove $(.).
8351
8352 2014-06-19  Richard Earnshaw  <rearnsha@arm.com>
8353
8354         * sysdeps/aarch64/strchr.S: New file.
8355
8356 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
8357
8358         [BZ #17022]
8359         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Do not subtract 1
8360         from arguments -2 or below.
8361         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
8362         * sysdeps/x86_64/fpu/e_logl.S (__ieee754_logl): Likewise.
8363
8364 2014-06-18  Andreas Schwab  <schwab@suse.de>
8365
8366         [BZ #17062]
8367         * posix/fnmatch_loop.c (FCT): Rerrange loop for skipping over rest
8368         of a bracket expr not to run off the end of the string.
8369         * posix/Makefile (tests): Add tst-fnmatch3.
8370         * posix/tst-fnmatch3.c: New file.
8371
8372 2014-06-18  Joseph Myers  <joseph@codesourcery.com>
8373
8374         * elf/Makefile ($(objpfx)tst-unused-dep.out): Use $(rtld-prefix).
8375         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
8376         [$(cross-compiling) = no]: Likewise.
8377         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
8378         [$(cross-compiling) = no]: Likewise.
8379
8380 2014-16-17  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
8381
8382         [BZ #17031]
8383         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Consider the low
8384         double, adjusted for any remainder from the high double.
8385         * math/libm-test.inc (nearbyint): Add tests.
8386         (rint): Likewise.
8387
8388 2014-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8389
8390         * nptl/sysdeps/powerpc/Makefile: Moved ...
8391         * sysdeps/powerpc/nptl/Makefile: ... here.
8392         * nptl/sysdeps/powerpc/pthread_spin_lock.c: Moved ...
8393         * sysdeps/powerpc/nptl/pthread_spin_lock.c: .. here.
8394         * nptl/sysdeps/powerpc/pthread_spin_trylock.c: Moved ...
8395         * sysdeps/powerpc/nptl/pthread_spin_trylock.c: ... here.
8396         * nptl/sysdeps/powerpc/pthreaddef.h: Moved ...
8397         * sysdeps/powerpc/nptl/pthreaddef.h: ... here.
8398         * nptl/sysdeps/powerpc/tcb-offsets.sym: Moved ...
8399         * sysdeps/powerpc/nptl/tcb-offsets.sym: ... here.
8400         * nptl/sysdeps/powerpc/tls.h: Moved ...
8401         * sysdeps/powerpc/nptl/tls.h: ... here.
8402
8403 2014-06-16  Joseph Myers  <joseph@codesourcery.com>
8404
8405         [BZ #16681]
8406         * sysdeps/i386/fpu/s_ceil.S (__ceil): Add CFI.
8407         * sysdeps/i386/fpu/s_ceilf.S (__ceilf): Likewise.
8408         * sysdeps/i386/fpu/s_ceill.S (__ceill): Likewise.
8409         * sysdeps/i386/fpu/s_floor.S (__floor): Likewise.
8410         * sysdeps/i386/fpu/s_floorf.S (__floorf): Likewise.
8411         * sysdeps/i386/fpu/s_floorl.S (__floorl): Likewise.
8412         * sysdeps/i386/fpu/s_trunc.S (__trunc): Likewise.
8413         * sysdeps/i386/fpu/s_truncf.S (__truncf): Likewise.
8414         * sysdeps/i386/fpu/s_truncl.S (__truncl): Likewise.
8415
8416 2014-06-17  Andreas Schwab  <schwab@linux-m68k.org>
8417
8418         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
8419
8420 2014-06-16  Andreas Schwab  <schwab@linux-m68k.org>
8421
8422         * sysdeps/m68k/m680x0/bits/huge_vall.h: Fix missing space after
8423         defined operator.
8424
8425         * scripts/cross-test-ssh.sh (timeoutfactor): Default to
8426         $TIMEOUTFACTOR.
8427
8428 2014-06-16  Florian Weimer  <fweimer@redhat.com>
8429
8430         [BZ #17058]
8431         * nptl/tst-setuid2.c (do_test): Fix tautological comparison in
8432         non-executed part of the test.
8433
8434 2014-06-16  Andreas Schwab  <schwab@suse.de>
8435
8436         * string/bits/string2.h (strdup, strndup): Update feature guard.
8437
8438 2014-06-14  David S. Miller  <davem@davemloft.net>
8439
8440         * sysdeps/sparc/fpu/libm-test-ulps: Update.
8441
8442 2014-06-14  Andreas Schwab  <schwab@linux-m68k.org>
8443
8444         * sysdeps/unix/sysv/linux/m68k/clone.S: Deconditionalize the code
8445         that was previously under [RESET_PID].
8446         * sysdeps/unix/sysv/linux/m68k/nptl/clone.S: Remove file.
8447
8448         * sysdeps/unix/sysv/linux/m68k/pt-vfork.c: New file.
8449         * sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: Remove file.
8450         * sysdeps/unix/sysv/linux/m68k/vfork.S: Include <tcb-offsets.h>.
8451         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
8452         (__libc_vfork): New strong alias.
8453         * sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: Remove file.
8454
8455 2014-06-14 Andi Kleen  <ak@linux.intel.com>
8456
8457         * sysdeps/generic/elide.h: New file.
8458
8459 2014-06-13  Stefan Liebler  <stli@linux.vnet.ibm.com>
8460
8461         * Makefile (installed-headers): Adjust path of pthread.h header.
8462
8463 2014-06-13  Roland McGrath  <roland@hack.frob.com>
8464
8465         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h: Moved ...
8466         * sysdeps/s390/nptl/bits/pthreadtypes.h: ... here.
8467         * nptl/sysdeps/unix/sysv/linux/s390/bits/semaphore.h: Moved ...
8468         * sysdeps/s390/nptl/bits/semaphore.h: ... here.
8469
8470         * nptl/sysdeps/s390/Makefile: Moved ...
8471         * sysdeps/s390/nptl/Makefile: ... here.
8472         * nptl/sysdeps/s390/pthread_spin_init.c: Moved ...
8473         * sysdeps/s390/nptl/pthread_spin_init.c: ... here.
8474         * nptl/sysdeps/s390/pthread_spin_lock.c: Moved ...
8475         * sysdeps/s390/nptl/pthread_spin_lock.c: ... here.
8476         * nptl/sysdeps/s390/pthread_spin_trylock.c: Moved ...
8477         * sysdeps/s390/nptl/pthread_spin_trylock.c: ... here.
8478         * nptl/sysdeps/s390/pthread_spin_unlock.c: Moved ...
8479         * sysdeps/s390/nptl/pthread_spin_unlock.c: ... here.
8480         * nptl/sysdeps/s390/pthreaddef.h: Moved ...
8481         * sysdeps/s390/nptl/pthreaddef.h: ... here.
8482         * nptl/sysdeps/s390/tcb-offsets.sym: Moved ...
8483         * sysdeps/s390/nptl/tcb-offsets.sym: ... here.
8484         * nptl/sysdeps/s390/tls.h: Moved ...
8485         * sysdeps/s390/nptl/tls.h: ... here.
8486
8487         * sysdeps/unix/sysv/linux/s390/arch-fork.h: New file.
8488         * nptl/sysdeps/unix/sysv/linux/s390/fork.c: File removed.
8489
8490 2014-06-13  David S. Miller  <davem@davemloft.net>
8491
8492         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/clone.S: Delete.
8493         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/pt-vfork.S: Delete.
8494         * nptl/sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: Moved ...
8495         * sysdeps/unix/sysv/linux/sparc/sparc32/vfork.S: ... here.
8496         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/clone.S: Delete.
8497         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/pt-vfork.S: Delete.
8498         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: Moved ...
8499         * sysdeps/unix/sysv/linux/sparc/sparc64/vfork.S: ... here.
8500         * sysdeps/unix/sysv/linux/sparc/fork.S: Delete.
8501         * sysdeps/unix/sysv/linux/sparc/pt-vfork.S: New file.
8502         * sysdeps/unix/sysv/linux/sparc/sparc32/clone.S (__thread_start):
8503         Remove RESET_PID cpp guards.
8504         * sysdeps/unix/sysv/linux/sparc/sparc64/clone.S (__thread_start):
8505         Remove RESET_PID cpp guards.
8506         * sysdeps/unix/sysv/linux/sparc/vfork.S: Delete.
8507
8508 2014-06-13  Andreas Schwab  <schwab@linux-m68k.org>
8509
8510         * sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_UNWINDS, _jmpbuf_sp): Cast
8511         __sp to uintptr_t.
8512
8513 2014-06-13  Andi Kleen  <ak@linux.intel.com>
8514
8515         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: Remove.
8516         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S: dito.
8517         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S: dito.
8518         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: dito.
8519         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: dito.
8520         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: dito.
8521         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S: dito.
8522         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S: dito.
8523         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: dito.
8524         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: dito.
8525         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: dito.
8526         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S: dito.
8527         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S: dito.
8528         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: dito.
8529         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: dito.
8530         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: dito.
8531         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: dito.
8532         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: dito.
8533         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: dito.
8534         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: dito.
8535
8536         * nptl/pthread_rwlock_rdlock.c: Include elide.h.
8537         (pthread_rwlock_rdlock): Add elision.
8538         * nptl/pthread_rwlock_wrlock.c: Include elide.h.
8539         (pthread_rwlock_wrlock): Add elision.
8540         * nptl/pthread_rwlock_trywrlock.c: Include elide.h.
8541         (pthread_rwlock_trywrlock): Add elision.
8542         * nptl/pthread_rwlock_tryrdlock.c: Include elide.h.
8543         (pthread_rwlock_tryrdlock): Add elision.
8544         * nptl/pthread_rwlock_unlock.c: Include elide.h.
8545         (pthread_rwlock_tryrdlock): Add elision unlock.
8546         * nptl/sysdeps/pthread/pthread.h:
8547         (__PTHREAD_RWLOCK_ELISION_EXTRA): Handle new define
8548         (PTHREAD_RWLOCK_INITIALIZER,
8549         PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP):
8550         Handle new elision field.
8551         * sysdeps/x86/nptl/elide.h: New file. Add generic elision macros.
8552         * sysdeps/arm/nptl/bits/pthreadtypes.h
8553         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8554         * sysdeps/sh/nptl/bits/pthreadtypes.h
8555         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8556         * sysdeps/tile/nptl/bits/pthreadtypes.h
8557         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8558         * sysdeps/a/nptl/bits/pthreadtypes.h
8559         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8560         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
8561         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8562         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
8563         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8564         * sysdeps/unix/sysv/linux/hppa/nptl/bits/pthreadtypes.h
8565         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8566         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
8567         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8568         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
8569         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8570         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
8571         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8572         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
8573         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8574         * sysdeps/unix/sysv/linux/powerpc/nptl/bits/pthreadtypes.h
8575         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8576         * sysdeps/unix/sysv/linux/x86/elision-conf.c:
8577         (elision_init): Set try_xbegin to zero when no RTM.
8578         * sysdeps/x86/nptl/bits/pthreadtypes.h
8579         (pthread_rwlock_t): Change __pad1 to __rwelision.
8580         (__PTHREAD_RWLOCK_ELISION_EXTRA): Add.
8581
8582 2014-06-13  Andi Kleen  <ak@linux.intel.com>
8583
8584         * nptl/pthread_rwlock_rdlock (__pthread_rwlock_rdlock):
8585         Split into __do_pthread_rwlock_rdlock and __pthread_rwlock_rdlock.
8586         * nptl/pthread_rwlock_wrlock (__pthread_rwlock_wrlock):
8587         Split into __do_pthread_rwlock_wrlock and __pthread_wrlock_rdlock.
8588
8589 2014-06-13  Meador Inge  <meadori@codesourcery.com>
8590
8591         [BZ #16996]
8592         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Ensure
8593         that the cached result has been set before returning it.
8594
8595 2014-06-12  Roland McGrath  <roland@hack.frob.com>
8596
8597         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h: Moved ...
8598         * sysdeps/sparc/nptl/bits/pthreadtypes.h: ... here.
8599         * nptl/sysdeps/unix/sysv/linux/sparc/bits/semaphore.h: Moved ...
8600         * sysdeps/sparc/nptl/bits/semaphore.h: ... here.
8601         * nptl/sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: Moved ...
8602         * sysdeps/unix/sysv/linux/sparc/bits/local_lim.h: ... here.
8603
8604         * nptl/sysdeps/sparc/Makefile: Moved ...
8605         * sysdeps/sparc/nptl/Makefile: ... here.
8606         * nptl/sysdeps/sparc/tcb-offsets.sym: Moved ...
8607         * sysdeps/sparc/nptl/tcb-offsets.sym: ... here.
8608         * nptl/sysdeps/sparc/tls.h: Moved ...
8609         * sysdeps/sparc/nptl/tls.h: ... here.
8610         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S: Moved ...
8611         * sysdeps/sparc/sparc32/nptl/pthread_spin_lock.S: ... here.
8612         * nptl/sysdeps/sparc/sparc32/pthread_spin_trylock.S: Moved ...
8613         * sysdeps/sparc/sparc32/nptl/pthread_spin_trylock.S: ... here.
8614         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Moved ...
8615         * sysdeps/sparc/sparc32/nptl/pthreaddef.h: ... here.
8616         * nptl/sysdeps/sparc/sparc64/pthread_spin_init.c: Moved ...
8617         * sysdeps/sparc/sparc64/nptl/pthread_spin_init.c: ... here.
8618         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S: Moved ...
8619         * sysdeps/sparc/sparc64/nptl/pthread_spin_lock.S: ... here.
8620         * nptl/sysdeps/sparc/sparc64/pthread_spin_trylock.S: Moved ...
8621         * sysdeps/sparc/sparc64/nptl/pthread_spin_trylock.S: ... here.
8622         * nptl/sysdeps/sparc/sparc64/pthread_spin_unlock.S: Moved ...
8623         * sysdeps/sparc/sparc64/nptl/pthread_spin_unlock.S: ... here.
8624         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Moved ...
8625         * sysdeps/sparc/sparc64/nptl/pthreaddef.h: ... here.
8626         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_init.c: Moved ...
8627         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_init.c: ... here.
8628         Update #include.
8629         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_lock.S: Moved ...
8630         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_lock.S: ... here.
8631         Update #include.
8632         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_trylock.S: Moved ...
8633         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_trylock.S: ... here.
8634         Update #include.
8635         * nptl/sysdeps/sparc/sparc32/sparcv9/pthread_spin_unlock.S: Moved ...
8636         * sysdeps/sparc/sparc32/sparcv9/nptl/pthread_spin_unlock.S: ... here.
8637         Update #include.
8638
8639         * nptl/sysdeps/sparc/tls.h (TLS_DEFINE_INIT_TP): New macro.
8640
8641         * sysdeps/unix/sysv/linux/sparc/arch-fork.h: New file.
8642         * nptl/sysdeps/unix/sysv/linux/sparc/fork.c: File removed.
8643
8644         * sysdeps/pthread/posix-timer.h: Include <list.h>.
8645         (struct list_links): Type removed.
8646         (struct thread_node, struct timer_node): Replace struct list_links
8647         with struct list_head.
8648         (list_unlink_ip): Likewise.
8649         * sysdeps/pthread/timer_routines.c
8650         (timer_free_list, thread_free_list, thread_active_list): Likewise.
8651         (list_append, list_insbefore): Likewise.
8652         (list_init): Function removed.
8653         (thread_init, init_module): Use INIT_LIST_HEAD instead.
8654         * sysdeps/nptl/Makefile: Move tst-timer bits to ...
8655         * sysdeps/pthread/Makefile: ... here, new file.
8656
8657         * nptl/sysdeps/unix/sysv/linux/Implies: Moved ...
8658         * sysdeps/nptl/Implies: ... here.
8659         * sysdeps/unix/sysv/linux/Implies: Add nptl.
8660         * nptl/sysdeps/pthread/list.h: Moved ...
8661         * include/list.h: ... here.
8662         * nptl/sysdeps/pthread/createthread.c: Moved ...
8663         * nptl/createthread.c: ... here.
8664         * nptl/sysdeps/unix/sysv/linux/createthread.c: Update #include.
8665         * nptl/sysdeps/pthread/pt-longjmp.c: Moved ...
8666         * nptl/pt-longjmp.c: ... here.
8667         * nptl/sysdeps/pthread/Makefile: Moved ...
8668         * sysdeps/nptl/Makefile: ... here.
8669         * nptl/sysdeps/pthread/Subdirs: Moved ...
8670         * sysdeps/nptl/Subdirs: ... here.
8671         * nptl/sysdeps/pthread/aio_misc.h: Moved ...
8672         * sysdeps/nptl/aio_misc.h: ... here.
8673         * nptl/sysdeps/pthread/bits/libc-lock.h: Moved ...
8674         * sysdeps/nptl/bits/libc-lock.h: ... here.
8675         * nptl/sysdeps/pthread/bits/libc-lockP.h: Moved ...
8676         * sysdeps/nptl/bits/libc-lockP.h: ... here.
8677         * nptl/sysdeps/pthread/bits/stdio-lock.h: Moved ...
8678         * sysdeps/nptl/bits/stdio-lock.h: ... here.
8679         * nptl/sysdeps/pthread/configure: Moved ...
8680         * sysdeps/nptl/configure: ... here.
8681         * nptl/sysdeps/pthread/configure.ac: Moved ...
8682         * sysdeps/nptl/configure.ac: ... here.
8683         * nptl/sysdeps/pthread/gai_misc.h: Moved ...
8684         * sysdeps/nptl/gai_misc.h: ... here.
8685         * nptl/sysdeps/pthread/librt-cancellation.c: Moved ...
8686         * sysdeps/nptl/librt-cancellation.c: ... here.
8687         * nptl/sysdeps/pthread/malloc-machine.h: Moved ...
8688         * sysdeps/nptl/malloc-machine.h: ... here.
8689         * nptl/sysdeps/pthread/pthread-functions.h: Moved ...
8690         * sysdeps/nptl/pthread-functions.h: ... here.
8691         * nptl/sysdeps/pthread/pthread.h: Moved ...
8692         * sysdeps/nptl/pthread.h: ... here.
8693         * nptl/sysdeps/pthread/setxid.h: Moved ...
8694         * sysdeps/nptl/setxid.h: ... here.
8695         * nptl/sysdeps/pthread/sigfillset.c: Moved ...
8696         * sysdeps/nptl/sigfillset.c: ... here.
8697         * nptl/sysdeps/pthread/tcb-offsets.h: Moved ...
8698         * sysdeps/nptl/tcb-offsets.h: ... here.
8699         * nptl/sysdeps/pthread/tst-mqueue8x.c: Moved ...
8700         * sysdeps/nptl/tst-mqueue8x.c: ... here.
8701         * nptl/sysdeps/pthread/unwind-forcedunwind.c: Moved ...
8702         * sysdeps/nptl/unwind-forcedunwind.c: ... here.
8703         * nptl/sysdeps/pthread/allocalim.h: Moved ...
8704         * sysdeps/pthread/allocalim.h: ... here.
8705         * nptl/sysdeps/pthread/bits/sigthread.h: Moved ...
8706         * sysdeps/pthread/bits/sigthread.h: ... here.
8707         * nptl/sysdeps/pthread/flockfile.c: Moved ...
8708         * sysdeps/pthread/flockfile.c: ... here.
8709         * nptl/sysdeps/pthread/ftrylockfile.c: Moved ...
8710         * sysdeps/pthread/ftrylockfile.c: ... here.
8711         * nptl/sysdeps/pthread/funlockfile.c: Moved ...
8712         * sysdeps/pthread/funlockfile.c: ... here.
8713         * nptl/sysdeps/pthread/posix-timer.h: Moved ...
8714         * sysdeps/pthread/posix-timer.h: ... here.
8715         * nptl/sysdeps/pthread/timer_create.c: Moved ...
8716         * sysdeps/pthread/timer_create.c: ... here.
8717         * nptl/sysdeps/pthread/timer_delete.c: Moved ...
8718         * sysdeps/pthread/timer_delete.c: ... here.
8719         * nptl/sysdeps/pthread/timer_getoverr.c: Moved ...
8720         * sysdeps/pthread/timer_getoverr.c: ... here.
8721         * nptl/sysdeps/pthread/timer_gettime.c: Moved ...
8722         * sysdeps/pthread/timer_gettime.c: ... here.
8723         * nptl/sysdeps/pthread/timer_routines.c: Moved ...
8724         * sysdeps/pthread/timer_routines.c: ... here.
8725         * nptl/sysdeps/pthread/timer_settime.c: Moved ...
8726         * sysdeps/pthread/timer_settime.c: ... here.
8727         * nptl/sysdeps/pthread/tst-timer.c: Moved ...
8728         * sysdeps/pthread/tst-timer.c: ... here.
8729         * nptl/sysdeps/pthread/pthread_sigmask.c: Moved ...
8730         * sysdeps/unix/sysv/linux/pthread_sigmask.c: ... here.
8731
8732         * sysdeps/unix/sysv/linux/sigprocmask.c: Include <nptl/pthreadP.h>.
8733         * nptl/sysdeps/pthread/sigprocmask.c: File removed.
8734
8735         * nptl/sysdeps/i386/i486/pthread_spin_trylock.S: Moved ...
8736         * sysdeps/i386/i486/nptl/pthread_spin_trylock.S: ... here.
8737         * nptl/sysdeps/i386/i586/pthread_spin_trylock.S: Moved ...
8738         * sysdeps/i386/i586/nptl/pthread_spin_trylock.S: ... here.
8739         Update #include target.
8740         * nptl/sysdeps/i386/i686/Makefile: Moved ...
8741         * sysdeps/i386/i686/nptl/Makefile: ... here.
8742         * nptl/sysdeps/i386/i686/pthread_spin_trylock.S: Moved ...
8743         * sysdeps/i386/i686/nptl/pthread_spin_trylock.S: ... here.
8744         Update #include target.
8745         * nptl/sysdeps/i386/i686/tls.h: Moved ...
8746         * sysdeps/i386/i686/nptl/tls.h: ... here.  Use #include_next.
8747         * nptl/sysdeps/i386/Makefile: Moved ...
8748         * sysdeps/i386/nptl/Makefile: ... here.
8749         * nptl/sysdeps/i386/pthread_spin_init.c: Moved ...
8750         * sysdeps/i386/nptl/pthread_spin_init.c: ... here.
8751         * sysdeps/x86_64/nptl/pthread_spin_init.c: Update #include target.
8752         * nptl/sysdeps/i386/pthread_spin_lock.S: Moved ...
8753         * sysdeps/i386/nptl/pthread_spin_lock.S: ... here.
8754         * nptl/sysdeps/i386/pthread_spin_unlock.S: Moved ...
8755         * sysdeps/i386/nptl/pthread_spin_unlock.S: ... here.
8756         * nptl/sysdeps/i386/pthreaddef.h: Moved ...
8757         * sysdeps/i386/nptl/pthreaddef.h: ... here.
8758         * nptl/sysdeps/i386/tcb-offsets.sym: Moved ...
8759         * sysdeps/i386/nptl/tcb-offsets.sym: ... here.
8760         * nptl/sysdeps/i386/tls.h: Moved ...
8761         * sysdeps/i386/nptl/tls.h: ... here.
8762
8763         * sysdeps/sh/Makefile [$(subdir) = csu]
8764         (gen-as-const-headers): Add tcb-offsets.sym.
8765         * nptl/sysdeps/sh/Makefile: File removed.
8766         * nptl/sysdeps/sh/pthread_spin_init.c: Moved ...
8767         * sysdeps/sh/nptl/pthread_spin_init.c: ... here.
8768         * nptl/sysdeps/sh/pthread_spin_lock.c: Moved ...
8769         * sysdeps/sh/nptl/pthread_spin_lock.c: ... here.
8770         * nptl/sysdeps/sh/pthread_spin_trylock.S: Moved ...
8771         * sysdeps/sh/nptl/pthread_spin_trylock.S: ... here.
8772         * nptl/sysdeps/sh/pthread_spin_unlock.S: Moved ...
8773         * sysdeps/sh/nptl/pthread_spin_unlock.S: ... here.
8774         * nptl/sysdeps/sh/pthreaddef.h: Moved ...
8775         * sysdeps/sh/nptl/pthreaddef.h: ... here.
8776         * nptl/sysdeps/sh/tcb-offsets.sym: Moved ...
8777         * sysdeps/sh/nptl/tcb-offsets.sym: ... here.
8778         * nptl/sysdeps/sh/tls.h: Moved ...
8779         * sysdeps/sh/nptl/tls.h: ... here.
8780         * nptl/sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: Moved ...
8781         * sysdeps/unix/sysv/linux/sh/libc-lowlevellock.S: ... here.
8782         * nptl/sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: Moved ...
8783         * sysdeps/unix/sysv/linux/sh/lowlevel-atomic.h: ... here.
8784         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.S: Moved ...
8785         * sysdeps/unix/sysv/linux/sh/lowlevellock.S: ... here.
8786         * nptl/sysdeps/unix/sysv/linux/sh/lowlevellock.h: Moved ...
8787         * sysdeps/unix/sysv/linux/sh/lowlevellock.h: ... here.
8788         * nptl/sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: Moved ...
8789         * sysdeps/unix/sysv/linux/sh/lowlevelrobustlock.S: ... here.
8790         * nptl/sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: Moved ...
8791         * sysdeps/unix/sysv/linux/sh/pthread_barrier_wait.S: ... here.
8792         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: Moved ...
8793         * sysdeps/unix/sysv/linux/sh/pthread_cond_broadcast.S: ... here.
8794         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: Moved ...
8795         * sysdeps/unix/sysv/linux/sh/pthread_cond_signal.S: ... here.
8796         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: Moved ...
8797         * sysdeps/unix/sysv/linux/sh/pthread_cond_timedwait.S: ... here.
8798         * nptl/sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: Moved ...
8799         * sysdeps/unix/sysv/linux/sh/pthread_cond_wait.S: ... here.
8800         * nptl/sysdeps/unix/sysv/linux/sh/pthread_once.S: Moved ...
8801         * sysdeps/unix/sysv/linux/sh/pthread_once.S: ... here.
8802         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: Moved ...
8803         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_rdlock.S: ... here.
8804         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S:
8805         Moved ...
8806         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedrdlock.S: ... here.
8807         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S:
8808         Moved ...
8809         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_timedwrlock.S: ... here.
8810         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: Moved ...
8811         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_unlock.S: ... here.
8812         * nptl/sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: Moved ...
8813         * sysdeps/unix/sysv/linux/sh/pthread_rwlock_wrlock.S: ... here.
8814         * nptl/sysdeps/unix/sysv/linux/sh/sem_post.S: Moved ...
8815         * sysdeps/unix/sysv/linux/sh/sem_post.S: ... here.
8816         * nptl/sysdeps/unix/sysv/linux/sh/sem_timedwait.S: Moved ...
8817         * sysdeps/unix/sysv/linux/sh/sem_timedwait.S: ... here.
8818         * nptl/sysdeps/unix/sysv/linux/sh/sem_trywait.S: Moved ...
8819         * sysdeps/unix/sysv/linux/sh/sem_trywait.S: ... here.
8820         * nptl/sysdeps/unix/sysv/linux/sh/sem_wait.S: Moved ...
8821         * sysdeps/unix/sysv/linux/sh/sem_wait.S: ... here.
8822         * nptl/sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: Moved ...
8823         * sysdeps/unix/sysv/linux/sh/sh4/lowlevellock.h: ... here.
8824         * nptl/sysdeps/unix/sysv/linux/sh/smp.h: Moved ...
8825         * sysdeps/unix/sysv/linux/sh/smp.h: ... here.
8826         * nptl/sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: Moved ...
8827         * sysdeps/unix/sysv/linux/sh/sysdep-cancel.h: ... here.
8828
8829 2014-06-12  Stefan Liebler  <stli@linux.vnet.ibm.com>
8830
8831         * posix/spawn_faction_addopen.c: Include string.h.
8832
8833 2014-06-11  Roland McGrath  <roland@hack.frob.com>
8834
8835         * nptl/sysdeps/x86_64/64/shlib-versions: Moved ...
8836         * sysdeps/x86_64/64/nptl/shlib-versions: ... here.
8837         * nptl/sysdeps/x86_64/Makefile: Moved ...
8838         * sysdeps/x86_64/nptl/Makefile: ... here.
8839         * nptl/sysdeps/x86_64/configure: Moved ...
8840         * sysdeps/x86_64/nptl/configure: ... here.
8841         * nptl/sysdeps/x86_64/configure.ac: Moved ...
8842         * sysdeps/x86_64/nptl/configure.ac: ... here.
8843         * nptl/sysdeps/x86_64/pthread_spin_init.c: Moved ...
8844         * sysdeps/x86_64/nptl/pthread_spin_init.c: ... here.
8845         * nptl/sysdeps/x86_64/pthread_spin_lock.S: Moved ...
8846         * sysdeps/x86_64/nptl/pthread_spin_lock.S: ... here.
8847         * nptl/sysdeps/x86_64/pthread_spin_trylock.S: Moved ...
8848         * sysdeps/x86_64/nptl/pthread_spin_trylock.S: ... here.
8849         * nptl/sysdeps/x86_64/pthread_spin_unlock.S: Moved ...
8850         * sysdeps/x86_64/nptl/pthread_spin_unlock.S: ... here.
8851         * nptl/sysdeps/x86_64/pthreaddef.h: Moved ...
8852         * sysdeps/x86_64/nptl/pthreaddef.h: ... here.
8853         * nptl/sysdeps/x86_64/tcb-offsets.sym: Moved ...
8854         * sysdeps/x86_64/nptl/tcb-offsets.sym: ... here.
8855         * nptl/sysdeps/x86_64/tls.h: Moved ...
8856         * sysdeps/x86_64/nptl/tls.h: ... here.
8857         * nptl/sysdeps/x86_64/x32/shlib-versions: Moved ...
8858         * sysdeps/x86_64/x32/nptl/shlib-versions: ... here.
8859         * nptl/sysdeps/x86_64/x32/tls.h: Moved ...
8860         * sysdeps/x86_64/x32/nptl/tls.h: ... here.
8861
8862         * sysdeps/x86_64/x32/nptl/tls.h: Use #include_next.
8863
8864 2014-06-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
8865
8866         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
8867
8868 2014-06-11  Joseph Myers  <joseph@codesourcery.com>
8869
8870         * conform/data/sys/mman.h-data [POSIX] (size_t): Do not require
8871         type.
8872         [POSIX] (off_t): Likewise.
8873         * conform/data/sys/stat.h-data (S_IRGRP): Require constant.
8874         [POSIX] (S_ISBLK): Require macro.
8875         [POSIX] (S_ISCHR): Likewise.
8876         [POSIX] (S_ISDIR): Likewise.
8877         [POSIX] (S_ISFIFO): Likewise.
8878         [POSIX] (S_ISREG): Likewise.
8879         [POSIX || XPG3 || XPG4 || UNIX98] (S_TYPEISTMO): Do not list
8880         optional-macro.
8881         * conform/data/sys/types.h-data [POSIX] (blkcnt_t): Do not require
8882         type.
8883         [POSIX] (time_t): Likewise.
8884         [POSIX] (timer_t): Likewise.
8885
8886 2014-06-11  Florian Weimer  <fweimer@redhat.com>
8887
8888         [BZ #17048]
8889         * posix/spawn_int.h (struct __spawn_action): Make the path string
8890         non-const to support deallocation.
8891         * posix/spawn_faction_addopen.c
8892         (posix_spawn_file_actions_addopen): Make a copy of the pathname.
8893         * posix/spawn_faction_destroy.c
8894         (posix_spawn_file_actions_destroy): Adjust comment.  Deallocate
8895         path in all spawn_do_open actions.
8896         * posix/tst-spawn.c (do_test): Exercise the copy operation in
8897         posix_spawn_file_actions_addopen.
8898
8899 2014-06-11  Chris Metcalf  <cmetcalf@tilera.com>
8900
8901         * sysdeps/unix/sysv/linux/tile/pt-vfork.c: New file.
8902         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: Remove file.
8903         * sysdeps/unix/sysv/linux/tile/vfork.S (__vfork): Make PT_VFORK
8904         conditional code always true.
8905         (__libc_vfork): New alias.
8906
8907 2014-06-11  Roland McGrath  <roland@hack.frob.com>
8908
8909         * sysdeps/tile/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8910         * sysdeps/unix/sysv/linux/tile/createthread.c: File removed.
8911
8912         * nptl/sysdeps/s390/tls.h (TLS_DEFINE_INIT_TP): New macro.
8913
8914         * sysdeps/alpha/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8915         * sysdeps/unix/sysv/linux/alpha/createthread.c: File removed.
8916
8917         * nptl/sysdeps/powerpc/tls.h (TLS_DEFINE_INIT_TP): New macro.
8918         * sysdeps/unix/sysv/linux/powerpc/createthread.c: File removed.
8919
8920         * sysdeps/aarch64/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
8921         * sysdeps/unix/sysv/linux/aarch64/nptl/createthread.c: File removed.
8922
8923 2014-06-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
8924
8925         * sysdeps/powerpc/powerpc64/power7/strcmp.S: New file: Optimization.
8926         * sysdeps/powerpc/powerpc64/multiarch/strcmp.c: New file:
8927         multiarch strcmp for PPC64.
8928         * sysdeps/powerpc/powerpc64/multiarch/strcmp-ppc64.S: New file.
8929         * sysdeps/powerpc/powerpc64/multiarch/strcmp-power7.S: New file.
8930         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcmp
8931         multiarch optimizations.
8932         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
8933         (__libc_ifunc_impl_list): Likewise.
8934
8935 2014-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
8936
8937         * benchtests/scripts/validate_benchout.py: New script.
8938         * benchtests/Makefile (bench-func): Call it.
8939         * benchtests/scripts/benchout.schema.json: New file.
8940
8941 2014-06-10  Chris Metcalf  <cmetcalf@tilera.com>
8942
8943         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h: Moved ...
8944         * sysdeps/tile/nptl/bits/pthreadtypes.h: ... here.
8945         * sysdeps/unix/sysv/linux/tile/nptl/bits/semaphore.h: Moved ...
8946         * sysdeps/tile/nptl/bits/semaphore.h: ... here.
8947         * sysdeps/unix/sysv/linux/tile/nptl/Makefile: Removed, merged into ...
8948         * sysdeps/unix/sysv/linux/tile/Makefile: ... here.
8949         * sysdeps/unix/sysv/linux/tile/nptl/clone.S: Moved ...
8950         * sysdeps/unix/sysv/linux/tile/clone.S: ... here.
8951         * sysdeps/unix/sysv/linux/tile/nptl/createthread.c: Moved ...
8952         * sysdeps/unix/sysv/linux/tile/createthread.c: ... here.
8953         * sysdeps/unix/sysv/linux/tile/nptl/lowlevellock.h: Moved ...
8954         * sysdeps/unix/sysv/linux/tile/lowlevellock.h: ... here.
8955         * sysdeps/unix/sysv/linux/tile/nptl/pt-vfork.S: Moved ...
8956         * sysdeps/unix/sysv/linux/tile/pt-vfork.S: ... here.
8957         * sysdeps/unix/sysv/linux/tile/nptl/sysdep-cancel.h: Moved ...
8958         * sysdeps/unix/sysv/linux/tile/sysdep-cancel.h: ... here.
8959         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/c++-types.data:
8960         Moved ...
8961         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/c++-types.data:
8962         ... here.
8963         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/ld.abilist:
8964         Moved ...
8965         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/ld.abilist: ... here.
8966         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libBrokenLocale.abilist:
8967         Moved ...
8968         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libBrokenLocale.abilist:
8969         ... here.
8970         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libanl.abilist:
8971         Moved ...
8972         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libanl.abilist:
8973         ... here.
8974         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libc.abilist:
8975         Moved ...
8976         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libc.abilist: ... here.
8977         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libcrypt.abilist:
8978         Moved ...
8979         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libcrypt.abilist:
8980         ... here.
8981         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libdl.abilist:
8982         Moved ...
8983         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libdl.abilist:
8984         ... here.
8985         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libm.abilist:
8986         Moved ...
8987         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libm.abilist: ... here.
8988         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libnsl.abilist:
8989         Moved ...
8990         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libnsl.abilist:
8991         ... here.
8992         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libpthread.abilist:
8993         Moved ...
8994         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libpthread.abilist:
8995         ... here.
8996         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libresolv.abilist:
8997         Moved ...
8998         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libresolv.abilist:
8999         ... here.
9000         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/librt.abilist:
9001         Moved ...
9002         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/librt.abilist: ... here.
9003         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libthread_db.abilist:
9004         Moved ...
9005         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libthread_db.abilist:
9006         ... here.
9007         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/nptl/libutil.abilist:
9008         Moved ...
9009         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx32/libutil.abilist:
9010         ... here.
9011         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/c++-types.data:
9012         Moved ...
9013         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/c++-types.data:
9014         ... here.
9015         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/ld.abilist:
9016         Moved ...
9017         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/ld.abilist: ... here.
9018         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libBrokenLocale.abilist:
9019         Moved ...
9020         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libBrokenLocale.abilist:
9021         ... here.
9022         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libanl.abilist:
9023         Moved ...
9024         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libanl.abilist:
9025         ... here.
9026         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libc.abilist:
9027         Moved ...
9028         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libc.abilist: ... here.
9029         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libcrypt.abilist:
9030         Moved ...
9031         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libcrypt.abilist:
9032         ... here.
9033         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libdl.abilist:
9034         Moved ...
9035         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libdl.abilist: ... here.
9036         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libm.abilist:
9037         Moved ...
9038         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libm.abilist: ... here.
9039         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libnsl.abilist:
9040         Moved ...
9041         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libnsl.abilist:
9042         ... here.
9043         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libpthread.abilist:
9044         Moved ...
9045         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libpthread.abilist:
9046         ... here.
9047         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libresolv.abilist:
9048         Moved ...
9049         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libresolv.abilist:
9050         ... here.
9051         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/librt.abilist:
9052         Moved ...
9053         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/librt.abilist: ... here.
9054         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libthread_db.abilist:
9055         Moved ...
9056         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libthread_db.abilist:
9057         ... here.
9058         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/nptl/libutil.abilist:
9059         Moved ...
9060         * sysdeps/unix/sysv/linux/tile/tilegx/tilegx64/libutil.abilist:
9061         ... here.
9062         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/c++-types.data: Moved ...
9063         * sysdeps/unix/sysv/linux/tile/tilepro/c++-types.data: ... here.
9064         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/ld.abilist: Moved ...
9065         * sysdeps/unix/sysv/linux/tile/tilepro/ld.abilist: ... here.
9066         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libBrokenLocale.abilist:
9067         Moved ...
9068         * sysdeps/unix/sysv/linux/tile/tilepro/libBrokenLocale.abilist:
9069         ... here.
9070         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libanl.abilist: Moved ...
9071         * sysdeps/unix/sysv/linux/tile/tilepro/libanl.abilist: ... here.
9072         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libc.abilist: Moved ...
9073         * sysdeps/unix/sysv/linux/tile/tilepro/libc.abilist: ... here.
9074         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libcrypt.abilist: Moved ...
9075         * sysdeps/unix/sysv/linux/tile/tilepro/libcrypt.abilist: ... here.
9076         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libdl.abilist: Moved ...
9077         * sysdeps/unix/sysv/linux/tile/tilepro/libdl.abilist: ... here.
9078         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libm.abilist: Moved ...
9079         * sysdeps/unix/sysv/linux/tile/tilepro/libm.abilist: ... here.
9080         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libnsl.abilist: Moved ...
9081         * sysdeps/unix/sysv/linux/tile/tilepro/libnsl.abilist: ... here.
9082         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libpthread.abilist:
9083         Moved ...
9084         * sysdeps/unix/sysv/linux/tile/tilepro/libpthread.abilist: ... here.
9085         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libresolv.abilist:
9086         Moved ...
9087         * sysdeps/unix/sysv/linux/tile/tilepro/libresolv.abilist: ... here.
9088         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/librt.abilist: Moved ...
9089         * sysdeps/unix/sysv/linux/tile/tilepro/librt.abilist: ... here.
9090         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libthread_db.abilist:
9091         Moved ...
9092         * sysdeps/unix/sysv/linux/tile/tilepro/libthread_db.abilist: ... here.
9093         * sysdeps/unix/sysv/linux/tile/tilepro/nptl/libutil.abilist: Moved ...
9094         * sysdeps/unix/sysv/linux/tile/tilepro/libutil.abilist: ... here.
9095         * sysdeps/unix/sysv/linux/tile/nptl/vfork.S: Moved ...
9096         * sysdeps/unix/sysv/linux/tile/vfork.S: ... here.
9097         * sysdeps/unix/sysv/linux/tile/nptl/waitpid.S: Moved ...
9098         * sysdeps/unix/sysv/linux/tile/waitpid.S: ... here.
9099
9100 2014-06-10  Wilco  <wdijkstr@arm.com>
9101
9102         * math/test-fenv-return.c: New file.
9103         * math/Makefile: Add new test test-fenv-return.
9104
9105 2014-06-10  Joseph Myers  <joseph@codesourcery.com>
9106
9107         [BZ #17042]
9108         * sysdeps/i386/fpu/e_log2.S (__ieee754_log2): Take absolete value
9109         when x - 1 is zero.
9110         * sysdeps/i386/fpu/e_log2f.S (__ieee754_log2f): Likewise.
9111         * sysdeps/i386/fpu/e_log2l.S (__ieee754_log2l): Likewise.
9112         * sysdeps/ieee754/ldbl-128/e_log2l.c (__ieee754_log2l): Return
9113         0.0L for an argument of 1.0L.
9114         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l):
9115         Likewise.
9116         * sysdeps/x86_64/fpu/e_log2l.S (__ieee754_log2l): Take absolute
9117         value when x - 1 is zero.
9118         * math/libm-test.inc (log2_test): Use ALL_RM_TEST.
9119         * sysdeps/i386/fpu/libm-test-ulps: Update.
9120         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9121
9122 2014-06-09  Bernard Ogden  <bernie.ogden@linaro.org>
9123
9124         [BZ #15119]
9125         * ports/sysdeps/unix/sysv/linux/hppa/nptl/lowlevellock.c: Remove file.
9126
9127 2014-06-09  Roland McGrath  <roland@hack.frob.com>
9128
9129         * nptl/sysdeps/sh/tls.h (TLS_DEFINE_INIT_TP): New macro.
9130         * nptl/sysdeps/unix/sysv/linux/sh/createthread.c: File removed.
9131
9132 2014-06-09  Roland McGrath  <roland@hack.frob.com>
9133
9134         * sysdeps/m68k/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9135         * sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: File removed.
9136
9137         * sysdeps/hppa/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9138         * sysdeps/unix/sysv/linux/hppa/nptl/createthread.c: File removed.
9139
9140         * sysdeps/mips/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9141         * sysdeps/unix/sysv/linux/mips/nptl/createthread.c: File removed.
9142
9143         * sysdeps/arm/nptl/tls.h (TLS_DEFINE_INIT_TP): New macro.
9144         * sysdeps/unix/sysv/linux/arm/createthread.c: File removed.
9145
9146         * nptl/sysdeps/pthread/createthread.c (TLS_DEFINE_INIT_TP): New macro,
9147         if not already defined.
9148         (do_clone): Use that in place of PREPARE_CREATE and TLS_VALUE.
9149         * nptl/sysdeps/x86_64/tls.h (TLS_DEFINE_INIT_TP): New macro.
9150         * nptl/sysdeps/i386/tls.h (tls_fill_user_desc): New function.
9151         (TLS_INIT_TP): Use it.
9152         (TLS_DEFINE_INIT_TP): New macro.
9153         * sysdeps/unix/sysv/linux/i386/createthread.c: File removed.
9154
9155 2014-06-09  Joseph Myers  <joseph@codesourcery.com>
9156
9157         * conform/data/termios.h-data [POSIX] (IUCLC): Do not expect
9158         constant.
9159         [POSIX] (IXANY): Likewise.
9160         [POSIX] (OLCUC): Likewise.
9161         [POSIX || POSIX2008] (CBAUD): Do not allow.
9162         [POSIX || POSIX2008] (DEFECHO): Likewise.
9163         [POSIX || POSIX2008] (ECHOCTL): Likewise.
9164         [POSIX || POSIX2008] (ECHOKE): Likewise.
9165         [POSIX || POSIX2008] (ECHOPRT): Likewise.
9166         [POSIX || POSIX2008] (EXTA): Likewise.
9167         [POSIX || POSIX2008] (EXTB): Likewise.
9168         [POSIX || POSIX2008] (FLUSHO): Likewise.
9169         [POSIX || POSIX2008] (LOBLK): Likewise.
9170         [POSIX || POSIX2008] (PENDIN): Likewise.
9171         [POSIX || POSIX2008] (SWTCH): Likewise.
9172         [POSIX || POSIX2008] (VDISCARD): Likewise.
9173         [POSIX || POSIX2008] (VDSUSP): Likewise.
9174         [POSIX || POSIX2008] (VLNEXT): Likewise.
9175         [POSIX || POSIX2008] (VREPRINT): Likewise.
9176         [POSIX || POSIX2008] (VSTATUS): Likewise.
9177         [POSIX || POSIX2008] (VWERASE): Likewise.
9178         (B*): Change to B[0123456789]*.
9179         * conform/data/time.h-data [POSIX || UNIX98]
9180         (CLOCK_PROCESS_CPUTIME_ID): Do not expect constant.
9181         [POSIX || UNIX98] (CLOCK_THREAD_CPUTIME_ID): Likewise.
9182         [POSIX || UNIX98] (CLOCK_MONOTONIC): Likewise.
9183         [POSIX] (tm_*): Do not allow.
9184
9185 2014-06-07  Joseph Myers  <joseph@codesourcery.com>
9186
9187         * Makefile (install): Don't set LANGUAGE.
9188         * Makefile.in (install): Likewise.
9189         * assert/Makefile (test-assert-ENV): Remove variable.
9190         (test-assert-perr-ENV): Likewise.
9191         * elf/Makefile (neededtest4-ENV): Likewise.
9192         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
9193         [$(cross-compiling) = no]: Don't set LANGUAGE.
9194         * io/ftwtest-sh (LANG): Remove variable.
9195         * libio/Makefile (tst-widetext-ENV): Likewise.
9196         * manual/install.texi (Running make install): Don't refer to
9197         environment settings for make install.
9198         * INSTALL: Regenerated.
9199         * nptl/tst-tls6.sh: Don't set LANG.
9200         * posix/globtest.sh (LANG): Remove variable.
9201         * string/Makefile (tester-ENV): Likewise.
9202         (inl-tester-ENV): Likewise.
9203         (noinl-tester-ENV): Likewise.
9204         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
9205         [$(cross-compiling) = no]: Don't set LANGUAGE.
9206         * timezone/Makefile (build-testdata): Use $(built-program-cmd)
9207         without explicit environment settings.
9208
9209 2014-06-06  Roland McGrath  <roland@hack.frob.com>
9210
9211         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h: Moved ...
9212         * sysdeps/sh/nptl/bits/pthreadtypes.h: ... here.
9213         * nptl/sysdeps/unix/sysv/linux/sh/bits/semaphore.h: Moved ...
9214         * sysdeps/sh/nptl/bits/semaphore.h: ... here.
9215
9216 2014-06-06  Chris Metcalf  <cmetcalf@tilera.com>
9217
9218         * crypt/crypt-private.h [DOS]: Add some includes taken from the
9219         other files in the crypt directory.
9220         * crypt/crypt.c: Remove duplicate includes.
9221         * crypt/crypt-entry.c: Likewise.
9222         * crypt/crypt_util.c: Likewise.
9223
9224 2014-06-06  Joseph Myers  <joseph@codesourcery.com>
9225
9226         * Makeconfig (run-program-env): New variable.
9227         (run-program-prefix-before-env): Likewise.
9228         (run-program-prefix-after-env): Likewise.
9229         (run-program-prefix): Define in terms of new variables.
9230         (built-program-cmd-before-env): New variable.
9231         (built-program-cmd-after-env): Likewise.
9232         (built-program-cmd): Define in terms of new variables.
9233         (test-program-prefix-before-env): New variable.
9234         (test-program-prefix-after-env): Likewise.
9235         (test-program-prefix): Define in terms of new variables.
9236         (test-program-cmd-before-env): New variable.
9237         (test-program-cmd-after-env): Likewise.
9238         (test-program-cmd): Define in terms of new variables.
9239         * Rules (make-test-out): Use $(run-program-env).
9240         * scripts/cross-test-ssh.sh (env_blacklist): Remove variable.
9241         (help): Do not mention environment variables.  Mention
9242         --timeoutfactor option.
9243         (timeoutfactor): New variable.
9244         (blacklist_exports): Remove function.
9245         (exports): Remove variable.
9246         (command): Do not include ${exports}.
9247         * manual/install.texi (Configuring and compiling): Do not mention
9248         test wrappers preserving environment variables.  Mention that last
9249         assignment to a variable must take precedence.
9250         * INSTALL: Regenerated.
9251         * benchtests/Makefile (run-bench): Use $(run-program-env).
9252         * catgets/Makefile ($(objpfx)test1.cat): Use
9253         $(built-program-cmd-before-env), $(run-program-env) and
9254         $(built-program-cmd-after-env).
9255         ($(objpfx)test2.cat): Do not specify environment variables
9256         explicitly.
9257         ($(objpfx)de/libc.cat): Use $(built-program-cmd-before-env),
9258         $(run-program-env) and $(built-program-cmd-after-env).
9259         ($(objpfx)test-gencat.out): Use $(test-program-cmd-before-env),
9260         $(run-program-env) and $(test-program-cmd-after-env).
9261         ($(objpfx)sample.SJIS.cat): Do not specify environment variables
9262         explicitly.
9263         * catgets/test-gencat.sh: Use test_program_cmd_before_env,
9264         run_program_env and test_program_cmd_after_env arguments.
9265         * elf/Makefile ($(objpfx)tst-pathopt.out): Use $(run-program-env).
9266         * elf/tst-pathopt.sh: Use run_program_env argument.
9267         * iconvdata/Makefile ($(objpfx)iconv-test.out): Use
9268         $(test-wrapper-env) and $(run-program-env).
9269         * iconvdata/run-iconv-test.sh: Use test_wrapper_env and
9270         run_program_env arguments.
9271         * iconvdata/tst-table.sh: Do not set GCONV_PATH explicitly.
9272         * intl/Makefile ($(objpfx)tst-gettext.out): Use
9273         $(test-program-prefix-before-env), $(run-program-env) and
9274         $(test-program-prefix-after-env).
9275         ($(objpfx)tst-gettext2.out): Likewise.
9276         * intl/tst-gettext.sh: Use test_program_prefix_before_env,
9277         run_program_env and test_program_prefix_after_env arguments.
9278         * intl/tst-gettext2.sh: Likewise.
9279         * intl/tst-gettext4.sh: Do not set environment variables
9280         explicitly.
9281         * intl/tst-gettext6.sh: Likewise.
9282         * intl/tst-translit.sh: Likewise.
9283         * malloc/Makefile ($(objpfx)tst-mtrace.out): Use
9284         $(test-program-prefix-before-env), $(run-program-env) and
9285         $(test-program-prefix-after-env).
9286         * malloc/tst-mtrace.sh: Use test_program_prefix_before_env,
9287         run_program_env and test_program_prefix_after_env arguments.
9288         * math/Makefile (run-regen-ulps): Use $(run-program-env).
9289         * nptl/Makefile ($(objpfx)tst-tls6.out): Use $(run-program-env).
9290         * nptl/tst-tls6.sh: Use run_program_env argument.  Set LANG=C
9291         explicitly with each use of ${test_wrapper_env}.
9292         * posix/Makefile ($(objpfx)wordexp-tst.out): Use
9293         $(test-program-prefix-before-env), $(run-program-env) and
9294         $(test-program-prefix-after-env).
9295         * posix/tst-getconf.sh: Do not set environment variables
9296         explicitly.
9297         * posix/wordexp-tst.sh: Use test_program_prefix_before_env,
9298         run_program_env and test_program_prefix_after_env arguments.
9299         * stdio-common/tst-printf.sh: Do not set environment variables
9300         explicitly.
9301         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Use
9302         $(test-program-prefix-before-env), $(run-program-env) and
9303         $(test-program-prefix-after-env).
9304         * stdlib/tst-fmtmsg.sh: Use test_program_prefix_before_env,
9305         run_program_env and test_program_prefix_after_env arguments.
9306         Split $test calls into $test_pre and $test.
9307         * timezone/Makefile (build-testdata): Use
9308         $(built-program-cmd-before-env), $(run-program-env) and
9309         $(built-program-cmd-after-env).
9310
9311 2014-06-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9312
9313         * sysdeps/powerpc/powerpc64/power7/strncat.S [STRLEN]: Define it as
9314         strlen for non SHARED builds.
9315
9316 2014-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
9317
9318         * nptl/allocatestack.c (check_list): Inlined function...
9319         (__reclaim_stacks): ... here.
9320
9321 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
9322
9323         [BZ #15698]
9324         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs_internal): Fix
9325         memory overrun.
9326
9327 2014-06-05  Joseph Myers  <joseph@codesourcery.com>
9328
9329         * Rules (make-test-out): Include
9330         LOCPATH=$(common-objpfx)localedata in default environment.
9331         * debug/Makefile (tst-chk1-ENV): Remove variable.
9332         (tst-chk2-ENV): Likewise.
9333         (tst-chk3-ENV): Likewise.
9334         (tst-chk4-ENV): Likewise.
9335         (tst-chk5-ENV): Likewise.
9336         (tst-chk6-ENV): Likewise.
9337         (tst-lfschk1-ENV): Likewise.
9338         (tst-lfschk2-ENV): Likewise.
9339         (tst-lfschk3-ENV): Likewise.
9340         (tst-lfschk4-ENV): Likewise.
9341         (tst-lfschk5-ENV): Likewise.
9342         (tst-lfschk6-ENV): Likewise.
9343         * iconvdata/Makefile (bug-iconv6-ENV): Likewise.
9344         (tst-iconv7-ENV): Likewise.
9345         * intl/Makefile (LOCPATH-ENV): Likewise.
9346         (tst-codeset-ENV): Likewise.
9347         (tst-gettext3-ENV): Likewise.
9348         (tst-gettext5-ENV): Likewise.
9349         * libio/Makefile (tst-widetext-ENV): Don't set LOCPATH.
9350         (tst-fopenloc-ENV): Likewise.
9351         (tst-fgetws-ENV): Remove variable.
9352         (tst-ungetwc1-ENV): Likewise.
9353         (tst-ungetwc2-ENV): Likewise.
9354         (bug-ungetwc2-ENV): Likewise.
9355         (tst-swscanf-ENV): Likewise.
9356         (bug-ftell-ENV): Likewise.
9357         (tst-fgetwc-ENV): Likewise.
9358         (tst-fseek-ENV): Likewise.
9359         (tst-ftell-partial-wide-ENV): Likewise.
9360         (tst-ftell-active-handler-ENV): Likewise.
9361         (tst-ftell-append-ENV): Likewise.
9362         * posix/Makefile (tst-fnmatch-ENV): Likewise.
9363         (tst-regexloc-ENV): Likewise.
9364         (bug-regex1-ENV): Likewise.
9365         (tst-regex-ENV): Likewise.
9366         (tst-regex2-ENV): Likewise.
9367         (bug-regex5-ENV): Likewise.
9368         (bug-regex6-ENV): Likewise.
9369         (bug-regex17-ENV): Likewise.
9370         (bug-regex18-ENV): Likewise.
9371         (bug-regex19-ENV): Likewise.
9372         (bug-regex20-ENV): Likewise.
9373         (bug-regex22-ENV): Likewise.
9374         (bug-regex23-ENV): Likewise.
9375         (bug-regex25-ENV): Likewise.
9376         (bug-regex26-ENV): Likewise.
9377         (bug-regex30-ENV): Likewise.
9378         (bug-regex32-ENV): Likewise.
9379         (bug-regex33-ENV): Likewise.
9380         (bug-regex34-ENV): Likewise.
9381         (bug-regex35-ENV): Likewise.
9382         (tst-rxspencer-ENV): Likewise.
9383         (tst-rxspencer-no-utf8-ENV): Likewise.
9384         * stdio-common/Makefile (tst-sprintf-ENV): Likewise.
9385         (tst-sscanf-ENV): Likewise.
9386         (tst-swprintf-ENV): Likewise.
9387         (tst-swscanf-ENV): Likewise.
9388         (test-vfprintf-ENV): Likewise.
9389         (scanf13-ENV): Likewise.
9390         (bug14-ENV): Likewise.
9391         (tst-grouping-ENV): Likewise.
9392         * stdlib/Makefile (tst-strtod-ENV): Likewise.
9393         (tst-strtod3-ENV): Likewise.
9394         (tst-strtod4-ENV): Likewise.
9395         (tst-strtod5-ENV): Likewise.
9396         (testmb2-ENV): Likewise./
9397         * string/Makefile (tst-strxfrm-ENV): Likewise.
9398         (tst-strxfrm2-ENV): Likewise.
9399         (bug-strcoll1-ENV): Likewise.
9400         (test-strcasecmp-ENV): Likewise.
9401         (test-strncasecmp-ENV): Likewise.
9402         * time/Makefile (tst-strptime-ENV): Likewise.
9403         (tst-ftime_l-ENV): Likewise.
9404         * wcsmbs/Makefile (tst-btowc-ENV): Likewise.
9405         (tst-mbrtowc-ENV): Likewise.
9406         (tst-wcrtomb-ENV): Likewise.
9407         (tst-mbrtowc2-ENV): Likewise.
9408         (tst-c16c32-1-ENV): Likewise.
9409         (tst-mbsnrtowcs-ENV): Likewise.
9410
9411 2014-06-05  Ondřej Bílka  <neleai@seznam.cz>
9412
9413         * manual/resource.texi (How to get information about the memory
9414         subsystem?): Fix typo.
9415         Reported by Peon de la Parra Ivan <peon@keba.com>
9416
9417 2014-06-03  Guo Yixuan  <culu.gyx@gmail.com>
9418
9419         [BZ #16882]
9420         * nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
9421         (pthread_spin_lock): Branch out of spin loop to proper location.
9422         * nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
9423         (pthread_spin_lock): Likewise.
9424
9425         * nptl/tst-spin4.c: New test.
9426         * nptl/Makefile (tests): Add tst-spin4.
9427
9428 2014-06-03  Andreas Schwab  <schwab@suse.de>
9429
9430         [BZ #15946]
9431         * resolv/res_send.c (send_dg): Reload file descriptor after
9432         calling reopen.
9433
9434 2014-06-03  Stefan Liebler  <stli@linux.vnet.ibm.com>
9435
9436         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
9437
9438 2014-06-03  Richard Henderson  <rth@redhat.com>
9439
9440         * sysdeps/unix/sysv/linux/aarch64/pt-vfork.c: New file.
9441         * sysdeps/unix/sysv/linux/aarch64/nptl/pt-vfork.S: Remove file.
9442         * sysdeps/unix/sysv/linux/aarch64/vfork.S (__vfork): Incorporate
9443         SAVE_PID and RESTORE_PID blocks from pt-vfork.S.  Map 0 to INT_MIN
9444         in the SAVE_PID block.
9445         (__libc_vfork): New alias.
9446         * sysdeps/unix/sysv/linux/aarch64/nptl/vfork.S: Remove file.
9447
9448         * sysdeps/unix/sysv/linux/aarch64/clone.S (__clone): Save args for
9449         child in registers, not on the stack.  Remove RESET_PID conditionals.
9450         * sysdeps/unix/sysv/linux/aarch64/nptl/clone.S: Remove file.
9451
9452 2014-06-03  Marcus Shawcroft  <marcus.shawcroft@arm.com>
9453
9454         * sysdeps/aarch64/libm-test-ulps: Regenerate.
9455
9456 2014-06-03  Wilco  <wdijkstr@arm.com>
9457
9458         * sysdeps/aarch64/fpu/math_private.h (libc_fesetround_aarch64)
9459         (libc_feholdexcept_setround_aarch64) (libc_feholdsetround_aarch64)
9460         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
9461         Use _FPU_FPCR_RM_MASK for rounding mask rather than FE_TOWARDZERO.
9462         * sysdeps/aarch64/fpu/get-rounding-mode.h (get_rounding_mode):
9463         Likewise.
9464
9465 2014-06-03  Wilco  <wdijkstr@arm.com>
9466
9467         * sysdeps/aarch64/fpu/math_private.h
9468         (libc_feholdexcept_aarch64) (libc_feholdexcept_setround_aarch64)
9469         (libc_fetestexcept_aarch64) (libc_fesetenv_aarch64)
9470         (libc_feupdateenv_test_aarch64) (libc_feholdsetround_aarch64)
9471         (libc_feresetround_aarch64) (libc_feholdsetround_aarch64_ctx):
9472         Fix declarations.
9473
9474 2014-06-03  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
9475
9476         * crypt/crypt-private.h: Include ufc-crypt.h.
9477         (__b64_from_24bit): Declare extern.
9478         * crypt/crypt_util.c(__b64_from_24bit): New function.
9479         (b64t): New static const variable.
9480         * crypt/md5-crypt.c (b64_from_24bit): Remove function.
9481         (b64t): Remove variable.
9482         (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit.
9483         * crypt/sha256-crypt.c: Include crypt-private.h.
9484         (b64t): Remove variable.
9485         (__sha256_crypt_r): Remove b64_from_24bit and replace
9486         with __b64_from_24bit.
9487         * crypt/sha512-crypt.c: Likewise.
9488
9489 2014-06-02  Roland McGrath  <roland@hack.frob.com>
9490
9491         * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ...
9492         * sysdeps/unix/sysv/linux/sh/vfork.S: ... here.
9493         Label the code __libc_vfork rather than __vfork.
9494         [!NOT_IN_libc] (vfork): Define as weak alias.
9495         [!NOT_IN_libc] (__vfork): Define as strong alias, and libc_hidden_def.
9496         * sysdeps/unix/sysv/linux/sh/pt-vfork.S: New file.
9497         * nptl/sysdeps/unix/sysv/linux/sh/pt-vfork.S: File removed.
9498
9499 2014-06-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
9500
9501         * malloc/malloc.c (malloc_info): Fix format specifier for
9502         n_mmaps.
9503
9504 2014-06-02  Wilco  <wdijkstr@arm.com>
9505
9506         * sysdeps/aarch64/fpu/fpu_control.h (_FPU_SETCW): Remove ISB after
9507         FPCR write.
9508
9509 2014-06-02  Wilco  <wdijkstr@arm.com>
9510
9511         [BZ #17009]
9512         * sysdeps/aarch64/fpu/feupdateenv (feupdateenv):
9513         Rewrite to reduce FPCR/FPSR accesses.
9514
9515 2014-06-01  David S. Miller  <davem@davemloft.net>
9516
9517         * sysdeps/sparc/fpu/libm-test-ulps: Update.
9518
9519 2014-05-31  David S. Miller  <davem@davemloft.net>
9520
9521         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Force computations
9522         to occur in round to nearest mode when |x| >= 2.0
9523
9524 2014-05-30  Richard Henderson  <rth@twiddle.net>
9525
9526         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Remove.
9527         (PSEUDO_RET_NOERRNO): Remove.
9528         (ret): Don't redefine.
9529         (ret_NOERRNO): Define in terms of ret.
9530         (ret_ERRVAL): Likewise.
9531
9532         * sysdeps/unix/sysv/linux/aarch64/ioctl.S (__ioctl): Remove the
9533         use of PSEUDO_RET; perform the error check directly.
9534
9535 2014-05-30 Marko Myllynen  <myllynen@redhat.com>
9536
9537         * sysdeps/x86_64/link-defines.sym (BND_SIZE): Replace __int128
9538         with __int128_t.
9539
9540 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
9541
9542         * malloc/malloc (malloc_info): Fix formatting.
9543
9544 2014-05-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
9545             Roland McGrath  <roland@hack.frob.com>
9546
9547         * malloc/malloc (malloc_info): Also print mmapped statistics.
9548
9549 2014-05-30  Roland McGrath  <roland@hack.frob.com>
9550
9551         * sysdeps/unix/sysv/linux/m68k/arch-fork.h: New file.
9552         * sysdeps/unix/sysv/linux/m68k/nptl/fork.c: File removed.
9553
9554 2014-05-30  Ondřej Bílka  <neleai@seznam.cz>
9555
9556         * malloc/malloc.c (malloc_info): Inline mi_arena.
9557
9558 2014-05-29  Richard Henderson  <rth@twiddle.net>
9559
9560         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (INTERNAL_VSYSCALL_NCS):
9561         Remove comma before expanding ASM_ARGS_##nr.
9562         (INTERNAL_SYSCALL_RAW): Make _sys_result signed, instead of casting.
9563         Make _x0 a strict output; make _x8 a strict input; adjust expansion
9564         of ASM_ARGS_##nr.
9565         (CLOBBER_ARGS_0, CLOBBER_ARGS_1, CLOBBER_ARGS_2): Remove.
9566         (CLOBBER_ARGS_3, CLOBBER_ARGS_4, CLOBBER_ARGS_5): Remove.
9567         (CLOBBER_ARGS_6, CLOBBER_ARGS_7): Remove.
9568         (ASM_ARGS_1): Add leading comma.
9569
9570         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [NOT_IN_libc]
9571         (SYSCALL_ERROR_HANDLER): Use tpidr_el0 instead of a call
9572         to __errno_location.
9573         * sysdeps/unix/sysv/linux/aarch64/nptl/localplt.data (libpthread.so):
9574         Remove the expected plt for __errno_location.
9575
9576         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9577         [NOT_IN_libc] (SINGLE_THREAD_P): Use tpidr_el0 instead of a
9578         call to __read_tp.
9579
9580         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9581         Always allocate 64 bytes of stack frame.  Use ldp/stp to create
9582         it and break it down.
9583         (DOCARGS_0, DOCARGS_1): Do nothing.
9584         (DOCARGS_2): Update to store into the new stack frame.
9585         (DOCARGS_3, DOCARGS_4, DOCARGS_5, DOCARGS_6): Likewise.
9586         (UNDOCARGS_1): Update to restore from the new stack frame.
9587         (UNDOCARGS_2, UNDOCARGS_3, UNDOCARGS_4): Likewise.
9588         (UNDOCARGS_5, UNDOCARGS_6): Likewise.
9589
9590         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9591         (SINGLE_THREAD_P): New parameter for result regno.
9592         (PSEUDO): Update to match; use cbz instead of beq.
9593
9594         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9595         Use ENTRY to define the _nocancel entry point.  Share the syscall
9596         and syscall error check paths with the cancel path.
9597         (PSEUDO_END): New.
9598
9599         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h: Adjust
9600         whitespace; tabs before and after asm mnemonics.
9601
9602 2014-05-29  Eric Wong  <normalperson@yhbt.net>
9603
9604         [BZ #15132]
9605         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
9606         Call fstat64 or stat64 internally, depending on arguments passed.
9607         Replace stat buffer argument with file descriptor argument.
9608         (INTERNAL_STATVFS): Update arguments to match __statvfs_getflags.
9609         * sysdeps/unix/sysv/linux/fstatvfs.c (fstatvfs):
9610         Pass fd to __internal_statvfs instead of calling fstat64.
9611         * sysdeps/unix/sysv/linux/fstatvfs64.c (__fstatvfs64):
9612         Pass fd to __internal_statvfs64 instead of calling fstat64.
9613         * sysdeps/unix/sysv/linux/statvfs.c (statvfs):
9614         Pass -1 to __internal_statvfs instead of calling stat64.
9615         * sysdeps/unix/sysv/linux/statvfs64.c (__statvfs64):
9616         Pass -1 to __internal_statvfs64 instead of calling stat64.
9617
9618 2014-05-28  Roland McGrath  <roland@hack.frob.com>
9619
9620         * sysdeps/unix/sysv/linux/sh/clone.S: Deconditionalize the code
9621         that was previously under [RESET_PID].
9622         * nptl/sysdeps/unix/sysv/linux/sh/clone.S: File removed.
9623
9624         * sysdeps/unix/sysv/linux/tile/arch-fork.h: New file.
9625         * sysdeps/unix/sysv/linux/tile/nptl/fork.c: File removed.
9626
9627 2014-05-27  Roland McGrath  <roland@hack.frob.com>
9628
9629         * sysdeps/unix/sysv/linux/ia64/arch-fork.h: New file.
9630
9631         * sysdeps/unix/sysv/linux/sh/arch-fork.h: New file.
9632         * nptl/sysdeps/unix/sysv/linux/sh/fork.c: File removed.
9633
9634 2014-05-27  Ondřej Bílka  <neleai@seznam.cz>
9635
9636         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate code.
9637
9638 2014-05-27  Andreas Schwab  <schwab@suse.de>
9639
9640         * csu/libc-tls.c (__libc_setup_tls): Remove second argument from
9641         TLS_INIT_TP macro.
9642         * elf/dl-load.c (_dl_map_object_from_fd): Likewise.
9643         * elf/rtld.c (init_tls, dl_main): Likewise.
9644         * nptl/sysdeps/i386/tls.h (TLS_INIT_TP): Likewise.
9645         * nptl/sysdeps/powerpc/tls.h (TLS_INIT_TP): Likewise.
9646         * nptl/sysdeps/s390/tls.h (TLS_INIT_TP): Likewise.
9647         * nptl/sysdeps/sh/tls.h (TLS_INIT_TP): Likewise.
9648         * nptl/sysdeps/sparc/tls.h (TLS_INIT_TP): Likewise.
9649         * nptl/sysdeps/x86_64/tls.h (TLS_INIT_TP): Likewise.
9650         * sysdeps/aarch64/nptl/tls.h (TLS_INIT_TP): Likewise.
9651         * sysdeps/alpha/nptl/tls.h (TLS_INIT_TP): Likewise.
9652         * sysdeps/arm/nptl/tls.h (TLS_INIT_TP): Likewise.
9653         * sysdeps/hppa/nptl/tls.h (TLS_INIT_TP): Likewise.
9654         * sysdeps/ia64/nptl/tls.h (TLS_INIT_TP): Likewise.
9655         * sysdeps/m68k/nptl/tls.h (TLS_INIT_TP): Likewise.
9656         * sysdeps/mach/hurd/i386/tls.h (_hurd_tls_init): Likewise.
9657         * sysdeps/microblaze/nptl/tls.h (TLS_INIT_TP): Likewise.
9658         * sysdeps/mips/nptl/tls.h (TLS_INIT_TP): Likewise.
9659         * sysdeps/tile/nptl/tls.h (TLS_INIT_TP): Likewise.
9660         * sysdeps/generic/tls.h: Update description.
9661
9662 2014-05-27  Will Newton  <will.newton@linaro.org>
9663
9664         [BZ #16990]
9665         * sysdeps/arm/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Save
9666         and restore r2 rather than just restoring.
9667
9668 2014-05-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
9669
9670         [BZ #16724]
9671         * libio/tst-ftell-append.c: New test case.
9672         * libio/Makefile (tests): Add test case.
9673         * libio/fileops.c (do_ftell): Don't trust _IO_read_end when in
9674         append mode.
9675         * libio/wfileops.c (do_ftell_wide): Likewise.
9676
9677 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9678
9679         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
9680
9681         * nptl/sysdeps/unix/sysv/linux/powerpc/Versions: Remove, merge into
9682         ...
9683         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions: ... here.
9684         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
9685         * nptl/sysdeps/unix/sysv/linux/powerpc/Makefile: Moved rules to ...
9686         * sysdeps/unix/sysv/linux/powerpc/Makefile: ... here.
9687         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: Moved ...
9688         * sysdeps/unix/sysv/linux/powerpc/bits/local_lim.h: ... here.
9689         * nptl/sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: Moved ...
9690         * sysdeps/unix/sysv/linux/powerpc/lowlevellock.h: ...here.
9691         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h:
9692         Moved ...
9693         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep-cancel.h: ... here.
9694         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h:
9695         Moved ...
9696         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep-cancel.h: ... here.
9697         * nptl/sysdeps/unix/sysv/linux/powerpc/createthread.c: Moved ...
9698         * sysdeps/unix/sysv/linux/powerpc/createthread.c: ... here.
9699         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Moved ...
9700         * sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: ... here.
9701         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: Moved
9702         ...
9703         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstack.c: ... here.
9704         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c:
9705         Moved ...
9706         * sysdeps/unix/sysv/linux/powerpc/pthread_attr_setstacksize.c: ...
9707         here.
9708         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: Moved
9709         ...
9710         * sysdeps/unix/sysv/linux/powerpc/pthread_spin_unlock.c: ... here.
9711         * nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c: Moved ...
9712         * sysdeps/unix/sysv/linux/powerpc/sem_post.c: ... here.
9713
9714         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Moved ...
9715         * sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: ... here.
9716         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: Moved ...
9717         * sysdeps/unix/sysv/linux/powerpc/bits/semaphore.h: ... here.
9718
9719         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Remove,
9720         merge into ...
9721         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: ... here.
9722         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: Moved
9723         ...
9724         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c: ... here.
9725         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: Moved
9726         ...
9727         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c: ... here.
9728         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
9729         Moved ...
9730         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c: ...
9731         here.
9732         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
9733         Moved ...
9734         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c: ... here.
9735         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
9736         Moved ...
9737         * sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c: ... here.
9738
9739         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Remove
9740         conditional [RESET_PID].
9741         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Likewise.
9742         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: File
9743         removed.
9744         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: File
9745         removed.
9746
9747         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: Include
9748         <tcb-offsets.h>.
9749         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
9750         (__libc_vfork): New strong alias.
9751         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/pt-vfork.S: File
9752         removed.
9753         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S: File
9754         Removed.
9755
9756         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: Include
9757         <tcb-offsets.h>.
9758         (__vfork): Incorporate save/retore of PID from nptl/vfork.S here.
9759         (__libc_vfork): New strong alias.
9760         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/pt-vfork.S: File
9761         removed.
9762         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S: File
9763         removed.
9764
9765 2014-05-26  Carlos O'Donell  <carlos@redhat.com>
9766
9767         * malloc/malloc.c (mi_arena): New function.
9768         (malloc_info): Remove nested function mi_arena. Call non-nosted
9769         function mi_arena.
9770
9771 2014-05-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9772
9773         * sysdeps/powerpc/powerpc32/power4/memset.S (memset): Replace insrdi
9774         by insrwi.
9775         * sysdeps/powerpc/powerpc32/power6/memset.S (memset): Likewise.
9776         * sysdeps/powerpc/powerpc32/power7/memset.S (memset): Likewise.
9777         * sysdeps/powerpc/powerpc32/power7/memchr.S (memchr): Likewise.
9778         * sysdeps/powerpc/powerpc32/power7/memrchr.S (memrchr): Likewise.
9779         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S (rawmemchr): Likewise.
9780         * sysdeps/powerpc/powerpc32/power7/strchr.S (strchr): Likewise.
9781         * sysdeps/powerpc/powerpc32/power7/strchrnul.S (strchrnul): Likewise.
9782
9783 2014-05-26  Andreas Schwab  <schwab@suse.de>
9784
9785         [BZ #16984]
9786         * locale/programs/repertoire.c (repertoire_read): Add slash
9787         between I18NPATH element and file name.
9788         * locale/programs/locfile.c (locfile_read): Likewise.
9789
9790 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
9791
9792         * nptl/pthread_mutexattr_settype.c
9793         (__pthread_mutexattr_settype):
9794         Disable lock elision for PTHREAD_MUTEX_NORMAL.
9795
9796 2014-05-26  Stefan Liebler  <stli@linux.vnet.ibm.com>
9797
9798         * nptl/tst-mutex5 (do_test):
9799         Use #ifndef ENABLE_LOCK_ELISION instead of #ifdef.
9800
9801 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
9802
9803         * benchtests/README: Document 'init' directive.
9804         * benchtests/bench-skeleton.c (main) [BENCH_INIT]: Call
9805         BENCH_INIT.
9806         * scripts/bench.py (gen_source): Define BENCH_INIT macro.
9807         (parse_file): Recognize 'init' directive.
9808
9809 2014-05-26  Kyle McMartin  <kyle@redhat.com>
9810
9811         [BZ #16796]
9812         * sysdeps/aarch64/nptl/tls.h: increase TCB alignment to the
9813         alignment of struct pthread.
9814
9815 2014-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
9816
9817         [BZ #16878]
9818         * nscd/netgroupcache.c (addgetnetgrentX): Look for
9819         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
9820         * nscd/nss_files/files-netgrp.c (_nss_netgroup_parseline): Use
9821         NSS_STATUS_TRYAGAIN to indicate insufficient buffer space.
9822
9823 2014-05-25  Richard Henderson  <rth@twiddle.net>
9824
9825         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
9826         (SINGLE_THREAD_P_PIC): Remove.
9827         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h
9828         (SINGLE_THREAD_P_PIC): Remove.
9829
9830         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (PSEUDO_RET): Move
9831         branch to syscall error ...
9832         (PSEUDO): ... here.
9833         [NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Rename the label
9834         from __local_syscall_error to .Lsyscall_error.
9835         [!NOT_IN_libc] (SYSCALL_ERROR_HANDLER): Branch to __syscall_error.
9836         (SYSCALL_ERROR): Update label name.
9837
9838         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
9839         Do not use DOARGS/UNDOARGS.
9840         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Likewise.
9841         (DOARGS_0, DOARGS_1, DOARGS_2, DOARGS_3): Remove.
9842         (DOARGS_4, DOARGS_5, DOARGS_6, DOARGS_7): Remove.
9843         (UNDOARGS_0, UNDOARGS_1, UNDOARGS_2, UNDOARGS_3): Remove.
9844         (UNDOARGS_4, UNDOARGS_5, UNDOARGS_6, UNDOARGS_7): Remove.
9845
9846         * sysdeps/unix/sysv/linux/aarch64/sysdep.h (DO_CALL): Fix
9847         block comment.
9848
9849         * sysdeps/unix/sysv/linux/alpha/vfork.S (vfork, __vfork): Only
9850         define if !NOT_IN_libc.
9851         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S (vfork, __vfork): Only
9852         define with non-default symbol versions.
9853
9854 2014-05-23  Richard Henderson  <rth@twiddle.net>
9855
9856         * nptl/pt-vfork.c (vfork_resolve): Rename from vfork_ifunc.
9857         (vfork, __vfork): Define via compat_symbol.
9858
9859         * nptl/pt-vfork.c: Error if !HAVE_IFUNC.
9860         [!HAVE_IFUNC] (vfork_compat): Remove.
9861         [!HAVE_IFUNC] (DEFINE_VFORK): Remove.
9862
9863 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
9864
9865         [BZ #16978]
9866         * posix/tar.h [!__USE_XOPEN2K] (TSVTX): Define macro.
9867         * conform/Makefile (test-xfail-POSIX/tar.h/conform): Remove
9868         variable.
9869
9870 2014-05-23  Richard Henderson  <rth@twiddle.net>
9871
9872         * sysdeps/unix/sysv/linux/alpha/nptl/Makefile: Merge into...
9873         * sysdeps/unix/sysv/linux/alpha/Makefile: ... here.
9874         * sysdeps/unix/sysv/linux/alpha/nptl/Versions: Merge into...
9875         * sysdeps/unix/sysv/linux/alpha/Versions: ... here.
9876
9877         * sysdeps/unix/sysv/linux/alpha/nptl/aio_cancel.c: Moved ...
9878         * sysdeps/unix/sysv/linux/alpha/aio_cancel.c: ... here.
9879         * sysdeps/unix/sysv/linux/alpha/nptl/bits/local_lim.h: Moved ...
9880         * sysdeps/unix/sysv/linux/alpha/bits/local_lim.h: ... here.
9881         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h: Moved ...
9882         * sysdeps/unix/sysv/linux/alpha/bits/pthreadtypes.h: ... here.
9883         * sysdeps/unix/sysv/linux/alpha/nptl/bits/semaphore.h: Moved ...
9884         * sysdeps/unix/sysv/linux/alpha/bits/semaphore.h: ... here.
9885         * sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data: Moved ...
9886         * sysdeps/unix/sysv/linux/alpha/c++-types.data: ... here.
9887         * sysdeps/unix/sysv/linux/alpha/nptl/createthread.c: Moved ...
9888         * sysdeps/unix/sysv/linux/alpha/createthread.c: ... here.
9889         * sysdeps/unix/sysv/linux/alpha/nptl/ld.abilist: Moved ...
9890         * sysdeps/unix/sysv/linux/alpha/ld.abilist: ... here.
9891         * sysdeps/unix/sysv/linux/alpha/nptl/libBrokenLocale.abilist: Moved ...
9892         * sysdeps/unix/sysv/linux/alpha/libBrokenLocale.abilist: ... here.
9893         * sysdeps/unix/sysv/linux/alpha/nptl/libanl.abilist: Moved ...
9894         * sysdeps/unix/sysv/linux/alpha/libanl.abilist: ... here.
9895         * sysdeps/unix/sysv/linux/alpha/nptl/libc.abilist: Moved ...
9896         * sysdeps/unix/sysv/linux/alpha/libc.abilist: ... here.
9897         * sysdeps/unix/sysv/linux/alpha/nptl/libcrypt.abilist: Moved ...
9898         * sysdeps/unix/sysv/linux/alpha/libcrypt.abilist: ... here.
9899         * sysdeps/unix/sysv/linux/alpha/nptl/libdl.abilist: Moved ...
9900         * sysdeps/unix/sysv/linux/alpha/libdl.abilist: ... here.
9901         * sysdeps/unix/sysv/linux/alpha/nptl/libm.abilist: Moved ...
9902         * sysdeps/unix/sysv/linux/alpha/libm.abilist: ... here.
9903         * sysdeps/unix/sysv/linux/alpha/nptl/libnsl.abilist: Moved ...
9904         * sysdeps/unix/sysv/linux/alpha/libnsl.abilist: ... here.
9905         * sysdeps/unix/sysv/linux/alpha/nptl/libpthread.abilist: Moved ...
9906         * sysdeps/unix/sysv/linux/alpha/libpthread.abilist: ... here.
9907         * sysdeps/unix/sysv/linux/alpha/nptl/libresolv.abilist: Moved ...
9908         * sysdeps/unix/sysv/linux/alpha/libresolv.abilist: ... here.
9909         * sysdeps/unix/sysv/linux/alpha/nptl/librt.abilist: Moved ...
9910         * sysdeps/unix/sysv/linux/alpha/librt.abilist: ... here.
9911         * sysdeps/unix/sysv/linux/alpha/nptl/libthread_db.abilist: Moved ...
9912         * sysdeps/unix/sysv/linux/alpha/libthread_db.abilist: ... here.
9913         * sysdeps/unix/sysv/linux/alpha/nptl/libutil.abilist: Moved ...
9914         * sysdeps/unix/sysv/linux/alpha/libutil.abilist: ... here.
9915         * sysdeps/unix/sysv/linux/alpha/nptl/localplt.data: Moved ...
9916         * sysdeps/unix/sysv/linux/alpha/localplt.data: ... here.
9917         * sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h: Moved ...
9918         * sysdeps/unix/sysv/linux/alpha/lowlevellock.h: ... here.
9919         * sysdeps/unix/sysv/linux/alpha/nptl/sem_post.c: Moved ...
9920         * sysdeps/unix/sysv/linux/alpha/sem_post.c: ... here.
9921         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h: Moved ...
9922         * sysdeps/unix/sysv/linux/alpha/sysdep-cancel.h: ... here.
9923         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Moved ...
9924         * sysdeps/unix/sysv/linux/alpha/timer_create.c: ... here.
9925         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Moved ...
9926         * sysdeps/unix/sysv/linux/alpha/timer_delete.c: ... here.
9927         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Moved ...
9928         * sysdeps/unix/sysv/linux/alpha/timer_getoverr.c: ... here.
9929         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Moved ...
9930         * sysdeps/unix/sysv/linux/alpha/timer_gettime.c: ... here.
9931         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Moved ...
9932         * sysdeps/unix/sysv/linux/alpha/timer_settime.c: ... here.
9933
9934         * sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove vfork.
9935         * sysdeps/unix/sysv/linux/alpha/nptl/vfork.S: Move file ...
9936         * sysdeps/unix/sysv/linux/alpha/vfork.S: ... here.  Restore PID
9937         before exiting on error.
9938         (__libc_vfork): New strong alias.
9939         * sysdeps/unix/sysv/linux/alpha/nptl/pt-vfork.S: Remove file.
9940         * sysdeps/unix/sysv/linux/alpha/pt-vfork.S: New file.
9941
9942         * sysdeps/unix/sysv/linux/alpha/clone.S: Deconditionalize the code
9943         that was previously under [RESET_PID].
9944         * sysdeps/unix/sysv/linux/alpha/nptl/clone.S: File removed.
9945
9946         * sysdeps/unix/sysv/linux/alpha/nptl/fork.c: Remove file.
9947
9948 2014-05-23  Joseph Myers  <joseph@codesourcery.com>
9949
9950         [BZ #16977]
9951         * sysdeps/i386/fpu/e_log10.S (__ieee754_log10): Take absolute
9952         value when x - 1 is zero.
9953         * sysdeps/i386/fpu/e_log10f.S (__ieee754_log10f): Likewise.
9954         * sysdeps/i386/fpu/e_log10l.S (__ieee754_log10l): Likewise.
9955         * sysdeps/ieee754/ldbl-128/e_log10l.c (__ieee754_log10l): Return
9956         0.0L for an argument of 1.0L.
9957         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l):
9958         Likewise.
9959         * sysdeps/x86_64/fpu/e_log10l.S (__ieee754_log10l): Take absolute
9960         value when x - 1 is zero.
9961         * math/libm-test.inc (log10_test): Use ALL_RM_TEST.
9962         * sysdeps/i386/fpu/libm-test-ulps: Update.
9963         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
9964
9965 2014-05-23  Rasmus Villemoes  <rv@rasmusvillemoes.dk>
9966
9967         * manual/filesys.texi (Scanning Directory Content): Fix prototype of
9968         alphasort and versionsort.
9969
9970 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9971
9972         * sysdeps/powerpc/fpu/math_private.h [copysign]: Remove unneeded
9973         macro.
9974         [copysignf]: Likewise.
9975
9976 2014-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
9977
9978         * crypt/md5-crypt.c: Fix formatting.
9979
9980 2014-05-22  Kostya Serebryany  <konstantin.s.serebryany@gmail.com>
9981
9982         * crypt/md5-crypt.c (__md5_crypt_r): Remove a nested function.
9983         (b64_from_24bit): New function.
9984
9985 2014-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
9986
9987         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c (memchr): Remove
9988         libc_hidden_builtin_def to ifunc.
9989         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
9990         [libc_hidden_builtin_def]: Define hidden definition to __memchr_ppc32.
9991
9992 2014-05-21  Roland McGrath  <roland@hack.frob.com>
9993
9994         * sysdeps/unix/sysv/linux/aarch64/arch-fork.h: New file.
9995         * sysdeps/unix/sysv/linux/aarch64/nptl/fork.c: File removed.
9996
9997 2014-05-21  Joseph Myers  <joseph@codesourcery.com>
9998
9999         * nscd/Depend (linuxthreads): Remove.
10000         (nptl): Add.
10001         * resolv/Depend (linuxthreads): Remove.
10002         * rt/Depend (linuxthreads): Remove.
10003
10004         * Makeconfig [$(build-hardcoded-path-in-tests) = yes]
10005         (rtld-tests-LDFLAGS): Use $(elf-objpfx) instead of
10006         $(common-objpfx)elf/.
10007         (link-libc-before-gnulib): Likewise.
10008         (elfobjdir): Remove variable.
10009         * Makefile (install): Use $(elf-objpfx) instead of
10010         $(common-objpfx)elf/.
10011         * Makerules (link-libc-args): Use $(elf-objpfx) instead of
10012         $(elfobjdir)/.
10013         (link-libc-deps): Likewise.
10014         ($(common-objpfx)libc.so): Likewise.
10015         ($(common-objpfx)linkobj/libc.so): Likewise.
10016         [$(cross-compiling) = no] (symbolic-link-prog): Use $(elf-objpfx)
10017         instead of $(common-objpfx)elf/.
10018         (symbolic-link-list): Likewise.
10019         * iconvdata/Makefile ($(inst_gconvdir)/gconv-modules)
10020         [$(cross-compiling) = no]: Likewise.
10021         * sysdeps/arm/Makefile (gnulib-arch): Use $(elf-objpfx) instead of
10022         $(elfobjdir)/.
10023         (static-gnulib-arch): Likewise.
10024         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules)
10025         [$(cross-compiling) = no]: Use $(elf-objpfx) instead of
10026         $(common-objpfx)elf/.
10027
10028 2014-05-21  Richard Henderson  <rth@redhat.com>
10029
10030         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h
10031         (SINGLE_THREAD_P): Use the correct width load.  Fold
10032         into the ldr offset.
10033
10034         * sysdeps/unix/sysv/linux/aarch64/sysdep.h [RTLD_PRIVATE_ERRNO]
10035         (SYSCALL_ERROR_HANDLER): Fold add insn into str offset.
10036
10037 2014-05-20  Joseph Myers  <joseph@codesourcery.com>
10038
10039         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c
10040         (libgcc_s_resume): Use __attribute_used__.
10041         * sysdeps/unix/sysv/linux/arm/unwind-resume.c (libgcc_s_resume):
10042         Likewise.
10043
10044 2014-05-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10045
10046         * sysdeps/powerpc/fpu/math_private.h [__copysignf]: Fix copysign macro
10047         optimization when used with float constants.
10048
10049         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
10050
10051 2014-05-20  Aurelien Jarno  <aurelien@aurel32.net>
10052
10053         [BZ #16915]
10054         * locale/nl_langinfo_l.c: Make direct reference to every
10055         _nl_current_CATEGORY symbol.
10056         * localedata/Makefile (test-srcs): Add tst-langinfo-static.
10057         (tests-static): Add tst-langinfo-static.
10058         (tests-special): Add tst-langinfo-static.out.
10059         ($(objpfx)tst-langinfo.out): Redirect output.
10060         ($(objpfx)tst-langinfo-static.out): New.
10061         * localedata/tst-langinfo.sh: Send output to stdout.
10062         * localedata/tst-langinfo-static.c: New file.
10063
10064         [BZ #16965]
10065         * stdlib/strtod_l.c (round_and_return): Add code to shift limbs
10066         when the shift amount is modulo the limb size.
10067
10068 2014-05-20  Richard Henderson  <rth@redhat.com>
10069
10070         [BZ #16967]
10071         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h (struct sigaction):
10072         Change type of sa_flags from unsigned int to int.
10073
10074         [BZ #16966]
10075         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h: Remove file.
10076
10077         * sysdeps/alpha/dl-machine.h (ELF_MACHINE_NO_RELA): Define.
10078
10079 2014-05-20  Will Newton  <will.newton@linaro.org>
10080
10081         * sysdeps/unix/sysv/linux/aarch64/nptl/sysdep-cancel.h (PSEUDO):
10082         Test the return value of the system call in the nocancel case.
10083
10084 2014-05-20  Will Newton  <will.newton@linaro.org>
10085             Yvan Roux  <yvan.roux@linaro.org>
10086
10087         * sysdeps/unix/sysv/linux/aarch64/sys/user.h: Remove unused
10088         #include of asm/ptrace.h.
10089         (PTRACE_GET_THREAD_AREA): Remove #undef.
10090         (PTRACE_GETHBPREGS): Likewise.
10091         (PTRACE_SETHBPREGS): Likewise.
10092         (struct user_regs_struct): New structure.
10093         (struct user_fpsimd_struct): New structure.
10094         * sysdeps/unix/sysv/linux/aarch64/sys/procfs.h: Remove unused
10095         #include of asm/ptrace.h and second #include of sys/user.h.
10096         (PTRACE_GET_THREAD_AREA): Remove #undef.
10097         (PTRACE_GETHBPREGS): Likewise.
10098         (PTRACE_SETHBPREGS): Likewise.
10099         (ELF_NGREG): Use new struct user_regs_struct.
10100         (elf_fpregset_t): Use new struct user_fpsimd_struct.
10101
10102 2014-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10103
10104         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypof.c: Moved ...
10105         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c: ... here.
10106
10107 2014-05-17  Jose E. Marchesi  <jose.marchesi@oracle.com>
10108
10109         [BZ #16958]
10110         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Add missing
10111         membar to avoid block loads/stores to overlap previous stores.
10112
10113 2014-05-17  Richard Henderson  <rth@redhat.com>
10114
10115         * sysdeps/unix/sysv/linux/alpha/nptl/sysdep-cancel.h (PSEUDO):
10116         Create the __##syscall_name##_nocancel entry point.
10117         * sysdeps/unix/sysv/linux/alpha/sigsuspend.S (__sigsuspend_nocancel):
10118         Remove; let the sysdep-cancel.h code create it.
10119
10120 2014-05-17  David S. Miller  <davem@davemloft.net>
10121
10122         * sysdeps/unix/sysv/linux/sparc/bits/termios.h (PAGEOUT, WRAP):
10123         Protect with __USE_GNU.
10124         (TIOCSET_TEMPT): Likewise.
10125         (TIOCM_LE, TIOCM_DTR, TIOCM_RTS, TIOCM_ST, TIOCM_SR, TIOCM_CTS,
10126         TIOCM_CAR, TIOCM_RNG, TIOCM_DSR, TIOCM_CD, TIOCM_RI): Remove as
10127         these are already provided in bits/ioctl-types.h
10128
10129 2014-05-16  Roland McGrath  <roland@hack.frob.com>
10130
10131         * sysdeps/unix/sysv/linux/alpha/arch-fork.h: New file.
10132         * sysdeps/unix/sysv/linux/ia64/nptl/fork.c: File removed.
10133
10134         * sysdeps/unix/sysv/linux/not-cancel.h (waitpid_not_cancel):
10135         Use wait4 regardless of [__NR_waitpid].
10136
10137 2014-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
10138
10139         PR libgcc/60166
10140         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
10141         (_FP_NANSIGN_Q): Set the quiet bit.
10142
10143 2014-05-16  Joseph Myers  <joseph@codesourcery.com>
10144
10145         * benchtests/Makefile
10146         ($(addprefix $(objpfx)bench-,$(bench-math))): Depend on $(libm),
10147         not $(common-objpfx)math/libm.so.
10148         ($(addprefix $(objpfx)bench-,$(bench-pthread))): Depend on
10149         $(shared-thread-library), not $(common-objpfx)nptl/libpthread.so.
10150         * elf/Makefile ($(objpfx)noload): Depend on $(libdl), not
10151         $(common-objpfx)dlfcn/libdl.so.
10152         ($(objpfx)tst-audit8): Depend on $(libm), not
10153         $(common-objpfx)math/libm.so.
10154         * malloc/Makefile ($(objpfx)libmemusage.so): Depend on $(libdl),
10155         not $(common-objpfx)dlfcn/libdl.so.
10156         * math/Makefile
10157         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
10158         Depend on $(libm), not $(objpfx)libm.so.  Do not condition on
10159         [$(build-shared) = yes].
10160         ($(objpfx)test-fenv-tls): Depend on $(shared-thread-library), not
10161         $(common-objpfx)nptl/libpthread.so.
10162         * misc/Makefile ($(objpfx)tst-tsearch): Depend on $(libm), not
10163         $(common-objpfx)math/libm.so$(libm.so-version) or
10164         $(common-objpfx)math/libm.a depending on [$(build-shared) = yes].
10165         * nptl/Makefile ($(objpfx)tst-unload): Depend on $(libdl), not
10166         $(common-objpfx)dlfcn/libdl.so.
10167         * setjmp/Makefile (link-libm): Remove variable.
10168         ($(objpfx)tst-setjmp-fp): Depend on $(libm), not $(link-libm).
10169         * stdio-common/Makefile (link-libm): Remove variable.
10170         ($(objpfx)tst-printf-round): Depend on $(libm), not $(link-libm).
10171         * stdlib/Makefile (link-libm): Remove variable.
10172         ($(objpfx)bug-getcontext): Depend on $(libm), not $(link-libm).
10173         ($(objpfx)tst-strtod-round): Likewise.
10174         ($(objpfx)tst-tininess): Likewise.
10175         ($(objpfx)tst-strtod-underflow): Likewise.
10176         ($(objpfx)tst-strtod6): Likewise.
10177         ($(objpfx)tst-tls-atexit): Depend on $(shared-thread-library) and
10178         $(libdl), not $(common-objpfx)nptl/libpthread.so and
10179         $(common-objpfx)dlfcn/libdl.so.
10180
10181 2014-05-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
10182
10183         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_MISC]: Guard
10184         BSD terminal modes definitions.
10185
10186 2014-05-16  Roland McGrath  <roland@hack.frob.com>
10187
10188         * sysdeps/unix/sysv/linux/arm/arch-fork.h: New file.
10189         * sysdeps/unix/sysv/linux/arm/fork.c: File removed.
10190
10191         * sysdeps/unix/sysv/linux/arch-fork.h: New file.
10192         * sysdeps/unix/sysv/linux/i386/fork.h: Moved ...
10193         * sysdeps/unix/sysv/linux/i386/arch-fork.h: ... here.
10194         Don't do #include_next.
10195         * sysdeps/unix/sysv/linux/x86_64/fork.h: Moved ...
10196         * sysdeps/unix/sysv/linux/x86_64/arch-fork.h: ... here.
10197         Don't do #include_next.
10198         * sysdeps/unix/sysv/linux/mips/arch-fork.h: New file.
10199         * sysdeps/unix/sysv/linux/mips/fork.h: File removed.
10200         * sysdeps/unix/sysv/linux/powerpc/arch-fork.h: New file.
10201         * sysdeps/unix/sysv/linux/powerpc/fork.h: File removed.
10202
10203 2014-05-16  Allan McRae  <allan@archlinux.org>
10204
10205         * po/sv.po: Update Swedish translation from translation project.
10206
10207         * timezone/Makefile ($(objpfx)tzselect): Use correct variable
10208         in sed expression.
10209
10210 2014-05-16  Aurelien Jarno  <aurelien@aurel32.net>
10211
10212         [BZ #16917]
10213         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal): Return
10214         errno if the TIOCGPTN ioctl fails with an error different than
10215         EINVAL.
10216         * login/tst-ptsname.c: New file.
10217         * login/Makefile (tests): Add tst-ptsname.
10218
10219         [BZ #16943]
10220         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Declare prlimit
10221         and prlimit64.
10222
10223 2014-05-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
10224
10225         [BZ #16849]
10226         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only check for
10227         herrno to return EAI_AGAIN.
10228
10229 2014-05-14  Roland McGrath  <roland@hack.frob.com>
10230
10231         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: Moved ...
10232         * sysdeps/unix/sysv/linux/i386/c++-types.data: ... here.
10233         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: Moved ...
10234         * sysdeps/unix/sysv/linux/i386/ld.abilist: ... here.
10235         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: Moved ...
10236         * sysdeps/unix/sysv/linux/i386/libBrokenLocale.abilist: ... here.
10237         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: Moved ...
10238         * sysdeps/unix/sysv/linux/i386/libanl.abilist: ... here.
10239         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Moved ...
10240         * sysdeps/unix/sysv/linux/i386/libc.abilist: ... here.
10241         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: Moved ...
10242         * sysdeps/unix/sysv/linux/i386/libcrypt.abilist: ... here.
10243         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: Moved ...
10244         * sysdeps/unix/sysv/linux/i386/libdl.abilist: ... here.
10245         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: Moved ...
10246         * sysdeps/unix/sysv/linux/i386/libm.abilist: ... here.
10247         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: Moved ...
10248         * sysdeps/unix/sysv/linux/i386/libnsl.abilist: ... here.
10249         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Moved ...
10250         * sysdeps/unix/sysv/linux/i386/libpthread.abilist: ... here.
10251         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: Moved ...
10252         * sysdeps/unix/sysv/linux/i386/libresolv.abilist: ... here.
10253         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: Moved ...
10254         * sysdeps/unix/sysv/linux/i386/librt.abilist: ... here.
10255         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: Moved ...
10256         * sysdeps/unix/sysv/linux/i386/libthread_db.abilist: ... here.
10257         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: Moved ...
10258         * sysdeps/unix/sysv/linux/i386/libutil.abilist: ... here.
10259         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: Moved ...
10260         * sysdeps/unix/sysv/linux/i386/localplt.data: ... here.
10261         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: Moved ...
10262         * sysdeps/unix/sysv/linux/x86_64/64/c++-types.data: ... here.
10263         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Moved ...
10264         * sysdeps/unix/sysv/linux/x86_64/64/ld.abilist: ... here.
10265         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
10266         Moved ...
10267         * sysdeps/unix/sysv/linux/x86_64/64/libBrokenLocale.abilist: ... here.
10268         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Moved ...
10269         * sysdeps/unix/sysv/linux/x86_64/64/libanl.abilist: ... here.
10270         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Moved ...
10271         * sysdeps/unix/sysv/linux/x86_64/64/libc.abilist: ... here.
10272         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Moved ...
10273         * sysdeps/unix/sysv/linux/x86_64/64/libcrypt.abilist: ... here.
10274         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Moved ...
10275         * sysdeps/unix/sysv/linux/x86_64/64/libdl.abilist: ... here.
10276         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Moved ...
10277         * sysdeps/unix/sysv/linux/x86_64/64/libm.abilist: ... here.
10278         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Moved ...
10279         * sysdeps/unix/sysv/linux/x86_64/64/libnsl.abilist: ... here.
10280         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist: Moved ...
10281         * sysdeps/unix/sysv/linux/x86_64/64/libpthread.abilist: ... here.
10282         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist: Moved ...
10283         * sysdeps/unix/sysv/linux/x86_64/64/libresolv.abilist: ... here.
10284         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Moved ...
10285         * sysdeps/unix/sysv/linux/x86_64/64/librt.abilist: ... here.
10286         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist: Moved ...
10287         * sysdeps/unix/sysv/linux/x86_64/64/libthread_db.abilist: ... here.
10288         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Moved ...
10289         * sysdeps/unix/sysv/linux/x86_64/64/libutil.abilist: ... here.
10290         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data: Moved ...
10291         * sysdeps/unix/sysv/linux/x86_64/x32/c++-types.data: ... here.
10292         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: Moved ...
10293         * sysdeps/unix/sysv/linux/x86_64/x32/ld.abilist: ... here.
10294         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
10295         Moved ...
10296         * sysdeps/unix/sysv/linux/x86_64/x32/libBrokenLocale.abilist: ... here.
10297         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist: Moved ...
10298         * sysdeps/unix/sysv/linux/x86_64/x32/libanl.abilist: ... here.
10299         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Moved ...
10300         * sysdeps/unix/sysv/linux/x86_64/x32/libc.abilist: ... here.
10301         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist: Moved ...
10302         * sysdeps/unix/sysv/linux/x86_64/x32/libcrypt.abilist: ... here.
10303         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist: Moved ...
10304         * sysdeps/unix/sysv/linux/x86_64/x32/libdl.abilist: ... here.
10305         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist: Moved ...
10306         * sysdeps/unix/sysv/linux/x86_64/x32/libm.abilist: ... here.
10307         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist: Moved ...
10308         * sysdeps/unix/sysv/linux/x86_64/x32/libnsl.abilist: ... here.
10309         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist: Moved ...
10310         * sysdeps/unix/sysv/linux/x86_64/x32/libpthread.abilist: ... here.
10311         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist: Moved ...
10312         * sysdeps/unix/sysv/linux/x86_64/x32/libresolv.abilist: ... here.
10313         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist: Moved ...
10314         * sysdeps/unix/sysv/linux/x86_64/x32/librt.abilist: ... here.
10315         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
10316         Moved ...
10317         * sysdeps/unix/sysv/linux/x86_64/x32/libthread_db.abilist: ... here.
10318         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist: Moved ...
10319         * sysdeps/unix/sysv/linux/x86_64/x32/libutil.abilist: ... here.
10320
10321         * nptl/sysdeps/unix/sysv/linux/x86/Makefile: File removed.
10322         * sysdeps/unix/sysv/linux/x86/Makefile [$(subdir) = nptl]
10323         (libpthread-sysdep_routines): Add elision-related stuff here instead.
10324         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.c: Moved ...
10325         * sysdeps/unix/sysv/linux/x86/elision-conf.c: ... here.
10326         * nptl/sysdeps/unix/sysv/linux/x86/elision-conf.h: Moved ...
10327         * sysdeps/unix/sysv/linux/x86/elision-conf.h: ... here.
10328         * nptl/sysdeps/unix/sysv/linux/x86/elision-lock.c: Moved ...
10329         * sysdeps/unix/sysv/linux/x86/elision-lock.c: ... here.
10330         * nptl/sysdeps/unix/sysv/linux/x86/elision-timed.c: Moved ...
10331         * sysdeps/unix/sysv/linux/x86/elision-timed.c: ... here.
10332         * nptl/sysdeps/unix/sysv/linux/x86/elision-trylock.c: Moved ...
10333         * sysdeps/unix/sysv/linux/x86/elision-trylock.c: ... here.
10334         * nptl/sysdeps/unix/sysv/linux/x86/elision-unlock.c: Moved ...
10335         * sysdeps/unix/sysv/linux/x86/elision-unlock.c: ... here.
10336         * nptl/sysdeps/unix/sysv/linux/x86/force-elision.h: Moved ...
10337         * sysdeps/unix/sysv/linux/x86/force-elision.h: ... here.
10338         * nptl/sysdeps/unix/sysv/linux/x86/hle.h: Moved ...
10339         * sysdeps/unix/sysv/linux/x86/hle.h: ... here.
10340         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.c: Moved ...
10341         * sysdeps/unix/sysv/linux/x86/init-arch.c: ... here.
10342         * nptl/sysdeps/unix/sysv/linux/x86/init-arch.h: Moved ...
10343         * sysdeps/unix/sysv/linux/x86/init-arch.h: ... here.
10344         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: Moved ...
10345         * sysdeps/unix/sysv/linux/x86/pthread_mutex_cond_lock.c: ... here.
10346         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: Moved ...
10347         * sysdeps/unix/sysv/linux/x86/pthread_mutex_lock.c: ... here.
10348         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: Moved ...
10349         * sysdeps/unix/sysv/linux/x86/pthread_mutex_timedlock.c: ... here.
10350         * nptl/sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: Moved ...
10351         * sysdeps/unix/sysv/linux/x86/pthread_mutex_trylock.c: ... here.
10352
10353         * sysdeps/unix/sysv/linux/mips/fork.h: New file.
10354         * sysdeps/unix/sysv/linux/mips/nptl/fork.c: File removed.
10355
10356         * nptl/sysdeps/unix/sysv/linux/i386/Implies: File removed.
10357         * nptl/sysdeps/unix/sysv/linux/i386/i786/Implies: Moved ...
10358         * sysdeps/unix/sysv/linux/i386/i786/Implies: ... here.
10359         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: Moved ...
10360         * sysdeps/unix/sysv/linux/i386/i586/sem_wait.S: ... here.
10361         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S:
10362         Moved ...
10363         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_wrlock.S: ... here.
10364         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S:
10365         Moved ...
10366         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_timedwait.S: ... here.
10367         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S:
10368         Moved ...
10369         * sysdeps/unix/sysv/linux/i386/i586/pthread_barrier_wait.S: ... here.
10370         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S:
10371         Moved ...
10372         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_unlock.S: ... here.
10373         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: Moved ...
10374         * sysdeps/unix/sysv/linux/i386/i586/sem_timedwait.S: ... here.
10375         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S:
10376         Moved ...
10377         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_signal.S: ... here.
10378         * nptl/sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: Moved ...
10379         * sysdeps/unix/sysv/linux/i386/i586/libc-lowlevellock.S: ... here.
10380         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: Moved ...
10381         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_wait.S: ... here.
10382         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: Moved ...
10383         * sysdeps/unix/sysv/linux/i386/i586/lowlevelrobustlock.S: ... here.
10384         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S:
10385         Moved ...
10386         * sysdeps/unix/sysv/linux/i386/i586/pthread_cond_broadcast.S: ... here.
10387         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
10388         Moved ...
10389         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedrdlock.S:
10390         ... here.
10391         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: Moved ...
10392         * sysdeps/unix/sysv/linux/i386/i586/sem_trywait.S: ... here.
10393         * nptl/sysdeps/unix/sysv/linux/i386/i586/sem_post.S: Moved ...
10394         * sysdeps/unix/sysv/linux/i386/i586/sem_post.S: ... here.
10395         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
10396         Moved ...
10397         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_timedwrlock.S:
10398         ... here.
10399         * nptl/sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S:
10400         Moved ...
10401         * sysdeps/unix/sysv/linux/i386/i586/pthread_rwlock_rdlock.S: ... here.
10402         * nptl/sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: Moved ...
10403         * sysdeps/unix/sysv/linux/i386/i586/lowlevellock.S: ... here.
10404         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: Moved ...
10405         * sysdeps/unix/sysv/linux/i386/i486/sem_wait.S: ... here.
10406         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S:
10407         Moved ...
10408         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_wrlock.S: ... here.
10409         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S:
10410         Moved ...
10411         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_timedwait.S: ... here.
10412         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S:
10413         Moved ...
10414         * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S: ... here.
10415         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S:
10416         Moved ...
10417         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_unlock.S: ... here.
10418         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: Moved ...
10419         * sysdeps/unix/sysv/linux/i386/i486/sem_timedwait.S: ... here.
10420         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S:
10421         Moved ...
10422         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_signal.S: ... here.
10423         * nptl/sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: Moved ...
10424         * sysdeps/unix/sysv/linux/i386/i486/libc-lowlevellock.S: ... here.
10425         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: Moved ...
10426         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_wait.S: ... here.
10427         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: Moved ...
10428         * sysdeps/unix/sysv/linux/i386/i486/lowlevelrobustlock.S: ... here.
10429         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S:
10430         Moved ...
10431         * sysdeps/unix/sysv/linux/i386/i486/pthread_cond_broadcast.S: ... here.
10432         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
10433         Moved ...
10434         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedrdlock.S:
10435         ... here.
10436         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: Moved ...
10437         * sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S: ... here.
10438         * nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Moved ...
10439         * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: ... here.
10440         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
10441         Moved ...
10442         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_timedwrlock.S:
10443         ... here.
10444         * nptl/sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S:
10445         Moved ...
10446         * sysdeps/unix/sysv/linux/i386/i486/pthread_rwlock_rdlock.S: ... here.
10447         * nptl/sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: Moved ...
10448         * sysdeps/unix/sysv/linux/i386/i486/lowlevellock.S: ... here.
10449         * nptl/sysdeps/unix/sysv/linux/i386/dl-sysdep.h: Moved ...
10450         * sysdeps/unix/sysv/linux/i386/dl-sysdep.h: ... here.
10451         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h: Moved ...
10452         * sysdeps/unix/sysv/linux/i386/lowlevellock.h: ... here.
10453         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: Moved ...
10454         * sysdeps/unix/sysv/linux/i386/i686/sem_wait.S: ... here.
10455         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S:
10456         Moved ...
10457         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_wrlock.S: ... here.
10458         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S:
10459         Moved ...
10460         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_timedwait.S: ... here.
10461         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S:
10462         Moved ...
10463         * sysdeps/unix/sysv/linux/i386/i686/pthread_barrier_wait.S: ... here.
10464         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S:
10465         Moved ...
10466         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_unlock.S: ... here.
10467         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: Moved ...
10468         * sysdeps/unix/sysv/linux/i386/i686/sem_timedwait.S: ... here.
10469         * nptl/sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: Moved ...
10470         * sysdeps/unix/sysv/linux/i386/i686/dl-sysdep.h: ... here.
10471         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S:
10472         Moved ...
10473         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_signal.S: ... here.
10474         * nptl/sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: Moved ...
10475         * sysdeps/unix/sysv/linux/i386/i686/libc-lowlevellock.S: ... here.
10476         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: Moved ...
10477         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_wait.S: ... here.
10478         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: Moved ...
10479         * sysdeps/unix/sysv/linux/i386/i686/lowlevelrobustlock.S: ... here.
10480         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S:
10481         Moved ...
10482         * sysdeps/unix/sysv/linux/i386/i686/pthread_cond_broadcast.S: ... here.
10483         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
10484         Moved ...
10485         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedrdlock.S:
10486         ... here.
10487         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: Moved ...
10488         * sysdeps/unix/sysv/linux/i386/i686/sem_trywait.S: ... here.
10489         * nptl/sysdeps/unix/sysv/linux/i386/i686/sem_post.S: Moved ...
10490         * sysdeps/unix/sysv/linux/i386/i686/sem_post.S: ... here.
10491         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
10492         Moved ...
10493         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_timedwrlock.S:
10494         ... here.
10495         * nptl/sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S:
10496         Moved ...
10497         * sysdeps/unix/sysv/linux/i386/i686/pthread_rwlock_rdlock.S: ... here.
10498         * nptl/sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: Moved ...
10499         * sysdeps/unix/sysv/linux/i386/i686/lowlevellock.S: ... here.
10500         * nptl/sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: Moved ...
10501         * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h: ... here.
10502         * nptl/sysdeps/unix/sysv/linux/i386/smp.h: Moved ...
10503         * sysdeps/unix/sysv/linux/i386/smp.h: ... here.
10504         * nptl/sysdeps/unix/sysv/linux/i386/pthread_once.S: Moved ...
10505         * sysdeps/unix/sysv/linux/i386/pthread_once.S: ... here.
10506         * nptl/sysdeps/unix/sysv/linux/i386/createthread.c: Moved ...
10507         * sysdeps/unix/sysv/linux/i386/createthread.c: ... here.
10508
10509         * sysdeps/unix/sysv/linux/powerpc/fork.h: New file.
10510         * nptl/sysdeps/unix/sysv/linux/powerpc/fork.c: File removed.
10511
10512         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_init.c: File removed.
10513         * nptl/sysdeps/unix/sysv/linux/i386/pthread_spin_unlock.S: File removed.
10514
10515         * nptl/sysdeps/unix/sysv/linux/x86_64/Implies: File removed.
10516         * nptl/sysdeps/unix/sysv/linux/x86_64/cancellation.S: Moved ...
10517         * sysdeps/unix/sysv/linux/x86_64/cancellation.S: ... here.
10518         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: Moved ...
10519         * sysdeps/unix/sysv/linux/x86_64/libc-cancellation.S: ... here.
10520         * nptl/sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: Moved ...
10521         * sysdeps/unix/sysv/linux/x86_64/libc-lowlevellock.S: ... here.
10522         * nptl/sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: Moved ...
10523         * sysdeps/unix/sysv/linux/x86_64/librt-cancellation.S: ... here.
10524         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: Moved ...
10525         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.h: ... here.
10526         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: Moved ...
10527         * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S: ... here.
10528         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: Moved ...
10529         * sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S: ... here.
10530         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: Moved ...
10531         * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S: ... here.
10532         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S:
10533         Moved ...
10534         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_broadcast.S: ... here.
10535         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: Moved ...
10536         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_signal.S: ... here.
10537         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:
10538         Moved ...
10539         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S: ... here.
10540         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: Moved ...
10541         * sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S: ... here.
10542         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_once.S: Moved ...
10543         * sysdeps/unix/sysv/linux/x86_64/pthread_once.S: ... here.
10544         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: Moved ...
10545         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_rdlock.S: ... here.
10546         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S:
10547         Moved ...
10548         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedrdlock.S: ... here.
10549         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S:
10550         Moved ...
10551         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_timedwrlock.S: ... here.
10552         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: Moved ...
10553         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_unlock.S: ... here.
10554         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: Moved ...
10555         * sysdeps/unix/sysv/linux/x86_64/pthread_rwlock_wrlock.S: ... here.
10556         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: Moved ...
10557         * sysdeps/unix/sysv/linux/x86_64/pthread_setaffinity.c: ... here.
10558         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S: Moved ...
10559         * sysdeps/unix/sysv/linux/x86_64/sem_post.S: ... here.
10560         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Moved ...
10561         * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: ... here.
10562         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: Moved ...
10563         * sysdeps/unix/sysv/linux/x86_64/sem_trywait.S: ... here.
10564         * nptl/sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Moved ...
10565         * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: ... here.
10566         * nptl/sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: Moved ...
10567         * sysdeps/unix/sysv/linux/x86_64/sysdep-cancel.h: ... here.
10568
10569         * nptl/sysdeps/unix/sysv/linux/fork.c: Use <> for fork.h #include.
10570         * nptl/sysdeps/unix/sysv/linux/x86_64/fork.c: File removed.
10571         * sysdeps/unix/sysv/linux/x86_64/fork.h: New file.
10572         * nptl/sysdeps/unix/sysv/linux/i386/fork.c: File removed.
10573         * sysdeps/unix/sysv/linux/i386/fork.h: New file.
10574
10575         * nptl/sysdeps/unix/sysv/linux/i386/not-cancel.h: Moved ...
10576         * sysdeps/unix/sysv/linux/not-cancel.h: ... here.
10577         * nptl/sysdeps/unix/sysv/linux/sparc/not-cancel.h: File removed.
10578         * nptl/sysdeps/unix/sysv/linux/sh/not-cancel.h: File removed.
10579         * nptl/sysdeps/unix/sysv/linux/powerpc/not-cancel.h: File removed.
10580         * nptl/sysdeps/unix/sysv/linux/x86_64/not-cancel.h: File removed.
10581         * nptl/sysdeps/unix/sysv/linux/s390/not-cancel.h: File removed.
10582         * sysdeps/unix/sysv/linux/generic/not-cancel.h: File removed.
10583         * sysdeps/unix/sysv/linux/generic/nptl/not-cancel.h: File removed.
10584         * sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: File removed.
10585
10586         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_init.c: File removed.
10587         * nptl/sysdeps/unix/sysv/linux/x86_64/pthread_spin_unlock.S: Likewise.
10588
10589         * nptl/sysdeps/unix/sysv/linux/x86_64/compat-timer.h: Moved ...
10590         * sysdeps/unix/sysv/linux/x86_64/compat-timer.h: ... here.
10591         * nptl/sysdeps/unix/sysv/linux/x86_64/Versions: Remove, merge into ...
10592         * sysdeps/unix/sysv/linux/x86_64/Versions: ... here.
10593         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_create.c: Moved ...
10594         * sysdeps/unix/sysv/linux/x86_64/timer_create.c: here.
10595         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_delete.c: Moved ...
10596         * sysdeps/unix/sysv/linux/x86_64/timer_delete.c: ... here
10597         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: Moved ...
10598         * sysdeps/unix/sysv/linux/x86_64/timer_getoverr.c: ... here
10599         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: Moved ...
10600         * sysdeps/unix/sysv/linux/x86_64/timer_gettime.c: ... here
10601         * nptl/sysdeps/unix/sysv/linux/x86_64/timer_settime.c: Moved ...
10602         * sysdeps/unix/sysv/linux/x86_64/timer_settime.c: ... here
10603         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_create.c:
10604         Update #include.
10605         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_delete.c:
10606         Likewise.
10607         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_getoverr.c:
10608         Likewise.
10609         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_gettime.c:
10610         Likewise.
10611         * nptl/sysdeps/unix/sysv/linux/powerpc/powerpc64/timer_settime.c:
10612         Likewise.
10613         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_create.c:
10614         Likewise.
10615         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_delete.c:
10616         Likewise.
10617         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_getoverr.c:
10618         Likewise.
10619         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_gettime.c:
10620         Likewise.
10621         * nptl/sysdeps/unix/sysv/linux/sparc/sparc64/timer_settime.c:
10622         Likewise.
10623         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_create.c: Likewise.
10624         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_delete.c: Likewise.
10625         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_getoverr.c: Likewise.
10626         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_gettime.c: Likewise.
10627         * nptl/sysdeps/unix/sysv/linux/s390/s390-64/timer_settime.c: Likewise.
10628         * sysdeps/unix/sysv/linux/alpha/nptl/timer_create.c: Likewise.
10629         * sysdeps/unix/sysv/linux/alpha/nptl/timer_delete.c: Likewise.
10630         * sysdeps/unix/sysv/linux/alpha/nptl/timer_getoverr.c: Likewise.
10631         * sysdeps/unix/sysv/linux/alpha/nptl/timer_gettime.c: Likewise.
10632         * sysdeps/unix/sysv/linux/alpha/nptl/timer_settime.c: Likewise.
10633         * sysdeps/unix/sysv/linux/ia64/nptl/timer_create.c: Likewise.
10634         * sysdeps/unix/sysv/linux/ia64/nptl/timer_delete.c: Likewise.
10635         * sysdeps/unix/sysv/linux/ia64/nptl/timer_getoverr.c: Likewise.
10636         * sysdeps/unix/sysv/linux/ia64/nptl/timer_gettime.c:  Likewise.
10637         * sysdeps/unix/sysv/linux/ia64/nptl/timer_settime.c:  Likewise.
10638
10639         * sysdeps/unix/sysv/linux/x86_64/clone.S: Deconditionalize the code
10640         that was previously under [RESET_PID].
10641         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
10642         * nptl/sysdeps/unix/sysv/linux/x86_64/clone.S: File removed.
10643         * nptl/sysdeps/unix/sysv/linux/i386/clone.S: File removed.
10644
10645         * sysdeps/i386/nptl/Implies: New file.
10646         * sysdeps/x86_64/nptl/Implies: New file.
10647         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ...
10648         * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here.
10649         * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ...
10650         * sysdeps/x86/nptl/bits/semaphore.h: ... here.
10651
10652         * sysdeps/unix/sysv/linux/i386/vfork.S: Include <tcb-offsets.h>.
10653         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10654         (__libc_vfork): New strong alias.
10655         * nptl/sysdeps/unix/sysv/linux/i386/vfork.S: File removed.
10656         * nptl/sysdeps/unix/sysv/linux/i386/pt-vfork.S: File removed.
10657
10658         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Include <tcb-offsets.h>.
10659         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10660         (__libc_vfork): New strong alias.
10661         * nptl/sysdeps/unix/sysv/linux/x86_64/vfork.S: File removed.
10662         * nptl/sysdeps/unix/sysv/linux/x86_64/pt-vfork.S: File removed.
10663
10664         * sysdeps/unix/sysv/linux/arm/vfork.S: Include <tcb-offsets.h>.
10665         (__vfork): Incorporate save/restore of PID from nptl/vfork.S here.
10666         (__libc_vfork): New strong alias.
10667         * sysdeps/unix/sysv/linux/arm/nptl/vfork.S: File removed.
10668         * sysdeps/unix/sysv/linux/arm/nptl/pt-vfork.S: File removed.
10669         * nptl/pt-vfork.c: New file.
10670         * nptl/Versions (libc: GLIBC_PRIVATE): Add __libc_vfork.
10671         (libpthread: GLIBC_2.20): New version set (empty).
10672
10673 2014-05-14  Will Newton  <will.newton@linaro.org>
10674
10675         * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
10676         rather than #if.
10677
10678 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
10679
10680         [BZ #16564]
10681         * sysdeps/i386/fpu/s_log1pl.S (__log1pl): Do not add 1 to positive
10682         arguments with exponent 65 or above.
10683         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): Do not add 1 to
10684         arguments 0x1p113L or above.
10685         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Do not add 1
10686         to arguments 0x1p107L or above.
10687         * sysdeps/x86_64/fpu/s_log1pl.S (__log1pl): Do not add 1 to
10688         positive arguments with exponent 65 or above.
10689         * math/auto-libm-test-in: Add more tests of log1p.
10690         * math/auto-libm-test-out: Regenerated.
10691
10692         [BZ #16928]
10693         * math/s_cacos.c (__cacos): Ensure zero real part of result from
10694         non-finite arguments is +0.
10695         * math/s_cacosf.c (__cacosf): Likewise.
10696         * math/s_cacosl.c (__cacosl): Likewise.
10697         * math/libm-test.inc (cacos_test): Use ALL_RM_TEST.
10698         * sysdeps/i386/fpu/libm-test-ulps: Update.
10699         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10700
10701         [BZ #16927]
10702         * sysdeps/i386/fpu/e_acosh.S (__ieee754_acosh): Use fabs on x-1
10703         value.
10704         * sysdeps/i386/fpu/e_acoshf.S (__ieee754_acoshf): Likewise.
10705         * sysdeps/i386/fpu/e_acoshl.S (__ieee754_acoshl): Likewise.
10706         * sysdeps/ieee754/ldbl-96/e_acoshl.c (__ieee754_acoshl): Correct
10707         for explicit high bit of mantissa when testing for argument equal
10708         to 1.
10709         * math/libm-test.inc (acosh_test): Use ALL_RM_TEST.
10710         * sysdeps/i386/fpu/libm-test-ulps: Update.
10711         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
10712
10713         [BZ #16516]
10714         * sysdeps/ieee754/dbl-64/s_erf.c (efx8): Remove variable.
10715         (__erf): Scale by 16 instead of 8 in potentially underflowing
10716         case.  Ensure exception if result actually underflows.
10717         * sysdeps/ieee754/flt-32/s_erff.c (efx8): Remove variable.
10718         (__erff): Scale by 16 instead of 8 in potentially underflowing
10719         case.  Ensure exception if result actually underflows.
10720         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <float.h>.
10721         (efx8): Remove variable.
10722         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10723         case.  Ensure exception if result actually underflows.
10724         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <float.h>.
10725         (efx8): Remove variable.
10726         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10727         case.  Ensure exception if result actually underflows.
10728         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <float.h>.
10729         (efx8): Remove variable.
10730         (__erfl): Scale by 16 instead of 8 in potentially underflowing
10731         case.  Ensure exception if result actually underflows.
10732         * math/auto-libm-test-in: Add more tests of erf.
10733         * math/auto-libm-test-out: Regenerated.
10734
10735 2014-05-14  Andreas Schwab  <schwab@suse.de>
10736
10737         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, dl_main):
10738         Remove code conditionalized on USE___THREAD.
10739
10740         * config.h.in (HAVE_PT_CHOWN): Define as 0.
10741         * sysdeps/unix/grantpt.c (grantpt): Check HAVE_PT_CHOWN for value,
10742         not definedness.
10743
10744 2014-05-14  Joseph Myers  <joseph@codesourcery.com>
10745
10746         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_UTIMES):
10747         Define unconditionally.
10748         (__ASSUME_O_CLOEXEC): Likewise.
10749         (__ASSUME_SOCK_CLOEXEC): Likewise.
10750         (__ASSUME_IN_NONBLOCK): Likewise.
10751         (__ASSUME_PIPE2): Likewise.
10752         (__ASSUME_EVENTFD2): Likewise.
10753         (__ASSUME_SIGNALFD4): Likewise.
10754         (__ASSUME_DUP3): Likewise.
10755         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
10756         (__ASSUME_DUP3): Do not define.
10757         (__ASSUME_EVENTFD2): Likewise.
10758         (__ASSUME_IN_NONBLOCK): Likewise.
10759         (__ASSUME_O_CLOEXEC): Likewise.
10760         (__ASSUME_PIPE2): Likewise.
10761         (__ASSUME_SIGNALFD4): Likewise.
10762         (__ASSUME_SOCK_CLOEXEC): Likewise.
10763         (__ASSUME_UTIMES): Undefine.
10764         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
10765         (__ASSUME_UTIMES): Do not define.
10766         (__ASSUME_O_CLOEXEC): Likewise.
10767         (__ASSUME_SOCK_CLOEXEC): Likewise.
10768         (__ASSUME_IN_NONBLOCK): Undefine if [__LINUX_KERNEL_VERSION <
10769         0x020621] instead of defining if [__LINUX_KERNEL_VERSION >=
10770         0x020621].
10771         (__ASSUME_PIPE2): Likewise.
10772         (__ASSUME_EVENTFD2): Likewise.
10773         (__ASSUME_SIGNALFD4): Likewise.
10774         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_DUP3): Undefine.
10775         * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_UTIMES):
10776         Do not define.
10777         (__ASSUME_EVENTFD2): Likewise.
10778         (__ASSUME_SIGNALFD4): Likewise.
10779         * sysdeps/unix/sysv/linux/hppa/kernel-features.h
10780         (__ASSUME_32BITUIDS): Likewise.
10781         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
10782         (__ASSUME_IPC64): Likewise.
10783         (__ASSUME_ST_INO_64_BIT): Likewise.
10784         (__ASSUME_GETDENTS64_SYSCALL): Likewise.
10785         [__LINUX_KERNEL_VERSION < 0x030e00] (__ASSUME_UTIMES): Undefine.
10786         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
10787         (__ASSUME_UTIMES): Do not define.
10788         (__ASSUME_PSELECT): Likewise.
10789         (__ASSUME_PPOLL): Likewise.
10790         (__ASSUME_O_CLOEXEC): Likewise.
10791         (__ASSUME_SOCK_CLOEXEC): Likewise.
10792         (__ASSUME_IN_NONBLOCK): Likewise.
10793         (__ASSUME_PIPE2): Likewise.
10794         (__ASSUME_EVENTFD2): Likewise.
10795         (__ASSUME_SIGNALFD4): Likewise.
10796         (__ASSUME_DUP3): Likewise.
10797         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
10798         (__ASSUME_UTIMES): Likewise.
10799         (__ASSUME_O_CLOEXEC): Likewise.
10800         (__ASSUME_SOCK_CLOEXEC): Likewise.
10801         (__ASSUME_IN_NONBLOCK): Likewise.
10802         (__ASSUME_PIPE2): Likewise.
10803         (__ASSUME_EVENTFD2): Likewise.
10804         (__ASSUME_SIGNALFD4): Likewise.
10805         (__ASSUME_DUP3): Likewise.
10806         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
10807         (__ASSUME_UTIMES): Likewise.
10808         (__ASSUME_O_CLOEXEC): Likewise.
10809         (__ASSUME_SOCK_CLOEXEC): Likewise.
10810         (__ASSUME_IN_NONBLOCK): Likewise.
10811         (__ASSUME_PIPE2): Likewise.
10812         (__ASSUME_EVENTFD2): Likewise.
10813         (__ASSUME_SIGNALFD4): Likewise.
10814         (__ASSUME_DUP3): Likewise.
10815         * sysdeps/unix/sysv/linux/mips/kernel-features.h (__ASSUME_IPC64):
10816         Likewise.
10817         (__ASSUME_UTIMES): Likewise.
10818         (__ASSUME_EVENTFD2): Likewise.
10819         (__ASSUME_SIGNALFD4): Likewise.
10820         * sysdeps/unix/sysv/linux/tile/kernel-features.h
10821         (__ASSUME_O_CLOEXEC): Likewise.
10822         (__ASSUME_SOCK_CLOEXEC): Likewise.
10823         (__ASSUME_IN_NONBLOCK): Likewise.
10824         (__ASSUME_PIPE2): Likewise.
10825         (__ASSUME_EVENTFD2): Likewise.
10826         (__ASSUME_SIGNALFD4): Likewise.
10827         (__ASSUME_DUP3): Likewise.
10828         (__ASSUME_UTIMES): Undefine.
10829
10830         * sysdeps/arm/fclrexcpt.c (__feclearexcept): Rename to
10831         feclearexcept.  Remove symbol versioning code.
10832         * sysdeps/arm/fegetenv.c (__fegetenv): Rename to fegetenv.  Remove
10833         symbol versioning code.
10834         * sysdeps/arm/fesetenv.c (__fesetenv): Rename to fesetenv.  Remove
10835         symbol versioning code.
10836         * sysdeps/arm/feupdateenv.c (__feupdateenv): Rename to
10837         feupdateenv.  Remove symbol versioning code.
10838         * sysdeps/arm/fgetexcptflg.c (__fegetexceptflag): Rename to
10839         fegetexceptflag.  Remove symbol versioning code.
10840         * sysdeps/arm/fsetexcptflg.c (__fesetexceptflag): Rename to
10841         fesetexceptflag.  Remove symbol versioning code.
10842         * sysdeps/unix/sysv/linux/arm/Versions (libc): Remove GLIBC_2.0,
10843         GLIBC_2.2 and GLIBC_2.3.3 entries.  Change GLIBC_2.1 to GLIBC_2.4.
10844         * sysdeps/unix/sysv/linux/arm/posix_fadvise64.c
10845         (__posix_fadvise64_l32): Remove prototype.
10846         [SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_3_3)]: Remove conditional
10847         code.
10848
10849 2014-05-13  Roland McGrath  <roland@hack.frob.com>
10850
10851         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h: Moved ...
10852         * sysdeps/arm/nptl/bits/pthreadtypes.h: ... here.
10853         * sysdeps/unix/sysv/linux/arm/nptl/bits/semaphore.h: Moved ...
10854         * sysdeps/arm/nptl/bits/semaphore.h: ... here.
10855
10856 2014-05-13  Sami Kerola  <kerolasa@iki.fi>
10857
10858         * timezone/Makefile ($(objpfx)tzselect): Use zonedir instead
10859         current working directory
10860
10861 2014-05-13  Roland McGrath  <roland@hack.frob.com>
10862
10863         * sysdeps/unix/sysv/linux/arm/nptl/c++-types.data: Moved ...
10864         * sysdeps/unix/sysv/linux/arm/c++-types.data: ... here.
10865         * sysdeps/unix/sysv/linux/arm/nptl/createthread.c: Moved ...
10866         * sysdeps/unix/sysv/linux/arm/createthread.c: ... here.
10867         * sysdeps/unix/sysv/linux/arm/nptl/fork.c: Moved ...
10868         * sysdeps/unix/sysv/linux/arm/fork.c: ... here.
10869         * sysdeps/unix/sysv/linux/arm/nptl/ld.abilist: Moved ...
10870         * sysdeps/unix/sysv/linux/arm/ld.abilist: ... here.
10871         * sysdeps/unix/sysv/linux/arm/nptl/libBrokenLocale.abilist: Moved ...
10872         * sysdeps/unix/sysv/linux/arm/libBrokenLocale.abilist: ... here.
10873         * sysdeps/unix/sysv/linux/arm/nptl/libanl.abilist: Moved ...
10874         * sysdeps/unix/sysv/linux/arm/libanl.abilist: ... here.
10875         * sysdeps/unix/sysv/linux/arm/nptl/libc.abilist: Moved ...
10876         * sysdeps/unix/sysv/linux/arm/libc.abilist: ... here.
10877         * sysdeps/unix/sysv/linux/arm/nptl/libcrypt.abilist: Moved ...
10878         * sysdeps/unix/sysv/linux/arm/libcrypt.abilist: ... here.
10879         * sysdeps/unix/sysv/linux/arm/nptl/libdl.abilist: Moved ...
10880         * sysdeps/unix/sysv/linux/arm/libdl.abilist: ... here.
10881         * sysdeps/unix/sysv/linux/arm/nptl/libm.abilist: Moved ...
10882         * sysdeps/unix/sysv/linux/arm/libm.abilist: ... here.
10883         * sysdeps/unix/sysv/linux/arm/nptl/libnsl.abilist: Moved ...
10884         * sysdeps/unix/sysv/linux/arm/libnsl.abilist: ... here.
10885         * sysdeps/unix/sysv/linux/arm/nptl/libpthread.abilist: Moved ...
10886         * sysdeps/unix/sysv/linux/arm/libpthread.abilist: ... here.
10887         * sysdeps/unix/sysv/linux/arm/nptl/libresolv.abilist: Moved ...
10888         * sysdeps/unix/sysv/linux/arm/libresolv.abilist: ... here.
10889         * sysdeps/unix/sysv/linux/arm/nptl/librt.abilist: Moved ...
10890         * sysdeps/unix/sysv/linux/arm/librt.abilist: ... here.
10891         * sysdeps/unix/sysv/linux/arm/nptl/libthread_db.abilist: Moved ...
10892         * sysdeps/unix/sysv/linux/arm/libthread_db.abilist: ... here.
10893         * sysdeps/unix/sysv/linux/arm/nptl/libutil.abilist: Moved ...
10894         * sysdeps/unix/sysv/linux/arm/libutil.abilist: ... here.
10895         * sysdeps/unix/sysv/linux/arm/nptl/localplt.data: Moved ...
10896         * sysdeps/unix/sysv/linux/arm/localplt.data: ... here.
10897         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.h: Moved ...
10898         * sysdeps/unix/sysv/linux/arm/lowlevellock.h: ... here.
10899         * sysdeps/unix/sysv/linux/arm/nptl/sysdep-cancel.h: Moved ...
10900         * sysdeps/unix/sysv/linux/arm/sysdep-cancel.h: ... here.
10901         * sysdeps/unix/sysv/linux/arm/nptl/unwind-forcedunwind.c: Moved ...
10902         * sysdeps/unix/sysv/linux/arm/unwind-forcedunwind.c: ... here.
10903         * sysdeps/unix/sysv/linux/arm/nptl/unwind-resume.c: Moved ...
10904         * sysdeps/unix/sysv/linux/arm/unwind-resume.c: ... here.
10905
10906         * sysdeps/unix/sysv/linux/arm/Versions (libc: GLIBC_PRIVATE): New set.
10907         * sysdeps/unix/sysv/linux/arm/nptl/Versions: File removed.
10908
10909         * sysdeps/unix/sysv/linux/arm/Makefile
10910         [$(subdir) = rt] (librt-sysdep_routines, librt-shared-only-routines):
10911         Add rt-aeabi_unwind_cpp_pr1.
10912         [$(subdir) = nptl] (librt-sysdep_routines, librt-shared-only-routines):
10913         Add nptl-aeabi_unwind_cpp_pr1.
10914         [$(subdir) = nptl] (tests): Filter out tst-cleanupx4.
10915         * sysdeps/unix/sysv/linux/arm/nptl/Makefile: File removed.
10916         * sysdeps/unix/sysv/linux/arm/nptl/rt-aeabi_unwind_cpp_pr1.c: Move ...
10917         * sysdeps/unix/sysv/linux/arm/rt-aeabi_unwind_cpp_pr1.c: ... here.
10918         * sysdeps/unix/sysv/linux/arm/nptl/nptl-aeabi_unwind_cpp_pr1.c: Move ...
10919         * sysdeps/unix/sysv/linux/arm/nptl-aeabi_unwind_cpp_pr1.c: ... here.
10920
10921         * sysdeps/unix/sysv/linux/arm/configure.ac: Force -fexceptions here.
10922         * sysdeps/unix/sysv/linux/arm/configure: Regenerated.
10923         * sysdeps/unix/sysv/linux/arm/nptl/configure.ac: File removed.
10924         * sysdeps/unix/sysv/linux/arm/nptl/configure: File removed.
10925
10926         * sysdeps/unix/sysv/linux/arm/clone.S: Include <tcb-offsets.h>.
10927         Deconditionalize the code that was previously under [RESET_PID].
10928         * sysdeps/unix/sysv/linux/arm/nptl/clone.S: File removed.
10929
10930         * sysdeps/generic/exit-thread.h: New file.
10931         * sysdeps/unix/sysv/linux/exit-thread.h: New file.
10932         * include/unistd.h (__exit_thread): Remove declaration.
10933         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Drop exit-thread.
10934         * sysdeps/unix/sysv/linux/exit-thread.S: File removed.
10935         * csu/libc-start.c: Include <exit-thread.h>.
10936         (LIBC_START_MAIN): Pass no argument to __exit_thread.
10937         * nptl/pthread_create.c: Include <exit-thread.h>.
10938         (start_thread): Call __exit_thread in place of __exit_thread_inline.
10939         * nptl/sysdeps/i386/pthreaddef.h (__exit_thread_inline): Macro removed.
10940         * nptl/sysdeps/powerpc/pthreaddef.h: Likewise.
10941         * nptl/sysdeps/s390/pthreaddef.h: Likewise.
10942         * nptl/sysdeps/sh/pthreaddef.h: Likewise.
10943         * nptl/sysdeps/sparc/sparc32/pthreaddef.h: Likewise.
10944         * nptl/sysdeps/sparc/sparc64/pthreaddef.h: Likewise.
10945         * nptl/sysdeps/x86_64/pthreaddef.h: Likewise.
10946         * sysdeps/aarch64/nptl/pthreaddef.h: Likewise.
10947         * sysdeps/alpha/nptl/pthreaddef.h: Likewise.
10948         * sysdeps/arm/nptl/pthreaddef.h: Likewise.
10949         * sysdeps/hppa/nptl/pthreaddef.h: Likewise.
10950         * sysdeps/ia64/nptl/pthreaddef.h: Likewise.
10951         * sysdeps/m68k/nptl/pthreaddef.h: Likewise.
10952         * sysdeps/microblaze/nptl/pthreaddef.h: Likewise.
10953         * sysdeps/mips/nptl/pthreaddef.h: Likewise.
10954         * sysdeps/tile/nptl/pthreaddef.h: Likewise.
10955
10956 2014-05-13  Andreas Schwab  <schwab@suse.de>
10957
10958         * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion.
10959
10960 2014-05-12  Joseph Myers  <joseph@codesourcery.com>
10961
10962         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__]
10963         (__ASSUME_UTIMES): Do not condition on kernel version.
10964         (__ASSUME_PSELECT): Define unconditionally.
10965         (__ASSUME_PPOLL): Likewise.
10966         (__ASSUME_ATFCTS): Likewise.
10967         (__ASSUME_SET_ROBUST_LIST): Do not condition on kernel version.
10968         (__ASSUME_COMPLETE_READV_WRITEV): Define unconditionally.
10969         (__ASSUME_FUTEX_LOCK_PI): Do not condition on kernel version.
10970         (__ASSUME_UTIMENSAT): Define unconditionally.
10971         (__ASSUME_PRIVATE_FUTEX): Likewise.
10972         (__ASSUME_FALLOCATE): Likewise.
10973         (__ASSUME_O_CLOEXEC): Likewise.
10974         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Remove.
10975         (__ASSUME_ARG_MAX_STACK_BASED): Likewise.
10976         (__ASSUME_ADJ_OFFSET_SS_READ): Define unconditionally.
10977         (__ASSUME_SOCK_CLOEXEC): Do not condition on kernel version.
10978         (__ASSUME_IN_NONBLOCK): Likewise.
10979         (__ASSUME_PIPE2): Likewise.
10980         (__ASSUME_EVENTFD2): Likewise.
10981         (__ASSUME_SIGNALFD4): Likewise.
10982         (__ASSUME_DUP3): Likewise.
10983         [__x86_64__ || __sparc__] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
10984         (__ASSUME_FUTEX_CLOCK_REALTIME): Define unconditionally.
10985         (__ASSUME_AT_RANDOM): Likewise.
10986         (__ASSUME_PREADV): Likewise.
10987         (__ASSUME_PWRITEV): Likewise.
10988         (__ASSUME_REQUEUE_PI): Do not condition on kernel version.
10989         (__ASSUME_F_GETOWN_EX): Define unconditionally.
10990         (__ASSUME_XFS_RESTRICTED_CHOWN): Likewise.
10991         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
10992         [!__ASSUME_ARG_MAX_STACK_BASED]: Remove conditional code.
10993         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
10994         (__ASSUME_O_CLOEXEC): Define unconditionally.
10995         (__ASSUME_PSELECT): Do not undefine conditionally.
10996         (__ASSUME_PPOLL): Likewise.
10997         (__ASSUME_ATFCTS): Likewise.
10998         (__ASSUME_SET_ROBUST_LIST): Likewise.
10999         (__ASSUME_UTIMENSAT): Likewise.
11000         (__ASSUME_FDATASYNC): Define unconditionally.
11001         * sysdeps/unix/sysv/linux/arm/kernel-features.h
11002         (__ASSUME_SIGFRAME_V2): Likewise.
11003         )__ASSUME_EVENTFD2): Likewise.
11004         (__ASSUME_SIGNALFD4): Likewise.
11005         (__ASSUME_PSELECT): Do not undefine conditionally.
11006         (__ASSUME_PPOLL): Likewise.
11007         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
11008         (__ASSUME_PSELECT): Define unconditionally.
11009         (__ASSUME_PPOLL): Likewise.
11010         (__ASSUME_O_CLOEXEC): Likewise.
11011         (__ASSUME_SOCK_CLOEXEC): Likewise.
11012         (__ASSUME_IN_NONBLOCK): Likewise.
11013         (__ASSUME_PIPE2): Likewise.
11014         (__ASSUME_EVENTFD2): Likewise.
11015         (__ASSUME_SIGNALFD4): Likewise.
11016         (__ASSUME_DUP3): Likewise.
11017         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
11018         (__ASSUME_O_CLOEXEC): Likewise.
11019         (__ASSUME_SOCK_CLOEXEC): Likewise.
11020         (__ASSUME_IN_NONBLOCK): Likewise.
11021         (__ASSUME_PIPE2): Likewise.
11022         (__ASSUME_EVENTFD2): Likewise.
11023         (__ASSUME_SIGNALFD4): Likewise.
11024         (__ASSUME_DUP3): Likewise.
11025         * sysdeps/unix/sysv/linux/mips/kernel-features.h
11026         (__ASSUME_EVENTFD2): Likewise.
11027         (__ASSUME_SIGNALFD4): Likewise.
11028         (__ASSUME_ACCEPT4_SYSCALL): Likewise.
11029
11030 2014-05-12  Andreas Schwab  <schwab@suse.de>
11031
11032         [BZ #16932]
11033         * nis/nss_nis/nis-hosts.c (internal_gethostbyname2_r)
11034         (_nss_nis_gethostbyname4_r): Return error if item length is larger
11035         than maximum RPC packet size.
11036         * nis/nss_nis/nis-initgroups.c (initgroups_netid): Likewise.
11037         * nis/nss_nis/nis-network.c (_nss_nis_getnetbyname_r): Likewise.
11038         * nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r)
11039         (_nss_nis_getservbyport_r): Likewise.
11040
11041 2014-05-12  Will Newton  <will.newton@linaro.org>
11042
11043         * malloc/Makefile (tests): Add tst-mallopt.
11044         * malloc/tst-mallopt.c: New file.
11045
11046 2014-05-09  Roland McGrath  <roland@hack.frob.com>
11047
11048         * sysdeps/arm/armv7/strcmp.S: Use sfi_breg prefix on loads not from sp.
11049         [NO_THUMB]: Cope without cbz, cnbz, and orn instructions.
11050
11051 2014-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11052
11053         * elf/Makefile (tst-tlsmod5.so): Add $(no-as-needed).
11054         (tst-tlsmod6.so): Likewise.
11055
11056 2014-05-09  Roland McGrath  <roland@hack.frob.com>
11057
11058         * sysdeps/gnu/unwind-resume.c (libgcc_s_resume): Mark as noreturn.
11059
11060 2014-05-09  Joseph Myers  <joseph@codesourcery.com>
11061
11062         [BZ #16064]
11063         * sysdeps/i386/fpu/fegetenv.c: Include <unistd.h>, <ldsodefs.h>
11064         and <dl-procinfo.h>.
11065         (__fegetenv): Save SSE state in envp->__eip if supported.
11066         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Save SSE state in
11067         envp->__eip if supported.
11068         * sysdeps/i386/fpu/fesetenv.c: Include <unistd.h>, <ldsodefs.h>
11069         and <dl-procinfo.h>.
11070         (__fesetenv): Always set __eip, __cs_selector, __opcode,
11071         __data_offset and __data_selector in environment to 0.  Set SSE
11072         state if supported.
11073         * sysdeps/x86/fpu/Makefile [$(subdir) = math] (tests): Add
11074         test-fenv-sse.
11075         [$(subdir) = math] (CFLAGS-test-fenv-sse.c): Add -msse2
11076         -mfpmath=sse.
11077         * sysdeps/x86/fpu/test-fenv-sse.c: New file.
11078
11079 2014-05-09  Will Newton  <will.newton@linaro.org>
11080
11081         * sysdeps/arm/preconfigure.ac: Set libc_commonpagesize
11082         and libc_relro_required for ARM.
11083         * sysdeps/arm/preconfigure: Regenerate.
11084
11085 2014-05-09  Dominik Vogt  <vogt@linux.vnet.ibm.com>
11086             Stefan Liebler  <stli@linux.vnet.ibm.com>
11087
11088         * config.make.in (enable-lock-elision): New Makefile variable.
11089         * configure.ac: Likewise.
11090         * configure: Regenerate.
11091         * sysdeps/s390/configure.ac:
11092         Add check for gcc transactions support.
11093         * sysdeps/s390/configure: Regenerate.
11094         * nptl/sysdeps/unix/sysv/linux/s390/Makefile: New file.
11095         Build elision files if enabled.
11096         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.c: New file.
11097         Add lock elision support for s390.
11098         * nptl/sysdeps/unix/sysv/linux/s390/elision-conf.h: Likewise.
11099         * nptl/sysdeps/unix/sysv/linux/s390/elision-lock.c: Likewise.
11100         * nptl/sysdeps/unix/sysv/linux/s390/elision-timed.c: Likewise.
11101         * nptl/sysdeps/unix/sysv/linux/s390/elision-trylock.c: Likewise.
11102         * nptl/sysdeps/unix/sysv/linux/s390/elision-unlock.c: Likewise.
11103         * nptl/sysdeps/unix/sysv/linux/s390/force-elision.h: Likewise.
11104         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_cond_lock.c:
11105         Likewise.
11106         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_lock.c:
11107         Likewise.
11108         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_timedlock.c:
11109         Likewise.
11110         * nptl/sysdeps/unix/sysv/linux/s390/pthread_mutex_trylock.c:
11111         Likewise.
11112         * nptl/sysdeps/unix/sysv/linux/s390/lowlevellock.h:
11113         (__lll_timedlock_elision, __lll_lock_elision)
11114         (__lll_unlock_elision, __lll_trylock_elision)
11115         (lll_timedlock_elision, lll_lock_elision)
11116         (lll_unlock_elision, lll_trylock_elision): Add.
11117         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
11118         (pthread_mutex_t): Add lock elision support for s390.
11119
11120 2014-05-14  Wilco  <wdijkstr@arm.com>
11121
11122         * sysdeps/arm/fclrexcpt.c: Cleanup.
11123         * sysdeps/arm/fedisblxcpt.c: Cleanup.
11124         * sysdeps/arm/feenablxcpt.c: Cleanup.
11125         * sysdeps/arm/fegetenv.c: Cleanup.
11126         * sysdeps/arm/fegetexcept.c: Cleanup.
11127         * sysdeps/arm/fegetround.c: Cleanup.
11128         * sysdeps/arm/feholdexcpt.c: Cleanup.
11129         * sysdeps/arm/fesetenv.c: Cleanup.
11130         * sysdeps/arm/fesetround.c: Cleanup.
11131         * sysdeps/arm/feupdateenv.c: Cleanup.
11132         * sysdeps/arm/fgetexcptflg.c: Cleanup.
11133         * sysdeps/arm/fraiseexcpt.c: Cleanup.
11134         * sysdeps/arm/fsetexcptflg.c: Cleanup.
11135         * sysdeps/arm/ftestexcept.c: Cleanup.
11136         * sysdeps/arm/get-rounding-mode.h: Cleanup.
11137         * sysdeps/arm/setfpucw.c: Cleanup.
11138
11139 2014-05-09  Will Newton  <will.newton@linaro.org>
11140
11141         * sysdeps/arm/armv7/strcmp.S: New file.
11142         * NEWS: Mention addition of ARMv7 optimized strcmp.
11143
11144 2014-05-08  Roland McGrath  <roland@hack.frob.com>
11145
11146         * Makeconfig ($(common-objpfx)config.status): Fix patsubst uses to
11147         look for %.ac rather than %.in.
11148
11149         * sysdeps/mach/hurd/configure.ac (inhibit_glue): Remove variable.
11150         * sysdeps/unix/sysv/linux/configure.ac: Likewise.
11151         * sysdeps/mach/hurd/configure: Regenerated.
11152         * sysdeps/unix/sysv/linux/configure: Regenerated.
11153
11154         * bits/utsname.h (_UTSNAME_DOMAIN_LENGTH): New macro, set to 0.
11155
11156 2014-05-07  Steve Ellcey  <sellcey@mips.com>
11157
11158         [BZ# 16922]
11159         * sysdeps/mips/sys/asm.h (INT_SUB): Fix definition.
11160         (LONG_SUB): Ditto.
11161         (PTR_SUB): Ditto.
11162
11163 2014-05-07  Andreas Schwab  <schwab@suse.de>
11164
11165         * sysdeps/posix/getaddrinfo.c (gaih_inet): Advance address pointer
11166         when skipping over non-matching result from nscd.
11167
11168 2014-05-07  Ondřej Bílka  <neleai@seznam.cz>
11169
11170         [BZ #16876]
11171         * nptl/sockperf.c (client): Check socket return value.
11172
11173         [BZ #16877]
11174         * nscd/selinux.c (nscd_request_avc_has_perm): Check if there is
11175         nscd security class.
11176
11177 2014-05-06  Roland McGrath  <roland@hack.frob.com>
11178
11179         * sysdeps/unix/sysv/linux/arm/nptl/unwind.h: File moved to ...
11180         * sysdeps/arm/unwind.h: ... here.
11181
11182 2014-05-06  Aurelien Jarno  <aurelien@aurel32.net>
11183
11184         [BZ# 16916]
11185         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h (EFD_SEMAPHORE):
11186         Define.
11187
11188 2014-05-06  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
11189
11190         * sysdeps/powerpc/powerpc64/power7/strncpy.S: New file: Optimization.
11191         * sysdeps/powerpc/powerpc64/multiarch/strncpy.c: New file:
11192         multiarch strncpy for PPC64.
11193         * sysdeps/powerpc/powerpc64/multiarch/strncpy-ppc64.c: New file
11194         * sysdeps/powerpc/powerpc64/multiarch/strncpy-power7.S: New file
11195         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpcpy, stpncpy
11196         multiarch optimizations.
11197         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
11198         (__libc_ifunc_impl_list): Likewise.
11199         * sysdeps/powerpc/powerpc64/power7/stpncpy.S: New file: Optimization.
11200         * sysdeps/powerpc/powerpc64/multiarch/stpncpy.c: New file:
11201         multiarch stpncpy for PPC64.
11202         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-ppc64.c: New file
11203         * sysdeps/powerpc/powerpc64/multiarch/stpncpy-power7.S: New file
11204
11205 2014-05-06  Andreas Schwab  <schwab@suse.de>
11206
11207         [BZ #16912]
11208         * gmon/mcount.c (_MCOUNT_DECL): Use
11209         atomic_compare_and_exchange_bool_acq instead of
11210         catomic_compare_and_exchange_bool_acq.
11211
11212 2014-05-05  Roland McGrath  <roland@hack.frob.com>
11213
11214         * elf/Makefile (others, install-bin): Remove pldd.
11215         (pldd-modules): Variable removed.
11216         ($(objpfx)pldd): Target removed.
11217         * sysdeps/unix/sysv/linux/Makefile [$(subdir) = elf]
11218         (others, install-bin): Append pldd here.
11219         ($(objpfx)pldd): New target.
11220
11221         * sysdeps/gnu/errlist.awk (BEGIN): Emit an initial #define of ERR_MAX
11222         to 0, so the first #if test emitted later doesn't see it undefined.
11223         (END): Emit "!defined ERRLIST_NO_COMPAT" to match what BEGIN does.
11224         * sysdeps/gnu/errlist.c: Regenerated.
11225
11226 2014-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11227
11228         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c
11229         [libc_hidden_builtin_def]: Define to empty value.
11230         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S:
11231         [libc_hidden_builtin_def]: Likewise.
11232         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S:
11233         [libc_hidden_builtin_def]: Likewise.
11234         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S:
11235         [libc_hidden_builtin_def]: Likewise.
11236         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c (memcpy): Redefined to
11237         __redirect_memcpy and define ifunc as default hidden symbol.
11238         * sysdeps/powerpc/powerpc64/multiarch/memset.c (memset): Likewise.
11239         * sysdeps/powerpc/powerpc64/multiarch/strlen.c (strlen): Likewise.
11240
11241 2014-05-04  Adam Conrad  <adconrad@0c3.net>
11242
11243         * locale/iso-4217.def: Reintroduce XDR currency.
11244
11245 2014-05-04  Allan McRae  <allan@archlinux.org>
11246
11247         * po/eo.po: Update Esperanto translation from translation project.
11248
11249 2014-05-02  Carlos O'Donell  <carlos@redhat.com>
11250
11251         * sysdeps/x86_64/multiarch/init-arch.h: Define FEATURE_INDEX_1 to 0,
11252         and FEATURE_INDEX_MAX to 1.
11253         [!__ASSEMBLER__]: Remove anonymous enum for FEATURE_INDEX_*.
11254
11255 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11256
11257         * iconvdata/ansi_x3.110.c (ONE_DIRECTION): Define.
11258         * iconvdata/armscii-8.c (ONE_DIRECTION): Define.
11259         * iconvdata/big5.c (ONE_DIRECTION): Define.
11260         * iconvdata/big5hkscs.c (ONE_DIRECTION): Define.
11261         * iconvdata/cp1255.c (ONE_DIRECTION): Define.
11262         * iconvdata/cp1258.c (ONE_DIRECTION): Define.
11263         * iconvdata/cp932.c (ONE_DIRECTION): Define.
11264         * iconvdata/euc-cn.c (ONE_DIRECTION): Define.
11265         * iconvdata/euc-jisx0213.c (ONE_DIRECTION): Define.
11266         * iconvdata/euc-jp-ms.c (ONE_DIRECTION): Define.
11267         * iconvdata/euc-jp.c (ONE_DIRECTION): Define.
11268         * iconvdata/euc-kr.c (ONE_DIRECTION): Define.
11269         * iconvdata/euc-tw.c (ONE_DIRECTION): Define.
11270         * iconvdata/gb18030.c (ONE_DIRECTION): Define.
11271         * iconvdata/gbbig5.c (ONE_DIRECTION): Define.
11272         * iconvdata/gbgbk.c (ONE_DIRECTION): Define.
11273         * iconvdata/gbk.c (ONE_DIRECTION): Define.
11274         * iconvdata/ibm1364.c (ONE_DIRECTION): Define.
11275         * iconvdata/ibm930.c (ONE_DIRECTION): Define.
11276         * iconvdata/ibm932.c (ONE_DIRECTION): Define.
11277         * iconvdata/ibm933.c (ONE_DIRECTION): Define.
11278         * iconvdata/ibm935.c (ONE_DIRECTION): Define.
11279         * iconvdata/ibm937.c (ONE_DIRECTION): Define.
11280         * iconvdata/ibm939.c (ONE_DIRECTION): Define.
11281         * iconvdata/ibm943.c (ONE_DIRECTION): Define.
11282         * iconvdata/iso-2022-cn-ext.c (ONE_DIRECTION): Define.
11283         * iconvdata/iso-2022-cn.c (ONE_DIRECTION): Define.
11284         * iconvdata/iso-2022-jp-3.c (ONE_DIRECTION): Define.
11285         * iconvdata/iso-2022-jp.c (ONE_DIRECTION): Define.
11286         * iconvdata/iso-2022-kr.c (ONE_DIRECTION): Define.
11287         * iconvdata/iso646.c (ONE_DIRECTION): Define.
11288         * iconvdata/iso8859-1.c (ONE_DIRECTION): Define.
11289         * iconvdata/iso_11548-1.c (ONE_DIRECTION): Define.
11290         * iconvdata/iso_6937-2.c (ONE_DIRECTION): Define.
11291         * iconvdata/iso_6937.c (ONE_DIRECTION): Define.
11292         * iconvdata/johab.c (ONE_DIRECTION): Define.
11293         * iconvdata/shift_jisx0213.c (ONE_DIRECTION): Define.
11294         * iconvdata/sjis.c (ONE_DIRECTION): Define.
11295         * iconvdata/t.61.c (ONE_DIRECTION): Define.
11296         * iconvdata/tcvn5712-1.c (ONE_DIRECTION): Define.
11297         * iconvdata/tscii.c (ONE_DIRECTION): Define.
11298         * iconvdata/uhc.c (ONE_DIRECTION): Define.
11299         * iconvdata/unicode.c (ONE_DIRECTION): Define.
11300         * iconvdata/utf-16.c (ONE_DIRECTION): Define.
11301         * iconvdata/utf-32.c (ONE_DIRECTION): Define.
11302         * iconvdata/utf-7.c (ONE_DIRECTION): Define.
11303
11304 2014-05-01  Roland McGrath  <roland@hack.frob.com>
11305
11306         * libio/libioP.h [!_IO_USE_OLD_IO_FILE && !_G_IO_NO_BACKWARD_COMPAT]
11307         (_IO_JUMPS_OFFSET): Define to 0.
11308
11309         * nptl/sysdeps/pthread/bits/libc-lock.h
11310         [_LIBC && (!NOT_IN_libc || IS_IN_libpthread)]
11311         (__libc_lock_define_initialized_recursive): Always define using
11312         initializer.  Modern compilers treat uninitialized (implicit zero) and
11313         explicit zero initializers the same (i.e. put the datum in bss).
11314
11315 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
11316
11317         * nscd/nscd-client.h: Include <string.h>.
11318
11319 2014-05-01  David S. Miller  <davem@davemloft.net>
11320
11321         [BZ #16885]
11322         * sysdeps/sparc/sparc64/strcmp.S: Fix end comparison handling when
11323         multiple zero bytes exist at the end of a string.
11324         Reported by Aurelien Jarno <aurelien@aurel32.net>
11325
11326         * string/test-strcmp.c (check): Add explicit test for situations where
11327         there are multiple zero bytes after the first.
11328
11329 2014-05-01  Andreas Schwab  <schwab@linux-m68k.org>
11330
11331         [BZ #16890]
11332         * stdio-common/vfprintf.c (process_arg) [%p]: Mark string as wide
11333         when compiling wprintf.
11334         * stdio-common/tstdiomisc.c (t3): New function.
11335         (main): Call it.
11336
11337 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11338
11339         * intl/iconv/skeleton.c (ONE_DIRECTION): Remove define.
11340         * iconv/gconv_simple.c (ONE_DIRECTION): Define.
11341         * iconvdata/8bit-gap.c (ONE_DIRECTION): Ditto.
11342         * iconvdata/8bit-generic.c (ONE_DIRECTION): Ditto.
11343
11344 2014-05-01  Steve Ellcey  <sellcey@mips.com>
11345
11346         * stdlib/longlong.h: Updated from GCC.
11347
11348 2014-05-01  Will Newton  <will.newton@linaro.org>
11349             Bernard Ogden  <bernie.ogden@linaro.org>
11350
11351         * NEWS: Update fixed bug list.
11352
11353         [BZ #15119]
11354         * sysdeps/unix/sysv/linux/arm/nptl/lowlevellock.c: Remove file.
11355
11356 2014-04-30  David S. Miller  <davem@davemloft.net>
11357
11358         * sysdeps/sparc/fpu/fenv_private.h (HAVE_RM_CTX): Define.
11359         (libc_feholdexcept_setround_sparc_ctx): New function.
11360         (libc_fesetenv_sparc_ctx): Likewise.
11361         (libc_feupdateenv_sparc_ctx): Likewise.
11362         (libc_feholdsetround_sparc_ctx): Likewise.
11363         (libc_feholdexcept_setround_ctx): Define.
11364         (libc_feholdexcept_setroundf_ctx): Likewise.
11365         (libc_feholdexcept_setroundl_ctx): Likewise.
11366         (libc_fesetenv_ctx): Likewise.
11367         (libc_fesetenvf_ctx): Likewise.
11368         (libc_fesetenvl_ctx): Likewise.
11369         (libc_feupdateenv_ctx): Likewise.
11370         (libc_feupdateenvf_ctx): Likewise.
11371         (libc_feupdateenvl_ctx): Likewise.
11372         (libc_feresetround_ctx): Likewise.
11373         (libc_feresetroundf_ctx): Likewise.
11374         (libc_feresetroundl_ctx): Likewise.
11375         (libc_feholdsetround_ctx): Likewise.
11376         (libc_feholdsetroundf_ctx): Likewise.
11377         (libc_feholdsetroundl_ctx): Likewise.
11378
11379         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
11380         with __USE_GNU instead of XOPEN cpp guards.
11381
11382         * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to
11383         0.
11384
11385         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect
11386         with XOPEN cpp guards.
11387
11388 2014-04-30  Julian Brown  <julian@codesourcery.com>
11389
11390         [BZ #16888]
11391         * sysdeps/arm/dl-machine.h (elf_machine_rela): Fix R_ARM_IRELATIVE
11392         handling.
11393
11394 2014-04-30  Joseph Myers  <joseph@codesourcery.com>
11395
11396         [BZ #9894]
11397         * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
11398         Change to 2.6.32.
11399         (arch_minimum_kernel): Change all 2.6.16 settings to 2.6.32.
11400         * sysdeps/unix/sysv/linux/configure: Regenerated.
11401         * sysdeps/unix/sysv/linux/microblaze/configure.ac: Remove file.
11402         * sysdeps/unix/sysv/linux/microblaze/configure: Likewise.
11403         * sysdeps/unix/sysv/linux/tile/configure.ac: Likewise.
11404         * sysdeps/unix/sysv/linux/tile/configure: Likewise.
11405         * README: Update reference to required Linux kernel version.
11406         * manual/install.texi (Linux): Update reference to required Linux
11407         kernel headers version.
11408         * INSTALL: Regenerated.
11409
11410         * conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
11411         header inclusion.
11412         [POSIX] (limits.h): Likewise.
11413         [POSIX] (math.h): Likewise.
11414         [POSIX] (sys/wait.h): Likewise.
11415         * conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
11416         function.
11417         [POSIX] (stddef.h): Do not allow header inclusion.
11418
11419 2014-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11420
11421         * sysdeps/generic/symbol-hacks.h (memcpy): Add internal alias.
11422
11423 2014-04-30  Yang Yingliang  <yangyingliang@huawei.com>
11424
11425         * nptl/pthread_cond_broadcast.c (__pthread_cond_broadcast):
11426         Return immediately after lll_futex_wake.
11427
11428 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11429
11430         [BZ #16791]
11431         * nscd/nscd-client.h (datahead_init_common): Initialize entire
11432         structure.
11433         (datahead_init_pos): Call datahead_init_common early.
11434         (datahead_init_neg): Likewise.
11435
11436         * nscd/nscd-client.h (datahead_init_common, datahead_init_pos,
11437         datahead_init_neg): New functions.
11438         * nscd/aicache.c (addhstaiX): Use them.
11439         * nscd/grpcache.c (cache_addgr): Likewise.
11440         * nscd/hstcache.c (cache_addhst): Likewise.
11441         * nscd/initgrcache.c (addinitgroupsX): Likewise.
11442         * nscd/netgroupcache.c (do_notfound): Likewise.
11443         (addgetnetgrentX): Likewise.
11444         (addinnetgrX): Likewise.
11445         * nscd/pwdcache.c (cache_addpw): Likewise.
11446         * nscd/servicescache.c (cache_addserv): Likewise.
11447
11448 2014-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
11449             Atsushi Onoe  <atsushi@onoe.org>
11450
11451         [BZ #14308]
11452         [BZ #12994]
11453         [BZ #13651]
11454         * resolv/res_query.c (__libc_res_nsearch): Return if at least
11455         one response is valid.
11456         * resolv/res_send.c (send_dg): Check for validity of other
11457         response if the current response is a referral.
11458
11459 2014-04-29  Steve Ellcey  <sellcey@mips.com>
11460
11461         * iconv/skeleton.c (ONE_DIRECTION): Set default value if not set.
11462
11463 2014-04-29  Stefan Liebler  <stli@linux.vnet.ibm.com>
11464
11465         [BZ #16823]
11466         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl):
11467         Always divide by positive zero when computing -Inf result.
11468         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
11469         * sysdeps/ieee754/flt-32/s_log1pf.c (__log1pf): Likewise.
11470
11471 2014-04-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11472
11473         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Do not update
11474         FPSCR if value do not change.
11475         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
11476         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Likewise.
11477         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Likewise.
11478         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
11479         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Likewise.
11480         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_reg_to_exceptions): New helper
11481         function.
11482
11483 2014-05-29  Carlos O'Donell  <carlos@systemhalted.org>
11484
11485         * sysdeps/hppa: Move directory from ports/sysdeps/hppa.
11486         * sysdeps/unix/sysv/linux/hppa: Move directory from
11487         ports/systeps/unix/sysv/linux/hppa.
11488         * README: Update listing for hppa-*-linux-gnu.
11489
11490 2014-04-28  Ondřej Bílka  <neleai@seznam.cz>
11491
11492         [BZ #16754]
11493         * manual/stdio.texi (Hook functions): Fix types of stream hook
11494         functions.
11495         [BZ #16854]
11496         * socket/sys/socket.h: Fix typo in comment.
11497
11498 2014-04-28  Wilco  <wdijkstr@arm.com>
11499
11500         * sysdeps/arm/fenv_private.h: New file.
11501         * sysdeps/arm/math_private.h: New file.
11502         * sysdeps/arm/fpu_control.h: Add _FPU_MASK_NCZV and _FPU_MASK_EXCEPT.
11503
11504 2014-04-25  H.J. Lu  <hongjiu.lu@intel.com>
11505
11506         * sysdeps/x86/bits/link.h (La_x86_64_regs): Replace __int128
11507         with __int128_t.
11508         (La_x86_64_retval): Likewise.
11509
11510 2014-04-24  Ian Bolton  <ian.bolton@arm.com>
11511
11512         * sysdeps/aarch64/fpu/fclrexcpt.c (feclearexcept): Don't write to
11513         fpsr if value didn't change.
11514         * sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept): Don't write
11515         to fpcr if value didn't change.
11516         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Likewise.
11517         * sysdeps/aarch64/fpu/feholdexcpt.c (feholdexcept): Don't write to
11518         fpsr or fpcr if value didn't change.
11519         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
11520         * sysdeps/aarch64/fpu/fesetround.c (fesetround): Don't write to
11521         fpcr if value didn't change.
11522         * sysdeps/aarch64/fpu/fsetexcptflg.c (fesetexceptflag): Don't write
11523         to fpsr if value didn't change.
11524
11525 2014-02-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
11526
11527         * nptl/tst-sem3.c: Use test-skeleton.c
11528         (main): Rename to do_test.  Use return instead of
11529         exit.
11530         * nptl/tst-sem4.c: Use test-skeleton.c
11531         (main): Rename to do_test.
11532
11533 2014-04-22  David S. Miller  <davem@davemloft.net>
11534
11535         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h
11536         (struct sigaction): New struct member __glibc_reserved0, change
11537         type of sa_flags to int.
11538
11539 2014-04-22  Yufeng Zhang  <yufeng.zhang@arm.com>
11540
11541         * stdlib/longlong.h (count_leading_zeros, count_trailing_zeros)
11542         (COUNT_LEADING_ZEROS_0): Define for AArch64.
11543
11544 2014-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
11545
11546         * nptl/sysdeps/unix/sysv/linux/sem_trywait.c: Include atomic.h.
11547         * nptl/sysdeps/unix/sysv/linux/sem_wait.c: Likewise.
11548
11549 2014-04-22  Will Newton  <will.newton@linaro.org>
11550             Venkataramanan Kumar  <venkataramanan.kumar@linaro.org>
11551
11552         * sysdeps/aarch64/__longjmp.S: Include stap-probe.h.
11553         (__longjmp): Add longjmp and longjmp_target SystemTap
11554         probes.
11555         * sysdeps/aarch64/setjmp.S: Include stap-probe.h.
11556         (__sigsetjmp): Add setjmp SystemTap probe.
11557
11558 2014-04-17  Carlos O'Donell  <carlos@redhat.com>
11559
11560         * manual/intro.texi (Roadmap to the manual): Sort chapter listing to
11561         match manual order.
11562
11563 2014-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11564
11565         * nptl/sysdeps/unix/sysv/linux/powerpc/pthread_once.c: Remove file.
11566
11567         * sysdeps/powerpc/fpu/fenv_private.h
11568         (libc_feholdexcept_setroundl_ctx): Define to
11569         libc_feholdexcept_setround_ppc_ctx.
11570         (libc_fesetenvl_ctx): Define to libc_fesetenv_ppc_ctx.
11571         (libc_feholdsetroundl_ctx): Define to libc_feholdsetround_ppc_ctx.
11572         (libc_feresetroundl_ctx): Define to libc_feresetround_ppc_ctx.
11573         (libc_feupdateenvl_ctx): libc_feupdateenv_ppc_ctx.
11574
11575 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
11576
11577         * sysdeps/aarch64/math-tests.h: New file.
11578
11579 2014-04-17  Sihai Yao  <sihai.ysh@alibaba-inc.com>
11580
11581         * sysdeps/x86_64/multiarch/ifunc-defines.sym (COMMON_CPUID_INDEX_7):
11582         New.
11583         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
11584         Check and set bit_AVX2_Usable.
11585         * sysdeps/x86_64/multiarch/init-arch.h (bit_AVX2_Usable): New
11586         macro.
11587         (bit_AVX2): Likewise.
11588         (index_AVX2_Usable): Likewise.
11589         (CPUID_AVX2): Likewise.
11590         (HAS_AVX2): Likewise.
11591
11592 2014-04-17  Will Newton  <will.newton@linaro.org>
11593
11594         * manual/setjmp.texi (System V contexts): Add note that
11595         calling setcontext on a context created by a call to a
11596         signal handler is undefined.  Update text to note that
11597         setcontext from a signal handler is possible but not
11598         recommended.
11599
11600         [BZ #16629]
11601         * stdlib/tst-setcontext.c: Include signal.h.
11602         (main): Check that the signal stack before and
11603         after swapcontext is the same.
11604
11605         * sysdeps/unix/sysv/linux/aarch64/setcontext.S (__setcontext):
11606         Re-implement to restore registers in user code and avoid
11607         rt_sigreturn system call.
11608
11609 2014-04-17  Wilco  <wdijkstr@arm.com>
11610
11611         * sysdeps/arm/math-tests.h: New file: Set ARM math-test settings.
11612         * sysdeps/generic/math-tests.h: Add macro (EXCEPTION_ENABLE_SUPPORTED).
11613         * math/test-fenv.c: Skip exception trap tests on targets which only
11614         support non-stop mode.
11615
11616 2014-04-17  Ian Bolton  <ian.bolton@arm.com>
11617             Wilco Dijkstra  <wilco.dijkstra@arm.com>
11618
11619         * sysdeps/aarch64/fpu/math_private.h (HAVE_RM_CTX)
11620         (libc_feholdsetround_aarch64_ctx)
11621         (libc_feholdsetround_ctx, libc_feholdsetroundf_ctx)
11622         (libc_feholdsetroundl_ctx, libc_feresetround_aarch64_ctx)
11623         (libc_feresetround_ctx, libc_feresetroundf_ctx)
11624         (libc_feresetroundl_ctx, libc_feresetround_noex_aarch64_ctx)
11625         (libc_feresetround_noex_ctx, libc_feresetround_noexf_ctx)
11626         (libc_feresetround_noexl_ctx): Define.
11627
11628 2014-04-16  Richard Henderson  <rth@redhat.com>
11629
11630         * sysdeps/unix/sysv/linux/alpha/nptl/pthread_once.c: Remove.
11631
11632         * sysdeps/alpha/Makefile [debug] (CFLAGS-backtrace.c): Enable
11633         unwind tables.
11634
11635         * sysdeps/unix/alpha/sysdep.h (__pointer_chk_guard): Remove
11636         const from the non-libc, non-ldso copy.
11637
11638         * sysdeps/alpha/libm-test-ulps: Regenerate.
11639
11640 2014-04-16  Ian Bolton  <ian.bolton@arm.com>
11641             Wilco Dijkstra  <wilco.dijkstra@arm.com>
11642
11643         * sysdeps/aarch64/fpu/math_private.h: New file.
11644
11645 2014-04-16  Marcus Shawcroft  <marcus.shawcroft@arm.com>
11646
11647         * sysdeps/aarch64/libm-test-ulps: Regenerate.
11648
11649 2014-04-16  Igor Zamyatin  <igor.zamyatin@intel.com>
11650
11651         [BZ #16275]
11652         * sysdeps/x86_64/bits/link.h (La_x86_64_regs): Add lr_bnd.
11653         (La_x86_64_retval): Add lrv_bnd0 and lrv_bnd1.
11654         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Save
11655         Intel MPX bound registers before _dl_profile_fixup.
11656         * sysdeps/x86_64/dl-trampoline.h: Restore Intel MPX bound
11657         registers after _dl_profile_fixup.  Save and restore bound
11658         registers bnd0/bnd1 when calling _dl_call_pltexit.
11659         * sysdeps/x86_64/link-defines.sym (BND_SIZE): New.
11660         (LR_BND_OFFSET): Likewise.
11661         (LRV_BND0_OFFSET): Likewise.
11662         (LRV_BND1_OFFSET): Likewise.
11663
11664 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
11665
11666         * sysdeps/mach/hurd/tls.h (dtv, dtv_t, tcbhead_t): Move declarations
11667         to...
11668         * sysdeps/mach/hurd/i386/tls.h: ... here.
11669         (tcbhead_t): Add multiple_threads, sysinfo, stack_guard,
11670         pointer_guard, gscope_flag, private_futex, __private_tm, __private_ss
11671         fields.
11672
11673 2014-04-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
11674
11675         * sysdeps/mach/munmap.c (__munmap): Return EINVAL if `addr' is 0.
11676
11677 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
11678
11679         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
11680
11681 2014-04-16  Stefan Liebler  <stli@linux.vnet.ibm.com>
11682
11683         [BZ #14770]
11684         * sysdeps/s390/configure.ac: Check for Binutils >= 2.24.
11685         * sysdeps/s390/configure: Regenerate.
11686
11687         [BZ #16824]
11688         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l):
11689         Set round-to-nearest internally to reduce error accumulation.
11690
11691 2014-04-16  Alan Modra  <amodra@gmail.com>
11692
11693         [BZ #16740]
11694         [BZ #16619]
11695         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Rewrite.
11696         * math/libm-test.inc (frexp_test_data): Add tests.
11697         * NEWS: Update fixed bug list.
11698
11699 2014-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
11700
11701         * benchtests/Makefile: Depend on libraries in build directory.
11702         (bench-math): Separate out math tests.
11703         (bench-pthread): Separate out pthread tests.
11704         (bench): Include math and pthread tests.
11705
11706 2014-04-14  Carlos O'Donell  <carlos@redhat.com>
11707
11708         [BZ #16831]
11709         * csu/libc-start.c (LIBC_START_MAIN) [!SHARED]: Call
11710         _dl_debug_initialize.
11711
11712         * configure.ac: Remove SELinux header check.
11713         * configure: Regenerate.
11714         * nscd/selinux.c (perms): Array of const char* to permission names.
11715         (nscd_request_avc_has_perm): Call security_deny_unknown to find
11716         default policy. Call string_to_security_class and string_to_av_perm to
11717         translate strings. Enforce default policy and call avs_has_perm with
11718         results of translated strings.
11719
11720 2014-04-13  David S. Miller  <davem@davemloft.net>
11721
11722         * sysdeps/sparc/fpu/libm-test-ulps: Update.
11723
11724 2014-04-12  Allan McRae  <allan@archlinux.org>
11725
11726         [BZ #16838]
11727         * manual/string.texi (Collation Functions): Fix qsort argument
11728         order in example.
11729         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
11730
11731 2014-04-11  Chris Metcalf  <cmetcalf@tilera.com>
11732
11733         * math/test-fenv-preserve.c [FE_ALL_EXCEPT == 0] (do_test):
11734         Make the test a no-op if there are no exceptions defined.
11735
11736 2014-04-11  Paul Pluzhnikov  <ppluzhnikov@google.com>
11737
11738         * elf/Makefile (tests): make tst-dlopen-aout conditional on
11739         enable-hardcoded-path-in-tests
11740
11741 2014-04-11  Will Newton  <will.newton@linaro.org>
11742
11743         * benchtests/Makefile (extra-objs): Add json-lib.o.
11744         (bench-func): Tidy up JSON output.
11745         * benchtests/bench-skeleton.c: Include json-lib.h.
11746         (main): Use JSON library functions to do output of
11747         benchmark results.
11748         * benchtests/bench-timing-type.c (main): Output the
11749         timing type simply, leaving formatting to the user.
11750         * benchtests/json-lib.c: New file.
11751         * benchtests/json-lib.h: Likewise.
11752
11753 2014-04-11  Torvald Riegel  <triegel@redhat.com>
11754
11755         [BZ #15215]
11756         * nptl/sysdeps/unix/sysv/linux/sparc/pthread_once.c: Moved to ...
11757         * nptl/sysdeps/unix/sysv/linux/pthread_once.c: ... here.  Add missing
11758         memory barriers.  Add comments.
11759         * sysdeps/unix/sysv/linux/aarch64/nptl/pthread_once.c: Remove file.
11760         * sysdeps/unix/sysv/linux/arm/nptl/pthread_once.c: Remove file.
11761         * sysdeps/unix/sysv/linux/ia64/nptl/pthread_once.c: Remove file.
11762         * sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Remove file.
11763         * sysdeps/unix/sysv/linux/mips/nptl/pthread_once.c: Remove file.
11764         * sysdeps/unix/sysv/linux/tile/nptl/pthread_once.c: Remove file.
11765
11766 2014-04-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
11767
11768         * sysdeps/s390/s390-32/configure.ac: Unify file with ...
11769         * sysdeps/s390/s390-64/configure.ac: ... this ...
11770         * sysdeps/s390/configure.ac: ... to here.
11771         * sysdeps/s390/s390-32/configure: Delete file.
11772         * sysdeps/s390/s390-64/configure: Delete file.
11773         * sysdeps/s390/configure: Regenerate.
11774
11775 2014-04-11  Joseph Anthony Pasquale Holsten  <joseph@josephholsten.com>
11776
11777         * resolv/res_query.c (__libc_res_nsearch): Fix typo in comment.
11778
11779 2014-04-11  Will Newton  <will.newton@linaro.org>
11780
11781         * malloc/malloc.c [!MALLOC_DEBUG]: #define MALLOC_DEBUG
11782         to zero if it is not defined elsewhere.  (mtrim): Test
11783         the value of MALLOC_DEBUG with #if rather than #ifdef.
11784
11785 2014-04-10 Torvald Riegel  <triegel@redhat.com>
11786
11787         * benchtests/pthread_once-inputs: New file.
11788         * benchtests/pthread_once-source.c: New file.
11789         * benchtests/README: Update documentation.
11790
11791 2014-04-09  Igor Zamyatin  <igor.zamyatin@intel.com>
11792             H.J. Lu  <hongjiu.lu@intel.com>
11793
11794         [BZ #16275]
11795         * config.h.in (HAVE_MPX_SUPPORT): New #undef.
11796         * sysdeps/x86_64/configure.ac: Set HAVE_MPX_SUPPORT.
11797         * sysdeps/x86_64/configure: Regenerated.
11798         * sysdeps/x86_64/dl-trampoline.S (REGISTER_SAVE_AREA): New
11799         macro.
11800         (REGISTER_SAVE_RAX): Likewise.
11801         (REGISTER_SAVE_RCX): Likewise.
11802         (REGISTER_SAVE_RDX): Likewise.
11803         (REGISTER_SAVE_RSI): Likewise.
11804         (REGISTER_SAVE_RDI): Likewise.
11805         (REGISTER_SAVE_R8): Likewise.
11806         (REGISTER_SAVE_R9): Likewise.
11807         (REGISTER_SAVE_BND0): Likewise.
11808         (REGISTER_SAVE_BND1): Likewise.
11809         (REGISTER_SAVE_BND2): Likewise.
11810         (_dl_runtime_resolve): Use them.  Save and restore Intel MPX
11811         bound registers when calling _dl_fixup.
11812
11813 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11814
11815         * bits/string.h (_STRING_ARCH_unaligned): Define it to 0.
11816         * crypt/sha256.c (_STRING_ARCH_unaligned): Check its value instead
11817         of its definition.
11818         * iconv/gconv_simple.c (_STRING_ARCH_unaligned): Likewise.
11819         * iconv/loop.c (_STRING_ARCH_unaligned): Likewise.
11820         * iconv/skeleton.c (_STRING_ARCH_unaligned): Likewise.
11821         * nscd/nscd_gethst_r.c (_STRING_ARCH_unaligned): Likewise.
11822         * nscd/nscd_getserv_r.c (_STRING_ARCH_unaligned): Likewise.
11823         * nscd/nscd_helper.c (_STRING_ARCH_unaligned): Likewise.
11824         * resolv/res_send.c (_STRING_ARCH_unaligned): Likewise.
11825
11826 2014-04-09  Peter Brett  <peter@peter-b.co.uk>
11827
11828         [BZ #15514]
11829         * sysdeps/posix/pathconf.c (__pathconf): Use statvfs64() for
11830         pathconf(_PC_NAME_MAX).
11831
11832 2014-04-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11833
11834         * nptl/sysdeps/pthread/pthread.h (__PTHREAD_MUTEX_HAVE_ELISION):
11835         Remove macro usage.
11836         (__PTHREAD_SPINS): Move definition to ...
11837         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
11838         (__PTHREAD_SPINS): ... here.
11839         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
11840         (__PTHREAD_SPIN): Likewise.
11841         * nptl/sysdeps/unix/sysv/linux/sh/bits/pthreadtypes.h
11842         (__PTHREAD_SPIN): Likewise.
11843         * nptl/sysdeps/unix/sysv/linux/sparc/bits/pthreadtypes.h
11844         (__PTHREAD_SPIN): Likewise.
11845         * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h
11846         (__PTHREAD_SPIN): Likewise.
11847         * sysdeps/unix/sysv/linux/aarch64/nptl/bits/pthreadtypes.h
11848         (__PTHREAD_SPIN): Likewise.
11849         * sysdeps/unix/sysv/linux/alpha/nptl/bits/pthreadtypes.h
11850         (__PTHREAD_SPIN): Likewise.
11851         * sysdeps/unix/sysv/linux/arm/nptl/bits/pthreadtypes.h
11852         (__PTHREAD_SPIN): Likewise.
11853         * sysdeps/unix/sysv/linux/ia64/nptl/bits/pthreadtypes.h
11854         (__PTHREAD_SPIN): Likewise.
11855         * sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
11856         (__PTHREAD_SPIN): Likewise.
11857         * sysdeps/unix/sysv/linux/microblaze/nptl/bits/pthreadtypes.h
11858         (__PTHREAD_SPIN): Likewise.
11859         * sysdeps/unix/sysv/linux/mips/nptl/bits/pthreadtypes.h
11860         (__PTHREAD_SPIN): Likewise.
11861         * sysdeps/unix/sysv/linux/tile/nptl/bits/pthreadtypes.h
11862         (__PTHREAD_SPIN): Likewise.
11863
11864         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: New file.
11865         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: new file.
11866         * sysdeps/powerpc/powerpc64/power6x/multiarch/Implies: New file.
11867         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove multiarch
11868         imply folder.
11869         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Likewise.
11870         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: Likewise.
11871         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: Likewise.
11872         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: Adjust
11873         correct imply path.
11874         * sysdeps/powerpc/powerpc64/power7/strncat.S (STRLEN): Define correct
11875         strlen symbol for non multi-arch builds.
11876         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (__isnan): Add
11877         missing hidden_def and weak_alias.
11878
11879 2014-04-08  Carlos O'Donell  <carlos@redhat.com>
11880
11881         * manual/ipc.texi (sem_close): AC-unsafe because of aculock.
11882
11883 2014-04-07  Will Newton  <will.newton@linaro.org>
11884
11885         * string/basename.c [HAVE_CONFIG_H]: Remove #ifdef and
11886         and contents.  [!_LIBC] Remove #ifndef and contents.
11887         (basename): Use ANSI prototype.  [_LIBC] Remove #idef.
11888         * string/memccpy.c (__memccpy): Use ANSI prototype.
11889         * string/memfrob.c (memfrob): Likewise.
11890         * string/strcoll.c (STRCOLL): Likewise.
11891         * string/strlen.c (strlen): Likewise.
11892         * string/strtok.c (STRTOK): Likewise.
11893         * string/strcat.c: Remove unused #include of memcopy.h.
11894         (strcat): Use ANSI prototype.
11895         * string/strchr.c: Remove unused #include of memcopy.h.
11896         (strchr): Use ANSI prototype.
11897         * string/strcmp.c: Remove unused #include of memcopy.h.
11898         (strcmp): Use ANSI prototype.
11899         * string/strcpy.c: Remove unused #include of memcopy.h.
11900         (strcpy): Use ANSI prototype.
11901
11902 2014-04-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
11903
11904         * Makeconfig (CPPFLAGS): Add config-extra-cppflags to list.
11905         * config.make.in (config-extra-cppflags): Set it from
11906         libc_extra_cppflags.
11907         * configure.ac (libc_extra_cflags): Make it accumulate over
11908         configure fragments.
11909         (libc_extra_cppflags): New flag.
11910         * configure. Regenerate.
11911         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac
11912         (libc_cv_ppc64_def_call_elf): Define it to yes if compiler does
11913         not set _CALL_ELF and add -D_CALL_ELF=1 to libc_extra_cppflags.
11914         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Regenerate.
11915
11916         [BZ #16815]
11917         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (__nearbyint): Fix
11918         result for FE_DOWNWARD rounding mode.
11919         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S (__nearbyintf):
11920         Likewise.
11921         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
11922
11923 2014-04-04  Chris Metcalf  <cmetcalf@tilera.com>
11924
11925         * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug
11926         in function argument name.
11927
11928 2014-04-03  David Svoboda  <svoboda@cert.org>
11929
11930         [BZ #5666]
11931         * manual/stdio.texi (Line-Oriented Input): Document buffer allocation
11932         explicitly.
11933
11934 2014-04-03  Roland McGrath  <roland@hack.frob.com>
11935
11936         * elf/dl-unmap-segments.h: New file.
11937         * sysdeps/generic/ldsodefs.h
11938         (DL_UNMAP): Use _dl_unmap_segments in place of __munmap.
11939         * elf/dl-close.c: Include <dl-unmap-segments.h>.
11940         * elf/dl-fptr.c: Likewise.
11941         (_dl_unmap): Use _dl_unmap_segments in place of __munmap.
11942         * sysdeps/aarch64/tlsdesc.c: Likewise.
11943         * sysdeps/arm/tlsdesc.c: Likewise.
11944         * sysdeps/i386/tlsdesc.c: Likewise.
11945         * sysdeps/tile/dl-runtime.c: Likewise.
11946         * sysdeps/x86_64/tlsdesc.c: Likewise.
11947         * elf/dl-load.h: New file.
11948         * elf/dl-load.c: Include it.
11949         (MAP_FILE, MAP_COPY, MAP_BASE_ADDR):
11950         Macros moved to dl-load.h.
11951         (ELF_PREFERRED_ADDRESS_DATA, ELF_PREFERRED_ADDRESS): Likewise.
11952         (_dl_map_object_from_fd): Type 'struct loadcmd' moved to dl-load.h.
11953         Use _dl_unmap_segments in place of __munmap.
11954         Break out segment-mapping loop into ...
11955         * elf/dl-map-segments.h (_dl_map_segments): ... here, in new file.
11956
11957 2014-04-03  Will Newton  <will.newton@linaro.org>
11958
11959         * elf/dl-lookup.c (do_lookup_x): Remove comment
11960         referring to nested function and move variable
11961         declarations down to before first use.
11962
11963 2014-04-02  Joseph Myers  <joseph@codesourcery.com>
11964
11965         [BZ #16799]
11966         [BZ #16800]
11967         * math/s_catan.c (__catan): Avoid passing -0 denominator to atan2
11968         with 0 numerator.
11969         * math/s_catanf.c (__catanf): Likewise.
11970         * math/s_catanh.c (__catanh): Likewise.
11971         * math/s_catanhf.c (__catanhf): Likewise.
11972         * math/s_catanhl.c (__catanhl): Likewise.
11973         * math/s_catanl.c (__catanl): Likewise.
11974         * sysdeps/ieee754/flt-32/e_logf.c (__ieee754_logf): Always divide
11975         by positive zero when computing -Inf result.
11976         * math/libm-test.inc (catan_test): Use ALL_RM_TEST.
11977         (catanh_test): Likewise.
11978         * sysdeps/i386/fpu/libm-test-ulps: Update.
11979         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11980
11981         [BZ #16789]
11982         * math/s_clog.c (__clog): Use math_force_eval to ensure underflow
11983         instead of using underflowing value in computing result.
11984         * math/s_clog10.c (__clog10): Likewise.
11985         * math/s_clog10f.c (__clog10f): Likewise.
11986         * math/s_clog10l.c (__clog10l): Likewise.
11987         * math/s_clogf.c (__clogf): Likewise.
11988         * math/s_clogl.c (__clogl): Likewise.
11989         * math/libm-test.inc (clog_test): Use ALL_RM_TEST.
11990         (clog10_test): Likewise.
11991         * sysdeps/i386/fpu/libm-test-ulps: Update.
11992         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
11993
11994 2014-04-02  Alan Modra  <amodra@gmail.com>
11995
11996         [BZ #16739]
11997         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Correct
11998         output when value is near a power of two.  Use int64_t for lx and
11999         remove casts.  Use decimal rather than hex exponent constants.
12000         Don't use long double multiplication when double will suffice.
12001         * math/libm-test.inc (nextafter_test_data): Add tests.
12002         * NEWS: Add 16739 and 16786 to bug list.
12003
12004         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Correct stream hint.
12005
12006         * sysdeps/powerpc/powerpc64/start.S: Add @toc to toc symbol reference.
12007
12008 2014-04-01  Will Newton  <will.newton@linaro.org>
12009
12010         * benchtests/Makefile (CFLAGS-bench-ffs.c): Add
12011         -fno-builtin.  (CFLAGS-bench-ffsll.c): Likewise.
12012
12013 2014-04-01  Florian Weimer  <fweimer@redhat.com>
12014
12015         [BZ #13347]
12016         * nptl/nptl-init.c (sighandler_setxid): Check system call result.
12017         * nptl/tst-setuid2.c: New file.
12018         * nptl/Makefile (xtests): Add tst-setuid2.
12019
12020 2014-04-01  Alan Modra  <amodra@gmail.com>
12021
12022         [BZ #16786]
12023         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S: Don't trash stack.
12024
12025 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
12026
12027         [BZ #6803]
12028         [BZ #6804]
12029         * math/w_scalb.c (__scalb): For non-SVID mode, check result and
12030         set errno as appropriate.
12031         * math/w_scalbf.c (__scalbf): Likewise.
12032         * math/w_scalbl.c (__scalbl): Likewise.
12033         * math/gen-libm-test.pl (parse_args): Handle ERRNO_PLUS_OFLOW,
12034         ERRNO_MINUS_OFLOW, ERRNO_PLUS_UFLOW and ERRNO_MINUS_UFLOW.
12035         * math/libm-test.inc (scalb_test_data): Add errno expectations.
12036         Add more NaN tests.
12037
12038         [BZ #16349]
12039         * math/w_atan2.c: Include <errno.h>.
12040         (__atan2): Set errno for result underflowing to zero.
12041         * math/w_atan2f.c: Include <errno.h>.
12042         (__atan2f): Set errno for result underflowing to zero.
12043         * math/w_atan2l.c: Include <errno.h>.
12044         (__atan2l): Set errno for result underflowing to zero.
12045         * math/auto-libm-test-in: Don't allow missing errno for some atan2
12046         tests.
12047         * math/auto-libm-test-out: Regenerated.
12048
12049 2014-03-31  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12050
12051         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S (MFVSRD_R3_V1):
12052         Encode instruction correctly in little endian.
12053         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S (MFVSRD_R3_V1):
12054         Likewise.
12055         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S (MFVSRD_R3_V1):
12056         Likewise.
12057         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S (MFVSRD_R3_V1):
12058         Likewise.
12059         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S (MFVSRD_R3_V1):
12060         Likewise.
12061
12062 2014-03-31  Joseph Myers  <joseph@codesourcery.com>
12063
12064         [BZ #9894]
12065         * sysdeps/unix/sysv/linux/kernel-features.h
12066         [__sparc__ && !__arch64__ && !__sparc_v9__]
12067         (__ASSUME_SET_ROBUST_LIST): Do not define.
12068         [__sparc__ && !__arch64__ && !__sparc_v9__]
12069         (__ASSUME_FUTEX_LOCK_PI): Likewise.
12070         [__sparc__ && !__arch64__ && !__sparc_v9__] (__ASSUME_REQUEUE_PI):
12071         Likewise.
12072         * sysdeps/unix/sysv/linux/arm/kernel-features.h
12073         (__ASSUME_FUTEX_LOCK_PI): Undefine.
12074         (__ASSUME_REQUEUE_PI): Likewise.
12075         (__ASSUME_SET_ROBUST_LIST): Likewise.
12076         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
12077         [__LINUX_KERNEL_VERSION < 0x030a00] (__ASSUME_FUTEX_LOCK_PI):
12078         Undefine.
12079         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12080         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_FUTEX_LOCK_PI):
12081         Likewise.
12082         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_REQUEUE_PI):
12083         Likewise.
12084         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_SET_ROBUST_LIST):
12085         Likewise.
12086         * sysdeps/unix/sysv/linux/mips/kernel-features.h
12087         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_FUTEX_LOCK_PI):
12088         Undefine.
12089         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_REQUEUE_PI): Likewise.
12090         [__mips == 1 || _MIPS_ARCH_R5900] (__ASSUME_SET_ROBUST_LIST):
12091         Likewise.
12092
12093         [BZ #16648]
12094         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12095         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_FUTIMESAT): Define.
12096         * sysdeps/unix/sysv/linux/microblaze/futimesat.c: New file.
12097
12098 2014-03-31  Will Newton  <will.newton@linaro.org>
12099
12100         * benchtests/Makefile (bench): Add ffs and ffsll to list
12101         of tests.
12102         * benchtests/ffs-inputs: New file.
12103         * benchtests/ffsll-inputs: Likewise.
12104
12105 2014-03-29  Joseph Myers  <joseph@codesourcery.com>
12106
12107         [BZ #16770]
12108         * math/e_scalb.c (__ieee754_scalb): Check second argument is not
12109         too large before casting to int.
12110         * math/e_scalbf.c (__ieee754_scalbf): Likewise.
12111         * math/e_scalbl.c (__ieee754_scalbl): Likewise.
12112         * math/libm-test.inc (scalb_test_data): Add more tests.
12113
12114 2014-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
12115
12116         * benchtests/Makefile (DETAILED_OPT): New make option.
12117         (bench-func): Run benchmark program with -d if DETAILED_OPT is
12118         set.
12119         * benchtests/bench-skeleton.c: Include stdbool.h.
12120         (main): Store and print timings per input.
12121         * benchtests/scripts/bench.py (STRUCT_TEMPLATE): Add timing
12122         member to each argument value.
12123         (EPILOGUE): Define new macros RESULT and RESULT_ACCUM.
12124         (_print_arg_data): Initialize per-input timing to 0.
12125
12126         * benchtests/Makefile (timing-type): New binary.
12127         (bench-clean): Also remove bench-timing-type.
12128         (bench): New target for timing-type.
12129         (bench-func): Print output in JSON format.
12130         * benchtests/bench-skeleton.c (main): Print output in JSON
12131         format.
12132         * benchtests/bench-timing-type.c: New file.
12133         * benchtests/bench-timing.h (TIMING_TYPE): New macro.
12134         (TIMING_PRINT_STATS): Remove.
12135         * benchtests/scripts/bench.py (_print_arg_data): Store variant
12136         name separately.
12137
12138         * benchtests/bench-modf.c: Remove.
12139         * benchtests/modf-inputs: New inputs file.
12140
12141 2014-03-28  Joseph Myers  <joseph@codesourcery.com>
12142
12143         [BZ #16362]
12144         * math/s_clog10.c (M_PI_LOG10E): New macro.
12145         (__clog10): Use M_PI_LOG10E instead of M_PI when real and
12146         imaginary parts are 0.
12147         * math/s_clog10f.c (M_PI_LOG10Ef): New macro.
12148         (__clog10f): Use M_PI_LOG10Ef instead of M_PI when real and
12149         imaginary parts are 0.
12150         * math/s_clog10l.c (M_PI_LOG10El): New macro.
12151         (__clog10l): Use M_PI_LOG10El instead of M_PIl when real and
12152         imaginary parts are 0.
12153         * math/libm-test.inc (clog10_test_data): Update expected results
12154         for when real and imaginary parts are 0.
12155
12156 2014-03-27  Paul Pluzhnikov  <ppluzhnikov@google.com>
12157
12158         * elf/dl-load.c: Finish conversion of __builtin_expect into
12159         __glibc_{un}likely.
12160
12161 2014-03-27  Joseph Myers  <joseph@codesourcery.com>
12162
12163         [BZ #16348]
12164         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]: Use
12165         1+x for argument with exponent below -67.
12166         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [!USE_AS_EXPM1L]:
12167         Likewise.
12168         * math/auto-libm-test-in: Add more tests of exp.
12169         * math/auto-libm-test-out: Regenerated.
12170
12171 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
12172
12173         [BZ #16759]
12174         * inet/getnetgrent_r.c (get_nonempty_val): New function.
12175         (nscd_getnetgrent): Use it.
12176
12177         [BZ #16760]
12178         * nscd/netgroupcache.c (addgetnetgrentX): Use memmove instead
12179         of stpcpy.
12180
12181 2014-03-27  Andi Kleen  <ak@linux.intel.com>
12182
12183         * nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.h (lll_lock)
12184         (lll_robust_lock, lll_cond_lock, lll_timedlock)
12185         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
12186         (lll_robust_unlock): Remove out of line section. Use cfi
12187         intrinsics.
12188         (LLL_STUB_UNWIND_INFO*): Remove.
12189         * nptl/sysdeps/unix/sysv/linux/i386/lowlevellock.h (lll_lock)
12190         (lll_robust_lock, lll_cond_lock, lll_timedlock)
12191         (lll_robust_cond_lock, lll_robust_timedlock, lll_unlock)
12192         (lll_robust_unlock): Remove out of line section. Use cfi
12193         intrinsics.
12194         (LLL_STUB_UNWIND_INFO*): Remove.
12195
12196 2014-03-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
12197
12198         [BZ #16758]
12199         * nscd/netgroupcache.c (addinnetgrX): Succeed if triplet has
12200         blank values.
12201
12202 2014-03-26  Paul Pluzhnikov  <ppluzhnikov@google.com>
12203
12204         * elf/dl-load.c: Convert __builtin_expect into __glibc_{un}likely.
12205
12206 2014-03-26  Joseph Myers  <joseph@codesourcery.com>
12207
12208         [BZ #16198]
12209         * sysdeps/x86_64/fpu/fegetenv.c (fegetenv): Use fldenv after
12210         fnstenv.
12211         * math/test-fenv-preserve.c: New file.
12212         * math/Makefile (tests): Add test-fenv-preserve.
12213
12214 2014-03-26  Will Newton <will.newton@linaro.org>
12215
12216         * benchtests/bench-strtod.c (TIMEOUT): Define to 10.
12217
12218 2014-03-25  Roland McGrath  <roland@hack.frob.com>
12219
12220         * scripts/versionlist.awk: Partition the version sets and emit all
12221         GLIBC_* (sorted) before all others (sorted).
12222
12223 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
12224
12225         * elf/Versions (libc) [EXPORT_UNWIND_FIND_FDE]: Add empty
12226         GLIBC_2.2.5 version.
12227
12228 2014-03-25 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12229
12230         * scripts/localplt.awk: Check for PLT generated by internal IFUNC
12231         calls.
12232
12233         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h: Revert
12234         previous change.
12235
12236         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
12237
12238 2014-03-25  Andreas Schwab  <schwab@suse.de>
12239
12240         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Add out_fail2
12241         label to be used after in6ailist is initialized.
12242
12243 2014-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12244
12245         * nptl/sysdeps/unix/sysv/linux/powerpc/bits/pthreadtypes.h
12246         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
12247
12248 2014-03-25  Joseph Myers  <joseph@codesourcery.com>
12249
12250         [BZ #16357]
12251         [BZ #16599]
12252         * math/gen-auto-libm-tests.c (fp_format_desc): Add field
12253         min_plus_half.
12254         (fp_formats): Update initializers.
12255         (init_fp_formats): Initialize new field.
12256         (output_for_one_input_case): Allow underflow for results up to
12257         min_plus_half.
12258         * math/libm-test.inc (log1p_test): Use ALL_RM_TEST.
12259         * math/auto-libm-test-in: Don't mark some underflows from asin and
12260         atanh as spurious.
12261         * math/auto-libm-test-out: Regenerated.
12262         * sysdeps/i386/fpu/libm-test-ulps: Update.
12263         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12264
12265 2014-03-25  Andreas Schwab  <schwab@suse.de>
12266
12267         * libio/Makefile (tst-ftell-partial-wide-ENV)
12268         (tst-ftell-active-handler-ENV): Define.
12269
12270 2014-03-25  Stefan Liebler <stli@linux.vnet.ibm.com>
12271
12272         * NEWS: Add 16712, 16713, 16714 to fixed bug list.
12273
12274 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
12275
12276         * elf/tst-dlopen-aout.c: Adjust comments. Use test-skeleton.c
12277
12278 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
12279
12280         * sysdeps/ieee754/dbl-64/e_exp.c: Include <math.h>.
12281         * sysdeps/x86_64/fpu/multiarch/e_exp.c
12282         [HAVE_FMA4_SUPPORT || HAVE_AVX_SUPPORT]: Likewise.
12283
12284 2014-03-24  Paul Pluzhnikov  <ppluzhnikov@google.com>
12285
12286         [BZ #16634]
12287         * elf/dl-load.c (open_verify): Add mode parameter.
12288         Error early when ET_EXEC and mode does not have __RTLD_OPENEXEC.
12289         (open_path): Change from boolean 'secure' to complete flag 'mode'
12290         (_dl_map_object): Adjust.
12291         * elf/Makefile (tests): Add tst-dlopen-aout.
12292         * elf/tst-dlopen-aout.c: New test.
12293
12294 2014-03-24  Stefan Liebler <stli@linux.vnet.ibm.com>
12295
12296         [BZ #16714]
12297         * sysdeps/unix/sysv/linux/s390/bits/stat.h
12298         (struct stat): Rename member pad0 to __glibc_reserved0.
12299
12300         [BZ #16712]
12301         * sysdeps/s390/s390-32/bits/wordsize.h
12302         (__WORDSIZE32_SIZE_ULONG): New define.
12303         * sysdeps/s390/s390-64/bits/wordsize.h
12304         (__WORDSIZE32_SIZE_ULONG): Likewise.
12305         * sysdeps/generic/stdint.h (SIZE_MAX):
12306         Define as UL if __WORDSIZE32_SIZE_ULONG.
12307
12308         [BZ #16713]
12309         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h
12310         (__glibc_reserved0): New variable.
12311         (sa_flags): Change type to int.
12312
12313         * posix/Makefile (before-compile): Use += before-compile instead
12314         of a :=.
12315
12316         * nptl/sysdeps/unix/sysv/linux/s390/bits/pthreadtypes.h
12317         (__PTHREAD_MUTEX_HAVE_ELISION): New define.
12318
12319 2014-03-20  Andreas Schwab  <schwab@suse.de>
12320
12321         [BZ #16743]
12322         * sysdeps/posix/getaddrinfo.c (gaih_inet): Properly skip over
12323         non-matching result from nscd.
12324
12325 2014-03-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
12326
12327         * scripts/bench.py: Moved to ...
12328         * benchtests/scripts/bench.py: ... here.
12329         * benchtests/Makefile ($(objpfx)bench-%.c): Adjust.
12330
12331 2014-03-24  Andreas Schwab  <schwab@suse.de>
12332
12333         [BZ #16002]
12334         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Use
12335         alloca_account and account alloca use for struct in6ailist.
12336
12337 2014-03-24  Joseph Myers  <joseph@codesourcery.com>
12338
12339         [BZ #16284]
12340         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use original
12341         rounding mode to recompute results that overflow to infinity or
12342         underflow to zero.
12343         * math/auto-libm-test-in: Don't mark tests as expected to fail for
12344         bug 16284.
12345         * math/auto-libm-test-out: Regenerated.
12346         * math/libm-test.inc (ccos_test): Use ALL_RM_TEST.
12347         (ccosh_test): Likewise.
12348         (csin_test_data): Use plus_oflow.
12349         (csin_test): Use ALL_RM_TEST.
12350         (csinh_test_data): Use plus_oflow.
12351         (csinh_test): Use ALL_RM_TEST.
12352         * sysdeps/i386/fpu/libm-test-ulps: Update.
12353         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12354
12355 2014-03-21  Joseph Myers  <joseph@codesourcery.com>
12356
12357         * sysdeps/mips/bits/wordsize.h: Include <sgidefs.h>.
12358         * sysdeps/unix/sysv/linux/mips/getrlimit64.c: Likewise.
12359         * sysdeps/unix/sysv/linux/mips/setrlimit64.c: Likewise.
12360
12361         [BZ #16731]
12362         * sysdeps/i386/fpu/e_log.S (__ieee754_log): Take absolute value
12363         when x - 1 is zero.
12364         * sysdeps/i386/fpu/e_logf.S (__ieee754_logf): Likewise.
12365         * sysdeps/i386/fpu/e_logl.S (__ieee754_logl): Likewise.
12366         * sysdeps/i386/i686/fpu/e_logl.S (__ieee754_logl): Likewise.
12367         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Return +0 when
12368         argument is 1.
12369         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Likewise.
12370         * sysdeps/x86_64/fpu/e_logl.S: Take absolute value when x - 1 is
12371         zero.
12372         * math/libm-test.inc (log_test): Use ALL_RM_TEST.
12373         * sysdeps/i386/fpu/libm-test-ulps: Update.
12374         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12375
12376 2014-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
12377
12378         * scripts/bench.pl: Remove file.
12379         * scripts/bench.py: New benchmark script.
12380         * benchtests/Makefile ($(objpfx)bench-%.c): Use it.
12381         * benchtests/README: Mention python dependency.
12382         * scripts/pylintrc: New file.
12383         * scripts/pylint: New file.
12384
12385         * bits/mathdef.h: Use #ifdef instead of #if.
12386         * sysdeps/arm/bits/mathdef.h [defined __USE_ISOC99 && defined
12387         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12388         * sysdeps/tile/bits/mathdef.h [defined __USE_ISOC99 && defined
12389         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12390         * sysdeps/x86/bits/mathdef.h [defined __USE_ISOC99 && defined
12391         _MATH_H && !defined _MATH_H_MATHDEF]: Likewise.
12392
12393 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12394             Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
12395
12396         * string/strpbrk.c (strpbrk): Using macro to redefine symbol name.
12397         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strpbrk-power7
12398         and strpbrk-ppc64 objects.
12399         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12400         (__libc_ifunc_impl_list): Add new strpbrk optimized symbols.
12401         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-power7.S: New file:
12402         multiarch strpbrk for POWER7.
12403         * sysdeps/powerpc/powerpc64/multiarch/strpbrk-ppc64.c: New file:
12404         multiarch strpbrk for PPC64.
12405         * sysdeps/powerpc/powerpc64/multiarch/strpbrk.c: New file: strpbrk
12406         ifunc selector.
12407         * sysdeps/powerpc/powerpc64/power7/strpbrk.S: New file: optimited
12408         strpbrk for POWER7.
12409
12410 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
12411
12412         * math/libm-test.inc (asinh_test): Use ALL_RM_TEST.
12413         (atan_test): Likewise.
12414         (atanh_test_data): Use NO_TEST_INLINE for two tests.
12415         (atanh_test): Use ALL_RM_TEST.
12416         (atan2_test_data): Likewise.
12417         (cabs_test): Likewise.
12418         (cacosh_test): Likewise.
12419         (carg_test): Likewise.
12420         (casin_test): Likewise.
12421         (casinh_test): Likewise.
12422         (cbrt_test): Likewise.
12423         (csqrt_test): Likewise.
12424         (erf_test): Likewise.
12425         (erfc_test): Likewise.
12426         (pow10_test): Likewise.
12427         (exp2_test): Likewise.
12428         (hypot_test): Likewise.
12429         (j0_test): Likewise.
12430         (j1_test): Likewise.
12431         (lgamma_test): Likewise.
12432         (gamma_test): Likewise.
12433         (sincos_test): Likewise.
12434         (tanh_test): Likewise.
12435         (y0_test): Likewise.
12436         (y1_test): Likewise.
12437         * sysdeps/i386/fpu/libm-test-ulps: Update.
12438         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
12439
12440 2014-03-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12441
12442         * string/strcspn.c (strcspn): Using macro to redefine symbol name.
12443         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcspn-power7
12444         and strcspn-ppc64 objects.
12445         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
12446         (__libc_ifunc_impl_list): Add new strcspn optimized symbols.
12447         * sysdeps/powerpc/powerpc64/multiarch/strcspn-power7.S: New file:
12448         multiarch strcspn for POWER7.
12449         * sysdeps/powerpc/powerpc64/multiarch/strcspn-ppc64.c: New file:
12450         multiarch strcspn for PPC64.
12451         * sysdeps/powerpc/powerpc64/multiarch/strcspn.c: New file: strcspn
12452         ifunc selector.
12453         * sysdeps/powerpc/powerpc64/power7/strcspn.S: New file: optimited
12454         strcspn for POWER7.
12455
12456 2014-03-20  Joseph Myers  <joseph@codesourcery.com>
12457
12458         * math/gen-libm-test.pl (generate_testfile): Expect only function
12459         name as argument to AUTO_TESTS_* and pass results for all rounding
12460         modes to parse_args.
12461         (parse_auto_input): Separate inputs of automatic tests from
12462         outputs before storing in %auto_tests.
12463         * math/libm-test.inc (acos_test_data): Update call to
12464         AUTO_TESTS_f_f.
12465         (acos_test): Use ALL_RM_TEST.
12466         (acos_tonearest_test_data): Remove.
12467         (acos_test_tonearest): Likewise.
12468         (acos_towardzero_test_data): Likewise.
12469         (acos_test_towardzero): Likewise.
12470         (acos_downward_test_data): Likewise.
12471         (acos_test_downward): Likewise.
12472         (acos_upward_test_data): Likewise.
12473         (acos_test_upward): Likewise.
12474         (acosh_test_data): Update call to AUTO_TESTS_f_f.
12475         (asin_test_data): Likewise.
12476         (asin_test): Use ALL_RM_TEST.
12477         (asin_tonearest_test_data): Remove.
12478         (asin_test_tonearest): Likewise.
12479         (asin_towardzero_test_data): Likewise.
12480         (asin_test_towardzero): Likewise.
12481         (asin_downward_test_data): Likewise.
12482         (asin_test_downward): Likewise.
12483         (asin_upward_test_data): Likewise.
12484         (asin_test_upward): Likewise.
12485         (asinh_test_data): Update call to AUTO_TESTS_f_f.
12486         (atan_test_data): Likewise.
12487         (atanh_test_data): Likewise.
12488         (atan2_test_data): Update call to AUTO_TESTS_ff_f.
12489         (cabs_test_data): Update call to AUTO_TESTS_c_f.
12490         (carg_test_data): Likewise.
12491         (cbrt_test_data): Update call to AUTO_TESTS_f_f.
12492         (ccos_test_data): Update call to AUTO_TESTS_c_c.
12493         (ccosh_test_data): Likewise.
12494         (cexp_test_data): Likewise.
12495         (clog_test_data): Likewise.
12496         (clog10_test_data): Likewise.
12497         (cos_test_data): Update call to AUTO_TESTS_f_f.
12498         (cos_test): Use ALL_RM_TEST.
12499         (cos_tonearest_test_data): Remove.
12500         (cos_test_tonearest): Likewise.
12501         (cos_towardzero_test_data): Likewise.
12502         (cos_test_towardzero): Likewise.
12503         (cos_downward_test_data): Likewise.
12504         (cos_test_downward): Likewise.
12505         (cos_upward_test_data): Likewise.
12506         (cos_test_upward): Likewise.
12507         (cosh_test_data): Update call to AUTO_TESTS_f_f.
12508         (cosh_test): Use ALL_RM_TEST.
12509         (cosh_tonearest_test_data): Remove.
12510         (cosh_test_tonearest): Likewise.
12511         (cosh_towardzero_test_data): Likewise.
12512         (cosh_test_towardzero): Likewise.
12513         (cosh_downward_test_data): Likewise.
12514         (cosh_test_downward): Likewise.
12515         (cosh_upward_test_data): Likewise.
12516         (cosh_test_upward): Likewise.
12517         (cpow_test_data): Update call to AUTO_TESTS_cc_c.
12518         (csqrt_test_data): Update call to AUTO_TESTS_c_c.
12519         (ctan_test_data): Likewise.
12520         (ctan_test): Use ALL_RM_TEST.
12521         (ctan_tonearest_test_data): Remove.
12522         (ctan_test_tonearest): Likewise.
12523         (ctan_towardzero_test_data): Likewise.
12524         (ctan_test_towardzero): Likewise.
12525         (ctan_downward_test_data): Likewise.
12526         (ctan_test_downward): Likewise.
12527         (ctan_upward_test_data): Likewise.
12528         (ctan_test_upward): Likewise.
12529         (ctanh_test_data): Update call to AUTO_TESTS_c_c.
12530         (ctanh_test): Use ALL_RM_TEST.
12531         (ctanh_tonearest_test_data): Remove.
12532         (ctanh_test_tonearest): Likewise.
12533         (ctanh_towardzero_test_data): Likewise.
12534         (ctanh_test_towardzero): Likewise.
12535         (ctanh_downward_test_data): Likewise.
12536         (ctanh_test_downward): Likewise.
12537         (ctanh_upward_test_data): Likewise.
12538         (ctanh_test_upward): Likewise.
12539         (erf_test_data): Update call to AUTO_TESTS_f_f.
12540         (erfc_test_data): Likewise.
12541         (exp_test_data): Likewise.
12542         (exp_test): Use ALL_RM_TEST.
12543         (exp_tonearest_test_data): Remove.
12544         (exp_test_tonearest): Likewise.
12545         (exp_towardzero_test_data): Likewise.
12546         (exp_test_towardzero): Likewise.
12547         (exp_downward_test_data): Likewise.
12548         (exp_test_downward): Likewise.
12549         (exp_upward_test_data): Likewise.
12550         (exp_test_upward): Likewise.
12551         (exp10_test_data): Update call to AUTO_TESTS_f_f.
12552         (exp10_test): Use ALL_RM_TEST.
12553         (exp10_tonearest_test_data): Remove.
12554         (exp10_test_tonearest): Likewise.
12555         (exp10_towardzero_test_data): Likewise.
12556         (exp10_test_towardzero): Likewise.
12557         (exp10_downward_test_data): Likewise.
12558         (exp10_test_downward): Likewise.
12559         (exp10_upward_test_data): Likewise.
12560         (exp10_test_upward): Likewise.
12561         (exp2_test_data): Update call to AUTO_TESTS_f_f.
12562         (expm1_test_data): Likewise.
12563         (expm1_test): Use ALL_RM_TEST.
12564         (expm1_tonearest_test_data): Remove.
12565         (expm1_test_tonearest): Likewise.
12566         (expm1_towardzero_test_data): Likewise.
12567         (expm1_test_towardzero): Likewise.
12568         (expm1_downward_test_data): Likewise.
12569         (expm1_test_downward): Likewise.
12570         (expm1_upward_test_data): Likewise.
12571         (expm1_test_upward): Likewise.
12572         (fma_test_data): Update call to AUTO_TESTS_fff_f.
12573         (fma_test): Use ALL_RM_TEST.
12574         (fma_towardzero_test_data): Remove.
12575         (fma_test_towardzero): Likewise.
12576         (fma_downward_test_data): Likewise.
12577         (fma_test_downward): Likewise.
12578         (fma_upward_test_data): Likewise.
12579         (fma_test_upward): Likewise.
12580         (hypot_test_data): Update call to AUTO_TESTS_ff_f.
12581         (j0_test_data): Update call to AUTO_TESTS_f_f.
12582         (j1_test_data): Likewise.
12583         (jn_test_data): Update call to AUTO_TESTS_if_f.
12584         (lgamma_test_data): Update call to AUTO_TESTS_f_f1.
12585         (log_test_data): Update call to AUTO_TESTS_f_f.
12586         (log10_test_data): Likewise.
12587         (log1p_test_data): Likewise.
12588         (log2_test_data): Likewise.
12589         (pow_test_data): Update call to AUTO_TESTS_ff_f.
12590         (pow_tonearest_test_data): Likewise.
12591         (sin_test_data): Update call to AUTO_TESTS_f_f.
12592         (sin_test): Use ALL_RM_TEST.
12593         (sin_tonearest_test_data): Remove.
12594         (sin_test_tonearest): Likewise.
12595         (sin_towardzero_test_data): Likewise.
12596         (sin_test_towardzero): Likewise.
12597         (sin_downward_test_data): Likewise.
12598         (sin_test_downward): Likewise.
12599         (sin_upward_test_data): Likewise.
12600         (sin_test_upward): Likewise.
12601         (sincos_test_data): Update call to AUTO_TESTS_fFF_11.
12602         (sinh_test_data): Update call to AUTO_TESTS_f_f.
12603         (sinh_test): Use ALL_RM_TEST.
12604         (sinh_tonearest_test_data): Remove.
12605         (sinh_test_tonearest): Likewise.
12606         (sinh_towardzero_test_data): Likewise.
12607         (sinh_test_towardzero): Likewise.
12608         (sinh_downward_test_data): Likewise.
12609         (sinh_test_downward): Likewise.
12610         (sinh_upward_test_data): Likewise.
12611         (sinh_test_upward): Likewise.
12612         (sqrt_test_data): Update call to AUTO_TESTS_f_f.
12613         (sqrt_test): Use ALL_RM_TEST.
12614         (sqrt_tonearest_test_data): Remove.
12615         (sqrt_test_tonearest): Likewise.
12616         (sqrt_towardzero_test_data): Likewise.
12617         (sqrt_test_towardzero): Likewise.
12618         (sqrt_downward_test_data): Likewise.
12619         (sqrt_test_downward): Likewise.
12620         (sqrt_upward_test_data): Likewise.
12621         (sqrt_test_upward): Likewise.
12622         (tan_test_data): Update call to AUTO_TESTS_f_f.
12623         (tan_test): Use ALL_RM_TEST.
12624         (tan_tonearest_test_data): Remove.
12625         (tan_test_tonearest): Likewise.
12626         (tan_towardzero_test_data): Likewise.
12627         (tan_test_towardzero): Likewise.
12628         (tan_downward_test_data): Likewise.
12629         (tan_test_downward): Likewise.
12630         (tan_upward_test_data): Likewise.
12631         (tan_test_upward): Likewise.
12632         (tanh_test_data): Update call to AUTO_TESTS_f_f.
12633         (tgamma_test_data): Likewise.
12634         (y0_test_data): Likewise.
12635         (y1_test_data): Likewise.
12636         (yn_test_data): Update call to AUTO_TESTS_if_f.
12637         (main): Do not call removed functions.
12638
12639 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
12640
12641         * math/libm-test.inc (fdim_test): Use ALL_RM_TEST.
12642         (ldexp_test_data): Remove.
12643         (ldexp_test): Move to after scalbn_test.  Use ALL_RM_TEST with
12644         scalbn_test_data.
12645         (scalb_test): Use ALL_RM_TEST.
12646
12647 2014-03-19  Andreas Schwab  <schwab@suse.de>
12648
12649         * nscd/nscd.service: Also invalidate netgroup cache on reload.
12650
12651 2014-03-19  Joseph Myers  <joseph@codesourcery.com>
12652
12653         [BZ #16649]
12654         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
12655         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PREADV): Undefine.
12656         [__LINUX_KERNEL_VERSION < 0x020621] (__ASSUME_PWRITEV): Likewise.
12657         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
12658         (__ASSUME_PREADV): Undefine.
12659         (__ASSUME_PWRITEV): Likewise.
12660
12661 2014-03-18  Roland McGrath  <roland@hack.frob.com>
12662
12663         * bits/mman-linux.h: Add comment about non-Linux use.
12664         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add comment about
12665         bits/mman-linux.h resting place.
12666
12667         * sysdeps/unix/sysv/linux/bits/mman-linux.h: Moved to ...
12668         * bits/mman-linux.h: ... here.
12669
12670 2014-03-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12671
12672         * conform/conformtest.pl: Add standard definition when calling C
12673         preprocessor on data files.
12674         (checknamespace): Remove unused variable.
12675
12676 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
12677
12678         * math/gen-libm-test.pl (parse_args): Handle plus_oflow,
12679         minus_oflow, plus_uflow and minus_uflow in expected results.
12680         * math/libm-test.inc (scalbn_test_data): Add more tests of
12681         negative arguments.  Use plus_oflow, minus_oflow, plus_uflow and
12682         minus_uflow.
12683         (scalbn_test): Use ALL_RM_TEST.
12684         (scalbln_test_data): Add more tests of negative arguments.  Use
12685         plus_oflow, minus_oflow, plus_uflow and minus_uflow.
12686         (scalbln_test): Use ALL_RM_TEST.
12687
12688 2014-03-18  Roland McGrath  <roland@hack.frob.com>
12689
12690         * scripts/abilist.awk: Ignore symbols marked with .hidden.
12691
12692 2014-03-18  Will Newton  <will.newton@linaro.org>
12693
12694         * sysdeps/unix/sysv/linux/aarch64/sysdep.h: Remove
12695         inaccurate comment.
12696
12697 2014-03-18  Joseph Myers  <joseph@codesourcery.com>
12698
12699         * Makerules [!subdir] (check-abi): Exit with error status if a
12700         test failed.
12701
12702 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
12703
12704         * math/libm-test.inc (nearbyint_test_data): Include all tests used
12705         for rint.  Include results for all rounding modes.
12706         (nearbyint_test): Use ALL_RM_TEST.
12707         (rint_test_data): Include all tests used for nearbyint.
12708
12709 2014-03-17  Will Newton  <will.newton@linaro.org>
12710
12711         * nptl/sysdeps/pthread/pthread.h: Revert previous
12712         change.
12713
12714         * sysdeps/generic/ldsodefs.h: Revert previous
12715         change.
12716
12717         * libio/genops.c: Revert previous change.
12718         * libio/libioP.h: Likewise.
12719         * stdio-common/vfprintf.c: Likewise.
12720
12721         * sysdeps/generic/math_private.h: Revert previous
12722         change.
12723
12724         * sysdeps/generic/math_private.h: Check whether
12725         HAVE_RM_CTX is defined with #ifdef rather
12726         than #if.
12727
12728         * argp/argp-fmtstream.h: Check whether
12729         __STRICT_ANSI__ is defined with #ifdef rather
12730         than #if.
12731         * argp/argp.h: Likewise.
12732
12733         * libio/genops.c: Check whether
12734         _IO_JUMPS_OFFSET is defined with #ifdef rather
12735         than #if.
12736         * libio/libioP.h: Likewise.
12737         * stdio-common/vfprintf.c: Likewise.
12738
12739         * sysdeps/generic/ldsodefs.h: Check whether
12740         HP_SMALL_TIMING_AVAIL is defined with #ifdef rather
12741         than #if.
12742
12743         * nptl/sysdeps/pthread/pthread.h: Check
12744         __PTHREAD_MUTEX_HAVE_ELISION is defined before testing
12745         its value.
12746
12747 2014-03-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
12748
12749         * libio/iofdopen.c (_IO_new_fdopen): Seek to end only if
12750         setting O_APPEND.
12751         * libio/tst-ftell-active-handler.c (do_append_test): Add a
12752         test case.
12753
12754         [BZ #16680]
12755         * libio/fileops.c (_IO_file_open): Seek to end of file but
12756         don't cache the offset.
12757         (get_file_offset): Remove function.
12758         (do_ftell): Use cached offset when available.
12759         * libio/iofdopen.c (_IO_new_fdopen): Seek to end of file but
12760         don't cache the offset.
12761         * libio/tst-ftell-active-handler.c (do_rewind_test): New test
12762         case.
12763         (do_one_test): Call it.
12764         (do_ftell_test): Fix up expected old offset for a+ mode.
12765         * libio/wfileops.c (do_ftell_wide): Used cached offset when
12766         available.
12767
12768         * libio/tst-ftell-active-handler.c (do_ftell_test): Don't mix
12769         up test status with function return status.
12770         (do_write_test): Likewise.
12771         (do_append_test): Likewise.
12772
12773         * nptl/sysdeps/pthread/bits/libc-lockP.h [defined NOT_IN_libc
12774         && !defined IS_IN_libpthread && __LT_SPINNOCK_INIT != 0]:
12775         Remove.
12776
12777 2014-03-17  Joseph Myers  <joseph@codesourcery.com>
12778
12779         * math/gen-libm-test.pl (parse_args): Handle results specified for
12780         each rounding mode separately.
12781         * math/libm-test.inc (lrint_test_data): Merge in per-rounding-mode
12782         tests and results from lrint_tonearest_test_data,
12783         lrint_towardzero_test_data, lrint_downward_test_data and
12784         lrint_upward_test_data.
12785         (lrint_test): Use ALL_RM_TEST.
12786         (lrint_tonearest_test_data): Remove.
12787         (lrint_test_tonearest): Likewise.
12788         (lrint_towardzero_test_data): Likewise.
12789         (lrint_test_towardzero): Likewise.
12790         (lrint_downward_test_data): Likewise.
12791         (lrint_test_downward): Likewise.
12792         (lrint_upward_test_data): Likewise.
12793         (lrint_test_upward): Likewise.
12794         (llrint_test_data): Merge in per-rounding-mode tests and results
12795         from llrint_tonearest_test_data, llrint_towardzero_test_data,
12796         llrint_downward_test_data and llrint_upward_test_data.
12797         (llrint_test): Use ALL_RM_TEST.
12798         (llrint_tonearest_test_data): Remove.
12799         (llrint_test_tonearest): Likewise.
12800         (llrint_towardzero_test_data): Likewise.
12801         (llrint_test_towardzero): Likewise.
12802         (llrint_downward_test_data): Likewise.
12803         (llrint_test_downward): Likewise.
12804         (llrint_upward_test_data): Likewise.
12805         (llrint_test_upward): Likewise.
12806         (rint_test_data): Merge in per-rounding-mode tests and results
12807         from rint_tonearest_test_data, rint_towardzero_test_data,
12808         rint_downward_test_data and rint_upward_test_data.  Add
12809         per-rounding-mode results for tests not in those arrays.
12810         (rint_test): Use ALL_RM_TEST.
12811         (rint_tonearest_test_data): Remove.
12812         (rint_test_tonearest): Likewise.
12813         (rint_towardzero_test_data): Likewise.
12814         (rint_test_towardzero): Likewise.
12815         (rint_downward_test_data): Likewise.
12816         (rint_test_downward): Likewise.
12817         (rint_upward_test_data): Likewise.
12818         (rint_test_upward): Likewise.
12819         (main): Don't call removed functions.
12820
12821 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12822
12823         * csu/Makefile ($(objpfx)version-info.h): Remove linux-specific
12824         "Compiled on ..." crapola.  It is anti-useful.
12825
12826 2014-03-14  Joseph Myers  <joseph@codesourcery.com>
12827
12828         * scripts/evaluate-test.sh: Handle fourth argument to determine
12829         whether test run should stop on failure.
12830         * Makeconfig (stop-on-test-failure): New variable.
12831         (evaluate-test): Pass fourth argument to evaluate-test.sh based on
12832         $(stop-on-test-failure).
12833         * Makefile (tests): Give a summary of results from testing and
12834         exit with failure status if they include an ERROR or FAIL.
12835         (xtests): Likewise.
12836         * manual/install.texi (Configuring and compiling): Mention
12837         stop-on-test-failure=y.
12838         * INSTALL: Regenerated.
12839
12840 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12841
12842         * scripts/versionlist.awk: New file.
12843         * Makerules [$(build-shared) = yes]
12844         (postclean-generated): Add Versions.def, not Versions.def.v and
12845         Versions.def.v.i.
12846         ($(common-objpfx)Versions.def.v.i): Target removed.
12847         ($(common-objpfx)Versions.def): New target.
12848         ($(common-objpfx)Versions.all): Depend on that rather that
12849         $(common-objpfx)Versions.def.v.
12850         * Versions.def: File removed.
12851
12852         * Makeconfig (+gccwarn): Add -Wundef.
12853         * include/errno.h [IS_IN_rtld] [!RTLD_PRIVATE_ERRNO]: #error to catch
12854         a dl-sysdep.h breaking its contract.
12855         [!IS_IN_rtld] (RTLD_PRIVATE_ERRNO): Define it to 0.
12856         * include/stackinfo.h: New file.
12857         * nptl/sysdeps/i386/tls.h (TLS_DTV_AT_TP): New macro.
12858         * nptl/sysdeps/powerpc/tls.h (TLS_TCB_AT_TP): New macro.
12859         * nptl/sysdeps/s390/tls.h (TLS_DTV_AT_TP): New macro.
12860         * nptl/sysdeps/sh/tls.h (TLS_TCB_AT_TP): New macro.
12861         * nptl/sysdeps/sparc/tls.h (TLS_DTV_AT_TP): New macro.
12862         * nptl/sysdeps/x86_64/tls.h (TLS_DTV_AT_TP): New macro.
12863         * sysdeps/aarch64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12864         * sysdeps/alpha/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12865         * sysdeps/arm/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12866         * sysdeps/ia64/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12867         * sysdeps/m68k/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12868         * sysdeps/mach/hurd/i386/tls.h (TLS_DTV_AT_TP): New macro.
12869         * sysdeps/microblaze/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12870         * sysdeps/mips/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12871         * sysdeps/tile/nptl/tls.h (TLS_TCB_AT_TP): New macro.
12872
12873 2014-03-14  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
12874
12875         [BZ #16707]
12876         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Remove wrong
12877         implementation.
12878         * math/libm-test.inc (round_test_data): Add more tests.
12879
12880         [BZ #16706]
12881         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Remove wrong
12882         implementation.
12883         * math/libm-test.inc (nearbyint_test_data): Add more tests.
12884
12885         [BZ #16701]
12886         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Remove wrong
12887         implementation.
12888         * math/libm-test.inc (ceil_test_data): Add more tests.
12889
12890         * math/libm-test.inc (trunc_test_data): Add more tests related to
12891         BZ#16414.
12892
12893 2014-03-14  Roland McGrath  <roland@hack.frob.com>
12894
12895         * nptl/pthread_create.c (__pthread_create_2_1): Test TLS_TCB_AT_TP
12896         with #if rather than #ifdef.
12897         * nptl/sysdeps/pthread/createthread.c (create_thread): Likewise.
12898
12899 2014-03-14  H.J. Lu  <hongjiu.lu@intel.com>
12900
12901         * sysdeps/x86_64/configure.ac: Check AVX-512 assembler support
12902         first.  Disable AVX-512 GCC support if assembler doesn't support
12903         it.
12904         * sysdeps/x86_64/configure: Regenerated.
12905
12906 2014-03-13  Carlos O'Donell  <carlos@redhat.com>
12907
12908         * nptl/pthread_attr_setstack.c (__pthread_attr_setstack)
12909         [!_STACK_GROWS_DOWN]: Don't add stacksize to stackaddr.
12910         (__old_pthread_attr_setstack): Likewise.
12911         * nptl/pthread_attr_getstack.c (__pthread_attr_getstack)
12912         [!_STACK_GROWS_DOWN]: Likewise.
12913
12914 2014-03-13  Mike Frysinger  <vapier@gentoo.org>
12915
12916         * config.make.in (have-bash2): Delete.
12917         * configure.ac (libc_cv_have_bash2): Delete.
12918         * configure: Regenerate.
12919         * elf/Makefile (common-ldd-rewrite): Rename to ...
12920         (ldd-rewrite): ... this.  Move bash-ldd-rewrite content to end.
12921         (sh-ldd-rewrite): Delete.
12922         (bash-ldd-rewrite): Delete.
12923         (have-bash2): Delete checks.
12924         [ldd-rewrite-script]: Change $(ldd-shell)-ldd-rewrite to
12925         ldd-rewrite.
12926
12927         * config.make.in (have-ksh): Delete.
12928         (KSH): Delete.
12929         * configure.ac (libc_cv_have_ksh): Delete.
12930         * configure: Regenerate.
12931
12932         * elf/Makefile: Delete $(have-ksh) check.
12933         ($(objpfx)sotruss): Change KSH to BASH.
12934         * elf/sotruss.ksh: Rename to ...
12935         * elf/sotruss.sh: ... this.  Change @KSH@ to @BASH@.  Change
12936         function style to match POSIX.  Drop ksh vim mode setting.
12937
12938         * manual/time.texi (Specifying the Time Zone with TZ): Change
12939         Tuesday to Thursday.
12940
12941         * debug/tst-longjmp_chk2.c: Update header comment.
12942         (stackoverflow_handler): Add comment.  Call assert on pass value.
12943
12944 2014-03-13  Igor Zamyatin  <igor.zamyatin@intel.com>
12945
12946         [BZ #16194]
12947         * config.h.in (HAVE_AVX512_SUPPORT): New #undef.
12948         (HAVE_AVX512_ASM_SUPPORT): Likewise.
12949         * sysdeps/x86_64/bits/link.h (La_x86_64_zmm): New.
12950         (La_x86_64_vector): Add zmm.
12951         * sysdeps/x86_64/Makefile (tests): Add tst-audit10.
12952         (modules-names): Add tst-auditmod10a and tst-auditmod10b.
12953         ($(objpfx)tst-audit10): New target.
12954         ($(objpfx)tst-audit10.out): Likewise.
12955         (tst-audit10-ENV): New.
12956         (AVX512-CFLAGS): Likewise.
12957         (CFLAGS-tst-audit10.c): Likewise.
12958         (CFLAGS-tst-auditmod10a.c): Likewise.
12959         (CFLAGS-tst-auditmod10b.c): Likewise.
12960         * sysdeps/x86_64/configure.ac: Set config-cflags-avx512,
12961         HAVE_AVX512_SUPPORT and HAVE_AVX512_ASM_SUPPORT.
12962         * sysdeps/x86_64/configure: Regenerated.
12963         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Add
12964         AVX-512 zmm register support.
12965         (_dl_x86_64_save_sse): Likewise.
12966         (_dl_x86_64_restore_sse): Likewise.
12967         * sysdeps/x86_64/dl-trampoline.h: Updated to support different
12968         size vector registers.
12969         * sysdeps/x86_64/link-defines.sym (YMM_SIZE): New.
12970         (ZMM_SIZE): Likewise.
12971         * sysdeps/x86_64/tst-audit10.c: New file.
12972         * sysdeps/x86_64/tst-auditmod10a.c: Likewise.
12973         * sysdeps/x86_64/tst-auditmod10b.c: Likewise.
12974
12975 2014-03-13  Roland McGrath  <roland@hack.frob.com>
12976
12977         * configure.ac (HAVE_EHDR_START): New check.
12978         * configure: Regenerated.
12979         * config.h.in (HAVE_EHDR_START): New #undef.
12980         * elf/rtld.c (dl_main) [HAVE_EHDR_START]: Use __ehdr_start rather than
12981         assuming the lowest-addressed segment maps the start of the file.
12982
12983 2014-03-13  Joseph Myers  <joseph@codesourcery.com>
12984
12985         * INSTALL: Regenerated.
12986
12987 2014-03-13  Will Newton  <will.newton@linaro.org>
12988
12989         * manual/setjmp.texi (System V contexts): Improve
12990         clarity and grammar of documentation.
12991
12992 2014-03-12  Paul Pluzhnikov  <ppluzhnikov@google.com>
12993
12994         [BZ #16381]
12995         * elf/Makefile (tests): Add tst-pie2.
12996         (tests-pie): Add tst-pie2.
12997         * elf/tst-pie2.c: New file.
12998         * elf/dl-load.c (_dl_map_object_from_fd): Assert correct l_type
12999         for ET_EXEC.
13000         * elf/rtld.c (map_doit): Load executable as lt_executable.
13001         (dl_main): Likewise.
13002
13003 2014-03-12  Joseph Myers  <joseph@codesourcery.com>
13004
13005         [BZ #16642]
13006         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
13007         (__ASSUME_PSELECT): Undefine.
13008
13009 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13010
13011         [BZ #16689]
13012         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S
13013         (__bzero_ppc): Call memset@local instead of __memset_ppc@local for
13014         static build.
13015         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: Build IFUNC
13016         selector for static builds.
13017
13018 2014-03-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
13019
13020         [BZ #16695]
13021         * nscd/netgroupcache.c (addgetnetgrentX): Factor in space for
13022         key in the buffer.
13023
13024 2014-03-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13025
13026         * sysdeps/powerpc/powerpc64/multiarch/strspn.c (strspn): Build
13027         IFUNC selector for static builds.
13028
13029 2014-03-11  Joseph Myers  <joseph@codesourcery.com>
13030
13031         * sysdeps/mips/math_private.h [__mips_hard_float]
13032         (libc_feresetround_ctx): Define to libc_feupdateenv_mips_ctx not
13033         libc_feresetround_mips_ctx.
13034         [__mips_hard_float] (libc_feresetroundf_ctx): Likewise.
13035         [__mips_hard_float] (libc_feresetroundl_ctx): Likewise.
13036         [__mips_hard_float] (libc_feresetround_mips_ctx): Remove.
13037
13038         [BZ #16677]
13039         * math/s_nextafter.c (__nextafter): Do not return value from
13040         overflowing computation.
13041         * sysdeps/i386/fpu/s_nextafterl.c (__nextafterl): Likewise.
13042         * sysdeps/ieee754/flt-32/s_nextafterf.c (__nextafterf): Likewise.
13043         * sysdeps/ieee754/ldbl-128/s_nextafterl.c (__nextafterl):
13044         Likewise.
13045         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl):
13046         Likewise.
13047         * sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Likewise.
13048         * math/libm-test.inc (nextafter_test): Use ALL_RM_TEST.
13049
13050 2014-03-11  Roland McGrath  <roland@hack.frob.com>
13051
13052         * sysdeps/arm/setjmp.S: Use sfi_breg on stores of mangled registers.
13053         * sysdeps/arm/__longjmp.S: Use sfi_breg on loads of mangled registers.
13054         Move sfi_sp use from the load-multiple (that no longer sets sp) to
13055         the new mov targetting sp.
13056
13057 2014-03-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13058
13059         [BZ #16683]
13060         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S (__bzero_ppc):
13061         Define it for static builds as well.
13062         (NO_BZERO_IMPL): Likewise.
13063
13064 2014-03-11  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13065
13066         * sysdeps/powerpc/powerpc64/power7/strspn.S: New file: Optimization.
13067         * sysdeps/powerpc/powerpc64/multiarch/strspn.c: New file:
13068         multiarch strspn for PPC64.
13069         * sysdeps/powerpc/powerpc64/multiarch/strspn-ppc64.c: New file
13070         * sysdeps/powerpc/powerpc64/multiarch/strspn-power7.S: New file
13071         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13072         (__libc_ifunc_impl_list): Likewise.
13073         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strspn
13074         multiarch optimizations
13075         * string/strspn.c (strspn): Using macro to redefine symbol name.
13076
13077 2014-03-10  Vidya Ranganathan  <vidya@linux.vnet.ibm.com>
13078             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13079
13080         * sysdeps/powerpc/powerpc64/power7/strncat.S: New file: Optimization.
13081         * sysdeps/powerpc/powerpc64/multiarch/strncat.c: New file:
13082         multiarch strncat for PPC64.
13083         * sysdeps/powerpc/powerpc64/multiarch/strncat-ppc64.c: New file
13084         * sysdeps/powerpc/powerpc64/multiarch/strncat-power7.S: New file
13085         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
13086         (__libc_ifunc_impl_list): Likewise.
13087         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncat
13088         multiarch optimizations
13089
13090 2014-03-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
13091
13092         [BZ #16639]
13093         * nscd/nscd.service: Make service type forking.
13094
13095 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
13096
13097         * sysdeps/powerpc/power5+/fpu/s_modf.c (__modf): Fix to return correct
13098         sign in non default rounding modes.
13099         * sysdeps/powerpc/power5+/fpu/s_modff.c (__modff): Likewise.
13100
13101 2014-03-08  Joseph Myers  <joseph@codesourcery.com>
13102
13103         * math/libm-test.inc (ALL_RM_TEST): New macro.
13104         (ceil_test): Use ALL_RM_TEST.
13105         (cimag_test): Likewise.
13106         (conj_test): Likewise.
13107         (copysign_test): Likewise.
13108         (cproj_test): Likewise.
13109         (creal_test): Likewise.
13110         (fabs_test): Likewise.
13111         (floor_test): Likewise.
13112         (fmax_test): Likewise.
13113         (fmin_test): Likewise.
13114         (fmod_test): Likewise.
13115         (fpclassify_test): Likewise.
13116         (frexp_test): Likewise.
13117         (ilogb_test): Likewise.
13118         (isfinite_test): Likewise.
13119         (finite_test): Likewise.
13120         (isgreater_test): Likewise.
13121         (isgreaterequal_test): Likewise.
13122         (isinf_test): Likewise.
13123         (isless_test): Likewise.
13124         (islessequal_test): Likewise.
13125         (islessgreater_test): Likewise.
13126         (isnan_test): Likewise.
13127         (isnormal_test): Likewise.
13128         (issignaling_test): Likewise.
13129         (isunordered_test): Likewise.
13130         (logb_test): Likewise.
13131         (logb_downward_test_data): Remove.
13132         (logb_test_downward): Likewise.
13133         (lround_test): Use ALL_RM_TEST.
13134         (llround_test): Likewise.
13135         (modf_test): Likewise.
13136         (nexttoward_test): Likewise.
13137         (remainder_test): Likewise.
13138         (drem_test): Likewise.
13139         (remainder_tonearest_test_data): Likewise.
13140         (remainder_test_tonearest): Likewise.
13141         (drem_test_tonearest): Likewise.
13142         (remainder_towardzero_test_data): Likewise.
13143         (remainder_test_towardzero): Likewise.
13144         (drem_test_towardzero): Likewise.
13145         (remainder_downward_test_data): Likewise.
13146         (remainder_test_downward): Likewise.
13147         (drem_test_downward): Likewise.
13148         (remainder_upward_test_data): Likewise.
13149         (remainder_test_upward): Likewise.
13150         (drem_test_upward): Likewise.
13151         (remquo_test): Use ALL_RM_TEST.  Remove comment about x.
13152         (round_test): Use ALL_RM_TEST.
13153         (signbit_test): Likewise.
13154         (trunc_test): Likewise.
13155         (significand_test): Likewise.
13156         (main): Don't call removed functions.
13157
13158 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
13159
13160         [BZ #16674]
13161         * bits/siginfo.h (ILL_ILLOPC): Condition on [__USE_XOPEN_EXTENDED
13162         || __USE_XOPEN2K8].
13163         (ILL_ILLOPN): Likewise.
13164         (ILL_ILLADR): Likewise.
13165         (ILL_ILLTRP): Likewise.
13166         (ILL_PRVOPC): Likewise.
13167         (ILL_PRVREG): Likewise.
13168         (ILL_COPROC): Likewise.
13169         (ILL_BADSTK): Likewise.
13170         (FPE_INTDIV): Likewise.
13171         (FPE_INTOVF): Likewise.
13172         (FPE_FLTDIV): Likewise.
13173         (FPE_FLTOVF): Likewise.
13174         (FPE_FLTUND): Likewise.
13175         (FPE_FLTRES): Likewise.
13176         (FPE_FLTINV): Likewise.
13177         (FPE_FLTSUB): Likewise.
13178         (SEGV_MAPERR): Likewise.
13179         (SEGV_ACCERR): Likewise.
13180         (BUS_ADRALN): Likewise.
13181         (BUS_ADRERR): Likewise.
13182         (BUS_OBJERR): Likewise.
13183         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13184         (TRAP_TRACE): Likewise.
13185         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13186         __USE_XOPEN2K8].
13187         (CLD_KILLED): Likewise.
13188         (CLD_DUMPED): Likewise.
13189         (CLD_TRAPPED): Likewise.
13190         (CLD_STOPPED): Likewise.
13191         (CLD_CONTINUED): Likewise.
13192         (POLL_IN): Likewise.
13193         (POLL_OUT): Likewise.
13194         (POLL_MSG): Likewise.
13195         (POLL_ERR): Likewise.
13196         (POLL_PRI): Likewise.
13197         (POLL_HUP): Likewise.
13198         * sysdeps/unix/sysv/linux/alpha/bits/siginfo.h (ILL_ILLOPC):
13199         Likewise.
13200         (ILL_ILLOPN): Likewise.
13201         (ILL_ILLADR): Likewise.
13202         (ILL_ILLTRP): Likewise.
13203         (ILL_PRVOPC): Likewise.
13204         (ILL_PRVREG): Likewise.
13205         (ILL_COPROC): Likewise.
13206         (ILL_BADSTK): Likewise.
13207         (FPE_INTDIV): Likewise.
13208         (FPE_INTOVF): Likewise.
13209         (FPE_FLTDIV): Likewise.
13210         (FPE_FLTOVF): Likewise.
13211         (FPE_FLTUND): Likewise.
13212         (FPE_FLTRES): Likewise.
13213         (FPE_FLTINV): Likewise.
13214         (FPE_FLTSUB): Likewise.
13215         (SEGV_MAPERR): Likewise.
13216         (SEGV_ACCERR): Likewise.
13217         (BUS_ADRALN): Likewise.
13218         (BUS_ADRERR): Likewise.
13219         (BUS_OBJERR): Likewise.
13220         (BUS_MCEERR_AR): Likewise.
13221         (BUS_MCEERR_AO): Likewise.
13222         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13223         (TRAP_TRACE): Likewise.
13224         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13225         __USE_XOPEN2K8].
13226         (CLD_KILLED): Likewise.
13227         (CLD_DUMPED): Likewise.
13228         (CLD_TRAPPED): Likewise.
13229         (CLD_STOPPED): Likewise.
13230         (CLD_CONTINUED): Likewise.
13231         (POLL_IN): Likewise.
13232         (POLL_OUT): Likewise.
13233         (POLL_MSG): Likewise.
13234         (POLL_ERR): Likewise.
13235         (POLL_PRI): Likewise.
13236         (POLL_HUP): Likewise.
13237         * sysdeps/unix/sysv/linux/bits/siginfo.h (ILL_ILLOPC): Likewise.
13238         (ILL_ILLOPN): Likewise.
13239         (ILL_ILLADR): Likewise.
13240         (ILL_ILLTRP): Likewise.
13241         (ILL_PRVOPC): Likewise.
13242         (ILL_PRVREG): Likewise.
13243         (ILL_COPROC): Likewise.
13244         (ILL_BADSTK): Likewise.
13245         (FPE_INTDIV): Likewise.
13246         (FPE_INTOVF): Likewise.
13247         (FPE_FLTDIV): Likewise.
13248         (FPE_FLTOVF): Likewise.
13249         (FPE_FLTUND): Likewise.
13250         (FPE_FLTRES): Likewise.
13251         (FPE_FLTINV): Likewise.
13252         (FPE_FLTSUB): Likewise.
13253         (SEGV_MAPERR): Likewise.
13254         (SEGV_ACCERR): Likewise.
13255         (BUS_ADRALN): Likewise.
13256         (BUS_ADRERR): Likewise.
13257         (BUS_OBJERR): Likewise.
13258         (BUS_MCEERR_AR): Likewise.
13259         (BUS_MCEERR_AO): Likewise.
13260         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13261         (TRAP_TRACE): Likewise.
13262         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13263         __USE_XOPEN2K8].
13264         (CLD_KILLED): Likewise.
13265         (CLD_DUMPED): Likewise.
13266         (CLD_TRAPPED): Likewise.
13267         (CLD_STOPPED): Likewise.
13268         (CLD_CONTINUED): Likewise.
13269         (POLL_IN): Likewise.
13270         (POLL_OUT): Likewise.
13271         (POLL_MSG): Likewise.
13272         (POLL_ERR): Likewise.
13273         (POLL_PRI): Likewise.
13274         (POLL_HUP): Likewise.
13275         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h (ILL_ILLOPC):
13276         Likewise.
13277         (ILL_ILLOPN): Likewise.
13278         (ILL_ILLADR): Likewise.
13279         (ILL_ILLTRP): Likewise.
13280         (ILL_PRVOPC): Likewise.
13281         (ILL_PRVREG): Likewise.
13282         (ILL_COPROC): Likewise.
13283         (ILL_BADSTK): Likewise.
13284         (ILL_BADIADDR): Likewise.
13285         (ILL_BREAK): Likewise.
13286         (FPE_INTDIV): Likewise.
13287         (FPE_INTOVF): Likewise.
13288         (FPE_FLTDIV): Likewise.
13289         (FPE_FLTOVF): Likewise.
13290         (FPE_FLTUND): Likewise.
13291         (FPE_FLTRES): Likewise.
13292         (FPE_FLTINV): Likewise.
13293         (FPE_FLTSUB): Likewise.
13294         (FPE_DECOVF): Likewise.
13295         (FPE_DECDIV): Likewise.
13296         (FPE_DECERR): Likewise.
13297         (FPE_INVASC): Likewise.
13298         (FPE_INVDEC): Likewise.
13299         (SEGV_MAPERR): Likewise.
13300         (SEGV_ACCERR): Likewise.
13301         (SEGV_PSTKOVF): Likewise.
13302         (BUS_ADRALN): Likewise.
13303         (BUS_ADRERR): Likewise.
13304         (BUS_OBJERR): Likewise.
13305         (BUS_MCEERR_AR): Likewise.
13306         (BUS_MCEERR_AO): Likewise.
13307         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13308         (TRAP_TRACE): Likewise.
13309         (TRAP_BRANCH): Likewise.
13310         (TRAP_HWBKPT): Likewise.
13311         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13312         __USE_XOPEN2K8].
13313         (CLD_KILLED): Likewise.
13314         (CLD_DUMPED): Likewise.
13315         (CLD_TRAPPED): Likewise.
13316         (CLD_STOPPED): Likewise.
13317         (CLD_CONTINUED): Likewise.
13318         (POLL_IN): Likewise.
13319         (POLL_OUT): Likewise.
13320         (POLL_MSG): Likewise.
13321         (POLL_ERR): Likewise.
13322         (POLL_PRI): Likewise.
13323         (POLL_HUP): Likewise.
13324         * sysdeps/unix/sysv/linux/mips/bits/siginfo.h (ILL_ILLOPC): Likewise.
13325         (ILL_ILLOPN): Likewise.
13326         (ILL_ILLADR): Likewise.
13327         (ILL_ILLTRP): Likewise.
13328         (ILL_PRVOPC): Likewise.
13329         (ILL_PRVREG): Likewise.
13330         (ILL_COPROC): Likewise.
13331         (ILL_BADSTK): Likewise.
13332         (FPE_INTDIV): Likewise.
13333         (FPE_INTOVF): Likewise.
13334         (FPE_FLTDIV): Likewise.
13335         (FPE_FLTOVF): Likewise.
13336         (FPE_FLTUND): Likewise.
13337         (FPE_FLTRES): Likewise.
13338         (FPE_FLTINV): Likewise.
13339         (FPE_FLTSUB): Likewise.
13340         (SEGV_MAPERR): Likewise.
13341         (SEGV_ACCERR): Likewise.
13342         (BUS_ADRALN): Likewise.
13343         (BUS_ADRERR): Likewise.
13344         (BUS_OBJERR): Likewise.
13345         (BUS_MCEERR_AR): Likewise.
13346         (BUS_MCEERR_AO): Likewise.
13347         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13348         (TRAP_TRACE): Likewise.
13349         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13350         __USE_XOPEN2K8].
13351         (CLD_KILLED): Likewise.
13352         (CLD_DUMPED): Likewise.
13353         (CLD_TRAPPED): Likewise.
13354         (CLD_STOPPED): Likewise.
13355         (CLD_CONTINUED): Likewise.
13356         (POLL_IN): Likewise.
13357         (POLL_OUT): Likewise.
13358         (POLL_MSG): Likewise.
13359         (POLL_ERR): Likewise.
13360         (POLL_PRI): Likewise.
13361         (POLL_HUP): Likewise.
13362         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (ILL_ILLOPC): Likewise.
13363         (ILL_ILLOPN): Likewise.
13364         (ILL_ILLADR): Likewise.
13365         (ILL_ILLTRP): Likewise.
13366         (ILL_PRVOPC): Likewise.
13367         (ILL_PRVREG): Likewise.
13368         (ILL_COPROC): Likewise.
13369         (ILL_BADSTK): Likewise.
13370         (FPE_INTDIV): Likewise.
13371         (FPE_INTOVF): Likewise.
13372         (FPE_FLTDIV): Likewise.
13373         (FPE_FLTOVF): Likewise.
13374         (FPE_FLTUND): Likewise.
13375         (FPE_FLTRES): Likewise.
13376         (FPE_FLTINV): Likewise.
13377         (FPE_FLTSUB): Likewise.
13378         (SEGV_MAPERR): Likewise.
13379         (SEGV_ACCERR): Likewise.
13380         (BUS_ADRALN): Likewise.
13381         (BUS_ADRERR): Likewise.
13382         (BUS_OBJERR): Likewise.
13383         (BUS_MCEERR_AR): Likewise.
13384         (BUS_MCEERR_AO): Likewise.
13385         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13386         (TRAP_TRACE): Likewise.
13387         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13388         __USE_XOPEN2K8].
13389         (CLD_KILLED): Likewise.
13390         (CLD_DUMPED): Likewise.
13391         (CLD_TRAPPED): Likewise.
13392         (CLD_STOPPED): Likewise.
13393         (CLD_CONTINUED): Likewise.
13394         (POLL_IN): Likewise.
13395         (POLL_OUT): Likewise.
13396         (POLL_MSG): Likewise.
13397         (POLL_ERR): Likewise.
13398         (POLL_PRI): Likewise.
13399         (POLL_HUP): Likewise.
13400         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (ILL_ILLOPC): Likewise.
13401         (ILL_ILLOPN): Likewise.
13402         (ILL_ILLADR): Likewise.
13403         (ILL_ILLTRP): Likewise.
13404         (ILL_PRVOPC): Likewise.
13405         (ILL_PRVREG): Likewise.
13406         (ILL_COPROC): Likewise.
13407         (ILL_BADSTK): Likewise.
13408         (FPE_INTDIV): Likewise.
13409         (FPE_INTOVF): Likewise.
13410         (FPE_FLTDIV): Likewise.
13411         (FPE_FLTOVF): Likewise.
13412         (FPE_FLTUND): Likewise.
13413         (FPE_FLTRES): Likewise.
13414         (FPE_FLTINV): Likewise.
13415         (FPE_FLTSUB): Likewise.
13416         (SEGV_MAPERR): Likewise.
13417         (SEGV_ACCERR): Likewise.
13418         (BUS_ADRALN): Likewise.
13419         (BUS_ADRERR): Likewise.
13420         (BUS_OBJERR): Likewise.
13421         (BUS_MCEERR_AR): Likewise.
13422         (BUS_MCEERR_AO): Likewise.
13423         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13424         (TRAP_TRACE): Likewise.
13425         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13426         __USE_XOPEN2K8].
13427         (CLD_KILLED): Likewise.
13428         (CLD_DUMPED): Likewise.
13429         (CLD_TRAPPED): Likewise.
13430         (CLD_STOPPED): Likewise.
13431         (CLD_CONTINUED): Likewise.
13432         (POLL_IN): Likewise.
13433         (POLL_OUT): Likewise.
13434         (POLL_MSG): Likewise.
13435         (POLL_ERR): Likewise.
13436         (POLL_PRI): Likewise.
13437         (POLL_HUP): Likewise.
13438         * sysdeps/unix/sysv/linux/tile/bits/siginfo.h (ILL_ILLOPC): Likewise.
13439         (ILL_ILLOPN): Likewise.
13440         (ILL_ILLADR): Likewise.
13441         (ILL_ILLTRP): Likewise.
13442         (ILL_PRVOPC): Likewise.
13443         (ILL_PRVREG): Likewise.
13444         (ILL_COPROC): Likewise.
13445         (ILL_BADSTK): Likewise.
13446         (ILL_DBLFLT): Likewise.
13447         (ILL_HARDWALL): Likewise.
13448         (FPE_INTDIV): Likewise.
13449         (FPE_INTOVF): Likewise.
13450         (FPE_FLTDIV): Likewise.
13451         (FPE_FLTOVF): Likewise.
13452         (FPE_FLTUND): Likewise.
13453         (FPE_FLTRES): Likewise.
13454         (FPE_FLTINV): Likewise.
13455         (FPE_FLTSUB): Likewise.
13456         (SEGV_MAPERR): Likewise.
13457         (SEGV_ACCERR): Likewise.
13458         (BUS_ADRALN): Likewise.
13459         (BUS_ADRERR): Likewise.
13460         (BUS_OBJERR): Likewise.
13461         (BUS_MCEERR_AR): Likewise.
13462         (BUS_MCEERR_AO): Likewise.
13463         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13464         (TRAP_TRACE): Likewise.
13465         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13466         __USE_XOPEN2K8].
13467         (CLD_KILLED): Likewise.
13468         (CLD_DUMPED): Likewise.
13469         (CLD_TRAPPED): Likewise.
13470         (CLD_STOPPED): Likewise.
13471         (CLD_CONTINUED): Likewise.
13472         (POLL_IN): Likewise.
13473         (POLL_OUT): Likewise.
13474         (POLL_MSG): Likewise.
13475         (POLL_ERR): Likewise.
13476         (POLL_PRI): Likewise.
13477         (POLL_HUP): Likewise.
13478         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (ILL_ILLOPC): Likewise.
13479         (ILL_ILLOPN): Likewise.
13480         (ILL_ILLADR): Likewise.
13481         (ILL_ILLTRP): Likewise.
13482         (ILL_PRVOPC): Likewise.
13483         (ILL_PRVREG): Likewise.
13484         (ILL_COPROC): Likewise.
13485         (ILL_BADSTK): Likewise.
13486         (FPE_INTDIV): Likewise.
13487         (FPE_INTOVF): Likewise.
13488         (FPE_FLTDIV): Likewise.
13489         (FPE_FLTOVF): Likewise.
13490         (FPE_FLTUND): Likewise.
13491         (FPE_FLTRES): Likewise.
13492         (FPE_FLTINV): Likewise.
13493         (FPE_FLTSUB): Likewise.
13494         (SEGV_MAPERR): Likewise.
13495         (SEGV_ACCERR): Likewise.
13496         (BUS_ADRALN): Likewise.
13497         (BUS_ADRERR): Likewise.
13498         (BUS_OBJERR): Likewise.
13499         (BUS_MCEERR_AR): Likewise.
13500         (BUS_MCEERR_AO): Likewise.
13501         (TRAP_BRKPT): Condition on [__USE_XOPEN_EXTENDED].
13502         (TRAP_TRACE): Likewise.
13503         (CLD_EXITED): Condition on [__USE_XOPEN_EXTENDED ||
13504         __USE_XOPEN2K8].
13505         (CLD_KILLED): Likewise.
13506         (CLD_DUMPED): Likewise.
13507         (CLD_TRAPPED): Likewise.
13508         (CLD_STOPPED): Likewise.
13509         (CLD_CONTINUED): Likewise.
13510         (POLL_IN): Likewise.
13511         (POLL_OUT): Likewise.
13512         (POLL_MSG): Likewise.
13513         (POLL_ERR): Likewise.
13514         (POLL_PRI): Likewise.
13515         (POLL_HUP): Likewise.
13516         * conform/Makefile (test-xfail-POSIX/signal.h/conform): Remove.
13517         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
13518
13519         [BZ #16670]
13520         * posix/sched.h [!__USE_XOPEN2K] (__need_time_t): Don't define
13521         before #include of <time.h>.
13522         [!__USE_XOPEN2K] (__need_timespec): Likewise.
13523         * conform/Makefile (test-xfail-POSIX/sched.h/conform): Remove.
13524         (test-xfail-UNIX98/sched.h/conform): Likewise.
13525
13526 2014-03-07  Marcus Shawcroft  <marcus.shawcroft@arm.com>
13527
13528         * sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept): Detect and
13529         error absence of trapping exception support.
13530         * sysdeps/aarch64/fpu/fesetenv.c (fesetenv): Likewise.
13531
13532 2014-03-07  Joseph Myers  <joseph@codesourcery.com>
13533
13534         * catgets/Makefile (tests-special): Add $(objpfx)sample.SJIS.cat.
13535         ($(objpfx)sample.SJIS.cat): Use $(evaluate-test).
13536         * timezone/Makefile (testdata): Move definition above include of
13537         Rules.
13538         (test-zones): New variable.
13539         (tests-special): Add zone files.
13540         (build-testdata): Use $(evaluate-test).
13541
13542         * elf/Makefile (tests-special): Rename tests to end with .out.
13543         ($(objpfx)noload-mem): Likewise.
13544         ($(objpfx)tst-leaks1-mem): Likewise.
13545         ($(objpfx)tst-leaks1-static-mem.out): Likewise.
13546         * iconv/Makefile (xtests-special): Change test-iconvconfig to
13547         $(objpfx)test-iconvconfig.out.
13548         (test-iconvconfig): Change to $(objpfx)test-iconvconfig.out.  Use
13549         set -e inside subshell and redirect output to file.
13550         * iconvdata/Makefile (generated): Rename tests to end with .out.
13551         Correct type.
13552         (tests-special): Rename tests to end with .out.
13553         ($(objpfx)mtrace-tst-loading): Likewise.
13554         * intl/Makefile (generated): Likewise.
13555         (tests-special): Likewise.
13556         ($(objpfx)mtrace-tst-gettext): Likewise.
13557         * misc/Makefile (generated): Likewise.
13558         (tests-special): Likewise.
13559         ($(objpfx)tst-error1-mem): Likewise.
13560         * nptl/Makefile (tests-special): Likewise.
13561         ($(objpfx)tst-stack3-mem): Likewise.
13562         (generated): Likewise.
13563         * posix/Makefile (generated): Likewise.
13564         (tests-special): Likewise.
13565         (xtests-special): Likewise.
13566         ($(objpfx)tst-fnmatch-mem): Likewise.
13567         ($(objpfx)bug-regex2-mem): Likewise.
13568         ($(objpfx)bug-regex14-mem): Likewise.
13569         ($(objpfx)bug-regex21-mem): Likewise.
13570         ($(objpfx)bug-regex31-mem): Likewise.
13571         ($(objpfx)tst-vfork3-mem): Likewise.
13572         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
13573         ($(objpfx)tst-pcre-mem): Likewise.
13574         ($(objpfx)tst-boost-mem): Likewise.
13575         ($(objpfx)bug-ga2-mem): Likewise.
13576         ($(objpfx)bug-glob2-mem): Likewise.
13577         * resolv/Makefile (generate): Likewise.
13578         (tests-special): Likewise.
13579         (xtests-special): Likewise.
13580         (generated): Likewise.
13581         ($(objpfx)mtrace-tst-leaks): Likewise.
13582         ($(objpfx)mtrace-tst-leaks2): Likewise.
13583
13584         * scripts/merge-test-results.sh: New file.
13585         * Makefile (tests-special-notdir): New variable.
13586         (tests): Run merge-test-results.sh.
13587         (xtests): Likewise.
13588         * Rules (tests-special-notdir): New variable.
13589         (xtests-special-notdir): Likewise.
13590         (tests): Run merge-test-results.sh
13591         (xtests): Likewise.
13592
13593         * Makeconfig (test-xfail-name): New variable.
13594         (evaluate-test): Use $(test-xfail-name) instead of $(@F:.out=) to
13595         compute variable name for expected failures.
13596         * conform/Makefile (conformtest-headers-data): New variable.
13597         (conformtest-standards): Likewise.
13598         (conformtest-headers-ISO): Likewise.
13599         (conformtest-headers-ISO99): Likewise.
13600         (conformtest-headers-ISO11): Likewise.
13601         (conformtest-headers-POSIX): Likewise.
13602         (conformtest-headers-XPG3): Likewise.
13603         (conformtest-headers-XPG4): Likewise.
13604         (conformtest-headers-UNIX98): Likewise.
13605         (conformtest-headers-XOPEN2K): Likewise.
13606         (conformtest-headers-POSIX2008): Likewise.
13607         (conformtest-headers-XOPEN2K8): Likewise.
13608         (conformtest-header-list-base): Likewise.
13609         (conformtest-header-list-tests): Likewise.
13610         (conformtest-header-base): Likewise.
13611         (conformtest-header-tests): Likewise.
13612         (tests-special): Add $(conformtest-header-list-tests).  If
13613         [$(fast-check) && !$(cross-compiling)], add
13614         $(conformtest-header-tests) instead of
13615         $(objpfx)run-conformtest.out.
13616         (generated): Add $(conformtest-header-list-base).  If
13617         [$(fast-check) && !$(cross-compiling)], add
13618         $(conformtest-header-base).  Remove previous setting.
13619         ($(conformtest-header-list-tests)): New target.
13620         (test-xfail-run-conformtest): Remove variable.
13621         ($(objpfx)run-conformtest.out): Remove target.
13622         (test-xfail-ISO11/complex.h/conform): New variable.
13623         (test-xfail-ISO11/stdalign.h/conform): Likewise.
13624         (test-xfail-ISO11/stdnoreturn.h/conform): Likewise.
13625         (test-xfail-XPG3/varargs.h/conform): Likewise.
13626         (test-xfail-XPG4/varargs.h/conform): Likewise.
13627         (test-xfail-UNIX98/varargs.h/conform): Likewise.
13628         (test-xfail-XPG4/ndbm.h/conform): Likewise.
13629         (test-xfail-UNIX98/ndbm.h/conform): Likewise.
13630         (test-xfail-XOPEN2K/ndbm.h/conform): Likewise.
13631         (test-xfail-XOPEN2K8/ndbm.h/conform): Likewise.
13632         (test-xfail-XPG3/fcntl.h/conform): Likewise.
13633         (test-xfail-XPG3/ftw.h/conform): Likewise.
13634         (test-xfail-XPG3/grp.h/conform): Likewise.
13635         (test-xfail-XPG3/langinfo.h/conform): Likewise.
13636         (test-xfail-XPG3/limits.h/conform): Likewise.
13637         (test-xfail-XPG3/pwd.h/conform): Likewise.
13638         (test-xfail-XPG3/search.h/conform): Likewise.
13639         (test-xfail-XPG3/signal.h/conform): Likewise.
13640         (test-xfail-XPG3/stdio.h/conform): Likewise.
13641         (test-xfail-XPG3/stdlib.h/conform): Likewise.
13642         (test-xfail-XPG3/string.h/conform): Likewise.
13643         (test-xfail-XPG3/sys/ipc.h/conform): Likewise.
13644         (test-xfail-XPG3/sys/msg.h/conform): Likewise.
13645         (test-xfail-XPG3/sys/sem.h/conform): Likewise.
13646         (test-xfail-XPG3/sys/shm.h/conform): Likewise.
13647         (test-xfail-XPG3/sys/stat.h/conform): Likewise.
13648         (test-xfail-XPG3/sys/types.h/conform): Likewise.
13649         (test-xfail-XPG3/sys/wait.h/conform): Likewise.
13650         (test-xfail-XPG3/termios.h/conform): Likewise.
13651         (test-xfail-XPG3/time.h/conform): Likewise.
13652         (test-xfail-XPG3/unistd.h/conform): Likewise.
13653         (test-xfail-XPG4/arpa/inet.h/conform): Likewise.
13654         (test-xfail-XPG4/fcntl.h/conform): Likewise.
13655         (test-xfail-XPG4/langinfo.h/conform): Likewise.
13656         (test-xfail-XPG4/netdb.h/conform): Likewise.
13657         (test-xfail-XPG4/netinet/in.h/conform): Likewise.
13658         (test-xfail-XPG4/signal.h/conform): Likewise.
13659         (test-xfail-XPG4/stdio.h/conform): Likewise.
13660         (test-xfail-XPG4/stdlib.h/conform): Likewise.
13661         (test-xfail-XPG4/stropts.h/conform): Likewise.
13662         (test-xfail-XPG4/sys/ipc.h/conform): Likewise.
13663         (test-xfail-XPG4/sys/msg.h/conform): Likewise.
13664         (test-xfail-XPG4/sys/sem.h/conform): Likewise.
13665         (test-xfail-XPG4/sys/shm.h/conform): Likewise.
13666         (test-xfail-XPG4/sys/socket.h/conform): Likewise.
13667         (test-xfail-XPG4/sys/stat.h/conform): Likewise.
13668         (test-xfail-XPG4/sys/time.h/conform): Likewise.
13669         (test-xfail-XPG4/sys/types.h/conform): Likewise.
13670         (test-xfail-XPG4/sys/wait.h/conform): Likewise.
13671         (test-xfail-XPG4/termios.h/conform): Likewise.
13672         (test-xfail-XPG4/ucontext.h/conform): Likewise.
13673         (test-xfail-XPG4/unistd.h/conform): Likewise.
13674         (test-xfail-XPG4/utmpx.h/conform): Likewise.
13675         (test-xfail-POSIX/sched.h/conform): Likewise.
13676         (test-xfail-POSIX/signal.h/conform): Likewise.
13677         (test-xfail-POSIX/sys/wait.h/conform): Likewise.
13678         (test-xfail-POSIX/tar.h/conform): Likewise.
13679         (test-xfail-UNIX98/arpa/inet.h/conform): Likewise.
13680         (test-xfail-UNIX98/fcntl.h/conform): Likewise.
13681         (test-xfail-UNIX98/langinfo.h/conform): Likewise.
13682         (test-xfail-UNIX98/netdb.h/conform): Likewise.
13683         (test-xfail-UNIX98/netinet/in.h/conform): Likewise.
13684         (test-xfail-UNIX98/sched.h/conform): Likewise.
13685         (test-xfail-UNIX98/signal.h/conform): Likewise.
13686         (test-xfail-UNIX98/stdio.h/conform): Likewise.
13687         (test-xfail-UNIX98/stdlib.h/conform): Likewise.
13688         (test-xfail-UNIX98/stropts.h/conform): Likewise.
13689         (test-xfail-UNIX98/sys/ipc.h/conform): Likewise.
13690         (test-xfail-UNIX98/sys/msg.h/conform): Likewise.
13691         (test-xfail-UNIX98/sys/sem.h/conform): Likewise.
13692         (test-xfail-UNIX98/sys/shm.h/conform): Likewise.
13693         (test-xfail-UNIX98/sys/socket.h/conform): Likewise.
13694         (test-xfail-UNIX98/sys/time.h/conform): Likewise.
13695         (test-xfail-UNIX98/sys/wait.h/conform): Likewise.
13696         (test-xfail-UNIX98/ucontext.h/conform): Likewise.
13697         (test-xfail-UNIX98/unistd.h/conform): Likewise.
13698         (test-xfail-UNIX98/utmpx.h/conform): Likewise.
13699         (test-xfail-XOPEN2K/aio.h/conform): Likewise.
13700         (test-xfail-XOPEN2K/arpa/inet.h/conform): Likewise.
13701         (test-xfail-XOPEN2K/fcntl.h/conform): Likewise.
13702         (test-xfail-XOPEN2K/langinfo.h/conform): Likewise.
13703         (test-xfail-XOPEN2K/math.h/conform): Likewise.
13704         (test-xfail-XOPEN2K/mqueue.h/conform): Likewise.
13705         (test-xfail-XOPEN2K/netdb.h/conform): Likewise.
13706         (test-xfail-XOPEN2K/netinet/in.h/conform): Likewise.
13707         (test-xfail-XOPEN2K/semaphore.h/conform): Likewise.
13708         (test-xfail-XOPEN2K/signal.h/conform): Likewise.
13709         (test-xfail-XOPEN2K/stdarg.h/conform): Likewise.
13710         (test-xfail-XOPEN2K/stdio.h/conform): Likewise.
13711         (test-xfail-XOPEN2K/stropts.h/conform): Likewise.
13712         (test-xfail-XOPEN2K/sys/ipc.h/conform): Likewise.
13713         (test-xfail-XOPEN2K/sys/msg.h/conform): Likewise.
13714         (test-xfail-XOPEN2K/sys/sem.h/conform): Likewise.
13715         (test-xfail-XOPEN2K/sys/shm.h/conform): Likewise.
13716         (test-xfail-XOPEN2K/sys/socket.h/conform): Likewise.
13717         (test-xfail-XOPEN2K/sys/wait.h/conform): Likewise.
13718         (test-xfail-XOPEN2K/termios.h/conform): Likewise.
13719         (test-xfail-XOPEN2K/tgmath.h/conform): Likewise.
13720         (test-xfail-XOPEN2K/ucontext.h/conform): Likewise.
13721         (test-xfail-XOPEN2K/utmpx.h/conform): Likewise.
13722         (test-xfail-POSIX2008/arpa/inet.h/conform): Likewise.
13723         (test-xfail-POSIX2008/fcntl.h/conform): Likewise.
13724         (test-xfail-POSIX2008/netdb.h/conform): Likewise.
13725         (test-xfail-POSIX2008/netinet/in.h/conform): Likewise.
13726         (test-xfail-POSIX2008/signal.h/conform): Likewise.
13727         (test-xfail-POSIX2008/stropts.h/conform): Likewise.
13728         (test-xfail-POSIX2008/sys/socket.h/conform): Likewise.
13729         (test-xfail-POSIX2008/sys/wait.h/conform): Likewise.
13730         (test-xfail-XOPEN2K8/arpa/inet.h/conform): Likewise.
13731         (test-xfail-XOPEN2K8/fcntl.h/conform): Likewise.
13732         (test-xfail-XOPEN2K8/limits.h/conform): Likewise.
13733         (test-xfail-XOPEN2K8/math.h/conform): Likewise.
13734         (test-xfail-XOPEN2K8/netdb.h/conform): Likewise.
13735         (test-xfail-XOPEN2K8/netinet/in.h/conform): Likewise.
13736         (test-xfail-XOPEN2K8/signal.h/conform): Likewise.
13737         (test-xfail-XOPEN2K8/stdio.h/conform): Likewise.
13738         (test-xfail-XOPEN2K8/stropts.h/conform): Likewise.
13739         (test-xfail-XOPEN2K8/sys/ipc.h/conform): Likewise.
13740         (test-xfail-XOPEN2K8/sys/msg.h/conform): Likewise.
13741         (test-xfail-XOPEN2K8/sys/select.h/conform): Likewise.
13742         (test-xfail-XOPEN2K8/sys/sem.h/conform): Likewise.
13743         (test-xfail-XOPEN2K8/sys/shm.h/conform): Likewise.
13744         (test-xfail-XOPEN2K8/sys/socket.h/conform): Likewise.
13745         (test-xfail-XOPEN2K8/sys/time.h/conform): Likewise.
13746         (test-xfail-XOPEN2K8/sys/wait.h/conform): Likewise.
13747         (test-xfail-XOPEN2K8/termios.h/conform): Likewise.
13748         (test-xfail-XOPEN2K8/tgmath.h/conform): Likewise.
13749         (test-xfail-XOPEN2K8/utmpx.h/conform): Likewise.
13750         (conformtest-cc-flags): Likewise.
13751         ($(conformtest-header-tests): New target.
13752         * conform/check-header-lists.sh: New file.
13753         * conform/run-conformtest.sh: Remove.
13754
13755         * conform/conformtest.pl: Allow ' and \ in values given for
13756         constants.
13757         * conform/data/semaphore.h-data [POSIX] (fcntl.h): Allow header
13758         inclusion.
13759         [POSIX] (sys/types.h): Likewise.
13760         [POSIX2008 || XOPEN2K8] (sys/types.h): Don't allow header
13761         inclusion.
13762         [POSIX || UNIX98 || XOPEN2K] (time.h): Don't allow header
13763         inclusion.
13764         * conform/data/signal.h-data (SIGIO): Remove expectation.
13765         [XPG3] (SIGBUS): Do not expect.
13766         [POSIX || XPG3] (SIGPOLL): Likewise.
13767         [POSIX || XPG3] (SIGPROF): Likewise.
13768         [POSIX || XPG3] (SIGSYS): Likewise.
13769         [XPG3] (SIGTRAP): Likewise.
13770         [POSIX || XPG3] (SIGURG): Likewise.
13771         [POSIX || XPG3] (SIGVTALRM): Likewise.
13772         [POSIX || XPG3] (SIGXCPU): Likewise.
13773         [POSIX || XPG3] (SIGXFSZ): Likewise.
13774         [POSIX] (SA_SIGINFO): Expect.
13775         [XPG3] (siginfo_t): Do not expect type or contents.
13776         [POSIX] (si_pid): Do not expect element.
13777         [POSIX] (si_uid): Likewise.
13778         [POSIX] (si_addr): Likewise.
13779         [POSIX] (si_status): Likewise.
13780         [POSIX] (si_band): Likewise.
13781         [XPG4] (si_value): Likewise.
13782         [POSIX || XPG3] (ILL_ILLOPC): Do not expect.
13783         [POSIX || XPG3] (ILL_ILLOPN): Likewise.
13784         [POSIX || XPG3] (ILL_ILLADR): Likewise.
13785         [POSIX || XPG3] (ILL_ILLTRP): Likewise.
13786         [POSIX || XPG3] (ILL_PRVOPC): Likewise.
13787         [POSIX || XPG3] (ILL_PRVREG): Likewise.
13788         [POSIX || XPG3] (ILL_COPROC): Likewise.
13789         [POSIX || XPG3] (ILL_BADSTK): Likewise.
13790         [POSIX || XPG3] (FPE_INTDIV): Likewise.
13791         [POSIX || XPG3] (FPE_INTOVF): Likewise.
13792         [POSIX || XPG3] (FPE_FLTDIV): Likewise.
13793         [POSIX || XPG3] (FPE_FLTOVF): Likewise.
13794         [POSIX || XPG3] (FPE_FLTUND): Likewise.
13795         [POSIX || XPG3] (FPE_FLTRES): Likewise.
13796         [POSIX || XPG3] (FPE_FLTINV): Likewise.
13797         [POSIX || XPG3] (FPE_FLTSUB): Likewise.
13798         [POSIX || XPG3] (SEGV_MAPERR): Likewise.
13799         [POSIX || XPG3] (SEGV_ACCERR): Likewise.
13800         [POSIX || XPG3] (BUS_ADRALN): Likewise.
13801         [POSIX || XPG3] (BUS_ADRERR): Likewise.
13802         [POSIX || XPG3] (BUS_OBJERR): Likewise.
13803         [POSIX || XPG3] (CLD_EXITED): Likewise.
13804         [POSIX || XPG3] (CLD_KILLED): Likewise.
13805         [POSIX || XPG3] (CLD_DUMPED): Likewise.
13806         [POSIX || XPG3] (CLD_TRAPPED): Likewise.
13807         [POSIX || XPG3] (CLD_STOPPED): Likewise.
13808         [POSIX || XPG3] (CLD_CONTINUED): Likewise.
13809         [POSIX || XPG3] (POLL_IN): Likewise.
13810         [POSIX || XPG3] (POLL_OUT): Likewise.
13811         [POSIX || XPG3] (POLL_MSG): Likewise.
13812         [POSIX || XPG3] (POLL_ERR): Likewise.
13813         [POSIX || XPG3] (POLL_PRI): Likewise.
13814         [POSIX || XPG3] (POLL_HUP): Likewise.
13815         [POSIX || XPG3 || POSIX2008] (TRAP_BRKPT): Likewise.
13816         [POSIX || XPG3 || POSIX2008] (TRAP_TRACE): Likewise.
13817         (SIG*): Do not allow.
13818         [XPG3] (si_*): Likewise.
13819         [XPG3] (SI_*): Likewise.
13820         [XPG3 || XPG4] (sigev_*): Likewise.
13821         [XPG3 || XPG4] (SIGEV_*): Likewise.
13822         [XPG3 || XPG4] (sival_*): Likewise.
13823         [POSIX || XPG3 || XPG4] (uc_*): Likewise.
13824         [POSIX || XPG3] (BUS_*): Likewise.
13825         [POSIX || XPG3] (CLD_*): Likewise.
13826         [POSIX || XPG3] (FPE_*): Likewise.
13827         [POSIX || XPG3] (ILL_*): Likewise.
13828         [POSIX || XPG3] (POLL_*): Likewise.
13829         [POSIX || XPG3] (SEGV_*): Likewise.
13830         [POSIX || XPG3 || POSIX2008] (SS_*): Likewise.
13831         [POSIX || XPG3 || POSIX2008] (SV_*): Likewise.
13832         [POSIX || XPG3 || POSIX2008] (TRAP_*): Likewise.
13833         [POSIX || XPG3 || POSIX2008] (ss_*): Likewise.
13834         [POSIX || XPG3 || POSIX2008] (sv_*): Likewise.
13835         * conform/data/tar.h-data (TMAGLEN): Use macro-int-constant.
13836         Specify type and value.
13837         (TVERSLEN): Likewise.
13838         (REGTYPE): Likewise.
13839         (AREGTYPE): Likewise.
13840         (LNKTYPE): Likewise.
13841         (SYMTYPE): Likewise.
13842         (CHRTYPE): Likewise.
13843         (BLKTYPE): Likewise.
13844         (DIRTYPE): Likewise.
13845         (FIFOTYPE): Likewise.
13846         (CONTTYPE): Likewise.
13847         (TSUID): Likewise.
13848         (TSGID): Likewise.
13849         (TSVTX): Likewise.
13850         (TUREAD): Likewise.
13851         (TUWRITE): Likewise.
13852         (TUEXEC): Likewise.
13853         (TGREAD): Likewise.
13854         (TGWRITE): Likewise.
13855         (TGEXEC): Likewise.
13856         (TOREAD): Likewise.
13857         (TOWRITE): Likewise.
13858         (TOEXEC): Likewise.
13859         [POSIX] (TSVTX): Expect constant.
13860
13861 2014-03-06  Joseph Myers  <joseph@codesourcery.com>
13862
13863         * Makefile (tests): Change dependencies to ....
13864         (tests-special): ... additions to this variable.
13865         (tests): Depend on $(tests-special).
13866         * Makerules (check-abi-list): New variable.
13867         (check-abi): Depend on $(check-abi-list).
13868         [$(subdir) = elf] (tests-special): Add
13869         $(objpfx)check-abi-libc.out.
13870         [$(build-shared) = yes && subdir] (tests-special): Add
13871         $(check-abi-list).
13872         [$(build-shared) = yes && subdir] (tests): Do not depend on
13873         check-abi.
13874         * Rules (tests): Depend on $(tests-special).
13875         (xtests): Depend on $(xtests-special).
13876         * catgets/Makefile (tests): Change dependencies to ....
13877         (tests-special): ... additions to this variable.
13878         * conform/Makefile (tests): Change dependencies to ....
13879         (tests-special): ... additions to this variable.
13880         * elf/Makefile (tests): Change dependencies to ....
13881         (tests-special): ... additions to this variable.
13882         * grp/Makefile (tests): Change dependencies to ....
13883         (tests-special): ... additions to this variable.
13884         * iconv/Makefile (xtests): Change dependencies to ....
13885         (xtests-special): ... additions to this variable.
13886         * iconvdata/Makefile (tests): Change dependencies to ....
13887         (tests-special): ... additions to this variable.
13888         * intl/Makefile (tests): Change dependencies to ....
13889         (tests-special): ... additions to this variable.  Also add
13890         $(objpfx)tst-gettext.out.
13891         * io/Makefile (tests): Change dependencies to ....
13892         (tests-special): ... additions to this variable.
13893         * libio/Makefile (tests): Change dependencies to ....
13894         (tests-special): ... additions to this variable.
13895         * malloc/Makefile (tests): Change dependencies to ....
13896         (tests-special): ... additions to this variable.
13897         * misc/Makefile (tests): Change dependencies to ....
13898         (tests-special): ... additions to this variable.
13899         * nptl/Makefile (tests): Change dependencies to ....
13900         (tests-special): ... additions to this variable.
13901         * nptl_db/Makefile (tests): Change dependencies to ....
13902         (tests-special): ... additions to this variable.
13903         * posix/Makefile (tests): Change dependencies to ....
13904         (tests-special): ... additions to this variable.
13905         (xtests): Change dependencies to ....
13906         (xtests-special): ... additions to this variable.
13907         * resolv/Makefile (tests): Change dependencies to ....
13908         (tests-special): ... additions to this variable.
13909         (xtests): Change dependencies to ....
13910         (xtests-special): ... additions to this variable.
13911         * stdio-common/Makefile (tests): Change dependencies to ....
13912         (tests-special): ... additions to this variable.
13913         (do-tst-unbputc): Remove target.
13914         (do-tst-printf): Likewise.
13915         * stdlib/Makefile (tests): Change dependencies to ....
13916         (tests-special): ... additions to this variable.
13917         * string/Makefile (tests): Change dependencies to ....
13918         (tests-special): ... additions to this variable.
13919         * sysdeps/x86/Makefile (tests): Change dependencies to ....
13920         (tests-special): ... additions to this variable.
13921
13922         * conform/data/netinet/tcp.h-data [POSIX2008 || XOPEN2K8]: Enable
13923         whole file.
13924         * conform/data/sys/timeb.h-data [POSIX2008 || XOPEN2K8]: Disable
13925         whole file.
13926         * conform/data/sys/uio.h-data [POSIX2008]: Likewise.
13927         * conform/data/ucontext.h-data [POSIX2008 || XOPEN2K8]: Likewise.
13928
13929         * conform/data/aio.h-data [XPG3 || XPG4]: Disable whole file.
13930         * conform/data/arpa/inet.h-data [XPG3]: Likewise.
13931         * conform/data/dlfcn.h-data [XPG3 || XPG4]: Likewise.
13932         * conform/data/fmtmsg.h-data [XPG3]: Likewise.
13933         * conform/data/libgen.h-data [XPG3]: Likewise.
13934         * conform/data/mqueue.h-data [XPG3 || XPG4]: Likewise.
13935         * conform/data/ndbm.h-data [XPG3]: Likewise.
13936         * conform/data/net/if.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
13937         * conform/data/netdb.h-data [XPG3]: Likewise.
13938         * conform/data/netinet/in.h-data [XPG3]: Likewise.
13939         * conform/data/poll.h-data [XPG3]: Likewise.
13940         * conform/data/spawn.h-data [XPG3 || XPG4 || UNIX98]: Likewise.
13941         * conform/data/strings.h-data [XPG3]: Likewise.
13942         * conform/data/stropts.h-data [XPG3]: Likewise.
13943         * conform/data/sys/mman.h-data [XPG3]: Likewise.
13944         * conform/data/sys/resource.h-data [XPG3]: Likewise.
13945         * conform/data/sys/select.h-data [XPG3 || XPG4 || UNIX98]:
13946         Likewise.
13947         * conform/data/sys/statvfs.h-data [XPG3]: Likewise.
13948         * conform/data/sys/time.h-data [XPG3]: Likewise.
13949         * conform/data/sys/timeb.h-data [XPG3]: Likewise.
13950         * conform/data/sys/uio.h-data [XPG3]: Likewise.
13951         * conform/data/sys/un.h-data [XPG3]: Likewise.
13952         * conform/data/syslog.h-data [XPG3]: Likewise.
13953         * conform/data/ucontext.h-data [XPG3]: Likewise.
13954         * conform/data/utmpx.h-data [XPG3]: Likewise.
13955         * conform/data/varargs.h-data [UNIX98]: Enable file.
13956
13957         * manual/Makefile (INSTALL_INFO): Remove variable setting.
13958
13959         * math/libm-test.inc (struct test_f_f_data): Move expected results
13960         into structure for each rounding mode.
13961         (struct test_ff_f_data): Likewise.
13962         (struct test_ff_f_data_nexttoward): Likewise.
13963         (struct test_fi_f_data): Likewise.
13964         (struct test_fl_f_data): Likewise.
13965         (struct test_if_f_data): Likewise.
13966         (struct test_fff_f_data): Likewise.
13967         (struct test_c_f_data): Likewise.
13968         (struct test_f_f1_data): Likewise.
13969         (struct test_fF_f1_data): Likewise.
13970         (struct test_ffI_f1_data): Likewise.
13971         (struct test_c_c_data): Likewise.
13972         (struct test_cc_c_data): Likewise.
13973         (struct test_f_i_data): Likewise.
13974         (struct test_ff_i_data): Likewise.
13975         (struct test_f_l_data): Likewise.
13976         (struct test_f_L_data): Likewise.
13977         (struct test_fFF_11_data): Likewise.
13978         (RM_): New macro.
13979         (RM_FE_DOWNWARD): Likewise.
13980         (RM_FE_TONEAREST): Likewise.
13981         (RM_FE_TOWARDZERO): Likewise.
13982         (RM_FE_UPWARD): Likewise.
13983         (RUN_TEST_LOOP_f_f): Update references to expected results.
13984         (RUN_TEST_LOOP_2_f): Likewise.
13985         (RUN_TEST_LOOP_fff_f): Likewise.
13986         (RUN_TEST_LOOP_c_f): Likewise.
13987         (RUN_TEST_LOOP_f_f1): Likewise.
13988         (RUN_TEST_LOOP_fF_f1): Likewise.
13989         (RUN_TEST_LOOP_fI_f1): Likewise.
13990         (RUN_TEST_LOOP_ffI_f1): Likewise.
13991         (RUN_TEST_LOOP_c_c): Likewise.
13992         (RUN_TEST_LOOP_cc_c): Likewise.
13993         (RUN_TEST_LOOP_f_i): Likewise.
13994         (RUN_TEST_LOOP_f_i_tg): Likewise.
13995         (RUN_TEST_LOOP_ff_i_tg): Likewise.
13996         (RUN_TEST_LOOP_f_b): Likewise.
13997         (RUN_TEST_LOOP_f_b_tg): Likewise.
13998         (RUN_TEST_LOOP_f_l): Likewise.
13999         (RUN_TEST_LOOP_f_L): Likewise.
14000         (RUN_TEST_LOOP_fFF_11): Likewise.
14001         * math/gen-libm-test.pl (parse_args): Output four copies of
14002         expected results for each test.
14003
14004         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14005         (__ASSUME_UTIMES): Remove.
14006         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14007         (__ASSUME_UTIMES): Likewise.
14008
14009         * math/gen-auto-libm-tests.c: Update comment on output format.
14010         (output_for_one_input_case): Generate before-rounding and
14011         after-rounding information as conditions on output flags not
14012         floating-point format.
14013         * math/auto-libm-test-out: Regenerated.
14014         * math/gen-libm-test.pl (cond_value): New function.
14015         (or_cond_value): Use cond_value.
14016         (generate_testfile): Handle conditional exceptions.
14017
14018 2014-03-05  Joseph Myers  <joseph@codesourcery.com>
14019
14020         * math/libm-test.inc (max_valid_error): New variable.
14021         (init_max_error): Take new argument specifying whether function
14022         results are exactly determined.  Set max_valid_error and bound
14023         other variables for errors based on this argument.
14024         (set_max_error): Do not record results above max_valid_error.
14025         (check_float_internal): Only accept errors of up to 0.5ulps if
14026         also at most max_valid_error.
14027         (START): Take new argument EXACT and pass it to init_max_error.
14028         (acos_test): Update call to START.
14029         (acos_test_tonearest): Likewise.
14030         (acos_test_towardzero): Likewise.
14031         (acos_test_downward): Likewise.
14032         (acos_test_upward): Likewise.
14033         (acosh_test): Likewise.
14034         (asin_test): Likewise.
14035         (asin_test_tonearest): Likewise.
14036         (asin_test_towardzero): Likewise.
14037         (asin_test_downward): Likewise.
14038         (asin_test_upward): Likewise.
14039         (asinh_test): Likewise.
14040         (atan_test): Likewise.
14041         (atanh_test): Likewise.
14042         (atan2_test): Likewise.
14043         (cabs_test): Likewise.
14044         (cacos_test): Likewise.
14045         (cacosh_test): Likewise.
14046         (carg_test): Likewise.
14047         (casin_test): Likewise.
14048         (casinh_test): Likewise.
14049         (catan_test): Likewise.
14050         (catanh_test): Likewise.
14051         (cbrt_test): Likewise.
14052         (ccos_test): Likewise.
14053         (ccosh_test): Likewise.
14054         (ceil_test): Likewise.
14055         (cexp_test): Likewise.
14056         (cimag_test): Likewise.
14057         (clog_test): Likewise.
14058         (clog10_test): Likewise.
14059         (conj_test): Likewise.
14060         (copysign_test): Likewise.
14061         (cos_test): Likewise.
14062         (cos_test_tonearest): Likewise.
14063         (cos_test_towardzero): Likewise.
14064         (cos_test_downward): Likewise.
14065         (cos_test_upward): Likewise.
14066         (cosh_test): Likewise.
14067         (cosh_test_tonearest): Likewise.
14068         (cosh_test_towardzero): Likewise.
14069         (cosh_test_downward): Likewise.
14070         (cosh_test_upward): Likewise.
14071         (cpow_test): Likewise.
14072         (cproj_test): Likewise.
14073         (creal_test): Likewise.
14074         (csin_test): Likewise.
14075         (csinh_test): Likewise.
14076         (csqrt_test): Likewise.
14077         (ctan_test): Likewise.
14078         (ctan_test_tonearest): Likewise.
14079         (ctan_test_towardzero): Likewise.
14080         (ctan_test_downward): Likewise.
14081         (ctan_test_upward): Likewise.
14082         (ctanh_test): Likewise.
14083         (ctanh_test_tonearest): Likewise.
14084         (ctanh_test_towardzero): Likewise.
14085         (ctanh_test_downward): Likewise.
14086         (ctanh_test_upward): Likewise.
14087         (erf_test): Likewise.
14088         (erfc_test): Likewise.
14089         (exp_test): Likewise.
14090         (exp_test_tonearest): Likewise.
14091         (exp_test_towardzero): Likewise.
14092         (exp_test_downward): Likewise.
14093         (exp_test_upward): Likewise.
14094         (exp10_test): Likewise.
14095         (exp10_test_tonearest): Likewise.
14096         (exp10_test_towardzero): Likewise.
14097         (exp10_test_downward): Likewise.
14098         (exp10_test_upward): Likewise.
14099         (pow10_test): Likewise.
14100         (exp2_test): Likewise.
14101         (expm1_test): Likewise.
14102         (expm1_test_tonearest): Likewise.
14103         (expm1_test_towardzero): Likewise.
14104         (expm1_test_downward): Likewise.
14105         (expm1_test_upward): Likewise.
14106         (fabs_test): Likewise.
14107         (fdim_test): Likewise.
14108         (floor_test): Likewise.
14109         (fma_test): Likewise.
14110         (fma_test_towardzero): Likewise.
14111         (fma_test_downward): Likewise.
14112         (fma_test_upward): Likewise.
14113         (fmax_test): Likewise.
14114         (fmin_test): Likewise.
14115         (fmod_test): Likewise.
14116         (fpclassify_test): Likewise.
14117         (frexp_test): Likewise.
14118         (hypot_test): Likewise.
14119         (ilogb_test): Likewise.
14120         (isfinite_test): Likewise.
14121         (finite_test): Likewise.
14122         (isgreater_test): Likewise.
14123         (isgreaterequal_test): Likewise.
14124         (isinf_test): Likewise.
14125         (isless_test): Likewise.
14126         (islessequal_test): Likewise.
14127         (islessgreater_test): Likewise.
14128         (isnan_test): Likewise.
14129         (isnormal_test): Likewise.
14130         (issignaling_test): Likewise.
14131         (isunordered_test): Likewise.
14132         (j0_test): Likewise.
14133         (j1_test): Likewise.
14134         (jn_test): Likewise.
14135         (ldexp_test): Likewise.
14136         (lgamma_test): Likewise.
14137         (gamma_test): Likewise.
14138         (lrint_test): Likewise.
14139         (lrint_test_tonearest): Likewise.
14140         (lrint_test_towardzero): Likewise.
14141         (lrint_test_downward): Likewise.
14142         (lrint_test_upward): Likewise.
14143         (llrint_test): Likewise.
14144         (llrint_test_tonearest): Likewise.
14145         (llrint_test_towardzero): Likewise.
14146         (llrint_test_downward): Likewise.
14147         (llrint_test_upward): Likewise.
14148         (log_test): Likewise.
14149         (log10_test): Likewise.
14150         (log1p_test): Likewise.
14151         (log2_test): Likewise.
14152         (logb_test): Likewise.
14153         (logb_test_downward): Likewise.
14154         (lround_test): Likewise.
14155         (llround_test): Likewise.
14156         (modf_test): Likewise.
14157         (nearbyint_test): Likewise.
14158         (nextafter_test): Likewise.
14159         (nexttoward_test): Likewise.
14160         (pow_test): Likewise.
14161         (pow_test_tonearest): Likewise.
14162         (pow_test_towardzero): Likewise.
14163         (pow_test_downward): Likewise.
14164         (pow_test_upward): Likewise.
14165         (remainder_test): Likewise.
14166         (drem_test): Likewise.
14167         (remainder_test_tonearest): Likewise.
14168         (drem_test_tonearest): Likewise.
14169         (remainder_test_towardzero): Likewise.
14170         (drem_test_towardzero): Likewise.
14171         (remainder_test_downward): Likewise.
14172         (drem_test_downward): Likewise.
14173         (remainder_test_upward): Likewise.
14174         (drem_test_upward): Likewise.
14175         (remquo_test): Likewise.
14176         (rint_test): Likewise.
14177         (rint_test_tonearest): Likewise.
14178         (rint_test_towardzero): Likewise.
14179         (rint_test_downward): Likewise.
14180         (rint_test_upward): Likewise.
14181         (round_test): Likewise.
14182         (scalb_test): Likewise.
14183         (scalbn_test): Likewise.
14184         (scalbln_test): Likewise.
14185         (signbit_test): Likewise.
14186         (sin_test): Likewise.
14187         (sin_test_tonearest): Likewise.
14188         (sin_test_towardzero): Likewise.
14189         (sin_test_downward): Likewise.
14190         (sin_test_upward): Likewise.
14191         (sincos_test): Likewise.
14192         (sinh_test): Likewise.
14193         (sinh_test_tonearest): Likewise.
14194         (sinh_test_towardzero): Likewise.
14195         (sinh_test_downward): Likewise.
14196         (sinh_test_upward): Likewise.
14197         (sqrt_test): Likewise.
14198         (sqrt_test_tonearest): Likewise.
14199         (sqrt_test_towardzero): Likewise.
14200         (sqrt_test_downward): Likewise.
14201         (sqrt_test_upward): Likewise.
14202         (tan_test): Likewise.
14203         (tan_test_tonearest): Likewise.
14204         (tan_test_towardzero): Likewise.
14205         (tan_test_downward): Likewise.
14206         (tan_test_upward): Likewise.
14207         (tanh_test): Likewise.
14208         (tgamma_test): Likewise.
14209         (trunc_test): Likewise.
14210         (y0_test): Likewise.
14211         (y1_test): Likewise.
14212         (yn_test): Likewise.
14213         (significand_test): Likewise.
14214
14215         * math/libm-test.inc (struct ulp_data): Don't refer to ulps for
14216         individual tests in comment.
14217         (libm-test-ulps.h): Don't refer to test_ulps in #include comment.
14218         (prev_max_error): New variable.
14219         (prev_real_max_error): Likewise.
14220         (prev_imag_max_error): Likewise.
14221         (compare_ulp_data): Don't refer to test names in comment.
14222         (find_test_ulps): Remove function.
14223         (find_function_ulps): Likewise.
14224         (find_complex_function_ulps): Likewise.
14225         (init_max_error): Take function name as argument.  Look up ulps
14226         for that function.
14227         (print_ulps): Remove function.
14228         (print_max_error): Use prev_max_error instead of calling
14229         find_function_ulps.
14230         (print_complex_max_error): Use prev_real_max_error and
14231         prev_imag_max_error instead of calling find_complex_function_ulps.
14232         (check_float_internal): Take max_ulp parameter instead of calling
14233         find_test_ulps.  Don't call print_ulps.
14234         (check_float): Update call to check_float_internal.
14235         (check_complex): Update calls to check_float_internal.
14236         (START): Pass argument to init_max_error.
14237         * math/gen-libm-test.pl (%results): Don't include "kind"
14238         information.
14239         (parse_ulps): Don't handle ulps of individual tests.
14240         (print_ulps_file): Likewise.
14241         (output_ulps): Likewise.
14242         * math/README.libm-test: Update.
14243         * manual/libm-err-tab.pl (parse_ulps): Don't handle ulps of
14244         individual tests.
14245         * sysdeps/aarch64/libm-test-ulps: Remove individual test ulps.
14246         * sysdeps/alpha/fpu/libm-test-ulps: Likewise.
14247         * sysdeps/arm/libm-test-ulps: Likewise.
14248         * sysdeps/i386/fpu/libm-test-ulps: Likewise.
14249         * sysdeps/ia64/fpu/libm-test-ulps: Likewise.
14250         * sysdeps/m68k/coldfire/fpu/libm-test-ulps: Likewise.
14251         * sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
14252         * sysdeps/microblaze/libm-test-ulps: Likewise.
14253         * sysdeps/mips/mips32/libm-test-ulps: Likewise.
14254         * sysdeps/mips/mips64/libm-test-ulps: Likewise.
14255         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
14256         * sysdeps/powerpc/nofpu/libm-test-ulps: Likewise.
14257         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
14258         * sysdeps/sh/libm-test-ulps: Likewise.
14259         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
14260         * sysdeps/tile/libm-test-ulps: Likewise.
14261         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
14262
14263 2014-03-04  Joseph Myers  <joseph@codesourcery.com>
14264
14265         * math/libm-test.inc (print_complex_max_error): Check separately
14266         whether real and imaginary errors are within allowed range and
14267         pass 0 to print_complex_function_ulps instead of value within
14268         allowed range.
14269
14270 2014-03-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
14271
14272         * libio/tst-ftell-active-handler.c (get_handles_fdopen): Fix
14273         formatting.
14274         (get_handles_fopen): Likewise.
14275         (do_write_test): Likewise.
14276
14277         * libio/wfileops.c (do_ftell_wide): Fix up formatting.
14278
14279         * libio/fileops.c (do_ftell): Use cached offset when
14280         available.
14281         * libio/iofwide.c (do_ftell_wide): Likewise.
14282         * libio/iofdopen.c (_IO_new_fdopen): Don't use
14283         _IO_file_attach.
14284         * libio/wfileops.c (_IO_fwide): Don't cache offset.
14285
14286         [BZ #16532]
14287         * libio/libioP.h (get_file_offset): New function.
14288         * libio/fileops.c (get_file_offset): Likewise.
14289         (do_ftell): Likewise.
14290         (_IO_new_file_seekoff): Split out ftell logic.
14291         * libio/wfileops.c (do_ftell_wide): Likewise.
14292         (_IO_wfile_seekoff): Split out ftell logic.
14293         * libio/tst-ftell-active-handler.c: New test case.
14294         * libio/Makefile (tests): Add it.
14295
14296 2014-03-03  Roland McGrath  <roland@hack.frob.com>
14297
14298         * nptl/ChangeLog: Renamed to nptl/ChangeLog.old, no longer used.
14299         * nptl_db/ChangeLog: Renamed to nptl_db/ChangeLog.old, no longer used.
14300
14301 2014-03-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
14302
14303         [BZ #16639]
14304         * nscd/connections.c (nscd_init): Call do_exit.
14305         (start_threads): Call do_exit and notify_parent.
14306         (begin_drop_privileges): Call do_exit.
14307         (finish_drop_privileges): Likewise.
14308         * nscd/selinux.c (preserve_capabilities): Likewise.
14309         (install_real_capabilities): Likewise.
14310         (nscd_selinux_enabled): Likewise.
14311         (avc_create_thread): Likewise.
14312         (avc_alloc_lock): Likewise.
14313         (nscd_avc_init): Likewise.
14314         * nscd/nscd.c (parent_fd): New static variable.
14315         (main): Create a pipe between parent and child processes.
14316         Skip closing parent_fd.
14317         (monitor_child): New function.
14318         (do_exit): Likewise.
14319         (notify_parent): Likewise.
14320         * nscd/nscd.h (notify_parent): Likewise.
14321         (do_exit): Likewise.
14322
14323 2014-03-03  Carlos O'Donell  <carlos@redhat.com>
14324
14325         * malloc/malloc.c (__libc_calloc): Revert last change.
14326
14327 2014-03-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14328
14329         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14330
14331 2014-03-03  Rajalakshmi Srinivasaraghavan <raji@linux.vnet.ibm.com>
14332
14333         * sysdeps/powerpc/powerpc64/power7/strrchr.S: New file.
14334         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strrchr multiarch
14335         implementation.
14336         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
14337         (__libc_ifunc_impl_list): Likewise.
14338         * sysdeps/powerpc/powerpc64/multiarch/strrchr.c: New file.
14339         * sysdeps/powerpc/powerpc64/multiarch/strrchr-ppc64.c: New file.
14340         * sysdeps/powerpc/powerpc64/multiarch/strrchr-power7.S: New file.
14341         * string/strrchr.c: Define STRRCHR.
14342
14343 2014-02-28  Ondřej Bílka  <neleai@seznam.cz>
14344
14345         * benchtest/bench-strtok.c (simple_strtok): Delete.
14346         (strtok_string): Use as benchmark.
14347         * string/strtok (STRTOK): New macro.
14348
14349 2014-02-28  Carlos O'Donell  <carlos@redhat.com>
14350
14351         * manual/threads.texi: Add header and standard comments to all
14352         functions.
14353
14354         * elf/dl-lookup.c (check_match): New function.
14355         (ELF_MACHINE_SYM_NO_MATCH): Adjust comment.
14356         (do_lookup_x): Remove nested function check_match. Use non-nested
14357         function check_match.
14358
14359 2014-02-28  Roland McGrath  <roland@hack.frob.com>
14360
14361         * csu/Makefile (generated, before-compile): Use += rather than =.
14362         * catgets/Makefile (generated, generated-dirs): Likewise.
14363         * debug/Makefile (generated): Likewise.
14364         * dlfcn/Makefile (generated): Likewise.
14365         * elf/Makefile (before-compile, generated, generated-dirs): Likewise.
14366         * iconvdata/Makefile (before-compile, generated): Likewise.
14367         * intl/Makefile (before-compile, generated, generated-dirs): Likewise.
14368         * libio/Makefile (generated): Likewise.
14369         * malloc/Makefile (generated): Likewise.
14370         * manual/Makefile (generated, generated-dirs): Likewise.
14371         * misc/Makefile (generated): Likewise.
14372         * posix/Makefile (generated): Likewise.
14373         * resolv/Makefile (generated): Likewise.
14374         * sunrpc/Makefile (generated, generated-dirs): Likewise.
14375         * timezone/Makefile (generated, generated-dirs): Likewise.
14376
14377         * stdio-common/Versions (libc: GLIBC_PRIVATE): Add missing }.
14378
14379 2014-02-27  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14380
14381         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
14382         power8 implementation.
14383         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power8.S: New
14384         file: POWER8 llround ifunc implementation.
14385         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c
14386         (__lllround): Add POWER8 implementation.
14387         * sysdeps/powerpc/powerpc64/power8/fpu/s_llround.S: New file:
14388         POWER8 llround implementation.
14389
14390         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint
14391         power8 implementation.
14392         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power8.S: New
14393         file: POWER8 llrint ifunc implementation.
14394         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c (__lllrint):
14395         Add POWER8 implementation.
14396         * sysdeps/powerpc/powerpc64/power8/fpu/s_llrint.S: New file:
14397         POWER8 llrint implementation.
14398
14399         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite
14400         power8 implementation.
14401         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power8.S: New
14402         file: POWER8 finite ifunc implementation.
14403         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c (__finite):
14404         Add POWER8 implementation.
14405         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c (__finitef):
14406         Likewise.
14407         * sysdeps/powerpc/powerpc64/power8/fpu/s_finite.S: New file:
14408         POWER8 finite implementation.
14409         * sysdeps/powerpc/powerpc64/power8/fpu/s_finitef.S: New file.
14410
14411         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf
14412         power8 implementation.
14413         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power8.S: New
14414         file: POWER8 isinf ifunc implementation.
14415         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c (__isinf): Add
14416         POWER8 implementation.
14417         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c (__isinff):
14418         Likewise.
14419         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinf.S: New file: POWER8
14420         isinf implementation.
14421         * sysdeps/powerpc/powerpc64/power8/fpu/s_isinff.S: New file.
14422
14423         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h
14424         (INIT_ARCH): Add hwcap2 initialization.
14425         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
14426         power8 implementation.
14427         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power8.S: New
14428         file: POWER8 isnan ifunc implementation.
14429         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c (__isnan): Add
14430         POWER8 implementation.
14431         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c (__isnanf):
14432         Likewise.
14433         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnan.S: New file: POWER8
14434         isnan implementation.
14435         * sysdeps/powerpc/powerpc64/power8/fpu/s_isnanf.S: New file.
14436
14437 2014-02-27  Joey Ye  <joey.ye@arm.com>
14438
14439         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_NANFRAC_S, _FP_NANFRAC_D)
14440         (_FP_NANFRAC_Q): Set to zero.
14441
14442 2014-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
14443
14444         [BZ #16623]
14445         * math/auto-libm-test-in: New test inputs.
14446         * math/auto-libm-test-out: Regenerate.
14447         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Preserve sign of A
14448         and DA.
14449         (__cos): Likewise.
14450         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
14451
14452 2014-02-27  Joseph Myers  <joseph@codesourcery.com>
14453
14454         * scripts/evaluate-test.sh: Take new argument indicating whether
14455         failure is expected.
14456         * Makeconfig (evaluate-test): Pass argument to evaluate-test.sh
14457         indicating whether failure is expected.
14458         * conform/Makefile (test-xfail-run-conformtest): New variable.
14459         ($(objpfx)run-conformtest.out): Don't expect to fail at makefile
14460         level.
14461         * posix/Makefile (test-xfail-annexc): New variable.
14462         ($(objpfx)annexc.out): Don't expect to fail at makefile level.
14463
14464 2014-02-26  Joseph Myers  <joseph@codesourcery.com>
14465
14466         * argp/Makefile: Include Makeconfig immediately after defining
14467         subdir.
14468         * assert/Makefile: Likewise.
14469         * benchtests/Makefile: Likewise.
14470         * catgets/Makefile: Likewise.
14471         * conform/Makefile: Likewise.
14472         * crypt/Makefile: Likewise.
14473         * csu/Makefile: Likewise.
14474         (all): Remove target.
14475         * ctype/Makefile: Include Makeconfig immediately after defining
14476         subdir.
14477         * debug/Makefile: Likewise.
14478         * dirent/Makefile: Likewise.
14479         * dlfcn/Makefile: Likewise.
14480         * gmon/Makefile: Likewise.
14481         * gnulib/Makefile: Likewise.
14482         * grp/Makefile: Likewise.
14483         * gshadow/Makefile: Likewise.
14484         * hesiod/Makefile: Likewise.
14485         * hurd/Makefile: Likewise.
14486         (all): Remove target.
14487         * iconvdata/Makefile: Include Makeconfig immediately after
14488         defining subdir.
14489         * inet/Makefile: Likewise.
14490         * intl/Makefile: Likewise.
14491         * io/Makefile: Likewise.
14492         * libio/Makefile: Likewise.
14493         (all): Remove target.
14494         * locale/Makefile: Include Makeconfig immediately after defining
14495         subdir.
14496         * login/Makefile: Likewise.
14497         * mach/Makefile: Likewise.
14498         (all): Remove target.
14499         * malloc/Makefile: Include Makeconfig immediately after defining
14500         subdir.
14501         (all): Remove target.
14502         * manual/Makefile: Include Makeconfig immediately after defining
14503         subdir.
14504         * math/Makefile: Likewise.
14505         * misc/Makefile: Likewise.
14506         * nis/Makefile: Likewise.
14507         * nss/Makefile: Likewise.
14508         * po/Makefile: Likewise.
14509         (all): Remove target.
14510         * posix/Makefile: Include Makeconfig immediately after defining
14511         subdir.
14512         * pwd/Makefile: Likewise.
14513         * resolv/Makefile: Likewise.
14514         * resource/Makefile: Likewise.
14515         * rt/Makefile: Likewise.
14516         * setjmp/Makefile: Likewise.
14517         * shadow/Makefile: Likewise.
14518         * signal/Makefile: Likewise.
14519         * socket/Makefile: Likewise.
14520         * soft-fp/Makefile: Likewise.
14521         * stdio-common/Makefile: Likewise.
14522         * stdlib/Makefile: Likewise.
14523         * streams/Makefile: Likewise.
14524         * string/Makefile: Likewise.
14525         * sunrpc/Makefile: Likewise.
14526         (all): Remove target.
14527         * sysvipc/Makefile: Include Makeconfig immediately after defining
14528         subdir.
14529         * termios/Makefile: Likewise.
14530         * time/Makefile: Likewise.
14531         * timezone/Makefile: Likewise.
14532         (all): Remove target.
14533         * wcsmbs/Makefile: Include Makeconfig immediately after defining
14534         subdir.
14535         * wctype/Makefile: Likewise.
14536
14537 2014-02-26  Steve Ellcey  <sellcey@mips.com>
14538
14539         * sysdeps/mips/math_private.h (_FPU_MASK_ALL) New.
14540         (libc_feholdexcept_mips): Use _FPU_MASK_ALL.
14541         (libc_feholdexcept_setround_mips): Ditto.
14542         (libc_feholdsetround): New.
14543         (libc_feholdsetroundf): New.
14544         (libc_feholdsetroundl): New.
14545         (libc_feupdateenv_test_mips): New.
14546         (libc_feupdateenv_test): New.
14547         (libc_feupdateenv_testf): New.
14548         (libc_feupdateenv_testl): New.
14549         (libc_feresetround): New.
14550         (libc_feresetroundf): New.
14551         (libc_feresetroundl): New.
14552         (libc_fetestexcept_mips): New.
14553         (libc_fetestexcept): New.
14554         (libc_fetestexceptf): New.
14555         (libc_fetestexceptl): New.
14556         (HAVE_RM_CTX): New.
14557         (libc_feholdexcept_setround_mips_ctx): New.
14558         (libc_feholdexcept_setround_ctx): New.
14559         (libc_feholdexcept_setroundf_ctx): New.
14560         (libc_feholdexcept_setroundl_ctx): New.
14561         (libc_fesetenv_mips_ctx): New.
14562         (libc_fesetenv_ctx): New.
14563         (libc_fesetenv_ctxf): New.
14564         (libc_fesetenv_ctxl): New.
14565         (libc_feupdateenv_mips_ctx): New.
14566         (libc_feupdateenv_ctx): New.
14567         (libc_feupdateenvf_ctx): New.
14568         (libc_feupdateenvl_ctx): New.
14569         (libc_feholdsetround_mips_ctx): New.
14570         (libc_feholdsetround_ctx): New.
14571         (libc_feholdsetroundf_ctx): New.
14572         (libc_feholdsetroundl_ctx): New.
14573         (libc_feresetround_mips_ctx): New.
14574         (libc_feresetround_ctx): New.
14575         (libc_feresetroundf_ctx): New.
14576         (libc_feresetroundl_ctx): New.
14577
14578 2014-02-26  Carlos O'Donell  <carlos@redhat.com>
14579
14580         * manual/ipc.texi (Semaphores): Use @Theglibc{}.
14581
14582         * manual/ipc.texi: New file.
14583         * manual/Makefile (chapters): Add ipc.
14584         * manual/job.texi: Add "Inter-Process Communication" to next.
14585         * manual/process.texi: Add "Inter-Process Communication" to prev.
14586
14587 2014-02-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
14588
14589         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
14590
14591 2014-02-26  Ondřej Bílka  <neleai@seznam.cz>
14592
14593         * malloc/malloc.c (__libc_calloc): Simplify implementation.
14594
14595         * manual/arith.texi: Fix spaces after sentences.
14596         * manual/charset.texi: Likewise.
14597         * manual/errno.texi: Likewise.
14598         * manual/install.texi: Likewise.
14599         * manual/llio.texi: Likewise.
14600         * manual/locale.texi: Likewise.
14601         * manual/maint.texi: Likewise.
14602         * manual/math.texi: Likewise.
14603         * manual/memory.texi: Likewise.
14604         * manual/message.texi: Likewise.
14605         * manual/probes.texi: Likewise.
14606         * manual/resource.texi: Likewise.
14607         * manual/signal.texi: Likewise.
14608         * manual/socket.texi: Likewise.
14609         * manual/stdio.texi: Likewise.
14610         * manual/string.texi: Likewise.
14611         * manual/time.texi: Likewise.
14612         * manual/users.texi: Likewise.
14613
14614 2014-02-25  Carlos O'Donell  <carlos@redhat.com>
14615
14616         [BZ #16632]
14617         * include/features.h: Don't warn about _BSD_SOURCE or _SVID_SOURCE if
14618         _DEFAULT_SOURCE is defined.
14619
14620 2014-02-25  Ulrich Drepper  <drepper@gmail.com>
14621             Carlos O'Donell  <carlos@redhat.com>
14622
14623         [BZ #16613]
14624         * elf/dl-tls.c (_dl_count_modids): New function.
14625         * sysdeps/generic/ldsodefs.h: Declare _dl_count_modids.
14626         * elf/rtld.c (dl_main): Call _dl_count_modids to track TLS usage in
14627         audit library and increment generation counter.
14628         (_dl_allocate_tls_init): Add assertion to check TLS generation count.
14629         * elf/tst-audit9.c: New file.
14630         * elf/tst-auditmod9a.c: New file.
14631         * elf/tst-auditmod9b.c: New file.
14632         * elf/Makefile: Add rules to build and run tst-audit9.
14633
14634 2014-02-25  Florian Weimer  <fweimer@redhat.com>
14635
14636         [BZ #15347]
14637         * misc/sys/select.h (__FD_MASK): Avoid signed integer overflow.
14638
14639 2014-02-25  Will Newton  <will.newton@linaro.org>
14640
14641         * sysdeps/arm/__longjmp.S: Include stap-probe.h.
14642         (__longjmp): Restore sp and lr before restoring callee
14643         saved registers.  Add longjmp and longjmp_target
14644         SystemTap probe point.
14645         * sysdeps/arm/bits/setjmp.h (__jmp_buf): Update comment.
14646         * sysdeps/arm/include/bits/setjmp.h (__JMP_BUF_SP):
14647         Define to zero to match jmpbuf layout.
14648         * sysdeps/arm/setjmp.S: Include stap-probe.h.
14649         (__sigsetjmp): Save sp and lr before saving callee
14650         saved registers.  Add setjmp SystemTap probe point.
14651
14652 2014-02-24  Stefan Liebler  <stli@linux.vnet.ibm.com>
14653
14654         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
14655
14656 2014-02-24  Andreas Schwab  <schwab@suse.de>
14657
14658         [BZ #15804]
14659         * elf/pldd.c (wait_for_ptrace_stop): New function.
14660         (main): Call it after attaching.
14661
14662 2014-02-22  Roland McGrath  <roland@hack.frob.com>
14663
14664         * Makerules ($(common-objpfx)Versions.v.i): No longer depend
14665         on $(common-objpfx)abi-versions.h; using <shlib-compat.h> inside
14666         Versions files is now verboten.
14667         * hurd/Versions (libc: GLIBC_2.0):
14668         Remove various [SHLIB_COMPAT (libc, GLIBC_2_0, ...)] sections.
14669         (libc: HURD_CTHREADS_0.3): Remove conditionalization, was under
14670         [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_2)].
14671         * mach/Versions: Likewise.
14672
14673         * csu/Versions: Remove unused %include.
14674         * resolv/Versions: Likewise.
14675
14676 2014-02-21  Joseph Myers  <joseph@codesourcery.com>
14677
14678         * Makefile ($(objpfx)c++-types-check.out): Use $(evaluate-test).
14679         ($(objpfx)check-local-headers.out): Likewise.
14680         ($(objpfx)begin-end-check.out): Likewise.
14681         * Makerules (check-abi-%.out): Likewise.
14682         * catgets/Makefile ($(objpfx)test1.cat): Likewise.
14683         ($(objpfx)test2.cat): Likewise.
14684         ($(objpfx)de/libc.cat): Likewise.
14685         ($(objpfx)test-gencat.out): Likewise.
14686         * conform/Makefile ($(objpfx)run-conformtest.out): Likewise.
14687         * elf/Makefile ($(objpfx)order-cmp.out): Likewise.
14688         ($(objpfx)noload-mem): Likewise.
14689         ($(objpfx)tst-pathopt.out): Likewise.
14690         ($(objpfx)tst-rtld-load-self.out): Likewise.
14691         ($(objpfx)tst-array1-cmp.out): Likewise.
14692         ($(objpfx)tst-array1-static-cmp.out): Likewise.
14693         ($(objpfx)tst-array2-cmp.out): Likewise.
14694         ($(objpfx)tst-array3-cmp.out): Likewise.
14695         ($(objpfx)tst-array4-cmp.out): Likewise.
14696         ($(objpfx)tst-array5-cmp.out): Likewise.
14697         ($(objpfx)tst-array5-static-cmp.out): Likewise.
14698         ($(objpfx)check-textrel.out): Likewise.
14699         ($(objpfx)check-execstack.out): Likewise.
14700         ($(objpfx)check-localplt.out): Likewise.
14701         ($(objpfx)order2-cmp.out): Likewise.
14702         ($(objpfx)tst-leaks1-mem): Likewise.
14703         ($(objpfx)tst-leaks1-static-mem): Likewise.
14704         ($(objpfx)tst-initorder-cmp.out): Likewise.
14705         ($(objpfx)tst-initorder2-cmp.out): Likewise.
14706         ($(objpfx)tst-unused-dep.out): Likewise.
14707         ($(objpfx)tst-unused-dep-cmp.out): Likewise.
14708         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Likewise.
14709         * iconv/Makefile (test-iconvconfig): Likewise.
14710         * iconvdata/Makefile ($(objpfx)mtrace-tst-loading): Likewise.
14711         ($(objpfx)iconv-test.out): Likewise.
14712         ($(objpfx)tst-tables.out): Likewise.
14713         * intl/Makefile ($(objpfx)mtrace-tst-gettext): Likewise.
14714         ($(objpfx)tst-gettext.out): Likewise.
14715         ($(objpfx)tst-translit.out): Likewise.
14716         ($(objpfx)tst-gettext2.out): Likewise.
14717         ($(objpfx)tst-gettext4.out): Likewise.
14718         ($(objpfx)tst-gettext6.out): Likewise.
14719         * io/Makefile ($(objpfx)ftwtest.out): Likewise.
14720         * libio/Makefile ($(objpfx)test-freopen.out): Likewise.
14721         ($(objpfx)tst-fopenloc-cmp.out): Likewise.
14722         ($(objpfx)tst-fopenloc-mem.out): Likewise.
14723         * malloc/Makefile ($(objpfx)tst-mtrace.out): Likewise.
14724         * misc/Makefile ($(objpfx)tst-error1-mem): Likewise.
14725         * posix/Makefile ($(objpfx)globtest.out): Likewise.
14726         ($(objpfx)wordexp-tst.out): Likewise.
14727         ($(objpfx)annexc.out): Likewise.
14728         ($(objpfx)tst-fnmatch-mem): Likewise.
14729         ($(objpfx)bug-regex2-mem): Likewise.
14730         ($(objpfx)bug-regex14-mem): Likewise.
14731         ($(objpfx)bug-regex21-mem): Likewise.
14732         ($(objpfx)bug-regex31-mem): Likewise.
14733         ($(objpfx)tst-vfork3-mem): Likewise.
14734         ($(objpfx)tst-rxspencer-no-utf8-mem): Likewise.
14735         ($(objpfx)tst-pcre-mem): Likewise.
14736         ($(objpfx)tst-boost-mem): Likewise.
14737         ($(objpfx)tst-getconf.out): Likewise.
14738         ($(objpfx)bug-ga2-mem): Likewise.
14739         ($(objpfx)bug-glob2-mem): Likewise.
14740         * resolv/Makefile ($(objpfx)mtrace-tst-leaks): Likewise.
14741         ($(objpfx)mtrace-tst-leaks2): Likewise.
14742         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Likewise.
14743         ($(objpfx)tst-printf.out): Likewise.
14744         ($(objpfx)tst-setvbuf1.out): Likewise.
14745         ($(objpfx)tst-setvbuf1-cmp.out): Likewise.
14746         * stdlib/Makefile ($(objpfx)isomac.out): Likewise.
14747         ($(objpfx)tst-fmtmsg.out): Likewise.
14748         * string/Makefile ($(objpfx)tst-svc-cmp.out): Likewise.
14749         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Likewise.
14750
14751         * bits/fcntl.h [__USE_MISC]: Remove redundant conditionals.
14752         * bits/sigaction.h [__USE_MISC]: Likewise.
14753         * bits/waitstatus.h: Update #endif comments.
14754         * ctype/ctype.h: Likewise.
14755         * dirent/dirent.h: Likewise.
14756         [__USE_MISC]: Remove redundant conditionals.
14757         * grp/grp.h: Update #endif comments.
14758         [__USE_GNU]: Remove redundant conditionals.
14759         [__USE_MISC]: Likewise.
14760         * inet/netinet/in.h [__USE_GNU]: Likewise.
14761         * io/sys/stat.h [__USE_MISC]: Likewise.
14762         * libio/bits/stdio-ldbl.h [__USE_MISC]: Likewise.
14763         * libio/bits/stdio.h: Update #endif comments.
14764         [__USE_MISC]: Remove redundant conditionals.
14765         * libio/bits/stdio2.h [__USE_MISC]: Likewise.
14766         * libio/stdio.h: Update #endif comments.
14767         [__USE_MISC]: Remove redundant conditionals.
14768         * math/bits/math-finite.h [__USE_MISC]: Likewise.
14769         * math/bits/mathcalls.h [__USE_MISC]: Likewise.
14770         * math/math.h: Update #else and #endif comments.
14771         [__USE_MISC]: Remove redundant conditionals.
14772         * misc/sys/uio.h: Update #endif comments.
14773         * posix/bits/unistd.h [__USE_MISC]: Remove redundant conditionals.
14774         * posix/glob.h [__USE_MISC]: Likewise.
14775         * posix/sys/types.h: Update #endif comments.
14776         [__USE_MISC]: Remove redundant conditionals.
14777         * posix/sys/wait.h: Update #endif comments.
14778         [__USE_MISC]: Remove redundant conditionals.
14779         * posix/unistd.h: Update #endif comments.
14780         [__USE_MISC]: Remove redundant conditionals.
14781         * pwd/pwd.h [__USE_GNU]: Likewise.
14782         [__USE_MISC]: Likewise.
14783         * resolv/netdb.h [__USE_GNU]: Likewise.
14784         * signal/signal.h: Update #endif comments.
14785         [__USE_MISC]: Remove redundant conditionals.
14786         * stdlib/stdlib.h: Update #else and #endif comments.
14787         [__USE_MISC]: Remove redundant conditionals.
14788         [__USE_GNU]: Likewise.
14789         * string/bits/string2.h [__USE_MISC]: Likewise.
14790         * string/string.h: Update #endif comments.
14791         [__USE_MISC]: Remove redundant conditionals.
14792         * sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__USE_MISC]:
14793         Likewise.
14794         * sysdeps/mach/hurd/bits/fcntl.h [__USE_MISC]: Likewise.
14795         * sysdeps/mach/hurd/bits/stat.h [__USE_MISC]: Likewise.
14796         * sysdeps/unix/sysv/linux/alpha/bits/sigaction.h [__USE_MISC]:
14797         Likewise.
14798         * sysdeps/unix/sysv/linux/alpha/bits/stat.h [__USE_MISC]:
14799         Likewise.
14800         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: Update #endif
14801         comments.
14802         [__USE_MISC]: Remove redundant conditionals.
14803         * sysdeps/unix/sysv/linux/bits/in.h [__USE_GNU]: Likewise.
14804         * sysdeps/unix/sysv/linux/bits/sigaction.h [__USE_MISC]: Likewise.
14805         * sysdeps/unix/sysv/linux/bits/socket.h [__USE_GNU]: Likewise.
14806         * sysdeps/unix/sysv/linux/bits/stat.h [__USE_MISC]: Likewise.
14807         * sysdeps/unix/sysv/linux/ia64/bits/sigaction.h [__USE_MISC]:
14808         Likewise.
14809         * sysdeps/unix/sysv/linux/m68k/bits/stat.h [__USE_MISC]: Likewise.
14810         * sysdeps/unix/sysv/linux/mips/bits/sigaction.h [__USE_MISC]:
14811         Likewise.
14812         * sysdeps/unix/sysv/linux/mips/bits/stat.h [__USE_MISC]: Likewise.
14813         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h [__USE_MISC]:
14814         Likewise.
14815         * sysdeps/unix/sysv/linux/s390/bits/sigaction.h [__USE_MISC]:
14816         Likewise.
14817         * sysdeps/unix/sysv/linux/s390/bits/stat.h [__USE_MISC]: Likewise.
14818         * sysdeps/unix/sysv/linux/sparc/bits/sigaction.h [__USE_MISC]:
14819         Likewise.
14820         * sysdeps/unix/sysv/linux/sparc/bits/stat.h [__USE_MISC]:
14821         Likewise.
14822         * sysdeps/unix/sysv/linux/x86/bits/stat.h [__USE_MISC]: Likewise.
14823         * sysdeps/x86/bits/string.h: Update #endif comments.
14824         * sysdeps/x86/fpu/bits/mathinline.h [__USE_MISC]: Remove redundant
14825         conditionals.
14826         * time/sys/time.h: Update #endif comments.
14827         * time/time.h: Likewise.
14828         [__USE_MISC]: Remove redundant conditionals.
14829
14830 2014-02-21  Yury Gribov  <y.gribov@samsung.com>
14831
14832         [BZ #16600]
14833         * sysdeps/arm/libm-test-ulps: Update for VFPv4.
14834
14835 2014-02-21  Andreas Schwab  <schwab@linux-m68k.org>
14836
14837         * Versions.def (librt): Add GLIBC_2.17.
14838
14839 2014-02-21  Adam Conrad  <adconrad@0c3.net>
14840
14841         * sysdeps/powerpc/bits/hwcap.h: Allow _SYSDEPS_SYSDEP_H guard as a
14842         synonym for _SYS_AUXV_H to allow direct inclusion.
14843         * sysdeps/sparc/bits/hwcap.h: Likewise.
14844         * sysdeps/powerpc/sysdep.h: Define _SYSDEPS_SYSDEP_H instead of
14845         _SYS_AUXV_H so we can include sysdep.h and sys/auxv.h together.
14846         * sysdeps/sparc/sysdep.h: Likewise.
14847
14848 2014-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
14849
14850         * benchtests/bench-strrchr.c (do_test): Fix minor formatting.
14851
14852 2014-02-21  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
14853
14854         * benchtests/bench-strrchr.c: Print length instead of position.
14855
14856 2014-02-20  Joseph Myers  <joseph@codesourcery.com>
14857
14858         [BZ #16611]
14859         * sysdeps/unix/sysv/linux/kernel-features.h
14860         [__LINUX_KERNEL_VERSION >= 0x030000 && __ASSUME_SOCKETCALL]
14861         (__ASSUME_SENDMMSG_SOCKETCALL): Define.
14862         [__LINUX_KERNEL_VERSION >= 0x030000 && (__i386__ || __x86_64__ ||
14863         __powerpc__ || __sh__ || __sparc__)] (__ASSUME_SENDMMSG_SYSCALL):
14864         Likewise.
14865         [__i386__ || __powerpc__ || __sh__ || __sparc__]
14866         (__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14867         [__ASSUME_SENDMMSG_SOCKETCALL || __ASSUME_SENDMMSG_SYSCALL]
14868         (__ASSUME_SENDMMSG): Define instead of using previous
14869         [__LINUX_KERNEL_VERSION >= 0x020627] condition.
14870         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14871         (__ASSUME_SENDMMSG_SYSCALL): Define.
14872         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14873         [__LINUX_KERNEL_VERSION >= 0x030200] (__ASSUME_SENDMMSG_SYSCALL):
14874         Likewise.
14875         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14876         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14877         Likewise.
14878         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14879         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14880         Likewise.
14881         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SOCKETCALL
14882         && !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
14883         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
14884         [__ASSUME_SENDMMSG]: Change conditionals to
14885         [__ASSUME_SENDMMSG_SOCKETCALL].
14886         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14887         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_SENDMMSG_SYSCALL):
14888         Define.
14889         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14890         [__LINUX_KERNEL_VERSION >= 0x030100] (__ASSUME_SENDMMSG_SYSCALL):
14891         Likewise.
14892         * sysdeps/unix/sysv/linux/sendmmsg.c [__ASSUME_SOCKETCALL &&
14893         !__ASSUME_SENDMMSG_SYSCALL_WITH_SOCKETCALL &&
14894         !__ASSUME_SENDMMSG_SYSCALL] (__NR_sendmmsg): Undefine.
14895         [!__ASSUME_SENDMMSG]: Change conditional to
14896         [!__ASSUME_SENDMMSG_SOCKETCALL].
14897         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14898         [__LINUX_KERNEL_VERSION >= 0x030000] (__ASSUME_SENDMMSG_SYSCALL):
14899         Define.
14900
14901         [BZ #16610]
14902         * sysdeps/unix/sysv/linux/kernel-features.h
14903         [__LINUX_KERNEL_VERSION >= 0x020621 && __ASSUME_SOCKETCALL]
14904         (__ASSUME_RECVMMSG_SOCKETCALL): Define.
14905         [(__LINUX_KERNEL_VERSION >= 0x020621 && (__i386__ || __x86_64__ ||
14906         __sparc__)) || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__
14907         || __sh__))] (__ASSUME_RECVMMSG_SYSCALL): Likewise.
14908         [__i386__ || __sparc__]
14909         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14910         [__ASSUME_RECVMMSG_SOCKETCALL || __ASSUME_RECVMMSG_SYSCALL]
14911         (__ASSUME_RECVMMSG): Define instead of using previous
14912         [__LINUX_KERNEL_VERSION >= 0x020621] condition.
14913         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14914         (__ASSUME_RECVMMSG_SYSCALL): Define.
14915         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14916         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14917         Likewise.
14918         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14919         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14920         Likewise.
14921         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14922         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14923         Likewise.
14924         * sysdeps/unix/sysv/linux/internal_recvmmsg.S [__ASSUME_SOCKETCALL
14925         && !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
14926         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
14927         [__ASSUME_RECVMMSG]: Change condition to
14928         [__ASSUME_RECVMMSG_SOCKETCALL].
14929         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14930         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14931         Define.
14932         (__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL): Likewise.
14933         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14934         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_RECVMMSG_SYSCALL):
14935         Likewise.
14936         * sysdeps/unix/sysv/linux/recvmmsg.c [__ASSUME_SOCKETCALL &&
14937         !__ASSUME_RECVMMSG_SYSCALL_WITH_SOCKETCALL &&
14938         !__ASSUME_RECVMMSG_SYSCALL] (__NR_recvmmsg): Undefine.
14939         [!__ASSUME_RECVMMSG]: Change condition to
14940         [!__ASSUME_RECVMMSG_SOCKETCALL].
14941         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14942         (__ASSUME_RECVMMSG_SYSCALL): Define.
14943
14944         [BZ #16609]
14945         * sysdeps/unix/sysv/linux/kernel-features.h [__i386__ ||
14946         __powerpc__ || __s390__ || __sh__ || __sparc__]
14947         (__ASSUME_SOCKETCALL): Define.
14948         [__LINUX_KERNEL_VERSION && __ASSUME_SOCKETCALL]
14949         (__ASSUME_ACCEPT4_SOCKETCALL): Likewise.
14950         [(__LINUX_KERNEL_VERSION >= 0x02061c && (__x86_64__ || __sparc__))
14951         || (__LINUX_KERNEL_VERSION >= 0x020625 && (__powerpc__ ||
14952         __sh__))] (__ASSUME_ACCEPT4_SYSCALL): Likewise.
14953         [__sparc__] (__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL): Likewise.
14954         [__ASSUME_ACCEPT4_SOCKETCALL || __ASSUME_ACCEPT4_SYSCALL]
14955         (__ASSUME_ACCEPT4): Define instead of using previous
14956         [__LINUX_KERNEL_VERSION >= 0x02061c && (__i386__ || __x86_64__ ||
14957         __powerpc__ || __sparc__ || __s390__)] condition.
14958         * sysdeps/unix/sysv/linux/aarch64/kernel-features.h
14959         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
14960         * sysdeps/unix/sysv/linux/accept4.c [__ASSUME_SOCKETCALL &&
14961         !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
14962         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
14963         [!__ASSUME_ACCEPT4]: Change condition to
14964         [!__ASSUME_ACCEPT4_SOCKETCALL].
14965         * sysdeps/unix/sysv/linux/alpha/kernel-features.h
14966         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.  Correct
14967         condition to [__LINUX_KERNEL_VERSION >= 0x030200].
14968         * sysdeps/unix/sysv/linux/arm/kernel-features.h
14969         [__LINUX_KERNEL_VERSION >= 0x020624] (__ASSUME_ACCEPT4): Change to
14970         __ASSUME_ACCEPT4_SYSCALL.
14971         * sysdeps/unix/sysv/linux/i386/accept4.S [__ASSUME_ACCEPT4]:
14972         Change conditions to [__ASSUME_ACCEPT4_SOCKETCALL].
14973         * sysdeps/unix/sysv/linux/ia64/kernel-features.h
14974         [__LINUX_KERNEL_VERSION >= 0x030300] (__ASSUME_ACCEPT4): Change to
14975         __ASSUME_ACCEPT4_SYSCALL.
14976         * sysdeps/unix/sysv/linux/internal_accept4.S [__ASSUME_SOCKETCALL
14977         && !__ASSUME_ACCEPT4_SYSCALL_WITH_SOCKETCALL &&
14978         !__ASSUME_ACCEPT4_SYSCALL] (__NR_accept4): Undefine.
14979         [__ASSUME_ACCEPT4]: Change condition to
14980         [__ASSUME_ACCEPT4_SOCKETCALL].
14981         * sysdeps/unix/sysv/linux/m68k/kernel-features.h
14982         (__ASSUME_SOCKETCALL): Define.
14983         [__LINUX_KERNEL_VERSION >= 0x02061c] (__ASSUME_ACCEPT4): Remove.
14984         * sysdeps/unix/sysv/linux/microblaze/kernel-features.h
14985         (__ASSUME_SOCKETCALL): Define.
14986         (__ASSUME_ACCEPT4): Remove.
14987         [__LINUX_KERNEL_VERSION >= 0x020621] (__ASSUME_ACCEPT4_SYSCALL):
14988         Define.
14989         * sysdeps/unix/sysv/linux/mips/kernel-features.h
14990         [__LINUX_KERNEL_VERSION >= 0x02061f] (__ASSUME_ACCEPT4_SYSCALL):
14991         Likewise.
14992         * sysdeps/unix/sysv/linux/tile/kernel-features.h
14993         (__ASSUME_ACCEPT4): Change to __ASSUME_ACCEPT4_SYSCALL.
14994
14995         * sysdeps/unix/sysv/linux/arm/bits/hwcap.h (HWCAP_ARM_VFPD32): New
14996         macro.
14997         (HWCAP_ARM_LPAE): Likewise.
14998         (HWCAP_ARM_EVTSTRM): Likewise.
14999         * sysdeps/unix/sysv/linux/arm/dl-procinfo.c (_dl_arm_cap_flags):
15000         Add vpfd32, lpae and evtstrm.
15001         * sysdeps/unix/sysv/linux/arm/dl-procinfo.h (_DL_HWCAP_COUNT):
15002         Increase to 22.
15003
15004 2014-02-19  Joseph Myers  <joseph@codesourcery.com>
15005
15006         * math/auto-libm-test-in: Add tests of clog10.
15007         * math/auto-libm-test-out: Regenerated.
15008         * math/libm-test.inc (clog10_test_data): Use AUTO_TESTS_c_c.
15009         * sysdeps/i386/fpu/libm-test-ulps: Update.
15010         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15011
15012 2014-02-18  Andreas Schwab  <schwab@suse.de>
15013
15014         [BZ #16574]
15015         * resolv/res_send.c (send_vc): Add parameter ansp2_malloced.
15016         Store non-zero if the second buffer was newly allocated.
15017         (send_dg): Likewise.
15018         (__libc_res_nsend): Add parameter ansp2_malloced and pass it down
15019         to send_vc and send_dg.
15020         (res_nsend): Pass NULL for ansp2_malloced.
15021         * resolv/res_query.c (__libc_res_nquery): Add parameter
15022         answerp2_malloced and pass it down to __libc_res_nsend.
15023         (res_nquery): Pass additional NULL to __libc_res_nquery.
15024         (__libc_res_nsearch): Add parameter answerp2_malloced and pass it
15025         down to __libc_res_nquery and __libc_res_nquerydomain.  Deallocate
15026         second answer buffer if answerp2_malloced was set.
15027         (res_nsearch): Pass additional NULL to __libc_res_nsearch.
15028         (__libc_res_nquerydomain): Add parameter
15029         answerp2_malloced and pass it down to __libc_res_nquery.
15030         (res_nquerydomain): Pass additional NULL to
15031         __libc_res_nquerydomain.
15032         * resolv/nss_dns/dns-network.c (_nss_dns_getnetbyname_r): Pass
15033         additional NULL to __libc_res_nsend and __libc_res_nquery.
15034         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Pass
15035         additional NULL to __libc_res_nsearch.
15036         (_nss_dns_gethostbyname4_r): Revert last change.  Use new
15037         parameter of __libc_res_nsearch to check for separately allocated
15038         second buffer.
15039         (_nss_dns_gethostbyaddr2_r): Pass additional NULL to
15040         __libc_res_nquery.
15041         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Pass
15042         additional NULL to __libc_res_nquery.
15043         * resolv/gethnamaddr.c (gethostbyname2): Pass additional NULL to
15044         __libc_res_nsearch.
15045         (gethostbyaddr): Pass additional NULL to __libc_res_nquery.
15046         * include/resolv.h: Update prototypes of __libc_res_nquery,
15047         __libc_res_nsearch, __libc_res_nsend.
15048
15049 2014-02-18  Joseph Myers  <joseph@codesourcery.com>
15050
15051         * math/auto-libm-test-in: Add tests of fma.
15052         * math/auto-libm-test-out: Regenerated.
15053         * math/libm-test.inc (fma_test_data): Use AUTO_TESTS_fff_f.
15054         (fma_towardzero_test_data): Likewise.
15055         (fma_downward_test_data): Likewise.
15056         (fma_upward_test_data): Likewise.
15057         * math/gen-auto-libm-tests.c (rounding_mode_desc): Add field
15058         mpc_mode.
15059         (rounding_modes): Add values for new field.
15060         (func_calc_method): Add value mpfr_fff_f.
15061         (func_calc_desc): Add mpfr_fff_f union field.
15062         (test_function): Add field exact_args.
15063         (FUNC): Add macro argument EXACT_ARGS.
15064         (FUNC_mpfr_f_f): Update call to FUNC.
15065         (FUNC_mpfr_f_f): Likewise.
15066         (FUNC_mpfr_ff_f): Likewise.
15067         (FUNC_mpfr_if_f): Likewise.
15068         (FUNC_mpc_c_f): Likewise.
15069         (FUNC_mpc_c_c): Likewise.
15070         (test_functions): Add fma.  Update calls to FUNC.
15071         (handle_input_arg): Add argument exact_args.
15072         (add_test): Update call to handle_input_arg.
15073         (calc_generic_results): Add argument mode.  Handle mpfr_fff_f.
15074         (output_for_one_input_case): Update call to calc_generic_results.
15075         Recalculate exact zero results in each rounding mode.
15076
15077         * math/gen-auto-libm-tests.c (adjust_real): Ensure integers are
15078         non-negative before setting low bit.
15079         * math/auto-libm-test-in: Mark one asin test possibly having
15080         spurious underflow.
15081         * math/auto-libm-test-out: Regenerated.
15082         * sysdeps/i386/fpu/libm-test-ulps: Update.
15083         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
15084
15085 2014-02-17  David Holsgrove <david.holsgrove@xilinx.com>
15086
15087         * sysdeps/microblaze: Move directory from ports/sysdeps/microblaze.
15088         * sysdeps/unix/sysv/linux/microblaze: Move directory from
15089         ports/sysdeps/unix/sysv/linux/microblaze.
15090         * README: Add missing listing for microblaze*-*-linux-gnu.
15091
15092 2014-02-16  Ondřej Bílka  <neleai@seznam.cz>
15093
15094         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Remove
15095         duplicate code
15096
15097 2014-02-16  Mike Frysinger  <vapier@gentoo.org>
15098
15099         * sysdeps/ia64: Move directory from ports/sysdeps/ia64.
15100         * sysdeps/unix/sysv/linux/ia64: Move directory from
15101         ports/sysdeps/unix/sysv/linux/ia64.
15102         * README: Update listing for ia64-*-linux-gnu.
15103
15104 2014-02-14  Tomas Dohnalek  <tdohnale@redhat.com>
15105             Joseph Myers  <joseph@codesourcery.com>
15106
15107         * Makeconfig (test-name): New variable.
15108         (evaluate-test): Likewise.
15109         * Makerules (do-test-clean): Remove .test-result files.
15110         (common-mostlyclean): Likewise.
15111         * Rules ($(objpfx)%.out): Use $(evaluate-test) in both rules.
15112         * scripts/evaluate-test.sh: New file.
15113
15114 2014-02-14  Joseph Myers  <joseph@codesourcery.com>
15115
15116         * libio/Makefile ($(objpfx)tst-fopenloc.check): Split into
15117         separate $(objpfx)tst-fopenloc-cmp.out and
15118         $(objpfx)tst-fopenloc-mem.out targets.
15119         (tests): Update dependencies.
15120         * posix/Makefile (tests variable): Add tst-rxspencer-no-utf8.
15121         (generated): Change tst-rxspencer-mem and tst-rxspencer.mtrace to
15122         tst-rxspencer-no-utf8-mem and tst-rxspencer-no-utf8.mtrace.
15123         (tst-rxspencer-no-utf8-ARGS): New variable.
15124         (tst-rxspencer-no-utf8-ENV): Likewise.
15125         (tests target): Depend on $(objpfx)tst-rxspencer-no-utf8-mem
15126         instead of $(objpfx)tst-rxspencer-mem.
15127         ($(objpfx)tst-rxspencer-mem): Change target to
15128         $(objpfx)tst-rxspencer-no-utf8-mem.  Depend on
15129         $(objpfx)tst-rxspencer-no-utf8.out instead of running test program.
15130         * posix/tst-rxspencer-no-utf8.c: New file.
15131
15132         * elf/Makefile ($(objpfx)order.out): Remove rule.
15133         [$(run-built-tests) = yes] (tests): Depend on
15134         $(objpfx)order-cmp.out.
15135         ($(objpfx)order-cmp.out): New rule.
15136         [$(run-built-tests) = yes] (tests): Depend on
15137         $(objpfx)tst-array1-cmp.out, $(objpfx)tst-array1-static-cmp.out,
15138         $(objpfx)tst-array2-cmp.out, $(objpfx)tst-array3-cmp.out,
15139         $(objpfx)tst-array4-cmp.out, $(objpfx)tst-array5-cmp.out and
15140         $(objpfx)tst-array5-static-cmp.out.
15141         ($(objpfx)tst-array1.out): Remove rule.
15142         ($(objpfx)tst-array1-cmp.out): New rule.
15143         ($(objpfx)tst-array1-static.out): Remove rule.
15144         ($(objpfx)tst-array1-static-cmp.out): New rule.
15145         ($(objpfx)tst-array2.out): Remove rule.
15146         ($(objpfx)tst-array2-cmp.out): New rule.
15147         ($(objpfx)tst-array3.out): Remove rule.
15148         ($(objpfx)tst-array3-cmp.out): New rule.
15149         ($(objpfx)tst-array4.out): Remove rule.
15150         ($(objpfx)tst-array4-cmp.out): New rule.
15151         ($(objpfx)tst-array5.out): Remove rule.
15152         ($(objpfx)tst-array5-cmp.out): New rule.
15153         ($(objpfx)tst-array5-static.out): Remove rule.
15154         ($(objpfx)tst-array5-static-cmp.out): New rule.
15155         [$(run-built-tests) = yes] (tests): Depend on
15156         $(objpfx)order2-cmp.out.
15157         ($(objpfx)order2.out): Remove rule.
15158         ($(objpfx)order2-cmp.out): New rule.
15159         ($(objpfx)tst-initorder.out): Remove rule.
15160         [$(run-built-tests) = yes] (tests): Depend on
15161         $(objpfx)tst-initorder-cmp.out.
15162         ($(objpfx)tst-initorder-cmp.out): New rule.
15163         ($(objpfx)tst-initorder2.out): Remove rule.
15164         [$(run-built-tests) = yes] (tests): Depend on
15165         $(objpfx)tst-initorder2-cmp.out.
15166         ($(objpfx)tst-initorder2-cmp.out): New rule.
15167         [$(run-built-tests) = yes] (tests): Depend on
15168         $(objpfx)tst-unused-dep-cmp.out.
15169         ($(objpfx)tst-unused-dep-cmp.out): Do not run cmp.
15170         ($(objpfx)tst-unused-dep-cmp.out): New rule.
15171         * stdio-common/Makefile [$(run-built-tests) = yes] (tests): Depend
15172         on $(objpfx)tst-setvbuf1-cmp.out.
15173         ($(objpfx)tst-setvbuf1.out): Do not run cmp.
15174         ($(objpfx)tst-setvbuf1-cmp.out): New rule.
15175         * string/Makefile [$(run-built-tests) = yes] (tests): Depend
15176         $(objpfx)tst-svc-cmp.out instead of $(objpfx)tst-svc.out.
15177         ($(objpfx)tst-svc.out): Remove rule.
15178         ($(objpfx)tst-svc-cmp.out): New rule.
15179
15180 2014-02-13  Joseph Myers  <joseph@codesourcery.com>
15181
15182         * bits/mman.h [__USE_MISC]: Remove redundant conditionals.
15183         * ctype/ctype.h [__USE_MISC]: Likewise.
15184         * dirent/dirent.h [__USE_MISC]: Likewise.
15185         * grp/grp.h [__USE_MISC]: Likewise.
15186         * io/fcntl.h [__USE_MISC]: Likewise.
15187         * io/sys/stat.h [__USE_MISC]: Likewise.
15188         * libio/stdio.h [__USE_MISC]: Likewise.
15189         * posix/unistd.h [__USE_MISC]: Likewise.
15190         * pwd/pwd.h [__USE_MISC]: Likewise.
15191         * stdlib.h [__USE_MISC]: Likewise.
15192         * string/bits/string2.h [__USE_MISC]: Likewise.
15193         * string/string.h [__USE_MISC]: Likewise.
15194         * time/time.h [__USE_MISC]: Likewise.
15195
15196 2014-02-13  Andreas Schwab  <schwab@suse.de>
15197
15198         [BZ #16574]
15199         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname4_r): Free the
15200         second answer buffer if it was separately allocated.
15201
15202 2014-02-12  Joseph Myers  <joseph@codesourcery.com>
15203
15204         * sysdeps/mips/math-tests.h: Include <features.h>.
15205         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
15206         (ROUNDING_TESTS_long_double): Do not define.
15207         [!__mips_soft_float && _MIPS_SIM != _ABIO32 && __GNUC_PREREQ (4, 9)]
15208         (EXCEPTION_TESTS_long_double): Likewise.
15209         * sysdeps/mips/mips64/libm-test-ulps: Update.
15210
15211         * include/features.h (__USE_BSD): Remove macro definitions.
15212         (__USE_SVID): Likewise.
15213         (_BSD_SOURCE): Likewise.
15214         (_SVID_SOURCE): Likewise.
15215         [!defined _BSD_SOURCE && !defined _SVID_SOURCE]: Remove condition
15216         from definition of _DEFAULT_SOURCE.
15217         [_BSD_SOURCE || _SVID_SOURCE]: Change condition to
15218         [_DEFAULT_SOURCE].
15219         * bits/fcntl.h [__USE_BSD]: Change condition to [__USE_MISC].
15220         * bits/mman.h [__USE_BSD]: Likewise.
15221         * bits/termios.h [__USE_BSD]: Likewise.
15222         * bits/waitstatus.h [__USE_BSD]: Likewise.
15223         * ctype/ctype.h [__USE_SVID]: Likewise.
15224         * dirent/dirent.h [__USE_BSD]: Likewise.
15225         * grp/grp.h [__USE_SVID]: Likewise.
15226         [__USE_BSD]: Likewise.
15227         * inet/netinet/igmp.h [__USE_BSD]: Likewise.
15228         * io/fcntl.h [__USE_BSD]: Likewise.
15229         * io/ftw.h [__USE_BSD]: Likewise.
15230         * io/sys/stat.h [__USE_BSD]: Likewise.
15231         * libio/bits/stdio-ldbl.h [__USE_BSD]: Likewise.
15232         * libio/bits/stdio2.h [__USE_BSD]: Likewise.
15233         * libio/stdio.h [__USE_SVID]: Likewise.
15234         [__USE_BSD]: Likewise.
15235         * math/math.h [__USE_SVID]: Likewise.
15236         [__USE_BSD]: Likewise.
15237         * misc/bits/syslog-ldbl.h [__USE_BSD]: Likewise.
15238         * misc/bits/syslog.h [__USE_BSD]: Likewise.
15239         * misc/search.h [__USE_SVID]: Likewise.
15240         * misc/sys/mman.h [__USE_BSD]: Likewise.
15241         * misc/sys/syslog.h [__USE_BSD]: Likewise.
15242         * misc/sys/uio.h [__USE_BSD]: Likewise.
15243         * posix/bits/unistd.h [__USE_BSD]: Likewise.
15244         * posix/glob.h [__USE_BSD]: Likewise.
15245         * posix/regex.h [__USE_BSD]: Likewise.
15246         * posix/sys/types.h [__USE_BSD]: Likewise.
15247         [__USE_SVID]: Likewise.
15248         * posix/sys/utsname.h [__USE_SVID]: Likewise.
15249         * posix/sys/wait.h [__USE_BSD]: Likewise.
15250         [__USE_SVID]: Likewise.
15251         * posix/unistd.h [__USE_BSD]: Likewise.
15252         [__USE_SVID]: Likewise.
15253         * pwd/pwd.h [__USE_SVID]: Likewise.
15254         * resolv/netdb.h [__USE_BSD]: Likewise.
15255         * setjmp/setjmp.h [__USE_BSD]: Likewise.
15256         * signal/signal.h [__USE_BSD]: Likewise.
15257         [__USE_SVID]: Likewise.
15258         * socket/sys/socket.h [__USE_BSD]: Likewise.
15259         * stdlib/fmtmsg.h [__USE_SVID]: Likewise.
15260         * stdlib/stdlib.h [__USE_BSD]: Likewise.
15261         [__USE_SVID]: Likewise.
15262         * string/bits/string2.h [__USE_BSD]: Likewise.
15263         [__USE_SVID]: Likewise.
15264         * string/bits/string3.h [__USE_BSD]: Likewise.
15265         * string/endian.h [__USE_BSD]: Likewise.
15266         * string/string.h [__USE_SVID]: Likewise.
15267         [__USE_BSD]: Likewise.
15268         * string/strings.h [__USE_BSD]: Likewise.
15269         * sysdeps/generic/netinet/ip.h [__USE_BSD]: Likewise.
15270         * sysdeps/gnu/netinet/ip_icmp.h [__USE_BSD]: Likewise.
15271         * sysdeps/mach/hurd/bits/fcntl.h [__USE_BSD]: Likewise.
15272         * sysdeps/mach/hurd/bits/stat.h [__USE_BSD]: Likewise.
15273         * sysdeps/unix/sysv/linux/alpha/bits/mman.h [__USE_BSD]: Likewise.
15274         * sysdeps/unix/sysv/linux/alpha/bits/termios.h [__USE_BSD]:
15275         Likewise.
15276         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_BSD]:
15277         Likewise.
15278         * sysdeps/unix/sysv/linux/bits/mman-linux.h [__USE_BSD]: Likewise.
15279         * sysdeps/unix/sysv/linux/bits/sys_errlist.h [__USE_BSD]:
15280         Likewise.
15281         * sysdeps/unix/sysv/linux/bits/termios.h [__USE_BSD]: Likewise.
15282         * sysdeps/unix/sysv/linux/mips/bits/termios.h [__USE_BSD]:
15283         Likewise.
15284         * sysdeps/unix/sysv/linux/netinet/if_ether.h [__USE_BSD]:
15285         Likewise.
15286         * sysdeps/unix/sysv/linux/netinet/if_fddi.h [__USE_BSD]: Likewise.
15287         * sysdeps/unix/sysv/linux/netinet/if_tr.h [__USE_BSD]: Likewise.
15288         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h [__USE_BSD]:
15289         Likewise.
15290         * sysdeps/unix/sysv/linux/sparc/bits/termios.h [__USE_BSD]:
15291         Likewise.
15292         * sysdeps/x86/bits/string.h [__USE_BSD]: Likewise.
15293         * sysvipc/sys/ipc.h [__USE_SVID]: Likewise.
15294         * termios/termios.h [__USE_BSD]: Likewise.
15295         * time/sys/time.h [__USE_BSD]: Likewise.
15296         * time/time.h [__USE_BSD]: Likewise.
15297         [__USE_SVID]: Likewise.
15298
15299         * Makefile (subdir_targets): Remove subdir_lint.out.
15300
15301         * stdio-common/Makefile (do-tst-unbputc): Remove target.
15302         (do-tst-printf): Likewise.
15303         (tests): Depend directly on $(objpfx)tst-unbputc.out and
15304         $(objpfx)tst-printf.out.
15305
15306         * io/ftwtest-sh (testout): Change to $tmp/ftwtest-tmp.out.
15307
15308         * Makerules (check-abi-%): Change target to
15309         $(objpfx)check-abi-%.out.
15310         (check-abi target): Update dependencies.
15311         (check-abi-pattern variable): Redirect output of diff to $@.
15312         (check-abi variable): Likewise.
15313         * elf/Makefile (check-abi): Update dependencies.
15314
15315         * soft-fp/op-common.h (_FP_DECL): Mark exponent as possibly
15316         unused.
15317         (_FP_PACK_SEMIRAW): Determine tininess based on rounding shifted
15318         value if _FP_TININESS_AFTER_ROUNDING and unrounded value is in
15319         subnormal range.
15320         (_FP_PACK_CANONICAL): Determine tininess based on rounding to
15321         normal precision if _FP_TININESS_AFTER_ROUNDING and unrounded
15322         value has largest subnormal exponent.
15323         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS]
15324         (_FP_TININESS_AFTER_ROUNDING): Undefine and redefine to 0.
15325         * sysdeps/aarch64/soft-fp/sfp-machine.h
15326         (_FP_TININESS_AFTER_ROUNDING): New macro.
15327         * sysdeps/alpha/soft-fp/sfp-machine.h
15328         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15329         * sysdeps/arm/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15330         Likewise.
15331         * sysdeps/mips/mips64/soft-fp/sfp-machine.h
15332         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15333         * sysdeps/mips/soft-fp/sfp-machine.h
15334         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15335         * sysdeps/powerpc/soft-fp/sfp-machine.h
15336         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15337         * sysdeps/sh/soft-fp/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15338         Likewise.
15339         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
15340         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15341         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
15342         (_FP_TININESS_AFTER_ROUNDING): Likewise.
15343         * sysdeps/tile/sfp-machine.h (_FP_TININESS_AFTER_ROUNDING):
15344         Likewise.
15345
15346 2014-02-12  Dylan Alex Simon  <dylan@dylex.net>
15347
15348         [BZ #16545]
15349         * sysdeps/x86_64/fpu/libm-test-ulps: Update on AMD family 21h
15350         model 1.
15351
15352 2014-02-12  Richard Henderson  <rth@redhat.com>
15353
15354         * sysdeps/alpha: Move directory from ports/sysdeps/alpha.
15355         * sysdeps/unix/alpha: Move directory from ports/sysdeps/unix/alpha.
15356         * sysdeps/unix/sysv/linux/alpha: Move directory from
15357         ports/sysdeps/unix/sysv/linux/alpha.
15358         * README: Update listing for alpha-*-linux-gnu.
15359
15360 2014-02-11  Joseph Myers  <joseph@codesourcery.com>
15361
15362         * include/features.h: Update comment documenting feature test
15363         macros.
15364         [_BSD_SOURCE || _SVID_SOURCE]: Give #warning.  Define
15365         _DEFAULT_SOURCE.
15366         * manual/creature.texi (_BSD_SOURCE): Remove documentation.
15367         (_SVID_SOURCE): Likewise.
15368         (_DEFAULT_SOURCE): Update description of default features.
15369         (Feature Test Macros): Don't mention _SVID_SOURCE in conjunction
15370         with _GNU_SOURCE.
15371         * manual/filesys.texi (__ftw_func_t): Do not refer to _BSD_SOURCE.
15372         (S_ISVTX): Likewise.
15373         * manual/math.texi (Mathematical Constants): Likewise.
15374         * manual/signal.texi (Interrupted Primitives): Likewise.
15375         * manual/startup.texi (putenv): Do not refer to _SVID_SOURCE.
15376         * math/test-matherr.c (_SVID_SOURCE): Do not define.
15377         * sysvipc/sys/ipc.h [__USE_SVID && !__USE_XOPEN && __GNUC__ >= 2]:
15378         Don't refer to _SVID_SOURCE in warning text.
15379
15380         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
15381
15382         * elf/dl-lookup.c (ELF_MACHINE_SYM_NO_MATCH): Define if not
15383         already defined.
15384         (do_lookup_x): Use ELF_MACHINE_SYM_NO_MATCH.
15385         * sysdeps/mips/dl-lookup.c: Remove.
15386         * sysdeps/mips/dl-machine.h (ELF_MACHINE_SYM_NO_MATCH): New macro.
15387
15388 2014-02-11  Stefan Liebler  <stli@linux.vnet.ibm.com>
15389
15390         [BZ #16447]
15391         * math/auto-libm-test-in: Add testcase for expl.
15392         * math/auto-libm-test-out: Regenerate.
15393         * sysdeps/ieee754/ldbl-128/e_expl.c (__ieee754_expl): Fix
15394         calculation of unsafe.
15395         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for added testcase.
15396
15397 2014-02-11  Marcus Shawcroft  <marcus.shawcroft@arm.com>
15398
15399         * sysdeps/aarch64: Move directory from ports/sysdeps/aarch64.
15400         * sysdeps/unix/sysv/linux/aarch64: Move directory from
15401         ports/sysdeps/unix/sysv/linux/aarch64.
15402         * README: Update listing for aarch64*-*-linux-gnu.
15403
15404 2014-02-11  Will Newton  <will.newton@linaro.org>
15405
15406         * manual/probes.texi (Mathematical Function Probes): Use
15407         "triggered" instead of "hit".
15408
15409         * manual/probes.texi (Internal Probes): Add documentation
15410         of setjmp, longjmp and longjmp_target probes.
15411
15412         * include/stap-probe.h: Add comment about probe argument
15413         format.
15414
15415         * malloc/mtrace.c (attribute_hidden): Remove unused macro
15416         definition.  (tr_where, tr_freehook, tr_mallochook,
15417         tr_reallochook, tr_memalignhook): Use ANSI protoype.
15418
15419 2014-02-11  David S. Miller  <davem@davemloft.net>
15420
15421         * stdio-common/tst-sscanf.c (main): Use 'long' for 'dummy' when
15422         processing int_tests.
15423
15424 2014-02-10  Joseph Myers  <joseph@codesourcery.com>
15425
15426         * sysdeps/mips: Move directory from ports/sysdeps/mips.
15427         * sysdeps/unix/mips: Move directory from ports/sysdeps/unix/mips.
15428         * sysdeps/unix/sysv/linux/mips: Move directory from
15429         ports/sysdeps/unix/sysv/linux/mips.
15430         * README: Update listing for mips-*-linux-gnu and
15431         mips64-*-linux-gnu.
15432
15433 2014-02-10  Andreas Schwab  <schwab@linux-m68k.org>
15434
15435         * sysdeps/m68k: Move directory from ports/sysdeps/m68k.
15436         * sysdeps/unix/sysv/linux/m68k: Move directory from
15437         ports/sysdeps/unix/sysv/linux/m68k.
15438         * README: Update listing for m68k-*-linux-gnu.
15439
15440 2014-02-10  Chris Metcalf  <cmetcalf@tilera.com>
15441
15442         * sysdeps/tile: Move directory from ports/sysdeps/tile.
15443         * sysdeps/unix/sysv/linux/generic: Move directory from
15444         ports/sysdeps/unix/sysv/linux/generic.
15445         * sysdeps/unix/sysv/linux/tile: Move directory from
15446         ports/sysdeps/unix/sysv/linux/tile.
15447         * README: Update listing for tile*-*-linux-gnu.
15448
15449 2014-02-10  Ondřej Bílka  <neleai@seznam.cz>
15450
15451         * assert/assert.c (__assert_fail_base): Use glibc_likely instead
15452         __builtin_expect.
15453         * benchtests/bench-memmem.c (simple_memmem): Likewise.
15454         * catgets/open_catalog.c (__open_catalog): Likewise.
15455         * csu/libc-start.c (LIBC_START_MAIN): Likewise.
15456         * debug/confstr_chk.c: Likewise.
15457         * debug/fread_chk.c (__fread_chk): Likewise.
15458         * debug/fread_u_chk.c (__fread_unlocked_chk): Likewise.
15459         * debug/getgroups_chk.c: Likewise.
15460         * debug/mbsnrtowcs_chk.c: Likewise.
15461         * debug/mbsrtowcs_chk.c: Likewise.
15462         * debug/mbstowcs_chk.c: Likewise.
15463         * debug/memcpy_chk.c: Likewise.
15464         * debug/memmove_chk.c: Likewise.
15465         * debug/mempcpy_chk.c: Likewise.
15466         * debug/memset_chk.c: Likewise.
15467         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
15468         * debug/strcat_chk.c (__strcat_chk): Likewise.
15469         * debug/strcpy_chk.c (__strcpy_chk): Likewise.
15470         * debug/strncat_chk.c (__strncat_chk): Likewise.
15471         * debug/vsnprintf_chk.c (___vsnprintf_chk): Likewise.
15472         * debug/vswprintf_chk.c (__vswprintf_chk): Likewise.
15473         * debug/wcpcpy_chk.c (__wcpcpy_chk): Likewise.
15474         * debug/wcpncpy_chk.c: Likewise.
15475         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
15476         * debug/wcscpy_chk.c (__wcscpy_chk): Likewise.
15477         * debug/wcsncat_chk.c (__wcsncat_chk): Likewise.
15478         * debug/wcsncpy_chk.c: Likewise.
15479         * debug/wcsnrtombs_chk.c: Likewise.
15480         * debug/wcsrtombs_chk.c: Likewise.
15481         * debug/wcstombs_chk.c: Likewise.
15482         * debug/wmemcpy_chk.c: Likewise.
15483         * debug/wmemmove_chk.c: Likewise.
15484         * debug/wmempcpy_chk.c: Likewise.
15485         * debug/wmemset_chk.c: Likewise.
15486         * dirent/scandirat.c (SCANDIRAT): Likewise.
15487         * dlfcn/dladdr1.c (dladdr1): Likewise.
15488         * dlfcn/dladdr.c (dladdr): Likewise.
15489         * dlfcn/dlclose.c (dlclose_doit): Likewise.
15490         * dlfcn/dlerror.c (__dlerror): Likewise.
15491         * dlfcn/dlinfo.c (dlinfo_doit): Likewise.
15492         * dlfcn/dlmopen.c (dlmopen_doit): Likewise.
15493         * dlfcn/dlopen.c (dlopen_doit): Likewise.
15494         * dlfcn/dlopenold.c (__dlopen_nocheck): Likewise.
15495         * dlfcn/dlsym.c (dlsym_doit): Likewise.
15496         * dlfcn/dlvsym.c (dlvsym_doit): Likewise.
15497         * elf/dl-cache.c (_dl_load_cache_lookup): Likewise.
15498         * elf/dl-close.c (remove_slotinfo, _dl_close_worker, _dl_close):
15499         Likewise.
15500         * elf/dl-conflict.c: Likewise.
15501         * elf/dl-deps.c (_dl_build_local_scope, _dl_map_object_deps): Likewise.
15502         * elf/dl-dst.h: Likewise.
15503         * elf/dl-fini.c (_dl_sort_fini, _dl_fini): Likewise.
15504         * elf/dl-fptr.c (_dl_make_fptr): Likewise.
15505         * elf/dl-hwcaps.c (_dl_important_hwcaps): Likewise.
15506         * elf/dl-init.c (call_init, _dl_init): Likewise.
15507         * elf/dl-libc.c (__libc_dlopen_mode, __libc_dlsym): Likewise.
15508         * elf/dl-load.c (_dl_dst_substitute, fillin_rpath, _dl_init_paths)
15509         (_dl_map_object_from_fd, open_verify, open_path, _dl_map_object):
15510         Likewise.
15511         * elf/dl-lookup.c (do_lookup_x, add_dependency, _dl_lookup_symbol_x):
15512         Likewise.
15513         * elf/dl-minimal.c (__libc_memalign): Likewise.
15514         * elf/dl-open.c (add_to_global, dl_open_worker, _dl_open): Likewise.
15515         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
15516         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Likewise.
15517         * elf/dl-sym.c (do_sym): Likewise.
15518         * elf/dl-tls.c (tls_get_addr_tail, update_get_addr)
15519         (__tls_get_addr, _dl_tls_get_addr_soft): Likewise.
15520         * elf/dl-version.c (match_symbol, _dl_check_map_versions): Likewise.
15521         * elf/dl-writev.h (_dl_writev): Likewise.
15522         * elf/ldconfig.c (search_dir): Likewise.
15523         * elf/rtld.c (_dl_start_final, _dl_start, init_tls, do_preload)
15524         (dl_main): Likewise.
15525         * elf/setup-vdso.h (setup_vdso): Likewise.
15526         * grp/compat-initgroups.c (compat_call): Likewise.
15527         * grp/fgetgrent.c (fgetgrent): Likewise.
15528         * grp/initgroups.c (getgrouplist, initgroups): Likewise.
15529         * grp/putgrent.c (putgrent): Likewise.
15530         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
15531         Likewise.
15532         * hurd/hurdinit.c: Likewise.
15533         * iconvdata/8bit-gap.c (struct): Likewise.
15534         * iconvdata/ansi_x3.110.c : Likewise.
15535         * iconvdata/big5.c : Likewise.
15536         * iconvdata/big5hkscs.c : Likewise.
15537         * iconvdata/cp1255.c: Likewise.
15538         * iconvdata/cp1258.c : Likewise.
15539         * iconvdata/cp932.c : Likewise.
15540         * iconvdata/euc-cn.c: Likewise.
15541         * iconvdata/euc-jisx0213.c : Likewise.
15542         * iconvdata/euc-jp.c: Likewise.
15543         * iconvdata/euc-jp-ms.c : Likewise.
15544         * iconvdata/euc-kr.c (euckr_from_ucs4): Likewise.
15545         * iconvdata/gb18030.c : Likewise.
15546         * iconvdata/gbbig5.c (const): Likewise.
15547         * iconvdata/gbgbk.c: Likewise.
15548         * iconvdata/gbk.c : Likewise.
15549         * iconvdata/ibm1364.c : Likewise.
15550         * iconvdata/ibm930.c : Likewise.
15551         * iconvdata/ibm932.c: Likewise.
15552         * iconvdata/ibm933.c : Likewise.
15553         * iconvdata/ibm935.c : Likewise.
15554         * iconvdata/ibm937.c : Likewise.
15555         * iconvdata/ibm939.c : Likewise.
15556         * iconvdata/ibm943.c: Likewise.
15557         * iconvdata/iso_11548-1.c: Likewise.
15558         * iconvdata/iso-2022-cn.c : Likewise.
15559         * iconvdata/iso-2022-cn-ext.c : Likewise.
15560         * iconvdata/iso-2022-jp-3.c: Likewise.
15561         * iconvdata/iso-2022-jp.c (gconv_end): Likewise.
15562         * iconvdata/iso-2022-kr.c : Likewise.
15563         * iconvdata/iso646.c (gconv_end): Likewise.
15564         * iconvdata/iso_6937-2.c : Likewise.
15565         * iconvdata/iso_6937.c : Likewise.
15566         * iconvdata/iso8859-1.c: Likewise.
15567         * iconvdata/johab.c (johab_sym_hanja_to_ucs): Likewise.
15568         * iconvdata/shift_jisx0213.c : Likewise.
15569         * iconvdata/sjis.c : Likewise.
15570         * iconvdata/t.61.c : Likewise.
15571         * iconvdata/tcvn5712-1.c : Likewise.
15572         * iconvdata/tscii.c: Likewise.
15573         * iconvdata/uhc.c : Likewise.
15574         * iconvdata/unicode.c (gconv_end): Likewise.
15575         * iconvdata/utf-16.c (gconv_end): Likewise.
15576         * iconvdata/utf-32.c (gconv_end): Likewise.
15577         * iconvdata/utf-7.c (base64): Likewise.
15578         * iconv/gconv_cache.c (__gconv_load_cache): Likewise.
15579         * iconv/gconv_close.c (__gconv_close): Likewise.
15580         * iconv/gconv_open.c (__gconv_open): Likewise.
15581         * iconv/gconv_simple.c (internal_ucs4_loop_single)
15582         (ucs4_internal_loop, ucs4_internal_loop_unaligned)
15583         (ucs4_internal_loop_single, internal_ucs4le_loop_single)
15584         (ucs4le_internal_loop, ucs4le_internal_loop_unaligned)
15585         (ucs4le_internal_loop_single): Likewise.
15586         * iconv/iconv.c (iconv): Likewise.
15587         * iconv/iconv_close.c: Likewise.
15588         * iconv/loop.c (SINGLE): Likewise.
15589         * iconv/skeleton.c (FUNCTION_NAME): Likewise.
15590         * include/atomic.h: Likewise.
15591         * inet/inet6_option.c (option_alloc): Likewise.
15592         * intl/bindtextdom.c (set_binding_values): Likewise.
15593         * intl/dcigettext.c (DCIGETTEXT, _nl_find_msg): Likewise.
15594         * intl/loadmsgcat.c (_nl_load_domain): Likewise.
15595         * intl/localealias.c (read_alias_file): Likewise.
15596         * libio/filedoalloc.c (_IO_file_doallocate): Likewise.
15597         * libio/fileops.c (_IO_file_open, _IO_file_underflow_mmap)
15598         (_IO_new_file_overflow, _IO_file_xsgetn_mmap): Likewise.
15599         * libio/fmemopen.c (fmemopen): Likewise.
15600         * libio/iofgets.c (_IO_fgets): Likewise.
15601         * libio/iofgets_u.c (fgets_unlocked): Likewise.
15602         * libio/iofgetws.c (fgetws): Likewise.
15603         * libio/iofgetws_u.c (fgetws_unlocked): Likewise.
15604         * libio/iogetdelim.c (_IO_getdelim): Likewise.
15605         * libio/wfileops.c (_IO_wfile_underflow, _IO_wfile_underflow_mmap)
15606         (adjust_wide_data, _IO_wfile_seekoff): Likewise.
15607         * locale/findlocale.c (_nl_find_locale): Likewise.
15608         * locale/loadarchive.c (_nl_load_locale_from_archive): Likewise.
15609         * locale/loadlocale.c (_nl_intern_locale_data, _nl_load_locale):
15610         Likewise.
15611         * locale/setlocale.c (setlocale): Likewise.
15612         * login/programs/pt_chown.c (main): Likewise.
15613         * malloc/arena.c (ptmalloc_init, shrink_heap, arena_get2): Likewise.
15614         * malloc/malloc.c (_int_malloc, _int_free): Likewise.
15615         * malloc/memusage.c (update_data, malloc, realloc, calloc, free)
15616         (mmap, mmap64, mremap, munmap): Likewise.
15617         * math/e_exp2l.c: Likewise.
15618         * math/e_scalb.c (invalid_fn, __ieee754_scalb): Likewise.
15619         * math/e_scalbf.c (invalid_fn, __ieee754_scalbf): Likewise.
15620         * math/e_scalbl.c (invalid_fn, __ieee754_scalbl): Likewise.
15621         * math/s_catan.c (__catan): Likewise.
15622         * math/s_catanf.c (__catanf): Likewise.
15623         * math/s_catanh.c (__catanh): Likewise.
15624         * math/s_catanhf.c (__catanhf): Likewise.
15625         * math/s_catanhl.c (__catanhl): Likewise.
15626         * math/s_catanl.c (__catanl): Likewise.
15627         * math/s_ccosh.c (__ccosh): Likewise.
15628         * math/s_ccoshf.c (__ccoshf): Likewise.
15629         * math/s_ccoshl.c (__ccoshl): Likewise.
15630         * math/s_cexp.c (__cexp): Likewise.
15631         * math/s_cexpf.c (__cexpf): Likewise.
15632         * math/s_cexpl.c (__cexpl): Likewise.
15633         * math/s_clog10.c (__clog10): Likewise.
15634         * math/s_clog10f.c (__clog10f): Likewise.
15635         * math/s_clog10l.c (__clog10l): Likewise.
15636         * math/s_clog.c (__clog): Likewise.
15637         * math/s_clogf.c (__clogf): Likewise.
15638         * math/s_clogl.c (__clogl): Likewise.
15639         * math/s_csin.c (__csin): Likewise.
15640         * math/s_csinf.c (__csinf): Likewise.
15641         * math/s_csinh.c (__csinh): Likewise.
15642         * math/s_csinhf.c (__csinhf): Likewise.
15643         * math/s_csinhl.c (__csinhl): Likewise.
15644         * math/s_csinl.c (__csinl): Likewise.
15645         * math/s_csqrt.c (__csqrt): Likewise.
15646         * math/s_csqrtf.c (__csqrtf): Likewise.
15647         * math/s_csqrtl.c (__csqrtl): Likewise.
15648         * math/s_ctan.c (__ctan): Likewise.
15649         * math/s_ctanf.c (__ctanf): Likewise.
15650         * math/s_ctanh.c (__ctanh): Likewise.
15651         * math/s_ctanhf.c (__ctanhf): Likewise.
15652         * math/s_ctanhl.c (__ctanhl): Likewise.
15653         * math/s_ctanl.c (__ctanl): Likewise.
15654         * math/w_pow.c: Likewise.
15655         * math/w_powf.c: Likewise.
15656         * math/w_powl.c: Likewise.
15657         * math/w_scalb.c (sysv_scalb): Likewise.
15658         * math/w_scalbf.c (sysv_scalbf): Likewise.
15659         * math/w_scalbl.c (sysv_scalbl): Likewise.
15660         * misc/error.c (error_tail): Likewise.
15661         * misc/pselect.c (__pselect): Likewise.
15662         * nis/nis_callback.c (__nis_create_callback): Likewise.
15663         * nis/nis_call.c (__nisfind_server): Likewise.
15664         * nis/nis_creategroup.c (nis_creategroup): Likewise.
15665         * nis/nis_domain_of_r.c (nis_domain_of_r): Likewise.
15666         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Likewise.
15667         * nis/nis_getservlist.c (nis_getservlist): Likewise.
15668         * nis/nis_lookup.c (nis_lookup): Likewise.
15669         * nis/nis_subr.c (nis_leaf_of_r, nis_getnames): Likewise.
15670         * nis/nis_table.c (__create_ib_request, nis_list, nis_add_entry)
15671         (nis_modify_entry, nis_first_entry, nis_next_entry): Likewise.
15672         * nis/nis_xdr.c (xdr_endpoint): Likewise.
15673         * nis/nss_compat/compat-grp.c (getgrent_next_file)
15674         (internal_getgrnam_r, internal_getgrgid_r): Likewise.
15675         * nis/nss_compat/compat-initgroups.c (add_group)
15676         (internal_getgrent_r): Likewise.
15677         * nis/nss_compat/compat-pwd.c (getpwent_next_file)
15678         (internal_getpwnam_r, internal_getpwuid_r): Likewise.
15679         * nis/nss_compat/compat-spwd.c (getspent_next_file)
15680         (internal_getspnam_r): Likewise.
15681         * nis/nss_nis/nis-alias.c (internal_nis_getaliasent_r)
15682         (_nss_nis_getaliasbyname_r): Likewise.
15683         * nis/nss_nis/nis-ethers.c (_nss_nis_gethostton_r)
15684         (_nss_nis_getntohost_r): Likewise.
15685         * nis/nss_nis/nis-grp.c (internal_nis_setgrent)
15686         (internal_nis_getgrent_r, _nss_nis_getgrnam_r)
15687         (_nss_nis_getgrgid_r): Likewise.
15688         * nis/nss_nis/nis-hosts.c (_nss_nis_sethostent)
15689         (internal_nis_gethostent_r, internal_gethostbyname2_r)
15690         (_nss_nis_gethostbyname_r, _nss_nis_gethostbyaddr_r)
15691         (_nss_nis_gethostbyname4_r): Likewise.
15692         * nis/nss_nis/nis-initgroups.c (internal_getgrent_r)
15693         (initgroups_netid): Likewise.
15694         * nis/nss_nis/nis-netgrp.c (_nss_nis_setnetgrent): Likewise.
15695         * nis/nss_nis/nis-network.c (internal_nis_getnetent_r)
15696         (_nss_nis_getnetbyname_r, _nss_nis_getnetbyaddr_r): Likewise.
15697         * nis/nss_nis/nis-proto.c (_nss_nis_getprotobyname_r)
15698         (_nss_nis_getprotobynumber_r): Likewise.
15699         * nis/nss_nis/nis-publickey.c (_nss_nis_getpublickey)
15700         (_nss_nis_getsecretkey): Likewise.
15701         * nis/nss_nis/nis-pwd.c (_nis_saveit, internal_nis_setpwent)
15702         (internal_nis_getpwent_r, _nss_nis_getpwnam_r)
15703         (_nss_nis_getpwuid_r): Likewise.
15704         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r)
15705         (_nss_nis_getrpcbyname_r, _nss_nis_getrpcbynumber_r): Likewise.
15706         * nis/nss_nis/nis-service.c (dosearch, internal_nis_getservent_r)
15707         (_nss_nis_getservbyname_r, _nss_nis_getservbyport_r): Likewise.
15708         * nis/nss_nis/nis-spwd.c (_nss_nis_setspent)
15709         (internal_nis_getspent_r, _nss_nis_getspnam_r): Likewise.
15710         * nis/nss_nisplus/nisplus-alias.c (_nss_nisplus_getaliasbyname_r):
15711         Likewise.
15712         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_gethostton_r)
15713         (_nss_nisplus_getntohost_r): Likewise.
15714         * nis/nss_nisplus/nisplus-grp.c (internal_nisplus_getgrent_r)
15715         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
15716         * nis/nss_nisplus/nisplus-hosts.c (internal_gethostbyname2_r)
15717         (_nss_nisplus_gethostbyaddr_r, _nss_nisplus_gethostbyname4_r):
15718         Likewise.
15719         * nis/nss_nisplus/nisplus-initgroups.c
15720         (_nss_nisplus_initgroups_dyn): Likewise.
15721         * nis/nss_nisplus/nisplus-network.c (_nss_nisplus_getnetbyname_r)
15722         (_nss_nisplus_getnetbyaddr_r): Likewise.
15723         * nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_getprotobyname_r)
15724         (_nss_nisplus_getprotobynumber_r): Likewise.
15725         * nis/nss_nisplus/nisplus-pwd.c (internal_nisplus_getpwent_r)
15726         (_nss_nisplus_getpwnam_r, _nss_nisplus_getpwuid_r): Likewise.
15727         * nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_getrpcbyname_r):
15728         Likewise.
15729         * nis/nss_nisplus/nisplus-service.c
15730         (internal_nisplus_getservent_r, _nss_nisplus_getservbyname_r)
15731         (_nss_nisplus_getservbyport_r): Likewise.
15732         * nis/nss_nisplus/nisplus-spwd.c (internal_nisplus_getspent_r)
15733         (_nss_nisplus_getspnam_r): Likewise.
15734         * nis/ypclnt.c (__yp_bind, yp_match, yp_all, yp_maplist):
15735         Likewise.
15736         * nscd/aicache.c (addhstaiX): Likewise.
15737         * nscd/cache.c (cache_search, prune_cache): Likewise.
15738         * nscd/connections.c (register_traced_file, send_ro_fd)
15739         (handle_request, nscd_run_prune, nscd_run_worker, fd_ready)
15740         (main_loop_epoll): Likewise.
15741         * nscd/grpcache.c (addgrbyX): Likewise.
15742         * nscd/hstcache.c (addhstbyX): Likewise.
15743         * nscd/initgrcache.c (addinitgroupsX): Likewise.
15744         * nscd/mem.c (gc, mempool_alloc): Likewise.
15745         * nscd/netgroupcache.c (do_notfound, addgetnetgrentX)
15746         (addinnetgrX): Likewise.
15747         * nscd/nscd-client.h (__nscd_acquire_maplock)
15748         (__nscd_drop_map_ref): Likewise.
15749         * nscd/nscd_getai.c (__nscd_getai): Likewise.
15750         * nscd/nscd_getgr_r.c (nscd_getgr_r): Likewise.
15751         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp, nscd_gethst_r):
15752         Likewise.
15753         * nscd/nscd_getpw_r.c (nscd_getpw_r): Likewise.
15754         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
15755         * nscd/nscd_helper.c (__readvall, open_socket, __nscd_get_mapping)
15756         (__nscd_get_map_ref): Likewise.
15757         * nscd/nscd_initgroups.c (__nscd_getgrouplist): Likewise.
15758         * nscd/nscd_netgroup.c (__nscd_setnetgrent, __nscd_innetgr):
15759         Likewise.
15760         * nscd/pwdcache.c (addpwbyX): Likewise.
15761         * nscd/selinux.c (preserve_capabilities): Likewise.
15762         * nscd/servicescache.c (addservbyX): Likewise.
15763         * nss/nss_files/files-XXX.c (internal_getent): Likewise.
15764         * posix/fnmatch.c (fnmatch): Likewise.
15765         * posix/getopt.c (_getopt_internal_r): Likewise.
15766         * posix/glob.c (glob, glob_in_dir): Likewise.
15767         * posix/wordexp.c (exec_comm_child): Likewise.
15768         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyaddr2_r)
15769         (getanswer_r, gaih_getanswer_slice): Likewise.
15770         * resolv/nss_dns/dns-network.c (getanswer_r): Likewise.
15771         * resolv/res_init.c: Likewise.
15772         * resolv/res_mkquery.c (res_nmkquery): Likewise.
15773         * resolv/res_query.c (__libc_res_nquery): Likewise.
15774         * resolv/res_send.c (__libc_res_nsend, send_vc, reopen, send_dg):
15775         Likewise.
15776         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Likewise.
15777         * stdio-common/perror.c (perror): Likewise.
15778         * stdio-common/printf_fp.c (___printf_fp): Likewise.
15779         * stdio-common/tmpnam.c (tmpnam): Likewise.
15780         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
15781         * stdlib/cxa_finalize.c (__cxa_finalize): Likewise.
15782         * stdlib/cxa_thread_atexit_impl.c (__cxa_thread_atexit_impl):
15783         Likewise.
15784         * stdlib/drand48-iter.c (__drand48_iterate): Likewise.
15785         * stdlib/putenv.c (putenv): Likewise.
15786         * stdlib/setenv.c (__add_to_environ): Likewise.
15787         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
15788         * stdlib/strtol_l.c (INTERNAL): Likewise.
15789         * string/memmem.c (memmem): Likewise.
15790         * string/strerror.c (strerror): Likewise.
15791         * string/strnlen.c (__strnlen): Likewise.
15792         * string/test-memmem.c (simple_memmem): Likewise.
15793         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Likewise.
15794         * sunrpc/pm_getport.c (__get_socket): Likewise.
15795         * sysdeps/gnu/unwind-resume.c (init, _Unwind_Resume): Likewise.
15796         * sysdeps/i386/dl-irel.h (elf_irel): Likewise.
15797         * sysdeps/i386/dl-machine.h (elf_machine_runtime_setup)
15798         (elf_machine_rel, elf_machine_lazy_rel, elf_machine_lazy_rela):
15799         Likewise.
15800         * sysdeps/ieee754/dbl-64/e_atanh.c (__ieee754_atanh): Likewise.
15801         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Likewise.
15802         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Likewise.
15803         * sysdeps/ieee754/dbl-64/e_gamma_r.c (__ieee754_gamma_r): Likewise.
15804         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Likewise.
15805         * sysdeps/ieee754/dbl-64/e_j1.c (__ieee754_j1, __ieee754_y1):
15806         Likewise.
15807         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_jn, __ieee754_yn):
15808         Likewise.
15809         * sysdeps/ieee754/dbl-64/e_log10.c (__ieee754_log10): Likewise.
15810         * sysdeps/ieee754/dbl-64/e_log2.c (__ieee754_log2): Likewise.
15811         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
15812         * sysdeps/ieee754/dbl-64/e_sinh.c (__ieee754_sinh): Likewise.
15813         * sysdeps/ieee754/dbl-64/s_asinh.c (__asinh): Likewise.
15814         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Likewise.
15815         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Likewise.
15816         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Likewise.
15817         * sysdeps/ieee754/dbl-64/s_modf.c (__modf): Likewise.
15818         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): Likewise.
15819         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
15820         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c (__ieee754_acosh):
15821         Likewise.
15822         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c (__ieee754_log10):
15823         Likewise.
15824         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c (__ieee754_log2):
15825         Likewise.
15826         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c (__frexp): Likewise.
15827         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
15828         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c (__remquo): Likewise.
15829         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c (__round): Likewise.
15830         * sysdeps/ieee754/flt-32/e_atanhf.c (__ieee754_atanhf): Likewise.
15831         * sysdeps/ieee754/flt-32/e_gammaf_r.c (__ieee754_gammaf_r): Likewise.
15832         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
15833         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Likewise.
15834         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_nearbyint): Likewise.
15835         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Likewise.
15836         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c (__llroundl): Likewise.
15837         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
15838         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
15839         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c (__lroundl): Likewise.
15840         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
15841         * sysdeps/ieee754/ldbl-96/e_gammal_r.c (__ieee754_gammal_r):
15842         Likewise.
15843         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l, __ieee754_y0l):
15844         Likewise.
15845         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l, __ieee754_y1l):
15846         Likewise.
15847         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_jnl, __ieee754_ynl):
15848         Likewise.
15849         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
15850         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
15851         * sysdeps/posix/clock_getres.c (hp_timing_getres, realtime_getres):
15852         Likewise.
15853         * sysdeps/posix/fdopendir.c (__fdopendir): Likewise.
15854         * sysdeps/posix/getaddrinfo.c (gaih_inet, getaddrinfo): Likewise.
15855         * sysdeps/posix/opendir.c (__opendirat): Likewise.
15856         * sysdeps/posix/sleep.c: Likewise.
15857         * sysdeps/posix/tempname.c: Likewise.
15858         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_irela): Likewise.
15859         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
15860         Likewise.
15861         * sysdeps/powerpc/powerpc32/dl-machine.h
15862         (elf_machine_runtime_setup, elf_machine_rela): Likewise.
15863         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
15864         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
15865         * sysdeps/pthread/aio_notify.c (__aio_notify_only): Likewise.
15866         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait, aio_suspend):
15867         Likewise.
15868         * sysdeps/s390/dl-irel.h (elf_irela): Likewise.
15869         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_runtime_setup)
15870         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
15871         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_runtime_setup)
15872         (elf_machine_rela, elf_machine_lazy_rel): Likewise.
15873         * sysdeps/s390/s390-64/utf16-utf32-z9.c (gconv_end): Likewise.
15874         * sysdeps/s390/s390-64/utf8-utf16-z9.c (gconv_end): Likewise.
15875         * sysdeps/s390/s390-64/utf8-utf32-z9.c (gconv_end): Likewise.
15876         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
15877         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Likewise.
15878         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela)
15879         (elf_machine_lazy_rel): Likewise.
15880         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
15881         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela)
15882         (elf_machine_lazy_rel): Likewise.
15883         * sysdeps/sparc/sparc64/dl-plt.h (sparc64_fixup_plt): Likewise.
15884         * sysdeps/unix/clock_gettime.c (hp_timing_gettime): Likewise.
15885         * sysdeps/unix/clock_settime.c (hp_timing_settime): Likewise.
15886         * sysdeps/unix/grantpt.c (grantpt): Likewise.
15887         * sysdeps/unix/sysv/linux/accept4.c (accept4): Likewise.
15888         * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Likewise.
15889         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): Likewise.
15890         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
15891         Likewise.
15892         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Likewise.
15893         * sysdeps/unix/sysv/linux/fchmodat.c (fchmodat): Likewise.
15894         * sysdeps/unix/sysv/linux/fchownat.c (fchownat): Likewise.
15895         * sysdeps/unix/sysv/linux/futimesat.c (futimesat): Likewise.
15896         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
15897         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
15898         * sysdeps/unix/sysv/linux/i386/fallocate64.c (fallocate64): Likewise.
15899         * sysdeps/unix/sysv/linux/i386/fallocate.c (fallocate): Likewise.
15900         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
15901         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
15902         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
15903         Likewise.
15904         * sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
15905         (__posix_fallocate64_l64): Likewise.
15906         * sysdeps/unix/sysv/linux/i386/posix_fallocate.c
15907         (posix_fallocate): Likewise.
15908         * sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
15909         Likewise.
15910         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
15911         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_request)
15912         (getifaddrs_internal): Likewise.
15913         * sysdeps/unix/sysv/linux/linkat.c (linkat): Likewise.
15914         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Likewise.
15915         * sysdeps/unix/sysv/linux/mq_unlink.c (mq_unlink): Likewise.
15916         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Likewise.
15917         * sysdeps/unix/sysv/linux/posix_fallocate64.c
15918         (__posix_fallocate64_l64): Likewise.
15919         * sysdeps/unix/sysv/linux/posix_fallocate.c (posix_fallocate):
15920         Likewise.
15921         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
15922         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
15923         (__get_clockfreq): Likewise.
15924         * sysdeps/unix/sysv/linux/readlinkat.c (readlinkat): Likewise.
15925         * sysdeps/unix/sysv/linux/recvmmsg.c (recvmmsg): Likewise.
15926         * sysdeps/unix/sysv/linux/renameat.c (renameat): Likewise.
15927         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
15928         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
15929         * sysdeps/unix/sysv/linux/sched_setaffinity.c: Likewise.
15930         * sysdeps/unix/sysv/linux/sendmmsg.c (__sendmmsg): Likewise.
15931         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs, shm_open):
15932         Likewise.
15933         * sysdeps/unix/sysv/linux/sleep.c (__sleep): Likewise.
15934         * sysdeps/unix/sysv/linux/symlinkat.c (symlinkat): Likewise.
15935         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
15936         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Likewise.
15937         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
15938         * sysdeps/unix/sysv/linux/unlinkat.c (unlinkat): Likewise.
15939         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c (__fxstatat):
15940         Likewise.
15941         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
15942         (posix_fallocate): Likewise.
15943         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
15944         * sysdeps/unix/sysv/linux/xmknodat.c (__xmknodat): Likewise.
15945         * sysdeps/x86_64/dl-irel.h (elf_irela): Likewise.
15946         * sysdeps/x86_64/dl-machine.h (elf_machine_runtime_setup)
15947         (elf_machine_rela, elf_machine_rela_relative)
15948         (elf_machine_lazy_rel): Likewise.
15949         * time/asctime.c (asctime_internal): Likewise.
15950         * time/tzfile.c (__tzfile_read, __tzfile_compute): Likewise.
15951         * time/tzset.c (__tzset_parse_tz): Likewise.
15952         * wcsmbs/mbrtoc16.c (mbrtoc16): Likewise.
15953         * wcsmbs/mbrtowc.c (__mbrtowc): Likewise.
15954         * wcsmbs/wcsmbsload.c (__wcsmbs_load_conv): Likewise.
15955         * wcsmbs/wcsmbsload.h: Likewise.
15956
15957         [BZ #15894]
15958         * stdlib/setenv.c (__add_to_environ): Remove duplicate code.
15959
15960         * malloc/arena.c (grow_heap, get_free_list, reused_arena)
15961         (arena_get2): Remove THREAD_STATS conditionals.
15962         * malloc/malloc.c (__malloc_assert, __libc_realloc, _int_free)
15963         (__malloc_stats, int): Likewise.
15964
15965 2014-02-08  Mike Frysinger  <vapier@gentoo.org>
15966
15967         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs): Compare
15968         f.f_type to RAMFS_MAGIC too.  Compare mp->mnt_type to shm too.
15969
15970         * manual/setjmp.texi: Fix typos/grammar errors.
15971
15972         * debug/tst-backtrace4.c (handle_signal): Add NUM_FUNCTIONS to output.
15973         Only return early when n is <= 0.  Delete unused return statement.
15974
15975         * debug/Makefile (CFLAGS-tst-longjmp_chk3.c): Define.
15976         (CPPFLAGS-tst-longjmp_chk3.c): Likewise.
15977         * debug/tst-longjmp_chk3.c: New file.
15978
15979         * benchtests/bench-strcpy_chk.c: Move test-skeleton.c to top.
15980         (test_main): Replace code with set_fortify_handler call.
15981         * debug/test-strcpy_chk.c: Likewise.
15982         * debug/tst-chk1.c: Likewise.
15983         * debug/tst-longjmp_chk.c: Likewise.
15984         * test-skeleton.c: Include fcntl.h & paths.h
15985         (set_fortify_handler): Define.
15986
15987         * debug/tst-longjmp_chk.c: Add header comment and include
15988         ../test-skeleton.c.
15989         (do_test): Mark static.
15990         (TEST_FUNCTION): Define.
15991
15992         * sysdeps/unix/sysv/linux/bits/in.h (IP_NODEFRAG): Define.
15993         (IP_PMTUDISC_INTERFACE): Likewise.
15994         (IP_MULTICAST_IF): Likewise.
15995         (IP_MULTICAST_TTL): Likewise.
15996         (IP_MULTICAST_LOOP): Likewise.
15997         (IP_ADD_MEMBERSHIP): Likewise.
15998         (IP_DROP_MEMBERSHIP): Likewise.
15999         (IP_UNBLOCK_SOURCE): Likewise.
16000         (IP_BLOCK_SOURCE): Likewise.
16001         (IP_ADD_SOURCE_MEMBERSHIP): Likewise.
16002         (IP_DROP_SOURCE_MEMBERSHIP): Likewise.
16003         (IP_MSFILTER): Likewise.
16004         (MCAST_JOIN_GROUP): Likewise.
16005         (MCAST_BLOCK_SOURCE): Likewise.
16006         (MCAST_UNBLOCK_SOURCE): Likewise.
16007         (MCAST_LEAVE_GROUP): Likewise.
16008         (MCAST_JOIN_SOURCE_GROUP): Likewise.
16009         (MCAST_LEAVE_SOURCE_GROUP): Likewise.
16010         (MCAST_MSFILTER): Likewise.
16011         (IP_MULTICAST_ALL): Likewise.
16012         (IP_UNICAST_IF): Likewise.
16013
16014         * timezone/Makefile: Delete $(have-ksh) check.
16015         ($(objpfx)tzselect): Change $(KSH) to $(BASH).
16016         * timezone/tzselect.ksh: Add +x mode bits.
16017
16018         * sysdeps/unix/sysv/linux/linux_fsinfo.h (AFS_SUPER_MAGIC): Define.
16019         (ANON_INODE_FS_MAGIC): Likewise.
16020         (BDEVFS_MAGIC): Likewise.
16021         (BINFMTFS_MAGIC): Likewise.
16022         (BTRFS_TEST_MAGIC): Likewise.
16023         (CRAMFS_MAGIC_WEND): Likewise.
16024         (DEBUGFS_MAGIC): Likewise.
16025         (ECRYPTFS_SUPER_MAGIC): Likewise.
16026         (EXT3_SUPER_MAGIC): Likewise.
16027         (EXT4_SUPER_MAGIC): Likewise.
16028         (FUTEXFS_SUPER_MAGIC): Likewise.
16029         (HOSTFS_SUPER_MAGIC): Likewise.
16030         (HUGETLBFS_MAGIC): Likewise.
16031         (MINIX3_SUPER_MAGIC): Likewise.
16032         (MTD_INODE_FS_MAGIC): Likewise.
16033         (NILFS_SUPER_MAGIC): Likewise.
16034         (OPENPROM_SUPER_MAGIC): Likewise.
16035         (PIPEFS_MAGIC): Likewise.
16036         (PSTOREFS_MAGIC): Likewise.
16037         (QNX6_SUPER_MAGIC): Likewise.
16038         (RAMFS_MAGIC): Likewise.
16039         (REISERFS_SUPER_MAGIC_STRING): Likewise.
16040         (REISER2FS_SUPER_MAGIC_STRING): Likewise.
16041         (REISER2FS_JR_SUPER_MAGIC_STRING): Likewise.
16042         (SECURITYFS_MAGIC): Likewise.
16043         (SELINUX_MAGIC): Likewise.
16044         (SMACK_MAGIC): Likewise.
16045         (SOCKFS_MAGIC): Likewise.
16046         (SQUASHFS_MAGIC): Likewise.
16047         (STACK_END_MAGIC): Likewise.
16048         (TMPFS_MAGIC): Likewise.
16049         (USBDEVICE_SUPER_MAGIC): Likewise.
16050         (V9FS_MAGIC): Likewise.
16051         (XENFS_SUPER_MAGIC): Likewise.
16052         (CRAMFS_MAGIC): Fix typo in comment.
16053         (EXT2_SUPER_MAGIC): Update comment.
16054         (USBDEVFS_SUPER_MAGIC): Fix sorting order by moving further down.
16055
16056 2014-02-08  Joseph Myers  <joseph@codesourcery.com>
16057
16058         * sysdeps/arm: Move directory from ports/sysdeps/arm.
16059         * sysdeps/unix/arm: Move directory from ports/sysdeps/unix/arm.
16060         * sysdeps/unix/sysv/linux/arm: Move directory from
16061         ports/sysdeps/unix/sysv/linux/arm.
16062         * README: Update listing for arm-*-linux-gnueabi.
16063
16064         * README: Remove mention of am33.
16065
16066 2014-02-07  Roland McGrath  <roland@hack.frob.com>
16067
16068         * bits/sigset.h (__sigemptyset): Use a statement expression rather
16069         than the comma operator, to avoid "rhs of comma has no effect"
16070         compiler warnings.
16071         (__sigfillset, __sigandset, __sigorset): Likewise.
16072         * include/signal.h (__sigemptyset): Likewise.
16073         * sysdeps/generic/malloc-machine.h (mutex_lock): Likewise.
16074
16075 2014-02-07  Allan McRae  <allan@archlinux.org>
16076
16077         * version.h (RELEASE): Set to "development".
16078         (VERSION): Set to "2.19.90"
16079         * NEWS: Add 2.20 section.
16080
16081 2014-02-06  Carlos O'Donell  <carlos@redhat.com>
16082
16083         [BZ #16529]
16084         * inet/netinet/in.h: Remove comma after IPPROTO_MH.
16085
16086 2014-02-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
16087
16088         * manual/contrib.texi: Update entry for Carlos O'Donell,
16089         Joseph Myers, Roland McGrath, Alexandre Oliva and Ryan Arnold.
16090
16091 2014-02-05  Carlos O'Donell  <carlos@rehdat.com>
16092
16093         * sysdeps/unix/sysv/linux/kernel-features.h: Fix comment.
16094
16095         * sysdeps/unix/sysv/linux/kernel-features.h
16096         [__LINUX_KERNEL_VERSION >= 0x020621]
16097         (__ASSUME_PROC_PID_TASK_COMM): Define.
16098
16099 2014-02-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
16100
16101         [BZ #16398]
16102         * libio/wfileops.c (_IO_wfile_seekoff): Break out form
16103         conversion when destination buffer does not have enough space.
16104         * libio/tst-ftell-partial-wide.c: New test case.
16105         * libio/Makefile (tests): Add tst-ftell-partial-wide.
16106
16107         * manual/contrib.texi: Update entry for Ondrej Bilka, Will
16108         Newton and Alexandre Oliva.  Add entries for Steve Ellcey, Chris
16109         Leonard and Allan McRae.
16110
16111 2014-02-04  David S. Miller  <davem@davemloft.net>
16112
16113         * sysdeps/sparc/fpu/libm-test-ulps: Update for some 64-bit differences from
16114         32-bit.
16115
16116 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16117
16118         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld-le.abilist:
16119         New file
16120         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale-le.abilist:
16121         New file
16122         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl-le.abilist:
16123         New file.
16124         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc-le.abilist:
16125         New file.
16126         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt-le.abilist:
16127         New file.
16128         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl-le.abilist:
16129         New file.
16130         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm-le.abilist:
16131         New file.
16132         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl-le.abilist:
16133         New file.
16134         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread-le.abilist:
16135         New file.
16136         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv-le.abilist:
16137         New file.
16138         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt-le.abilist:
16139         New file.
16140         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db-le.abilist:
16141         New file.
16142         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil-le.abilist:
16143         New file.
16144
16145 2014-02-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16146
16147         * nptl/shlib-versions: Change powerpc*le start to 2.17.
16148         * shlib-versions: Likewise.
16149
16150 2014-02-04  Roland McGrath  <roland@hack.frob.com>
16151             Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16152
16153         * sysdeps/powerpc/Makefile [$(config-machine) ends with 'le']
16154         (abilist-pattern): New variable, set to %-le.abilist.
16155
16156         * Makerules (abilist-pattern): New variable.
16157         (vpath): Use $(abilist-pattern) in place of %.abilist.
16158         (check-abi-% pattern rule): Likewise.
16159         (check-abi, update-abi): Likewise.
16160
16161 2014-02-04  Eric Wong  <normalperson@yhbt.net>
16162
16163         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
16164
16165 2014-02-03  Carlos O'Donell  <carlos@redhat.com>
16166
16167         * manual/startup.texi: Add next, previous, and top entries for
16168         the `Program Arguments' and `Environment Variables' nodes.
16169
16170 2014-02-03  Alexandre Oliva <aoliva@redhat.com>
16171
16172         * manual/macros.texi: Add comments before MTASC-safety macros.
16173
16174         * manual/users.texi: Document MTASC-safety properties.
16175
16176         * manual/threads.texi (pthread_key_create, pthread_key_delete)
16177         (pthread_getspecific, pthread_setspecific): Format with
16178         @deftypefun, and add @safety note.
16179         * manual/signal.texi: Move comments that analyze the above
16180         functions to their home place.
16181
16182 2014-02-03  Allan McRae  <allan@archlinux.org>
16183
16184         * po/sl.po: Update Slovenian translation from translation project.
16185
16186 2014-02-02  Alexandre Oliva <aoliva@redhat.com>
16187
16188         * manual/time.texi (timegm): Add missing blank after @c.
16189         Reported by Joseph Myers <joseph@codesourcery.com>.
16190
16191 2014-02-01  Alexandre Oliva <aoliva@redhat.com>
16192
16193         * manual/check-safety.sh: New.
16194         * manual/Makefile ($(objpfx)stamp-summary): Run it.
16195
16196         * manual/terminal.texi: Document MTASC-safety properties.
16197
16198         * manual/filesys.texi: Document MTASC-safety properties.
16199
16200         * manual/errno.texi: Document MTASC-safety properties.
16201
16202         * manual/intro.texi: Document safety identifiers and
16203         conditionals.
16204
16205         * manual/string.texi (wcstok): Fix prototype.
16206         (wcstok, strtok, strtok_r): Adjust reentrancy remarks.
16207
16208         * manual/time.texi: Document MTASC-safety properties.
16209
16210         * manual/string.texi: Document MTASC-safety properties.
16211
16212         * manual/threads.texi: Document MTASC-safety properties.
16213
16214         * manual/stdio.texi: Document MTASC-safety properties.
16215
16216         * manual/syslog.texi: Document MTASC-safety properties.
16217
16218         * manual/sysinfo.texi: Document MTASC-safety properties.
16219
16220         * manual/startup.texi: Document MTASC-safety properties.
16221
16222         * manual/socket.texi: Document MTASC-safety properties.
16223
16224         * manual/signal.texi: Document MTASC-safety properties.
16225
16226 2014-01-31  Alexandre Oliva <aoliva@redhat.com>
16227
16228         * manual/setjmp.texi: Document MTASC-safety properties.
16229
16230         * manual/search.texi: Document MTASC-safety properties.
16231
16232         * manual/resource.texi: Document MTASC-safety properties.
16233
16234         * manual/process.texi: Document MTASC-safety properties.
16235
16236         * manual/platform.texi: Document MTASC-safety properties.
16237
16238         * manual/pipe.texi: Document MTASC-safety properties.
16239
16240         * manual/pattern.texi: Document MTASC-safety properties.
16241
16242         * manual/message.texi: Document MTASC-safety properties.
16243
16244         [BZ #12751]
16245         * manual/memory.texi: Document MTASC-safety properties.
16246
16247         * manual/math.texi: Document MTASC-safety properties.
16248
16249         * manual/locale.texi: Document MTASC-safety properties.
16250
16251         * manual/llio.texi: Document MTASC-safety properties.
16252
16253         * manual/libdl.texi: New.
16254
16255         * manual/lang.texi: Document MTASC-safety properties.
16256
16257         * manual/job.texi: Document MTASC-safety properties.
16258
16259         * manual/getopt.texi: Document MTASC-safety properties.
16260
16261         * manual/ctype.texi: Document MTASC-safety properties.
16262
16263 2014-01-31  Maciej W. Rozycki  <macro@codesourcery.com>
16264
16265         [BZ #16046]
16266         * csu/libc-tls.c (static_map): Remove variable.
16267         (__libc_setup_tls): Use main executable's link map for TLS data.
16268         * elf/dl-close.c (_dl_close_worker) [!SHARED]: Remove special
16269         casing for LM_ID_BASE and GL(dl_nns).
16270         * elf/dl-iteratephdr.c [!SHARED] (dl_iterate_phdr): Remove
16271         function.  Alias dl_iterate_phdr to __dl_iterate_phdr.
16272         * elf/dl-load.c (_dl_map_object) [!SHARED]: Remove special
16273         casing for GL(dl_ns)[LM_ID_BASE]._ns_loaded.
16274         * elf/dl-support.c (_dl_main_map): Also initialize l_flags_1
16275         member.
16276         (_dl_non_dynamic_init): Also initialize _dl_main_map's l_phdr and
16277         l_phnum members.
16278
16279 2014-01-30  Alexandre Oliva <aoliva@redhat.com>
16280
16281         * manual/debug.texi: Document MTASC-safety properties.
16282
16283 2014-01-29  H.J. Lu  <hongjiu.lu@intel.com>
16284
16285         [BZ #16510]
16286         * sysdeps/x86/fpu/bits/mathinline.h: Check __SSE2_MATH__ instead
16287         of __x86_64__ when disabling x87 inline functions.
16288
16289 2014-01-29  Alexandre Oliva <aoliva@redhat.com>
16290
16291         * manual/charset.texi: Document MTASC-safety properties.
16292
16293         * manual/crypt.texi: Document MTASC-safety properties.
16294
16295         * manual/conf.texi: Document MTASC-safety properties.
16296
16297         * manual/arith.texi: Document MTASC-safety properties.
16298
16299         * manual/argp.texi: Document MTASC-safety properties.
16300
16301         * manual/macros.texi: Introduce macros to document multi
16302         thread, asynchronous signal and asynchronous cancellation
16303         safety properties.
16304         * manual/intro.texi: Introduce the properties themselves.
16305
16306 2014-01-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16307
16308         * sysdeps/sh/sh4/Makefile: New file.
16309
16310 2014-01-27  Andreas Schwab  <schwab@linux-m68k.org>
16311
16312         * math/gen-libm-test.pl ($srcdir): New variable.
16313         ($auto_input): Use it.
16314
16315 2014-01-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
16316
16317         [BZ #16506]
16318         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Avoid
16319         access beyond array bounds when parsing netgroups file.
16320
16321         * nscd/netgroupcache.c (addgetnetgrentX): Compute offset from
16322         the old buffer before realloc.
16323
16324 2014-01-27  Allan McRae  <allan@archlinux.org>
16325
16326         * po/fr.po: Update French translation from translation project.
16327
16328 2014-01-26  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16329
16330         * sysdeps/sh/libm-test-ulps: Regenerate.
16331
16332 2014-01-24  David S. Miller  <davem@davemloft.net>
16333
16334         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate.
16335
16336 2014-01-25  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16337
16338         * sysdeps/sh/sh4/fpu/libm-test-ulps: Move to ...
16339         * sysdeps/sh/libm-test-ulps: ... here and regenerated.
16340
16341 2013-01-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
16342
16343         [BZ #16474]
16344         * nscd/netgroupcache.c (addgetnetgrentX): Adjust triplet
16345         string pointers after reallocation.
16346
16347 2014-01-24  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16348
16349         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: Use __SH4__ and
16350         __SH4A__ instead of __SH_FPU_ANY__.
16351
16352 2014-01-23  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
16353
16354         * sysdeps/sh/fpu_control.h: New file.
16355         * sysdeps/sh/sh4/fpu/fpu_control.h: Remove.
16356         * sysdeps/unix/sysv/linux/sh/sys/ucontext.h: New file.
16357         * sysdeps/unix/sysv/linux/sh/sh3/sys/ucontext.h: Remove.
16358         * sysdeps/unix/sysv/linux/sh/sh3/sys: Remove directory.
16359         * sysdeps/unix/sysv/linux/sh/sh4/sys/ucontext.h: Remove.
16360         * sysdeps/unix/sysv/linux/sh/sh4/sys: Remove directory.
16361         * sysdeps/sh/sys/ucontext.h: Remove.
16362         * sysdeps/sh/sys: Remove directory.
16363
16364 2014-01-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16365
16366         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Merge into
16367         s390/sys/ucontext.h.
16368         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Likewise.
16369         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: New file.
16370
16371 2014-01-20  H.J. Lu  <hongjiu.lu@intel.com>
16372
16373         [BZ #15605]
16374         * sysdeps/x86_64/x32/symbol-hacks.h: Include generic symbol-hacks.h.
16375
16376 2014-01-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16377
16378         [BZ#16431]
16379         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
16380         Adjust the vDSO correctly for internal calls.
16381         * sysdeps/unix/sysv/linux/powerpc/time.c (time): Likewise.
16382
16383 2014-01-20  Allan McRae  <allan@archlinux.org>
16384
16385         * po/ca.po: Update Catalan translation from translation project.
16386
16387 2014-01-16  Mike Frysinger  <vapier@gentoo.org>
16388
16389         * sysdeps/s390/sotruss-lib.c: New file.
16390
16391 2014-01-16  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16392
16393         [BZ#16430]
16394         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c
16395         (__GI___gettimeofday): Alias for a different internal symbol to avoid
16396         local calls issues by not having a PLT stub required for IFUNC calls.
16397         * sysdeps/unix/sysv/linux/powerpc/time.c (__GI_time): Likewise.
16398
16399 2014-01-16 Joseph Myers  <joseph@codesourcery.com>
16400
16401         * math/test-fpucw-ieee.c: Use <> in #include of test-fpucw.c.
16402         * math/test-fpucw-static.c: Likewise.
16403
16404 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
16405
16406         [BZ #16453]
16407         * nscd/netgroupcache.c (addgetnetgrentX): Don't use alloca.
16408
16409 2014-01-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16410
16411         * sysdeps/powerpc/sotruss-lib.c: New file: sotruss-lib.so
16412         implementation for powerpc.
16413
16414 2014-01-15  Ondřej Bílka  <neleai@seznam.cz>
16415
16416         [BZ #14782]
16417         * sysdeps/posix/system.c (__libc_system): Do not enable
16418         asynchronous cancellation.
16419
16420 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16421
16422         [BZ #16427]
16423         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Invoke the non-IEEE
16424         handling only for numbers special also in the IEEE case.
16425
16426 2014-01-15  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16427
16428         * sysdeps/s390/fpu/libm-test-ulps: Regenerate.
16429
16430 2014-01-11  Allan McRae  <allan@archlinux.org>
16431
16432         * po/bg.po: Update Bulgarian translation from translation project.
16433
16434         * po/de.po: Update German translation from translation project.
16435
16436 2014-01-10  Roland McGrath  <roland@hack.frob.com>
16437
16438         * sysdeps/generic/gcc-compat.h: New file.
16439
16440 2014-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
16441
16442         * benchtests/asin-inputs: Correct slow inputs.
16443         * benchtests/acos-inputs: Likewise.
16444
16445 2014-01-10  Allan McRae  <allan@archlinux.org>
16446
16447         * po:sv.po: Update Swedish translation from translation project.
16448
16449         * po/vi.po: Update Vietnamese translation from translation project.
16450
16451         * po/eo.po: Update Esperanto translation from translation project.
16452
16453         * po/cs.po: Update Czech translation from translation project.
16454
16455         * po/nl.po: Update Dutch translation from translation project.
16456
16457         * po/pl.po: Update Polish translation from translation project.
16458
16459         * po/ru.po: Update Russian translation from translation project.
16460
16461         * po/uk.po: Update Ukrainian translation from translation project.
16462
16463 2014-01-08  Brooks Moses  <bmoses@google.com>
16464
16465         * elf/dl-load.c: Fix comment typo.
16466
16467 2014-01-08  Carlos O'Donell  <carlos@redhat.com>
16468
16469         * po/header.pot: Rename to...
16470         * po/pot.header: ... this.
16471         * po/Makefile: Use pot.header.
16472
16473 2014-01-08  Yuriy Kaminskiy  <yumkam@gmail.com>
16474             Maxim Kuvyrkov  <maxim@kugelworks.com>
16475
16476         [BZ #16394]
16477         * sysdeps/i386/i686/memmove.S (memmove): Compare distance between
16478         SRC and DEST against LEN.
16479
16480 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16481
16482         [BZ #16414]
16483         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Remove wrong
16484         implementation.
16485         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Remove bogus comment.
16486
16487 2014-01-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16488
16489         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16490
16491 2014-01-08  Joseph Myers  <joseph@codesourcery.com>
16492
16493         [BZ #16408]
16494         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Use __expl
16495         for large positive arguments.
16496
16497 2014-01-07  Joseph Myers  <joseph@codesourcery.com>
16498
16499         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
16500
16501         * math/auto-libm-test-in: Mark various tests with
16502         xfail-rounding:ldbl-128ibm.
16503         * math/auto-libm-test-out: Regenerated.
16504
16505         [BZ #16407]
16506         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl):
16507         Increase overflow threshold.
16508
16509 2014-01-07  Ondřej Bílka  <neleai@seznam.cz>
16510
16511         [BZ #14286]
16512         * stdio-common/vfprintf.c: Check for integer overflow.
16513
16514 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16515
16516         * sysdeps/s390/dl-tls.h: sysdeps/s390/dl-tls.h: Remove casts for
16517         the first argument and return value of __tls_get_addr_internal.
16518
16519 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16520
16521         * sysdeps/s390/s390-32/dl-machine.h: Gate the definition of refsym
16522         also with !RTLD_BOOTSTRAP to get rid of unused variable warning.
16523
16524 2014-01-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
16525
16526         * sysdeps/s390/Makefile: Build rtld-global-offsets.sym.
16527         * sysdeps/s390/rtld-global-offsets.sym: New file.
16528         * sysdeps/unix/sysv/linux/s390/Versions: Add getcontext as new
16529         GLIBC_2.19 symbol.
16530         * sysdeps/unix/sysv/linux/s390/getcontext.S: New file.
16531         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Rename to ...
16532         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext-common.S:
16533         ... this.
16534         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Rename to ...
16535         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext-common.S:
16536         ... this.
16537         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
16538         Regenerate.
16539         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
16540         Regenerate.
16541         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Restore upper
16542         halfs of GPRs for high_gprs contexts.
16543         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Save and
16544         restore upper halfs of GPRs for high_gprs contexts.  Copy uc_flags
16545         field.
16546         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Copy
16547         uc_flags field.
16548         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Split into 32 and
16549         64 bit versions:
16550         * sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Add field
16551         for high GPRs (uc_high_gprs) and for future extensions
16552         (__reserved).
16553         * sysdeps/unix/sysv/linux/s390/s390-64/sys/ucontext.h: Add field
16554         for future extensions (__reserved).
16555         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Split into 32 and
16556         64 bit versions:
16557         * sysdeps/unix/sysv/linux/s390/s390-32/ucontext_i.sym: Add
16558         SC_HIGHGPRS offset definition.
16559         * sysdeps/unix/sysv/linux/s390/s390-64/ucontext_i.sym: New file.
16560         * sysdeps/unix/sysv/linux/s390/rtld-getcontext.S: New file.
16561
16562         * Versions.def: Add GLIBC_2.19 for libpthread.
16563         * nptl/sysdeps/unix/sysv/linux/s390/Versions: Add longjmp and
16564         siglongjmp for libpthread with GLIBC_2.19 symver.
16565         * nptl/sysdeps/unix/sysv/linux/s390/pt-longjmp.c: New file.
16566         * sysdeps/s390/Makefile: Build v1-longjmp.c and v1-sigjmp.c.
16567         * sysdeps/s390/Versions: New GLIBC_2.19 and GLIBC_PRIVATE symbols.
16568         * sysdeps/s390/__longjmp.c: New file.
16569         * sysdeps/s390/bits/setjmp.h: Add new fields to __s390_jmp_buf.
16570         * sysdeps/s390/longjmp.c: New file.
16571         * sysdeps/s390/setjmp.S: New file.
16572         * sysdeps/s390/sigjmp.S: New file.
16573         * sysdeps/s390/v1-longjmp.c: New file.
16574         * sysdeps/s390/v1-setjmp.h: New file.
16575         * sysdeps/s390/v1-sigjmp.c: New file.
16576         * sysdeps/unix/sysv/linux/s390/Makefile: Build __longjmp_chk.
16577         * sysdeps/unix/sysv/linux/s390/Versions: Add __longjmp_chk with
16578         GLIBC_2.19 version.
16579         * sysdeps/unix/sysv/linux/s390/longjmp_chk.c: New file.
16580         * sysdeps/unix/sysv/linux/s390/s390-32/____longjmp_chk.c: Provide
16581         versioned symbols for ____longjmp_chk.
16582         * sysdeps/unix/sysv/linux/s390/s390-64/____longjmp_chk.c:
16583         Likewise.
16584         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
16585         Regenerate.
16586         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
16587         Regenerate.
16588         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
16589         Regenerate.
16590         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
16591         Regenerate.
16592         * sysdeps/unix/sysv/linux/s390/v1-longjmp_chk.c: New file.
16593         * sysdeps/s390/s390-32/__longjmp.c: Rename to ...
16594         * sysdeps/s390/s390-32/__longjmp-common.c: ... this.
16595         * sysdeps/s390/s390-32/setjmp.S: Rename and adjust to ...
16596         * sysdeps/s390/s390-32/setjmp-common.S: ... this.
16597         * sysdeps/s390/s390-64/__longjmp.c: Rename to ...
16598         * sysdeps/s390/s390-64/__longjmp-common.c: ... this.
16599         * sysdeps/s390/s390-64/setjmp.S: Rename and adjust to ...
16600         * sysdeps/s390/s390-64/setjmp-common.S: ... this.
16601         * sysdeps/s390/rtld-__longjmp.c: New file.
16602         * sysdeps/s390/rtld-setjmp.S: New file.
16603
16604 2014-01-06  Joseph Myers  <joseph@codesourcery.com>
16605
16606         [BZ #16400]
16607         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
16608         Return -__logl (x) for small positive arguments without evaluating
16609         a polynomial.
16610
16611 2014-01-06  Mike Frysinger  <vapier@gentoo.org>
16612
16613         * sysdeps/unix/sysv/linux/sys/ptrace.h (ptrace_peeksiginfo_args):
16614         Rename to ...
16615         (__ptrace_peeksiginfo_args): ... this.
16616         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
16617         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
16618         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
16619
16620 2014-01-06  Allan McRae  <allan@archlinux.org>
16621
16622         * inet/netinet/in.h: Fix typo in comment.
16623
16624 2014-01-05  Andreas Jaeger  <aj@suse.de>
16625
16626         * sysdeps/i386/fpu/libm-test-ulps: Update.
16627
16628 2014-01-05  Allan McRae  <allan@archlinux.org>
16629
16630         * po/libc.pot: Regenerated.
16631
16632         * malloc/memusagestat.c: Fix gettext call formatting.
16633
16634 2014-01-04  Sami Kerola  <kerolasa@iki.fi>
16635
16636         * nscd/nscd.c: Improve usage() output.
16637
16638 2014-01-04  Mike Frysinger  <vapier@gentoo.org>
16639
16640         * config.h.in: Add HAVE_LINUX_FANOTIFY_H template.
16641         * sysdeps/unix/sysv/linux/configure: Regenerated.
16642         * sysdeps/unix/sysv/linux/configure.ac: Call AC_DEFINE.
16643         * sysdeps/unix/sysv/linux/tst-fanotify.c: Include config.h.
16644
16645 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
16646
16647         [BZ #16390]
16648         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
16649         (CFLAGS-e_atan2l.c): Use -fno-builtin-fabsl.
16650
16651 2014-01-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16652
16653         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: Remove
16654         extra tokens at end of #undef directive.
16655         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: Likewise.
16656         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: Likewise.
16657         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c: Likewise.
16658
16659 2014-01-03  Joseph Myers  <joseph@codesourcery.com>
16660
16661         * sysdeps/powerpc/nofpu/libm-test-ulps: Regenerated.
16662
16663         * math/auto-libm-test-in: Mark various tests with
16664         xfail-rounding:ldbl-128ibm.
16665         * math/auto-libm-test-out: Regenerated.
16666
16667 2014-01-02  Joseph Myers  <joseph@codesourcery.com>
16668
16669         [BZ #16386]
16670         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Adjust
16671         numbers with subnormal high part when calculating exponent.
16672
16673         [BZ #16385]
16674         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Use fabsl not
16675         fabs.
16676
16677         [BZ #16384]
16678         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (ln2): Initialize with
16679         M_LN2l.
16680         (__ieee754_acoshl): Use __log1pl not __log1p.
16681
16682 2013-01-02  Ondřej Bílka  <neleai@seznam.cz>
16683
16684         * malloc/arena.c (malloc_atfork, free_atfork, ptmalloc_lock_all)
16685         (ptmalloc_unlock_all, ptmalloc_unlock_all2, next_env_entry)
16686         (__failing_morecore, ptmalloc_init, dump_heap, new_heap)
16687         (grow_heap, heap_trim, _int_new_arena, get_free_list)
16688         (reused_arena, arena_get2): Convert to GNU style.
16689         * malloc/hooks.c (memalign_hook_ini, __malloc_check_init)
16690         (mem2mem_check, mem2chunk_check, top_check, realloc_check)
16691         (memalign_check, __malloc_set_state): Likewise.
16692         * malloc/mallocbug.c (main): Likewise.
16693         * malloc/malloc.c (__malloc_assert, malloc_init_state)
16694         (free_perturb, do_check_malloced_chunk, do_check_malloc_state)
16695         (sysmalloc, systrim, mremap_chunk, __libc_malloc, __libc_free)
16696         (__libc_realloc, _mid_memalign, _int_malloc, malloc_consolidate)
16697         (_int_realloc, _int_memalign, mtrim, musable, __libc_mallopt)
16698         (__posix_memalign, malloc_info): Likewise.
16699         * malloc/malloc.h: Likewise.
16700         * malloc/mcheck.c (checkhdr, unlink_blk, link_blk, freehook)
16701         (mallochook, memalignhook, reallochook, mabort): Likewise.
16702         * malloc/mcheck.h: Likewise.
16703         * malloc/memusage.c (update_data, me, malloc, realloc, calloc)
16704         (free, mmap, mmap64, mremap, munmap, dest): Likewise.
16705         * malloc/memusagestat.c (main, parse_opt, more_help): Likewise.
16706         * malloc/morecore.c (__default_morecore): Likewise.
16707         * malloc/mtrace.c (tr_break, lock_and_info, mtrace): Likewise.
16708         * malloc/obstack.c (_obstack_begin, _obstack_newchunk)
16709         (_obstack_allocated_p, obstack_free, _obstack_memory_used)
16710         (print_and_abort): Likewise.
16711         * malloc/obstack.h: Likewise.
16712         * malloc/set-freeres.c (__libc_freeres): Likewise.
16713         * malloc/tst-mallocstate.c (main): Likewise.
16714         * malloc/tst-mtrace.c (main): Likewise.
16715         * malloc/tst-realloc.c (do_test): Likewise.
16716
16717 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
16718
16719         [BZ #16366]
16720         * nscd/netgroupcache.c (do_notfound): New function.
16721         (addgetnetgrentX): Use it.
16722
16723         [BZ # 16365]
16724         * nscd/netgroupcache.c (addgetnetgrentX): Break if status is
16725         NSS_STATUS_NOTFOUND.
16726
16727 2014-01-01  Joseph Myers  <joseph@codesourcery.com>
16728
16729         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
16730         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16731
16732 2014-01-01  Allan McRae  <allan@archlinux.org>
16733
16734         * scripts/update-copyrights: Update configure input file suffix.
16735
16736         * NEWS: Update copyright year.
16737         * catgets/gencat.c: Likewise.
16738         * csu/version.c: Likewise.
16739         * debug/catchsegv.sh: Likewise.
16740         * debug/pcprofiledump.c: Likewise.
16741         * debug/xtrace.sh: Likewise.
16742         * elf/ldconfig.c: Likewise.
16743         * elf/ldd.bash.in: Likewise.
16744         * elf/pldd.c: Likewise.
16745         * elf/sotruss.ksh: Likewise.
16746         * elf/sprof.c: Likewise.
16747         * iconv/iconv_prog.c: Likewise.
16748         * iconv/iconvconfig.c: Likewise.
16749         * locale/programs/locale.c: Likewise.
16750         * locale/programs/localedef.c: Likewise.
16751         * login/programs/pt_chown.c: Likewise.
16752         * malloc/memusage.sh: Likewise.
16753         * malloc/memusagestat.c: Likewise.
16754         * malloc/mtrace.pl: Likewise.
16755         * manual/libc.texinfo: Likewise.
16756         * nscd/nscd.c: Likewise.
16757         * nss/getent.c: Likewise.
16758         * nss/makedb.c: Likewise.
16759         * posix/getconf.c: Likewise.
16760         * scripts/test-installation.pl: Likewise.
16761
16762         * All files with FSF copyright notices: Update copyright dates
16763         using scripts/update-copyrights.
16764         * intl/plural.c: Regenerated.
16765         * locale/programs/charmap-kw.h: Likewise.
16766         * locale/programs/locfile-kw.h: Likewise.
16767
16768 2013-12-31  Mike Frysinger  <vapier@gentoo.org>
16769
16770         * sysdeps/unix/sysv/linux/configure: Regenerated.
16771         * sysdeps/unix/sysv/linux/configure.ac: Call AC_CHECK_HEADER on
16772         the linux/fanotify.h header.
16773         * sysdeps/unix/sysv/linux/tst-fanotify.c: Check if
16774         HAVE_LINUX_FANOTIFY_H is defined.
16775
16776 2013-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
16777
16778         * benchtests/cos-inputs: New inputs.
16779         * benchtests/sin-inputs: Likewise.
16780
16781         * benchtests/atan-inputs: New inputs. Fix name of multiple
16782         precision fallback inputs.
16783
16784         * benchtests/atanh-inputs: New inputs.
16785         * benchtests/tanh-inputs: Likewise.
16786
16787         * benchtests/acosh-inputs: New inputs.
16788         * benchtests/asinh-inputs: Likewise.
16789
16790         * benchtests/cosh-inputs: New inputs.
16791         * benchtests/sinh-inputs: Likewise.
16792
16793         * benchtests/acos-inputs: Add more inputs.
16794         * benchtests/asin-inputs: Likewise.
16795
16796 2013-12-30  Ville Skytta  <ville.skytta@iki.fi>
16797
16798         [BZ #16375]
16799         * manual/arith.texi: Fix spelling.
16800         * manual/charset.texi: Likewise.
16801         * manual/errno.texi: Likewise.
16802         * manual/filesys.texi: Likewise.
16803         * manual/lang.texi: Likewise.
16804         * manual/llio.texi: Likewise.
16805         * manual/locale.texi: Likewise.
16806         * manual/message.texi: Likewise.
16807         * manual/resource.texi: Likewise.
16808         * manual/search.texi: Likewise.
16809         * manual/setjmp.texi: Likewise.
16810         * manual/stdio.texi: Likewise.
16811         * manual/string.texi: Likewise.
16812         * manual/sysinfo.texi: Likewise.
16813         * manual/time.texi: Likewise.
16814
16815 2013-12-27  Carlos O'Donell  <carlos@redhat.com>
16816
16817         * po/sl.po: New file.
16818
16819 2013-12-27  Mike Frysinger  <vapier@gentoo.org>
16820
16821         * .gitignore: Add core/.gdbinit/.gdb_history.
16822
16823 2013-12-27  Allan McRae  <allan@archlinux.org>
16824
16825         [BZ #16369]
16826         * sysdeps/ieee754/dbl-64/s_sin.c (csloww): Fix variable name.
16827         Reported by Il'ya Malakhov <ilmalakhov@yandex.ru>
16828
16829 2013-12-24  Brooks Moses  <bmoses@google.com>
16830
16831         * string/string.h (__CORRECT_ISO_CPP_STRING_H_PROTO): Define for
16832         all compilers that claim C++98 compliance, not just GCC.
16833         * string/strings.h (__CORRECT_ISO_CPP_STRINGS_H_PROTO):
16834         Likewise.
16835
16836 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
16837
16838         * NEWS: Restore accidentally deleted bug-fix entries.
16839
16840 2013-12-24  Maxim Kuvyrkov  <maxim@kugelworks.com>
16841             Ondřej Bílka  <neleai@seznam.cz>
16842
16843         [BZ #15073]
16844         * malloc/malloc.c (_int_free): Perform sanity check only if we
16845         have_lock.
16846
16847 2013-12-23  Ondřej Bílka  <neleai@seznam.cz>
16848
16849         [BZ #12986]
16850         * manual/stdio.texi (String Input Conversions): Clarify that character
16851         classes are not supported.
16852
16853 2013-12-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
16854
16855         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
16856
16857 2013-12-22  Joseph Myers  <joseph@codesourcery.com>
16858
16859         [BZ #16337]
16860         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c (__ieee754_lgammal_r):
16861         Calculate results for small negative arguments directly rather
16862         than using reflection formula with special underflow handling.
16863
16864         * sysdeps/mach/hurd/Implies: Change unix/bsd/bsd4.4 to unix/bsd.
16865         * sysdeps/unix/bsd/syscalls.list (chflags): Add entry from
16866         sysdeps/unix/bsd/bsd4.4/syscalls.list.
16867         (fchflags): Likewise.
16868         (revoke): Likewise.
16869         (setlogin): Likewise.
16870         (sigaltstack): Likewise.
16871         (wait4): Likewise.
16872         (sigblock): Remove.
16873         (sigsetmask): Likewise.
16874         (wait3): Likewise.
16875         (waitpid): Likewise.
16876         * sysdeps/unix/bsd/bsd4.4/syscalls.list: Remove file.
16877         * sysdeps/unix/sysv/linux/wait3.c: Update directory of included
16878         file.
16879         * sysdeps/unix/bsd/bsd4.4/Makefile: Move to ...
16880         * sysdeps/unix/bsd/Makefile: ... here.
16881         * sysdeps/unix/bsd/bsd4.4/Versions: Move to ...
16882         * sysdeps/unix/bsd/Versions: ... here.
16883         * sysdeps/unix/bsd/bsd4.4/bits/sockaddr.h: Move to ...
16884         * sysdeps/unix/bsd/bits/sockaddr.h: ... here.
16885         * sysdeps/unix/bsd/bsd4.4/cmsg_nxthdr.c: Move to ...
16886         * sysdeps/unix/bsd/cmsg_nxthdr.c: ... here.
16887         * sysdeps/unix/bsd/bsd4.4/sigblock.c: Move to ...
16888         * sysdeps/unix/bsd/sigblock.c: ... here.
16889         * sysdeps/unix/bsd/bsd4.4/sigsetmask.c: Move to ...
16890         * sysdeps/unix/bsd/sigsetmask.c: ... here.
16891         * sysdeps/unix/bsd/bsd4.4/sigvec.c: Move to ...
16892         * sysdeps/unix/bsd/sigvec.c: ... here.
16893         * sysdeps/unix/bsd/bsd4.4/tcdrain.c: Move to ...
16894         * sysdeps/unix/bsd/tcdrain.c: ... here.
16895         * sysdeps/unix/bsd/bsd4.4/tcgetattr.c: Move to ...
16896         * sysdeps/unix/bsd/tcgetattr.c: ... here.
16897         * sysdeps/unix/bsd/bsd4.4/tcsetattr.c: Move to ...
16898         * sysdeps/unix/bsd/tcsetattr.c: ... here.
16899         * sysdeps/unix/bsd/bsd4.4/wait.c: Move to ...
16900         * sysdeps/unix/bsd/wait.c: ... here.
16901         * sysdeps/unix/bsd/bsd4.4/wait3.c: Move to ...
16902         * sysdeps/unix/bsd/wait3.c: ... here.
16903         * sysdeps/unix/bsd/bsd4.4/waitpid.c: Move to ...
16904         * sysdeps/unix/bsd/waitpid.c: ... here.
16905
16906 2013-12-21  Joseph Myers  <joseph@codesourcery.com>
16907
16908         [BZ #16356]
16909         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Also set
16910         round-to-nearest for [!USE_AS_EXPM1L].
16911         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Likewise.
16912         * math/auto-libm-test-in: Do not expect cosh tests to fail.  Add
16913         more tests of exp and exp10.  Expect some exp10 tests to miss
16914         exceptions or fail in directed rounding modes.
16915         * math/auto-libm-test-out: Regenerated.
16916         * math/libm-test.inc (exp10_tonearest_test_data): New array.
16917         (exp10_test_tonearest): New function.
16918         (exp10_towardzero_test_data): New array.
16919         (exp10_test_towardzero): New function.
16920         (exp10_downward_test_data): New array.
16921         (exp10_test_downward): New function.
16922         (exp10_upward_test_data): New array.
16923         (exp10_test_upward): New function.
16924         (main): Call the new functions.
16925         * sysdeps/i386/fpu/libm-test-ulps: Update.
16926         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16927
16928 2013-12-20  Joseph Myers  <joseph@codesourcery.com>
16929
16930         * math/auto-libm-test-in: Add more tests of acos, acosh, asin,
16931         asinh, atan, atan2, atanh, cbrt, cos and cosh.
16932         * math/auto-libm-test-out: Regenerated.
16933         * math/libm-test.inc (acosh_test_data): Add more tests.
16934         (atanh_test_data): Likewise.
16935         (ceil_test_data): Likewise.
16936         (copysign_test_data): Likewise.
16937         * sysdeps/i386/fpu/libm-test-ulps: Update.
16938         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16939
16940         * timezone/checktab.awk: Update from tzcode 2013i.
16941         * timezone/private.h: Likewise.
16942         * timezone/scheck.c: Likewise.
16943         * timezone/tzfile.h: Likewise.
16944         * timezone/tzselect.ksh: Likewise.
16945         * timezone/zdump.c: Likewise.
16946         * timezone/zic.c: Likewise.
16947
16948         * math/auto-libm-test-in: Add tests of cpow.
16949         * math/auto-libm-test-out: Regenerated.
16950         * math/libm-test.inc (cpow_test_data): Use AUTO_TESTS_cc_c.
16951         * math/gen-auto-libm-tests.c (func_calc_method): Add value
16952         mpc_cc_c.
16953         (func_calc_desc): Add mpc_cc_c union field.
16954         (test_functions): Add cpow.
16955         (special_fill_2pi): New function.
16956         (special_real_inputs): Add 2pi.
16957         (calc_generic_results): Handle mpc_cc_c.
16958         * sysdeps/i386/fpu/libm-test-ulps: Update.
16959         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16960
16961         * math/auto-libm-test-in: Add tests of ccos, ccosh, cexp, clog,
16962         csqrt, ctan and ctanh.
16963         * math/auto-libm-test-out: Regenerated.
16964         * math/libm-test.inc (TEST_COND_x86_64): New macro.
16965         (TEST_COND_x86): Likewise.
16966         (ccos_test_data): Use AUTO_TESTS_c_c.
16967         (ccosh_test_data): Likewise.
16968         (cexp_test_data): Likewise.
16969         (clog_test_data): Likewise.
16970         (csqrt_test_data): Likewise.
16971         (ctan_test_data): Likewise.
16972         (ctan_tonearest_test_data): Likewise.
16973         (ctan_towardzero_test_data): Likewise.
16974         (ctan_downward_test_data): Likewise.
16975         (ctan_upward_test_data): Likewise.
16976         (ctanh_test_data): Likewise.
16977         (ctanh_tonearest_test_data): Likewise.
16978         (ctanh_towardzero_test_data): Likewise.
16979         (ctanh_downward_test_data): Likewise.
16980         (ctanh_upward_test_data): Likewise.
16981         * math/gen-auto-libm-tests.c (func_calc_method): Add value
16982         mpc_c_c.
16983         (func_calc_desc): Add mpc_c_c union field.
16984         (FUNC_mpc_c_c): New macro.
16985         (test_functions): Add cacos, cacosh, casin, casinh, catan, catanh,
16986         ccos, ccosh, cexp, clog, clog10, csin, csinh, csqrt, ctan and
16987         ctanh.
16988         (special_fill_min_subnorm_p120): New function.
16989         (special_real_inputs): Add min_subnorm_p120.
16990         (calc_generic_results): Handle mpc_c_c.
16991         * sysdeps/i386/fpu/libm-test-ulps: Update.
16992         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
16993
16994 2013-12-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
16995
16996         * sysdeps/ieee754/dbl-64/s_sin.c (do_cos, do_cos_slow, do_sin)
16997         (do_sin_slow): New functions.
16998         (__sin, __cos, slow1, slow2, sloww1, sloww2, bsloww1, bsloww2)
16999         (cslow2, csloww1, csloww2): Use the new functions.
17000
17001         * sysdeps/ieee754/dbl-64/s_sin.c (sloww1): Add new argument M.
17002         Use M to change sign of result instead of X.  Assume X is
17003         positive.
17004         (csloww1): Likewise.
17005         (__sin): Adjust.
17006         (__cos): Adjust.
17007
17008         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): Remove
17009         arguments A and DA.
17010         (__sin): Adjust.
17011         (__cos): Likewise.
17012
17013         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use DA directly.
17014         (__cos): Likewise.
17015         (sloww1): Don't adjust sign of DX.
17016         (csloww1): Likewise.
17017         (sloww2): Use X directly and don't adjust sign of DX.
17018         (csloww2): Likewise.
17019
17020 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17021
17022         * math/auto-libm-test-in: Add tests of cabs and carg.
17023         * math/auto-libm-test-out: Regenerated.
17024         * math/libm-test.inc (cabs_test_data): Use AUTO_TESTS_c_f.
17025         (carg_test_data): Likewise.
17026         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17027         mpc_c_f.
17028         (func_calc_desc): Add mpc_c_f union field.
17029         (test_functions): Add cabs and carg.
17030         (calc_generic_results): Handle mpc_c_f.
17031
17032         * sysdeps/powerpc/powerpc32/libgcc-compat.S
17033         [_SOFT_FLOAT || __NO_FPRS__] (__fixdfdi_v_glibc20): Do not define
17034         as a macro and a compat symbol.
17035         [_SOFT_FLOAT || __NO_FPRS__] (__fixsfdi_v_glibc20): Likewise.
17036         [_SOFT_FLOAT || __NO_FPRS__] (__fixunsdfdi_v_glibc20): Likewise.
17037         [_SOFT_FLOAT || __NO_FPRS__] (__fixunssfdi_v_glibc20): Likewise.
17038         [_SOFT_FLOAT || __NO_FPRS__] (__floatdidf_v_glibc20): Likewise.
17039         [_SOFT_FLOAT || __NO_FPRS__] (__floaddisf_v_glibc20): Likewise.
17040         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixdfdi): Do
17041         not use .hidden.
17042         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixsfdi):
17043         Likewise.
17044         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunsdfdi):
17045         Likewise.
17046         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__fixunssfdi):
17047         Likewise.
17048         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddidf):
17049         Likewise.
17050         [HAVE_DOT_HIDDEN && (_SOFT_FLOAT || __NO_FPRS__)] (__floaddisf):
17051         Likewise.
17052         * sysdeps/powerpc/nofpu/Versions (libc): Remove __fixdfdi,
17053         __fixsfdi, __fixunsdfdi, __fixunssfdi, __floatdidf and __floatdisf
17054         from GLIBC_2.3.2.
17055
17056 2013-12-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17057
17058         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17059
17060 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17061
17062         * manual/texinfo.tex: Update to version 2013-11-26.10 with
17063         trailing whitespace removed.
17064         * scripts/config.guess: Update to version 2013-11-29.
17065         * scripts/config.sub: Update to version 2013-10-01.
17066
17067         * math/auto-libm-test-in: Add tests of sincos.
17068         * math/auto-libm-test-out: Regenerated.
17069         * math/libm-test.inc (sincos_test_data): Use AUTO_TESTS_fFF_11.
17070         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17071         mpfr_f_11.
17072         (func_calc_desc): Add mpfr_f_11 union field.
17073         (test_functions): Add sincos.
17074         (calc_generic_results): Handle mpfr_f_11.
17075         * sysdeps/i386/fpu/libm-test-ulps: Update.
17076         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17077
17078 2013-12-19  Andreas Schwab  <schwab@suse.de>
17079
17080         * sysdeps/powerpc/powerpc64/power7/memchr.S: Fix argument of
17081         CALL_MCOUNT.
17082         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
17083         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
17084         [USE_IN_EXTENDED_LOCALE_MODEL]: Likewise.
17085
17086 2013-12-19  Joseph Myers  <joseph@codesourcery.com>
17087
17088         * math/gen-libm-test.pl (%beautify): Remove M_* constants.
17089         * sysdeps/i386/fpu/libm-test-ulps: Update.
17090         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17091
17092         [BZ #16293]
17093         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]: Set
17094         round-to-nearest mode when using frndint.
17095         * sysdeps/i386/fpu/s_expm1.S (__expm1): Likewise.
17096         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
17097         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL) [USE_AS_EXPM1L]:
17098         Likewise.
17099         * math/auto-libm-test-in: Add more tests of expm1.  Do not expect
17100         sinh test to fail.
17101         * math/auto-libm-test-out: Regenerated.
17102         * math/libm-test.inc (TEST_COND_x86_64): Remove macro.
17103         (TEST_COND_x86): Likewise.
17104         (expm1_tonearest_test_data): New array.
17105         (expm1_test_tonearest): New function.
17106         (expm1_towardzero_test_data): New array.
17107         (expm1_test_towardzero): New function.
17108         (expm1_downward_test_data): New array.
17109         (expm1_test_downward): New function.
17110         (expm1_upward_test_data): New array.
17111         (expm1_test_upward): New function.
17112         (main): Run the new test functions.
17113         * sysdeps/i386/fpu/libm-test-ulps: Update.
17114         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17115
17116         * include/features.h: Update comment documenting feature test
17117         macros.  Mention _DEFAULT_SOURCE in comment.
17118         [_GNU_SOURCE] (_DEFAULT_SOURCE): Undefine and redefine.
17119         [_DEFAULT_SOURCE]: Undefine and redefine _DEFAULT_SOURCE,
17120         _BSD_SOURCE and _SVID_SOURCE.
17121         [!__STRICT_ANSI__ && !_ISOC99_SOURCE && !_POSIX_SOURCE &&
17122         !_POSIX_C_SOURCE && !_XOPEN_SOURCE && !_BSD_SOURCE &&
17123         !_SVID_SOURCE]: Likewise.
17124         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17125         (__USE_POSIX_IMPLICITLY): Define.
17126         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17127         (_POSIX_SOURCE): Undefine and redefine.
17128         [_DEFAULT_SOURCE && !_POSIX_SOURCE && !_POSIX_C_SOURCE]
17129         (_POSIX_C_SOURCE): Likewise.
17130         * manual/creature.texi (_DEFAULT_SOURCE): Document.
17131         (Feature Test Macros): Update documentation of default features.
17132
17133 2013-12-19  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
17134
17135         * benchtests/Makefile: Add bench-strtok.
17136         * benchtests/bench-strtok.c: New file: strtok benchtest.
17137
17138 2013-12-19  Allan McRae  <allan@archlinux.org>
17139
17140         * manual/install.texi: Suppress menu for plain text output.
17141         * INSTALL: Regenerated.
17142
17143 2013-12-18  Brooks Moses  <bmoses@google.com>
17144
17145         [BZ #15846]
17146         * misc/getauxval.c: Include errno.h.
17147         (__getauxval): Set errno to ENOENT if the requested type is not
17148         found.
17149         * misc/sys/auxv.h (getauxval): Document that it may set errno;
17150         don't declare with __attribute_const__.
17151         * elf/tst-auxv.c: Add tests for errno and type-not-found case.
17152         * manual/startup.texi: Document that getauxval sets errno.
17153
17154 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
17155
17156         * math/auto-libm-test-in: Add tests of jn and yn.
17157         * math/auto-libm-test-out: Regenerated.
17158         * math/libm-test.inc (jn_test_data): Use AUTO_TESTS_if_f.
17159         (yn_test_data): Likewise.
17160         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17161         mpfr_if_f.
17162         (func_calc_desc): Add mpfr_if_f union field.
17163         (FUNC_mpfr_if_f): New macro.
17164         (test_functions): Add jn and yn.
17165         (calc_generic_results): Assert type of second input for
17166         mpfr_ff_f.  Handle mpfr_if_f.
17167         (output_for_one_input_case): Disable all checking for arguments
17168         fitting floating-point types in case of an integer argument.
17169         * sysdeps/i386/fpu/libm-test-ulps: Update.
17170         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17171
17172         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
17173         Don't expect fegetround reference in libm.so.
17174
17175 2013-12-17  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
17176
17177         * sysdeps/ieee754/dbl-64/Makefile (CFLAGS-e_sqrt.c): Add
17178         $(config-cflags-nofma).
17179
17180 2013-12-18  Joseph Myers  <joseph@codesourcery.com>
17181
17182         * math/auto-libm-test-in: Mark some hypot tests no-test-inline.
17183         * math/auto-libm-test-out: Regenerated.
17184
17185         [BZ #16338]
17186         * sysdeps/ieee754/ldbl-128/e_logl.c (__ieee754_logl): Use __frexpl
17187         to determine exponent and adjust argument to have exponent of -1.
17188         * math/auto-libm-test-in: Add more tests of log, log10, log1p and
17189         log2.
17190         * math/auto-libm-test-out: Regenerated.
17191         * sysdeps/i386/fpu/libm-test-ulps: Update.
17192         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17193
17194 2013-12-18  Ondřej Bílka  <neleai@seznam.cz>
17195
17196         * manual/probes.texi: Remove cases when per-thread arenas are
17197         disabled.
17198
17199 2013-12-18  Andreas Schwab  <schwab@suse.de>
17200
17201         * sysdeps/i386/i686/multiarch/strstr.c: Remove.
17202         * sysdeps/i386/i686/multiarch/strstr-c.c: Remove.
17203         * sysdeps/i386/i686/multiarch/strcasestr.c: Remove.
17204         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: Remove.
17205         * sysdeps/i386/i686/multiarch/Makefile: Update.
17206         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: Update.
17207
17208 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17209
17210         * sysdeps/unix/bsd/bsd4.4/bits/errno.h: Remove file.
17211         * sysdeps/unix/bsd/bsd4.4/bits/ioctls.h: Likewise.
17212
17213 2013-12-17  Paul Eggert  <eggert@cs.ucla.edu>
17214
17215         [BZ #15968]
17216         Support TZ transition times < 00:00:00.
17217         This is needed for version-3 tz-format files; it supports time
17218         stamps past 2037 for America/Godthab (the only entry in the tz
17219         database for which this change is relevant).
17220         * manual/time.texi (TZ Variable): Document transition times
17221         from -167:59:59 through -00:00:01.
17222         * time/tzset.c (tz_rule): Time of day is now signed.
17223         (__tzset_parse_tz): Parse negative time of day.
17224
17225         Document TZ transition times >= 25:00:00.
17226         * manual/time.texi (TZ Variable): Document transition times from
17227         25:00:00 through 167:59:59.  These are already supported, and this
17228         support will help with version-3 tz-format files.
17229
17230         * manual/time.texi (TZ Variable): Modernize North America example
17231         to reflect current (i.e., 2007-and-later) daylight saving rules.
17232
17233         * manual/time.texi (TZ Variable): POSIX.1 hour can be 24.
17234
17235 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17236
17237         * sysdeps/unix/bsd/bits/posix_opt.h: Remove file.
17238         * sysdeps/unix/bsd/bits/stat.h: Likewise.
17239         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/environments.h: Likewise.
17240         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
17241         * sysdeps/unix/bsd/bsd4.4/freebsd/sys/sysmacros.h: Likewise.
17242         * sysdeps/unix/bsd/bsdstat.h: Likewise.
17243         * sysdeps/unix/bsd/clock.c: Likewise.
17244         * sysdeps/unix/bsd/i386/vfork.S: Likewise.
17245         * sysdeps/unix/bsd/i386/wait3.S: Likewise.
17246         * sysdeps/unix/bsd/init-posix.c: Likewise.
17247         * sysdeps/unix/bsd/poll.c: Likewise.
17248         * sysdeps/unix/bsd/ptsname.c: Likewise.
17249         * sysdeps/unix/bsd/seekdir.c: Likewise.
17250         * sysdeps/unix/bsd/setegid.c: Likewise.
17251         * sysdeps/unix/bsd/seteuid.c: Likewise.
17252         * sysdeps/unix/bsd/setgid.c: Likewise.
17253         * sysdeps/unix/bsd/setrgid.c: Likewise.
17254         * sysdeps/unix/bsd/setruid.c: Likewise.
17255         * sysdeps/unix/bsd/setsid.c: Likewise.
17256         * sysdeps/unix/bsd/setuid.c: Likewise.
17257         * sysdeps/unix/bsd/sigaction.c: Likewise.
17258         * sysdeps/unix/bsd/sigprocmask.c: Likewise.
17259         * sysdeps/unix/bsd/sigsuspend.c: Likewise.
17260         * sysdeps/unix/bsd/sys/reboot.h: Likewise.
17261         * sysdeps/unix/bsd/telldir.c: Likewise.
17262         * sysdeps/unix/bsd/times.c: Likewise.
17263         * sysdeps/unix/bsd/usleep.c: Likewise.
17264
17265         * misc/Makefile (install-lib): Remove libbsd-compat.a.
17266         ($(objpfx)libbsd-compat.a): Remove rule.
17267
17268         * include/features.h (__FAVOR_BSD): Do not define.
17269         * manual/creature.texi (_BSD_SOURCE): Do not document as enabling
17270         features conflicting with POSIX.
17271         (_GNU_SOURCE): Do not mention interaction with _BSD_SOURCE.
17272         (_BSD_SOURCE): Remove description of not being a subset of other
17273         feature test macros.
17274         * manual/job.texi (getpgrp): Do not document BSD version.
17275         (getpgid): Do not document by reference to BSD getpgrp.
17276         * posix/unistd.h [__FAVOR_BSD]: Remove conditional code.
17277         * setjmp/setjmp.h [__FAVOR_BSD]: Likewise.
17278         * signal/signal.h [__FAVOR_BSD]: Likewise.
17279         * sysdeps/gnu/netinet/tcp.h (struct tcphdr): Use anonymous unions
17280         instead of making contents conditional on [__FAVOR_BSD].
17281         * sysdeps/gnu/netinet/udp.h (struct udphdr): Likewise.
17282
17283 2013-12-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17284
17285         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17286
17287 2013-12-17  Joseph Myers  <joseph@codesourcery.com>
17288
17289         [BZ #16314]
17290         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Adjust up
17291         values below 2**-450, not 2**-500.
17292         * math/auto-libm-test-in: Don't allow spurious underflow from
17293         hypot.
17294         * math/auto-libm-test-out: Regenerated.
17295
17296         [BZ #16316]
17297         [BZ #16330]
17298         * sysdeps/ieee754/dbl-64/e_hypot.c (__ieee754_hypot): Update
17299         values of ha and hb and sort them after adjusting subnormal
17300         arguments.
17301         * sysdeps/ieee754/ldbl-128/e_hypotl.c (__ieee754_hypotl):
17302         Likewise.
17303         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Update
17304         values of ea and eb and sort them after adjusting subnormal
17305         arguments.
17306         * math/auto-libm-test-in: Do not expect some hypot tests of
17307         subnormals to fail.  Add more hypot tests.
17308         * math/auto-libm-test-out: Regenerated.
17309
17310 2013-12-16  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17311
17312         [BZ #13304]
17313         * sysdeps/sh/s_fma.c: New file.
17314         * sysdeps/sh/s_fmaf.c: New file.
17315         * sysdeps/sh/soft-fp/sfp-machine.h: New file.  Based on arm
17316         version.
17317         * sysdeps/sh/Implies: Add sh/soft-fp.
17318
17319 2013-12-16  Roland McGrath  <roland@hack.frob.com>
17320
17321         * elf/dl-error.c (struct catch): Add new member `errcode'.  Add a
17322         level of indirection to members `objname', `errstring', `malloced'.
17323         (_dl_signal_error): Store through pointers in *LCATCH rather modifying
17324         *LCATCH itself.  Set *LCATCH->errcode to ERRCODE rather than passing
17325         it as the __longjmp argument (just pass 1 instead).
17326         (_dl_catch_error): Initialize C with argument pointers and address of
17327         volatile local ERRCODE rather than copying values out of C at return.
17328
17329 2013-12-16  Joseph Myers  <joseph@codesourcery.com>
17330
17331         * math/auto-libm-test-in: Add tests of atan2, hypot and pow.
17332         * math/auto-libm-test-out: Regenerated.
17333         * math/libm-test.inc (atan2_test_data): Use AUTO_TESTS_ff_f.
17334         (hypot_test_data): Likewise.
17335         (pow_test_data): Likewise.
17336         (pow_tonearest_test_data): Likewise.
17337         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17338         mpfr_ff_f.
17339         (func_calc_desc): Add mpfr_ff_f union field.
17340         (FUNC_mpfr_ff_f): New macro.
17341         (test_functions): Add atan2, hypot and pow.
17342         (special_fill_min): New function.
17343         (special_fill_minus_min): Likewise.
17344         (special_fill_min_subnorm): Likewise.
17345         (special_fill_minus_min_subnorm): Likewise.
17346         (special_real_inputs): Add min, -min, min_subnorm and
17347         -min_subnorm.
17348         (calc_generic_results): Handle mpfr_ff_f.
17349         * sysdeps/i386/fpu/libm-test-ulps: Update.
17350         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17351
17352 2013-12-16  Will Newton  <will.newton@linaro.org>
17353
17354         * manual/memory.texi (Malloc Examples): Mention aligned_alloc.
17355         (Aligned Memory Blocks): Add documentation for aligned_alloc
17356         and suggest it as an alternative to posix_memalign.
17357         (Hooks for Malloc): Document __memalign_hook is also called
17358         for aligned_alloc.  (Summary of Malloc): Add summary for
17359         aligned alloc.  Document __memalign_hook is also called
17360         for aligned_alloc.
17361
17362 2013-12-16  Will Newton  <will.newton@linaro.org>
17363
17364         * manual/memory.texi (Malloc Examples): Clarify default
17365         alignment documentation.  Suggest posix_memalign rather
17366         than memalign or valloc.
17367         (Aligned Memory Blocks): Remove suggestion to use memalign
17368         or valloc.  Remove obsolete comment about BSD.
17369         Document memalign errno values and mark the function obsolete.
17370         Document posix_memalign returned error codes.  Mark valloc
17371         as obsolete.  (Hooks for Malloc): __memalign_hook is also
17372         called for posix_memalign and valloc.
17373         (Summary of Malloc): Add posix_memalign to function summary.
17374         __memalign_hook is also called for posix_memalign and valloc.
17375
17376 2013-12-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
17377
17378         * sysdeps/ieee754/dbl-64/s_sin.c (TAYLOR_SINCOS): Rename to
17379         TAYLOR_SIN.
17380         (__sin): Adjust.
17381         (__cos): Likewise.
17382         (sloww): Use mynumber union.  Expand ternary operator into
17383         if-else statements.
17384         (cslow): use mynumber union.
17385
17386 2013-12-16  Allan McRae  <allan@archlinux.org>
17387
17388         * configure.ac: Set AUTOCONF when maintainer-mode is not used.
17389         * configure: Regenerated.
17390
17391         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update file name.
17392
17393         [BZ #14120]
17394         * configure.ac: Added --enable-maintainer-mode. Check for
17395         autoconf when enabled.
17396         * configure: Regenerated.
17397
17398         * nscd/nscd.service: New file.
17399         * nscd/nscd.tmpfiles: New file.
17400
17401 2013-12-14  Ondřej Bílka  <neleai@seznam.cz>
17402
17403         [BZ #12100]
17404         * sysdeps/x86_64/multiarch/strstr-sse2-unaligned.S: New file
17405         * sysdeps/x86_64/multiarch/strstr-c.c: Moved to ...
17406         * sysdeps/x86_64/multiarch/strstr.c: ... here.
17407         (strstr): Add __strstr_sse2_unaligned ifunc.
17408         * sysdeps/x86_64/multiarch/strcasestr-c.c: Moved to ...
17409         * sysdeps/x86_64/multiarch/strcasestr.c ... here.
17410         (strcasestr): Remove __strcasestr_sse42 ifunc.
17411         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Remove.
17412         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
17413         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
17414
17415 2013-12-14  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17416
17417         * sysdeps/sh/sh4/fpu/bits/fenv.h: Move to ...
17418         * sysdeps/sh/bits/fenv.h: ... here.
17419         * sysdeps/sh/sh4/fpu/bits: Remove directory.
17420
17421 2013-12-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17422
17423         * NEWS: Mention ppc64 STT_GNU_IFUNC support.
17424
17425         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add hypot and
17426         hypotf multiarch implementations.
17427         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-power7.c: New file.
17428         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot-ppc64.c: New file.
17429         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypot.c: New file:
17430         multiarch hypot for PPC64.
17431         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-power7.c: New file.
17432         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf-ppc64.c: New file.
17433         * sysdeps/powerpc/powerpc64/fpu/multiarch/e_hypotf.c : New file:
17434         multiarch hypotf for PPC64.
17435
17436         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add modf and
17437         modff multiarch implementations.
17438         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-power5+.c: New file.
17439         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf-ppc64.c: New file.
17440         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modf.c: New file:
17441         multiarch modf for PPC64.
17442         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-power5+.c: New file.
17443         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff-ppc64.c: New file.
17444         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_modff.c : New file:
17445         multiarch modff for PPC64.
17446
17447         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add logb, logbf,
17448         and logl multiarch implementations.
17449         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-power7.c: New file.
17450         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb-ppc64.c: New file.
17451         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logb.c: New file:
17452         multiarch logb for PPC64.
17453         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-power7.c: New file.
17454         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf-ppc64.c: New file.
17455         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbf.c: New file:
17456         multiarch logb for PPC64.
17457         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-power7.c: New file.
17458         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl-ppc64.c: New file.
17459         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_logbl.c: New file:
17460         multiarch logb for PPC64.
17461
17462         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isinf and
17463         isinff multiarch implementation.
17464         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-power7.S: New
17465         file.
17466         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf-ppc64.S: New file.
17467         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinf.c: New file:
17468         multiarch isinf for PPC64.
17469         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff-ppc64.c: New
17470         file.
17471         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isinff.c: New file:
17472         multiarch isinff for PPC64.
17473
17474         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add finite and
17475         finitef multiarch implementation.
17476         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-power7.S: New
17477         file.
17478         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite-ppc64.S: New file.
17479         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finite.c: New file:
17480         multiarch finite for PPC64.
17481         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef-ppc64.c: New
17482         file.
17483         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_finitef.c: New file:
17484         multiarch finitef for PPC64.
17485
17486         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llrint and
17487         lrint multiarch implementation.
17488         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-power6x.S: New
17489         file.
17490         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint-ppc64.S: New file.
17491         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llrint.c: New file:
17492         multiarch llrint for PPC64.
17493         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lrint.c: New file:
17494         multiarch lrint for PPC64.
17495
17496         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add copysign/
17497         copysignf multiarch implementation.
17498         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-power6.S: New
17499         file.
17500         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign-ppc64.S: New
17501         file.
17502         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysign.c: New file:
17503         multiarch copysign for PPC64.
17504         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_copysignf.c: New file:
17505         multiarch copysignf for PPC64.
17506
17507         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add trunc/truncf
17508         multiarch implementation.
17509         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-power5+.S: New
17510         file.
17511         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc-ppc64.S: New
17512         file.
17513         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-power5+.S: New
17514         file.
17515         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf-ppc64.S: New
17516         file.
17517         multiarch llround for PPC64.
17518         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_trunc.c: New file:
17519         multiarch trunc for PPC64.
17520         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_truncf.c: New file:
17521         multiarch truncf for PPC64.
17522
17523         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add round/roundf
17524         multiarch implementation.
17525         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-power5+.S: New
17526         file.
17527         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round-ppc64.S: New
17528         file.
17529         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-power5+.S: New
17530         file.
17531         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf-ppc64.S: New
17532         file.
17533         multiarch llround for PPC64.
17534         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_round.c: New file:
17535         multiarch round for PPC64.
17536         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_roundf.c: New file:
17537         multiarch roundf for PPC64.
17538
17539         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add floor/floorf
17540         multiarch implementation.
17541         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-power5+.S: New
17542         file.
17543         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor-ppc64.S: New
17544         file.
17545         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-power5+.S: New
17546         file.
17547         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf-ppc64.S: New
17548         file.
17549         multiarch llround for PPC64.
17550         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floor.c: New file:
17551         multiarch floor for PPC64.
17552         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_floorf.c: New file:
17553         multiarch floorf for PPC64.
17554
17555         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add ceil/ceilf
17556         multiarch implementation.
17557         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-power5+.S: New
17558         file.
17559         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil-ppc64.S: New
17560         file.
17561         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-power5+.S: New
17562         file.
17563         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf-ppc64.S: New
17564         file.
17565         multiarch llround for PPC64.
17566         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceil.c: New file:
17567         multiarch ceil for PPC64.
17568         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_ceilf.c: New file:
17569         multiarch ceilf for PPC64.
17570
17571         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add llround
17572         multiarch implementation.
17573         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power5+.S: New
17574         file.
17575         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-power6x.S: New
17576         file.
17577         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround-ppc64.S: New
17578         file.
17579         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_llround.c: New file:
17580         multiarch llround for PPC64.
17581         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_lround.c: New file:
17582         multiarch lround for PPC64.
17583
17584         * sysdeps/powerpc/powerpc64/fpu/multiarch/Makefile: Add isnan
17585         multiarch implementation.
17586         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power5.S: New file.
17587         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6.S: New file.
17588         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power6x.S: New
17589         file.
17590         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-power7.S: New file.
17591         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan-ppc64.S: New file.
17592         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnan.c: New file:
17593         multiarch isnan for PPC64.
17594         * sysdeps/powerpc/powerpc64/fpu/multiarch/s_isnanf.c: New file:
17595         multiarch isnanf for PPC64.
17596
17597         * sysdeps/powerpc/powerpc64/power5+/fpu/multiarch/Implies: New file.
17598         * sysdeps/powerpc/powerpc64/power5/fpu/multiarch/Implies: New file.
17599         * sysdeps/powerpc/powerpc64/power6/fpu/multiarch/Implies: New file.
17600         * sysdeps/powerpc/powerpc64/power6x/fpu/multiarch/Implies: New file.
17601         * sysdeps/powerpc/powerpc64/power7/fpu/multiarch/Implies: New file
17602         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/Implies: Remove.
17603
17604         * sysdeps/powerpc/fpu/w_sqrt.c: Remove file
17605         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
17606         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
17607         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
17608
17609         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add stpcpy
17610         multiarch implementations.
17611         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17612         (__libc_ifunc_impl_list): Likewise.
17613         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-power7.c: New file.
17614         * sysdeps/powerpc/powerpc64/multiarch/stpcpy-ppc64.c: New file.
17615         * sysdeps/powerpc/powerpc64/multiarch/stpcpy.c : New file:
17616         multiarch stpcpy for PPC64.
17617
17618         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcpy
17619         multiarch implementations.
17620         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17621         (__libc_ifunc_impl_list): Likewise.
17622         * sysdeps/powerpc/powerpc64/multiarch/strcpy-power7.c: New file.
17623         * sysdeps/powerpc/powerpc64/multiarch/strcpy-ppc64.c: New file.
17624         * sysdeps/powerpc/powerpc64/multiarch/strcpy.c : New file:
17625         multiarch strcpy for PPC64.
17626
17627         * string/wordcopy.c (_wordcopy_fwd_aligned): Add define to
17628         redefine function name.
17629         (_wordcopy_fwd_dest_aligned): Likewise.
17630         (_wordcopy_bwd_aligned): Likewise.
17631         (_wordcopy_bwd_dest_aligned): Likewise.
17632         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wordcopy
17633         multiarch implementations.
17634         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17635         (__libc_ifunc_impl_list): Likewise.
17636         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power6.c: New file.
17637         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-power7.c: New file.
17638         * sysdeps/powerpc/powerpc64/multiarch/wordcopy-ppc64.c: New file.
17639         * sysdeps/powerpc/powerpc64/multiarch/wordcopy.c : New file:
17640         multiarch wcscpy for PPC64.
17641
17642         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcscpy
17643         multiarch implementations.
17644         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17645         (__libc_ifunc_impl_list): Likewise.
17646         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power6.c: New file.
17647         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-power7.c: New file.
17648         * sysdeps/powerpc/powerpc64/multiarch/wcscpy-ppc64.c: New file.
17649         * sysdeps/powerpc/powerpc64/multiarch/wcscpy.c : New file:
17650         multiarch wcscpy for PPC64.
17651
17652         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcsrchr
17653         multiarch implementations.
17654         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17655         (__libc_ifunc_impl_list): Likewise.
17656         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power6.c: New file.
17657         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-power7.c: New file.
17658         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr-ppc64.c: New file.
17659         * sysdeps/powerpc/powerpc64/multiarch/wcsrchr.c : New file:
17660         multiarch wcsrchr for PPC64.
17661
17662         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add wcschr
17663         multiarch implementations.
17664         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17665         (__libc_ifunc_impl_list): Likewise.
17666         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power6.c: New file.
17667         * sysdeps/powerpc/powerpc64/multiarch/wcschr-power7.c: New file.
17668         * sysdeps/powerpc/powerpc64/multiarch/wcschr-ppc64.c: New file.
17669         * sysdeps/powerpc/powerpc64/multiarch/wcschr.c : New file:
17670         multiarch wcschr for PPC64.
17671
17672         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchrnul
17673         multiarch implementations.
17674         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17675         (__libc_ifunc_impl_list): Likewise.
17676         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-power7.S: New file.
17677         * sysdeps/powerpc/powerpc64/multiarch/strchrnul-ppc64.c: New file.
17678         * sysdeps/powerpc/powerpc64/multiarch/strchrnul.c: New file:
17679         multiarch strchrnul for PPC64.
17680
17681         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strchr multiarch
17682         implementations.
17683         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17684         (__libc_ifunc_impl_list): Likewise.
17685         * sysdeps/powerpc/powerpc64/multiarch/rtld-strchr.S: New file.
17686         * sysdeps/powerpc/powerpc64/multiarch/strchr-power7.S: New file.
17687         * sysdeps/powerpc/powerpc64/multiarch/strchr-ppc64.S: New file.
17688         * sysdeps/powerpc/powerpc64/multiarch/strchr.c: New file: multiarch
17689         strchr for PPC64.
17690
17691         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncmp multiarch
17692         implementations.
17693         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17694         (__libc_ifunc_impl_list): Likewise.
17695         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power4.S: New file.
17696         * sysdeps/powerpc/powerpc64/multiarch/strncmp-power7.S: New file.
17697         * sysdeps/powerpc/powerpc64/multiarch/strncmp-ppc64.S: New file.
17698         * sysdeps/powerpc/powerpc64/multiarch/strncmp.c: New file: multiarch
17699         strncmp for PPC64.
17700
17701         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strncasecmp
17702         multiarch implementations.
17703         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17704         (__libc_ifunc_impl_list): Likewise.
17705         * sysdeps/powerpc/powerpc64/multiarch/strncase-power7.c: New file.
17706         * sysdeps/powerpc/powerpc64/multiarch/strncase.c: New file: multiarch
17707         strncasecmp for PPC64.
17708         * sysdeps/powerpc/powerpc64/multiarch/strncase_l-power7.c: New file.
17709         * sysdeps/powerpc/powerpc64/multiarch/strncase_l.c: New file:
17710         multiarch strncasecmp_l for PPC64.
17711
17712         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strcasecmp
17713         multiarch implementations.
17714         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c:
17715         (__libc_ifunc_impl_list): Likewise.
17716         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp-power7.S: New file.
17717         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp.c: New file:
17718         multiarch strcasecmp for PPC64.
17719         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l-power7.S: New
17720         file.
17721         * sysdeps/powerpc/powerpc64/multiarch/strcasecmp_l.c: new file:
17722         multiarch strcasecmp_l for PPC64.
17723
17724         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strnlen multiarch
17725         implementations.
17726         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17727         (__libc_ifunc_impl_list): Likewise.
17728         * sysdeps/powerpc/powerpc64/multiarch/strnlen-power7.S: New file.
17729         * sysdeps/powerpc/powerpc64/multiarch/strnlen-ppc64.c: New file.
17730         * sysdeps/powerpc/powerpc64/multiarch/strnlen.c: New file: multiarch
17731         strnlen for PPC64.
17732
17733         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add strlen multiarch
17734         implementations.
17735         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17736         (__libc_ifunc_impl_list): Likewise.
17737         * sysdeps/powerpc/powerpc64/multiarch/strlen-power7.S: New file.
17738         * sysdeps/powerpc/powerpc64/multiarch/strlen-ppc64.S: New file.
17739         * sysdeps/powerpc/powerpc64/multiarch/strlen.c: New file: multiarch
17740         strlen for PPC64.
17741
17742         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add rawmemch multiarch
17743         implementations.
17744         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17745         (__libc_ifunc_impl_list): Likewise.
17746         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-power7.S: New file.
17747         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr-ppc64.c: New file.
17748         * sysdeps/powerpc/powerpc64/multiarch/rawmemchr.c: New file: multiarch
17749         rawmemrchr for PPC64.
17750
17751         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memrchr multiarch
17752         implementation.
17753         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17754         (__libc_ifunc_impl_list): Likewise.
17755         * sysdeps/powerpc/powerpc64/multiarch/memrchr-power7.S: New file.
17756         * sysdeps/powerpc/powerpc64/multiarch/memrchr-ppc64.c: New file.
17757         * sysdeps/powerpc/powerpc64/multiarch/memrchr.c: New file: multiarch
17758         memrchr for PPC64.
17759
17760         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memchr multiarch
17761         implementation.
17762         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17763         (__libc_ifunc_impl_list): Likewise.
17764         * sysdeps/powerpc/powerpc64/multiarch/memchr-power7.S: New file.
17765         * sysdeps/powerpc/powerpc64/multiarch/memchr-ppc64.c: New file.
17766         * sysdeps/powerpc/powerpc64/multiarch/memchr.c: New file: multiarch
17767         memchr for PPC64.
17768
17769         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add mempcpy multiarch
17770         implementation.
17771         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17772         (__libc_ifunc_impl_list): Likewise.
17773         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-power7.S: New file.
17774         * sysdeps/powerpc/powerpc64/multiarch/mempcpy-ppc64.c: New file.
17775         * sysdeps/powerpc/powerpc64/multiarch/mempcpy.c: New file: multiarch
17776         mempcpy for PPC64.
17777
17778         * sysdeps/powerpc/powerpc64/memset.S (NO_BZERO_IMPL): Add macro to
17779         avoid cretion of __bzero symbol.
17780         * sysdeps/powerpc/powerpc64/power4/memset.S (NO_BZERO_IMPL):
17781         Likewise.
17782         * sysdeps/powerpc/powerpc64/power6/memset.S (NO_BZERO_IMPL):
17783         Likewise.
17784         * sysdeps/powerpc/powerpc64/power7/memset.S (NO_BZERO_IMPL):
17785         Likewise.
17786         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memset/bzero
17787         multiarch implementations.
17788         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17789         (__libc_ifunc_impl_list): Likewise.
17790         * sysdeps/powerpc/powerpc64/multiarch/bzero-power4.S: New file.
17791         * sysdeps/powerpc/powerpc64/multiarch/bzero-power6.S: New file.
17792         * sysdeps/powerpc/powerpc64/multiarch/bzero-power7.S: New file.
17793         * sysdeps/powerpc/powerpc64/multiarch/bzero.c: New file: multiarch
17794         bzero for PPC32.
17795         * sysdeps/powerpc/powerpc64/multiarch/memset-power4.S: New file.
17796         * sysdeps/powerpc/powerpc64/multiarch/memset-power6.S: New file.
17797         * sysdeps/powerpc/powerpc64/multiarch/memset-power7.S: New file.
17798         * sysdeps/powerpc/powerpc64/multiarch/memset-ppc64.S: New file.
17799         * sysdeps/powerpc/powerpc64/multiarch/memset.c: New file: multiarch
17800         memset for PPC64.
17801         * sysdeps/powerpc/powerpc64/multiarch/rtld-memset.c: New file.
17802
17803         * string/memcmp.c (memcmp): Using macro to redefine symbol name.
17804         * sysdeps/powerpc/powerpc64/multiarch/Makefile: Add memcpy multiarch
17805         implementations.
17806         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c
17807         (__libc_ifunc_impl_list): Likewise.
17808         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power4.S: New file.
17809         * sysdeps/powerpc/powerpc64/multiarch/memcmp-power7.S: New file.
17810         * sysdeps/powerpc/powerpc64/multiarch/memcmp-ppc64.c: New file.
17811         * sysdeps/powerpc/powerpc64/multiarch/memcmp.c: New file: multiarch
17812         memcmp for PPC64.
17813
17814         * sysdeps/powerpc/powerpc64/multiarch/Makefile: New file to support
17815         multiarch for POWER/PPC64.
17816         * sysdeps/powerpc/powerpc64/multiarch/ifunc-impl-list.c: Likewise.
17817         * sysdeps/powerpc/powerpc64/multiarch/init-arch.h: Likewise.
17818         * sysdeps/powerpc/powerpc64/multiarch/memcpy-a2.S: New file.
17819         * sysdeps/powerpc/powerpc64/multiarch/memcpy-cell.S: New file.
17820         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power4.S: New file.
17821         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power6.S: New file.
17822         * sysdeps/powerpc/powerpc64/multiarch/memcpy-power7.S: New file.
17823         * sysdeps/powerpc/powerpc64/multiarch/memcpy-ppc64.S: New file.
17824         * sysdeps/powerpc/powerpc64/multiarch/memcpy.c: New file: multiarch
17825         memcpy for PPC64.
17826
17827         * sysdeps/powerpc/powerpc64/power4/fpu/Implies: New file.
17828         * sysdeps/powerpc/powerpc64/power4/fpu/multiarch/Implies: New File.
17829         * sysdeps/powerpc/powerpc64/power4/multiarch/Implies: New File.
17830         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: New File.
17831         * sysdeps/powerpc/powerpc64/power5+/multiarch/Implies: New File.
17832         * sysdeps/powerpc/powerpc64/power5/Implies: New File.
17833         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: New File.
17834         * sysdeps/powerpc/powerpc64/power5/multiarch/Implies: New File.
17835         * sysdeps/powerpc/powerpc64/power6/fpu/Implies: New File.
17836         * sysdeps/powerpc/powerpc64/power6/multiarch/Implies: New File.
17837         * sysdeps/powerpc/powerpc64/power7/fpu/Implies: New File.
17838         * sysdeps/powerpc/powerpc64/power7/multiarch/Implies: New File.
17839         * sysdeps/powerpc/powerpc64/power8/fpu/Implies: New File.
17840         * sysdeps/powerpc/powerpc64/power8/fpu/multiarch/Implies: New File.
17841         * sysdeps/powerpc/powerpc64/power8/multiarch/Implies: New File.
17842         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: Remove.
17843         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/Implies: Remove.
17844         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: Remove.
17845         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: Remove.
17846         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: Remove.
17847         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: Remove.
17848         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Remove.
17849
17850 2013-12-12  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
17851
17852         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Use $$ver.
17853
17854 2013-12-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
17855
17856         * benchtests/Makefile (bench): Add exp2 and log2.
17857         (LDLIBS-bench-exp2): Add -lm.
17858         (LDLIBS-bench-log2): Likewise.
17859         * benchtests/exp2-inputs: New inputs file.
17860         * benchtests/log2-inputs: New inputs file.
17861         * benchtests/log-inputs: Add new inputs.
17862         * benchtests/tan-inputs: Likewise.
17863
17864 2013-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
17865
17866         * sysdeps/ieee754/dbl-64/s_sin.c (t22): Consolidate const
17867         definition...
17868         (slow1, slow2, sloww1, sloww2, bsloww1, bsloww2, cslow2, csloww1)
17869         (csloww2): ... from here.
17870
17871         * sysdeps/ieee754/dbl-64/usncs.h: Define constants as double
17872         instead of structures.
17873         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): Adjust.
17874         (POLYNOMIAL): Likewise.
17875         (TAYLOR_SLOW): Likewise.
17876         (__sin): Likewise.
17877         (__cos): Likewise.
17878         (slow1): Likewise.
17879         (slow2): Likewise.
17880         (sloww): Likewise.
17881         (sloww1); Likewise.
17882         (sloww2): Likewise.
17883         (bsloww1): Likewise.
17884         (bsloww2): Likewise.
17885         (cslow2): Likewise.
17886         (csloww): Likewise.
17887         (csloww1): Likewise.
17888         (csloww2): Likewise.
17889
17890 2013-12-10  Ondřej Bílka  <neleai@seznam.cz>
17891
17892         * malloc/malloc.c (MALLOC_COPY, MALLOC_ZERO): Delete.
17893         (__malloc_assert, __libc_realloc, __libc_calloc, _int_realloc):
17894         Expand MALLOC_COPY and MALLOC_ZERO to memcpy and memset.
17895         * malloc/hooks.c (realloc_check): Likewise.
17896
17897         * malloc/Makefile (CPPFLAGS-malloc.c): Remove -DPER_THREAD flag.
17898         * malloc/arena.c: Remove PER_THREAD conditional.
17899         [!PER_THREAD]: Remove code.
17900         (ptmalloc_unlock_all2): Likewise.
17901         (ptmalloc_init): Likewise.
17902         (_int_new_arena): Likewise.
17903         (arena_get2): Likewise.
17904         * malloc/hooks.c (__malloc_get_state): Likewise.
17905         (__malloc_set_state): Likewise.
17906         * malloc/malloc.c: Likewise.
17907         (struct malloc_state): Likewise.
17908         (struct malloc_par): Likewise.
17909         (__libc_realloc): Likewise.
17910         (__libc_mallopt): Likewise.
17911
17912 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17913
17914         * Versions.def (libm): Add GLIBC_2.3 and GLIBC_2.19.
17915
17916 2013-12-09  Ondřej Bílka  <neleai@seznam.cz>
17917
17918         * malloc/malloc.c (alloc_perturb, free_perturb): Convert from
17919         macro to a function.  Check for zero perturb_byte.
17920         (_int_malloc, _int_free): Remove zero perturb_byte checks.
17921
17922         * malloc/malloc.c: (force_reg): Remove.
17923         (__malloc_assert, __libc_malloc, __libc_free, __libc_realloc)
17924         (_mid_memalign, __libc_calloc, sysmalloc, systrim): Replace
17925         force_reg by atomic_forced_read.
17926         * malloc/arena.c (ptmalloc_init): Likewise.
17927         * malloc/hooks.c (top_check): Likewise.
17928
17929 2013-12-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17930
17931         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
17932
17933 2013-12-09  Markus Trippelsdorf  <markus@trippelsdorf.de>
17934
17935         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
17936
17937 2013-12-08  Joseph Myers  <joseph@codesourcery.com>
17938
17939         * math/auto-libm-test-in: Add tests of lgamma.
17940         * math/auto-libm-test-out: Regenerated.
17941         * math/libm-test.inc (M_LOG_SQRT_PIl): Remove macro.
17942         (M_LOG_2_SQRT_PIl): Likewise.
17943         (lgamma_test_data): Use AUTO_TESTS_f_f1.
17944         * math/gen-auto-libm-tests.c (func_calc_method): Add value
17945         mpfr_f_f1.
17946         (func_calc_desc): Add mpfr_f_f1 union field.
17947         (ARGS1): New macro.
17948         (ARGS2): Likewise.
17949         (ARGS3): Likewise.
17950         (ARGS4): Likewise.
17951         (RET1): Likewise.
17952         (RET2): Likewise.
17953         (CALC): Likewise.
17954         (FUNC): Likewise.
17955         (FUNC_mpfr_f_f): Use new macros FUNC, ARGS1, RET1 and CALC.
17956         (test_functions): Add lgamma.
17957         (calc_generic_results): Handle mpfr_f_f1.
17958         * sysdeps/i386/fpu/libm-test-ulps: Update.
17959         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
17960
17961 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17962
17963         * sysdeps/powerpc/powerpc64/power7/add_n.S: New file: optimized
17964         __mpn_add_n for PowerPC64/POWER7.
17965         * sysdeps/powerpc/powerpc64/power7/sub_n.S: New file: optimized
17966         __mpn_sub_n for PowerPC64/POWER7.
17967
17968         * sysdeps/powerpc/powerpc64/addmul_1.S: New file: optimized
17969         __mpn_addmul_1 for PowerPC64.
17970         * sysdeps/powerpc/powerpc64/submul_1.S: New file: optimized
17971         __mpn_submul_1 for PowerPC64.
17972         * sysdeps/powerpc/powerpc64/lshift.S: New file: optimized __mpn_lshift
17973         for PowerPC64.
17974         * sysdeps/powerpc/powerpc64/mul_1.S: New file: optimized __mpn_mul_1
17975         for PowerPC64.
17976
17977 2013-12-06  Fernando J. V. da Silva  <fernandojvdasilva@gmail.com>
17978
17979         [BZ #15089]
17980         * malloc/malloc.c: Exit systrim() if pad is bigger than heap top size.
17981
17982 2013-12-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
17983
17984         * NEWS: Mention ppc32/power4+ STT_GNU_IFUNC support.
17985
17986         * sysdeps/powerpc/powerpc32/power5+/fpu/multiarch/Implies: New file:
17987         add multiarch folders.
17988         * sysdeps/powerpc/powerpc32/power5+/multiarch/Implies: Likewise.
17989         * sysdeps/powerpc/powerpc32/power5/fpu/multiarch/Implies: Likewise.
17990         * sysdeps/powerpc/powerpc32/power5/multiarch/Implies: Likewise.
17991         * sysdeps/powerpc/powerpc32/power6/fpu/multiarch/Implies: Likewise.
17992         * sysdeps/powerpc/powerpc32/power6/multiarch/Implies: Likewise.
17993         * sysdeps/powerpc/powerpc32/power6x/fpu/multiarch/Implies: Likewise.
17994         * sysdeps/powerpc/powerpc32/power6x/multiarch/Implies: Likewise.
17995         * sysdeps/powerpc/powerpc32/power7/fpu/multiarch/Implies: Likewise.
17996         * sysdeps/powerpc/powerpc32/power7/multiarch/Implies: Likewise.
17997         * sysdeps/powerpc/powerpc32/power8/fpu/multiarch/Implies: Likewise.
17998         * sysdeps/powerpc/powerpc32/power8/multiarch/Implies: Likewise.
17999         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/Implies: Remove.
18000         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: Remove.
18001         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: Remove.
18002         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: Remove.
18003         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: Remove.
18004         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Remove.
18005
18006         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
18007         __ieee754_hypot and __ieee754_hypotf multiarch implementations.
18008         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-power7.c:
18009         New file.
18010         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot-ppc32.c:
18011         New file.
18012         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypot.c: New file:
18013         multiarch __ieee754_hypot for PowerPC32.
18014         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-power7.c:
18015         New file.
18016         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf-ppc32.c:
18017         New file.
18018         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/e_hypotf.c: New file:
18019         multiarch __ieee754_hypotf for PowerPC32.
18020
18021         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Define
18022         long_double_symbol only if __logbl is defined.
18023         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Moved to ...
18024         * sysdeps/powerpc/power7/fpu/s_logb.c: ... here.
18025         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: Move to ...
18026         * sysdeps/powerpc/power7/fpu/s_logbf.c: ... here.
18027         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: Move to ...
18028         * sysdeps/powerpc/power7/fpu/s_logbl.c: ... here.
18029         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: Adjust to use new
18030         path for implementation.
18031         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: Likewise.
18032         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: Likewise.
18033         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add logbf,
18034         logb, and logbl multiarch implementations for PowerPC32.
18035         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-power7.c: New
18036         file.
18037         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb-ppc32.c: New
18038         file.
18039         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logb.c: New file:
18040         multiarch logb for PowerPC32.
18041         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-power7.c: New
18042         file.
18043         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf-ppc32.c: New
18044         file.
18045         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbf.c: New file:
18046         multiarch logbf for PowerPC32.
18047         * sysdeps/powerpc/power4/fpu/multiarch/s_logbl-power7.c: New file.
18048         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl-ppc32.c: New
18049         file.
18050         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_logbl.c: New file:
18051         multiarch logbl implementation for PowerPC32.
18052
18053         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add modf
18054         and modff multiarch implementations.
18055         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-power5+.c:
18056         New file.
18057         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf-ppc32.c:
18058         New file.
18059         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modf.c: New file:
18060         multiarch modf for PowerPC32.
18061         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-power5+.c:
18062         New file.
18063         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff-ppc32.c:
18064         New file.
18065         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_modff.c: New file:
18066         multiarch modff for PowerPC32.
18067
18068         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lrint
18069         and lrintf multiarch implementations.
18070         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-power6x.S:
18071         New file.
18072         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint-ppc32.S:
18073         New file.
18074         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrint.c: New file:
18075         multiarch lrint for PowerPC32.
18076         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lrintf.c: New
18077         file: multiarch lrintf for PowerPC32.
18078
18079         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add lround
18080         and lroundf multiarch implementations.
18081         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power5+.S:
18082         New file.
18083         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-power6.S:
18084         New file.
18085         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround-ppc32.S:
18086         New file.
18087         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lround.c: New file:
18088         multiarch lround for PowerPC32.
18089         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_lroundf.c: New
18090         file: multiarch lroundf for PowerPC32.
18091
18092         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add
18093         copysign and copysignf multiarch implementations.
18094         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-power6.S:
18095         New file.
18096         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign-ppc32.S:
18097         New file.
18098         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysign.c: New
18099         file: multiarch copysign for PowerPC32.
18100         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_copysignf.c: New
18101         file: multiarch copysignf for PowerPC32.
18102
18103         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add trunc
18104         and truncf multiarch implementations.
18105         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-power5+.S:
18106         New file.
18107         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc-ppc32.S: New
18108         file.
18109         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_trunc.c: New file:
18110         multiarch trunc for PowerPC32.
18111         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-power5+.S:
18112         New file.
18113         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf-ppc32.S:
18114         New file.
18115         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_truncf.c: New file:
18116         multiarch truncf for PowerPC32.
18117
18118         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add round
18119         and roundf multiarch implementations.
18120         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-power5+.S:
18121         New file.
18122         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round-ppc32.S: New
18123         file.
18124         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_round.c: New file:
18125         multiarch round for PowerPC32.
18126         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-power5+.S:
18127         New file.
18128         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf-ppc32.S:
18129         New file.
18130         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_roundf.c: New file:
18131         multiarch roundf for PowerPC32.
18132
18133         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add floor
18134         and floorf multiarch implementations.
18135         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-power5+.S:
18136         New file.
18137         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor-ppc32.S: New
18138         file.
18139         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floor.c: New file:
18140         multiarch floor for PowerPC32.
18141         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-power5+.S:
18142         New file.
18143         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf-ppc32.S:
18144         New file.
18145         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_floorf.c: New file:
18146         multiarch floorf for PowerPC32.
18147
18148         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add ceil
18149         and ceilf multiarch implementations.
18150         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-power5+.S:
18151         New file.
18152         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil-ppc32.S: New
18153         file.
18154         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceil.c: New file:
18155         multiarch ceil for PowerPC32.
18156         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-power5+.S:
18157         New file.
18158         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf-ppc32.S: New
18159         file.
18160         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_ceilf.c: New file:
18161         multiarch ceilf for PowerPC32.
18162
18163         * sysdeps/ieee754/dbl-64/s_finite.c (__finite): Redefine it if FINITE
18164         is defined.
18165         * sysdeps/ieee754/flt-32/s_finitef.c (__finitef): Redefine it if
18166         FINITEF is defined.
18167         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add finite
18168         and finitef multiarch implementations.
18169         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-power7.S:
18170         New file.
18171         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite-ppc32.c: New
18172         file.
18173         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finite.c: New file:
18174         multiarch finite for PowerPC32.
18175         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef-ppc32.c:
18176         New file.
18177         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_finitef.c: New
18178         file: multiarch finitef for PowerPC32.
18179
18180         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isinf
18181         and isinff multiarch implementations.
18182         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-power7.S: New
18183         file.
18184         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf-ppc32.c: New
18185         file.
18186         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinf.c: New file:
18187         multiarch isinf for PowerPC32.
18188         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff-ppc32.c:
18189         New file.
18190         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isinff.c: New file:
18191         multiarch isinff for PowerPC32.
18192
18193         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S (__isnan): Only implement
18194         alias when __isnan is defined.
18195         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add isnan
18196         and isnanf multiarch implementations.
18197         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power5.S: New
18198         file.
18199         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power6.S: New
18200         file.
18201         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-power7.S: New
18202         file.
18203         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan-ppc32.S: New
18204         file.
18205         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnan.c: New file:
18206         multiarch isnan for PowerPC32.
18207         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power6.S:
18208         New file.
18209         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf-power7.S:
18210         New file.
18211         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_isnanf.c: New file:
18212         multiarch isnanf for PowerPC32.
18213
18214         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add sqrt
18215         and sqrtf multiarch implementations.
18216         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-power5.S: New
18217         file.
18218         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt-ppc32.S: New
18219         file.
18220         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrt.c: New file:
18221         multiarch sqrt for PowerPC32.
18222         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-power5.S: New
18223         file.
18224         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf-ppc32.S: New
18225         file.
18226         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/w_sqrtf.c: New file:
18227         multiarch sqrtf for PowerPC32.
18228
18229         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: Add llround
18230         and llroundf multiarch implementations.
18231         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power5+.S:
18232         New file.
18233         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-power6.S:
18234         New file.
18235         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround-ppc32.S:
18236         New file.
18237         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llround.c: New
18238         file: multiarch llround for PowerPC32.
18239         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llroundf.c: New
18240         file: multiarch llroundf for PowerPC32.
18241
18242         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/Makefile: New file:
18243         multiarch PowerPC32 fpu implementations.
18244         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-power6.S:
18245         New file.
18246         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint-ppc32.S:
18247         New file.
18248         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrint.c: New file:
18249         multiarch llrint for PowerPC32.
18250         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-power6.S:
18251         New file.
18252         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf-ppc32.S:
18253         New file.
18254         * sysdeps/powerpc/powerpc32/power4/fpu/multiarch/s_llrintf.c: New
18255         file.
18256
18257         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/Implies: Remove.
18258
18259         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power6.c: New
18260         file.
18261         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-power7.c: New
18262         file.
18263         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy-ppc32.c: New
18264         file.
18265         * sysdeps/powerpc/powerpc32/power4/multiarch/wordcopy.c: New file:
18266         multiarch wordcopy for PPC32.
18267         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
18268         wordcopy objects.
18269         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18270         (__libc_ifunc_impl_list): Likewise.
18271         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Move ...
18272         * sysdeps/powerpc/power4/wordcopy.c: ... to here.
18273         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Move ...
18274         * sysdeps/powerpc/power6/wordcopy.c: ... to here.
18275         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Remove uneeded file.
18276         * sysdeps/powerpc/powerpc64/power4/wordcopy.c: Likewise.
18277
18278         * wcsmbs/wcscpy.c (wcscpy): Using macro to redefine symbol name
18279         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power6.c: New
18280         file.
18281         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-power7.c: New
18282         file.
18283         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy-ppc32.c: New
18284         file.
18285         * sysdeps/powerpc/powerpc32/power4/multiarch/wcscpy.c: New file:
18286         multiarch wcscpy for PPC32.
18287         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcscpy
18288         multiarch objects.
18289         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18290         (__libc_ifunc_impl_list): Likewise.
18291         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
18292         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
18293         * sysdeps/powerpc/powerpc64/power6/wcscpy.c: Adjust to use
18294         sysdeps/powerpc/power6/wcscpy.c.
18295
18296         * wcsmbs/wcsrchr.c (wcsrchr): Using macro to redefine symbol name
18297         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power6.c: New
18298         file.
18299         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-power7.c: New
18300         file.
18301         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr-ppc32.c: New
18302         file.
18303         * sysdeps/powerpc/powerpc32/power4/multiarch/wcsrchr.c: New file:
18304         multiarch wcsrchr for PPC32.
18305         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
18306         multiarch objects.
18307         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18308         (__libc_ifunc_impl_list): Likewise.
18309         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c: Move ...
18310         * sysdeps/powerpc/power6/wcsrchr.c: ... to here.
18311         * sysdeps/powerpc/powerpc64/power6/wcsrchr.c: Adjust to use
18312         sysdeps/powerpc/power6/wcsrchr.c.
18313
18314         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power6.c: New
18315         file.
18316         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-power7.c: New
18317         file.
18318         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr-ppc32.c: New file.
18319         * sysdeps/powerpc/powerpc32/power4/multiarch/wcschr.c: New file:
18320         multiarch wcschr for PPc32.
18321         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added wcschr
18322         multiarch objects.
18323         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18324         (__libc_ifunc_impl_list): Likewise.
18325         * sysdeps/powerpc/powerpc32/power6/wcschr.c: Move ...
18326         * sysdeps/powerpc/power6/wcschr.c: ... to here.
18327         * sysdeps/powerpc/powerpc64/power6/wcschr.c: Adjust to use
18328         sysdeps/powerpc/power6/wcschr.c.
18329
18330         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strchr.S: New file.
18331         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-power7.S: New
18332         file.
18333         * sysdeps/powerpc/powerpc32/power4/multiarch/strchr-ppc32.S: New file.
18334         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/strchr.c: New
18335         file: multiarch strchr for PPC32.
18336         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchr
18337         multiarch objects.
18338         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18339         (__libc_ifunc_impl_list): Likewise.
18340
18341         * string/strchrnul.c (__strchrnul): Using macro to redefine symbol
18342         name.
18343         * sysdeps/powerpc/powerpc32/power4//multiarch/strchrnul-power7.S: New
18344         file.
18345         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul-ppc32.c: New
18346         file.
18347         * sysdeps/powerpc/powerpc32/power4/multiarch/strchrnul.c: New file:
18348         multiarch strchrnul for PPC32.
18349         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strchrnul
18350         multiarch objects.
18351         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18352         (__libc_ifunc_impl_list): Likewise.
18353
18354         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase-power7.c: New
18355         file.
18356         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase.c: New file:
18357         multiarch strncasecmp for PPC32.
18358         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l-power7.c: New
18359         file.
18360         * sysdeps/powerpc/powerpc32/power4/multiarch/strncase_l.c: New file:
18361         multiarch strncasecmp_l for PPC32.
18362         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added
18363         strncasecmp multiarch objects.
18364         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18365         (__libc_ifunc_impl_list): Likewise.
18366
18367         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp-power7.S: New
18368         file.
18369         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp.c: New file:
18370         multiarch strncasecmp for PPC32.
18371         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l-power7.S:
18372         New file.
18373         * sysdeps/powerpc/powerpc32/power4/multiarch/strcasecmp_l.c: New file:
18374         multiarch strcasecmp_l for PPC32.
18375         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strcasecmp
18376         multiarch objects.
18377         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18378         (__libc_ifunc_impl_list): Likewise.
18379
18380         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-power7.S: New
18381         file.
18382         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp-ppc32.S: New
18383         file.
18384         * sysdeps/powerpc/powerpc32/power4/multiarch/strncmp.c: New file:
18385         multiarch strncmp for PPC32.
18386         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strncmp
18387         multiarch objects.
18388         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18389         (__libc_ifunc_impl_list): Likewise.
18390
18391         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-strnlen.c: New file.
18392         * sysdeps/powerpc/powerpc32//power4/multiarch/strnlen-power7.S: New
18393         file.
18394         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen-ppc32.c: New file.
18395         * sysdeps/powerpc/powerpc32/power4/multiarch/strnlen.c: New file.
18396         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strnlen
18397         multiarch objects.
18398         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18399         (__libc_ifunc_impl_list): Likewise.
18400
18401         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-power7.S: New
18402         file.
18403         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen-ppc32.S: New
18404         file.
18405         * sysdeps/powerpc/powerpc32/power4/multiarch/strlen.c: New file.
18406         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added strlen
18407         multiarch objects.
18408         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18409         (__libc_ifunc_impl_list): Likewise.
18410
18411         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-power7.S: New
18412         file.
18413         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr-ppc32.c: New
18414         file.
18415         * sysdeps/powerpc/powerpc32/power4/multiarch/rawmemchr.c: New file:
18416         multiarch rawmemchr for PPC32.
18417         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added rawmemchr
18418         multiarch objects.
18419         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18420         (__libc_ifunc_impl_list): Likewise.
18421
18422         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-power7.S: New
18423         file.
18424         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr-ppc32.c: New
18425         file.
18426         * sysdeps/powerpc/powerpc32/power4/multiarch/memrchr.c: New
18427         file: memrchr multiarch for PPC32.
18428         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Added memrchr
18429         multiarch objects.
18430         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list
18431         (__libc_ifunc_impl_list): Likewise.
18432
18433         * string/memchr.c (__memchr): Using macro to redefine symbol name.
18434         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-power7.S: New
18435         file.
18436         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr-ppc32.c: New File.
18437         * sysdeps/powerpc/powerpc32/power4/multiarch/memchr.c: New file:
18438         multiarch memchr for PPC32.
18439         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memchr
18440         multiarch objects.
18441         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18442         (__libc_ifunc_impl_list): Likewise.
18443
18444         * string/mempcpy.c (__mempcpy): Using macro to redefine symbol name.
18445         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-power7.S: New
18446         file.
18447         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy-ppc32.c: New
18448         file.
18449         * sysdeps/powerpc/powerpc32/power4/multiarch/mempcpy.c: New
18450         file: multiarch mempcpy for PPC32.
18451         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add mempcpy
18452         multiarch objects.
18453         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18454         (__libc_ifunc_impl_list): Likewise.
18455
18456         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power6.S: New file.
18457         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-power7.S: New file.
18458         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero-ppc32.S: New file.
18459         * sysdeps/powerpc/powerpc32/power4/multiarch/bzero.c: New file:
18460         multiarch bzero for PPC32.
18461         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power6.S: New
18462         file.
18463         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-power7.S: New
18464         file.
18465         * sysdeps/powerpc/powerpc32/power4/multiarch/memset-ppc32.S: New file.
18466         * sysdeps/powerpc/powerpc/powerpc32/power4/multiarch/memset.c: New
18467         file: multiarch memset for PPC32.
18468         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memset.S: New file.
18469         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add bzero and
18470         memset multiarch objects.
18471         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18472         (__libc_ifunc_impl_list): Likewise.
18473
18474         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-power7.S: New
18475         file.
18476         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp-ppc32.S: New file.
18477         * sysdeps/powerpc/powerpc32/power4/multiarch/memcmp.c: multiarch
18478         memcmp for PPC32.
18479         * sysdeps/powerpc/powerpc32/power4/multiarch/rtld-memcmp.S: New file.
18480         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcmp
18481         multiarch objects.
18482         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18483         (__libc_ifunc_impl_list): Likewise.
18484
18485         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-a2.S: New file.
18486         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-cell.S: New file.
18487         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power6.S: New
18488         file.
18489         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-power7.S: New
18490         file.
18491         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy-ppc32.S: New
18492         file.
18493         * sysdeps/powerpc/powerpc32/power4/multiarch/memcpy.c: New file:
18494         multiarch memcpy for PPC32.
18495         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: Add memcpy
18496         multiarch objects.
18497         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c
18498         (__libc_ifunc_impl_list): Likewise.
18499
18500         * sysdeps/powerpc/powerpc32/power4/multiarch/Makefile: New file to
18501         support multiarch for POWER/PPC32.
18502         * sysdeps/powerpc/powerpc32/power4/multiarch/ifunc-impl-list.c:
18503         Likewise.
18504         * sysdeps/powerpc/powerpc32/power4/multiarch/init-arch.h: Likewise.
18505         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: Remove
18506         Implies file to make multiarch folder appers before the fpu and
18507         default folder for power4 configuration.
18508
18509 2013-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
18510
18511         * scripts/bench.pl: Append volatile keyword to type.
18512
18513 2013-12-05  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
18514
18515         * sysdeps/sh/sotruss-lib.c: New file.
18516         * sysdeps/unix/sysv/linux/sh/nptl/c++-types.data: New file.
18517
18518 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18519
18520         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18521
18522 2013-12-05  Joseph Myers  <joseph@codesourcery.com>
18523
18524         [BZ #6810]
18525         * math/w_tgamma.c: Include <errno.h>.
18526         (__tgamma): Use __glibc_unlikely.  Set errno on underflow to 0.
18527         * math/w_tgammaf.c: Include <errno.h>.
18528         (__tgammaf): Use __glibc_unlikely.  Set errno on underflow to 0.
18529         * math/w_tgammal.c: Include <errno.h>.
18530         (__tgammal): Use __glibc_unlikely.  Set errno on underflow to 0.
18531         * math/auto-libm-test-in: Do not allow missing errno on tgamma
18532         underflow.  Add more tgamma tests.
18533         * math/auto-libm-test-out: Regenerated.
18534         * sysdeps/i386/fpu/libm-test-ulps: Update.
18535         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18536
18537         * math/auto-libm-test-in: Add tests of log, log10, log1p, log2,
18538         sin, sinh, tan, tanh, tgamma, y0 and y1.
18539         * math/auto-libm-test-out: Regenerated.
18540         * math/libm-test.inc (TEST_COND_x86_64): New macro.
18541         (TEST_COND_x86): Likewise.
18542         (M_E2l): Remove macro.
18543         (M_E3l): Likewise.
18544         (M_2_SQRT_PIl): Likewise.
18545         (M_SQRT_PIl): Likewise.
18546         (M_1_DIV_El): Likewise.
18547         (log_test_data): Use AUTO_TESTS_f_f.
18548         (log10_test_data): Likewise.
18549         (log1p_test_data): Likewise.
18550         (log2_test_data): Likewise.
18551         (sin_test_data): Likewise.
18552         (sin_tonearest_test_data): Likewise.
18553         (sin_towardzero_test_data): Likewise.
18554         (sin_downward_test_data): Likewise.
18555         (sin_upward_test_data): Likewise.
18556         (sinh_test_data): Likewise.
18557         (sinh_tonearest_test_data): Likewise.
18558         (sinh_towardzero_test_data): Likewise.
18559         (sinh_downward_test_data): Likewise.
18560         (sinh_upward_test_data): Likewise.
18561         (tan_test_data): Likewise.
18562         (tan_tonearest_test_data): Likewise.
18563         (tan_towardzero_test_data): Likewise.
18564         (tan_downward_test_data): Likewise.
18565         (tan_upward_test_data): Likewise.
18566         (tanh_test_data): Likewise.
18567         (tgamma_test_data): Likewise.
18568         (y0_test_data): Likewise.
18569         (y1_test_data): Likewise.
18570         * math/gen-auto-libm-tests.c (special_fill_pi_4): New function.
18571         (special_real_inputs): Add pi/4.
18572         * sysdeps/i386/fpu/libm-test-ulps: Update.
18573         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18574
18575 2013-12-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18576
18577         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Add "longjmp" and
18578         "longjmp_target" static probes.
18579         (__longjmp): Rename to __longjmp_symbol.
18580         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
18581         * sysdeps/powerpc/powerpc32/__longjmp.S: Define __longjmp_symbol based
18582         on which longjmp to generate.
18583         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
18584         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Add "setjmp" static
18585         probe.
18586         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18587         (__sigjmp_save): Rename to __sigjmp_save_symbol.
18588         * sysdeps/powerpc/powerpc32/setjmp-common.S: Likewise.
18589         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Define __sigsetjmp_symbol
18590         and __sigjmp_save_symbol based on which sigsetjmp to generated.
18591         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise
18592         * sysdeps/unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Define
18593         __longjmp_symbol based on which __longjmp to generate.
18594         * sysdeps/powerpc/powerpc64/setjmp-common.S: Add "setjmp" static
18595         probe.
18596         (setjmp): Rename to setjmp_symbol.
18597         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18598         (_setjmp): Rename to _setjmp_symbol.
18599         (__sigsetjmp): Rename to __sigsetjmp_symbol.
18600         * sysdeps/powerpc/powerpc64/setjmp.S: Define setjmp_symbol,
18601         _setjmp_symbol, __sigsetjmp_symbol, and __sigjmp_save_symbol based on
18602         which setjmp to generate.
18603         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Add "longjmp" and
18604         "longjmp_target" static probes.
18605
18606 2013-12-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
18607
18608         * benchtests/README: Add note about output arguments.
18609         * benchtests/bench-sincos.c: Remove file.
18610         * benchtests/sincos-inputs: New file.
18611         * scripts/bench.pl: Identify output arguments and define
18612         static variables for them.
18613
18614         * debug/stpncpy_chk.c (__stpncpy_chk): Remove unused variables.
18615
18616         [BZ #15941]
18617         * Makefile (INSTALL): Add install-plain.texi as the primary
18618         dependency.
18619         * manual/install-plain.texi: New file.
18620         * manual/install.texi: Include node directive only for
18621         non-plaintext output.
18622
18623 2013-12-04  Joseph Myers  <joseph@codesourcery.com>
18624
18625         * stdlib/longlong.h: Update from GCC.
18626
18627         [BZ #6807]
18628         [BZ #15901]
18629         * math/w_j0.c (y0): Raise FE_DIVBYZERO on zero argument.
18630         * math/w_j0f.c (y0f): Likewise.
18631         * math/w_j0l.c (__y0l): Likewise.
18632         * math/w_j1.c (y1): Likewise.
18633         * math/w_j1f.c (y1f): Likewise.
18634         * math/w_j1l.c (__y1l): Likewise
18635         * math/w_jn.c (yn): Likewise.
18636         * math/w_jnf.c (ynf): Likewise.
18637         * sysdeps/ieee754/k_standard.c (__kernel_standard): Use ERANGE for
18638         Bessel function pole errors in _POSIX_ mode.  Use NAN as return
18639         value for Bessel function domain errors outside _SVID_ mode.
18640         Adjust sign of return value for yn (negative integer, 0).
18641         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Use division
18642         by zero in return for negative x and set sign appropriately for
18643         negative n.
18644         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Likewise.
18645         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
18646         * math/libm-test.inc (y0_test_data): Add more tests and adjust
18647         expectations in error cases.
18648         (y1_test_data): Likewise.
18649         (yn_test_data): Likewise.
18650         * sysdeps/i386/fpu/libm-test-ulps: Update.
18651         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18652
18653 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18654
18655         * sysdeps/unix/sysv/linux/powerpc/Makefile (abi-variants): Rename
18656         "64" to "64-v1".  Add "64-v2".
18657         (abi-64-options): Rename to ...
18658         (abi-64-v1-options): ... this.   Redefine _CALL_ELF.
18659         (abi-64-condition): Rename to ...
18660         (abi-64-v1-condition): ... this.  Add _CALL_ELF check.,
18661         (abi-64-ld-soname): Rename to ...
18662         (abi-64-v1-ld-soname): ... this.
18663         (abi-64-v2-options): Define.
18664         (abi-64-v2-condition): Likewise.
18665         (abi-64-v2-ld-soname): Likewise.
18666         * sysdeps/unix/sysv/linux/powerpc/ldconfig.h
18667         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add "/lib64/ld64.so.2".
18668         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: Delete file.
18669         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure.ac: New file.
18670         * sysdeps/unix/sysv/linux/powerpc/powerpc64/configure: Generate.
18671
18672 2013-11-12  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18673             Alan Modra  <amodra@gmail.com>
18674
18675         * sysdeps/powerpc/bits/link.h (La_ppc64v2_regs, La_ppc64v2_retval):
18676         New versions for use with the ELFv2 ABI.
18677         (la_ppc64v2_gnu_pltenter, la_ppc64v2_gnu_pltexit): Add prototypes.
18678         * sysdeps/powerpc/lsdodefs.h (struct La_ppc64v2_regs): Add forward
18679         declaration.
18680         (struct La_ppc64v2_retval): Likewise.
18681         (ARCH_PLTENTER_MEMBERS): Add ppc64v2_gnu_pltenter.
18682         (ARCH_PLTEXIT_MEMBERS): Add ppc64v2_gnu_pltexit.
18683         * sysdeps/powerpc/powerpc64/dl-machine.h (ARCH_LA_PLTENTER): Define
18684         to ppc64v2_gnu_pltenter if _CALL_ELF == 2.
18685         (ARCH_LA_PLTEXIT): Define to ppc64v2_gnu_pltexit if _CALL_ELF == 2.
18686         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
18687         Do not save or restore CR.
18688         (FRAME_SIZE, VR_RTN): Provide updated values for _CALL_ELF == 2.
18689         (_dl_profile_resolve): Do no save or restore CR.  Support extended
18690         return values for ELFv2 ABI.  Fix location of FPR return registers.
18691         * sysdeps/powerpc/powerpc64/tst-audit.h (pltenter, pltexit): Provide
18692         updated values for _CALL_ELF == 2.
18693         (La_regs, La_retval, int_retval): Likewise.
18694
18695 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18696
18697         * sysdeps/powerpc/powerpc64/sysdep.h (FRAME_MIN_SIZE): Define.
18698         (FRAME_MIN_SIZE_PARM): Likewise.
18699         (FRAME_BACKCHAIN): Likewise.
18700         (FRAME_CR_SAVE): Likewise.
18701         (FRAME_LR_SAVE): Likewise.
18702         (FRAME_TOC_SAVE): Likewise.
18703         (FRAME_PARM_SAVE): Likewise.
18704         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE,
18705         FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE,
18706         FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
18707         (call_mcount_parm_offset): New macro.
18708         (SAVE_ARG, REST_ARG, CFI_SAVE_ARG): Use it.
18709         (PROF): Use symbolic stack frame offsets.
18710         (TAIL_CALL_SYSCALL_ERROR): Likewise.
18711         * sysdeps/powerpc/powerpc64/dl-trampoline.S (FRAME_SIZE, INT_PARMS):
18712         Redefine in terms of FRAME_MIN_SIZE.
18713         (_dl_runtime_resolve): Use symbolic stack frame offsets.
18714         (_dl_profile_resolve): Likewise.  Update comment.
18715         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Use
18716         symbols stack frame offsets.
18717         (__sigsetjmp): Likewise.
18718         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
18719         * sysdeps/powerpc/powerpc64/ppc-mcount.S (_mcount): Likewise.
18720         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Likewise.
18721         * sysdeps/powerpc/powerpc64/crtn.S (_init, _fini): Likewise.
18722
18723         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ucontext_i.sym
18724         (FRAME_BACKCHAIN): Remove.
18725         (FRAME_CR_SAVE): Likewise.
18726         (FRAME_LR_SAVE): Likewise.
18727         (FRAME_COMPILER_DW): Likewise.
18728         (FRAME_LINKER_DW): Likewise.
18729         (FRAME_TOC_SAVE): Likewise.
18730         (FRAME_PARM_SAVE): Likewise.
18731         (FRAME_PARM1_SAVE, FRAME_PARM2_SAVE, FRAME_PARM3_SAVE)
18732         (FRAME_PARM4_SAVE, FRAME_PARM5_SAVE, FRAME_PARM6_SAVE)
18733         (FRAME_PARM7_SAVE, FRAME_PARM8_SAVE, FRAME_PARM9_SAVE): Likewise.
18734         * sysdeps/unix/sysv/linux/powerpc/powerpc64/____longjmp_chk.S
18735         (CHECK_SP): Use symbolic stack frame offsets.
18736         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Use "red
18737         zone" instead of caller's parameter save area for temp storage.
18738         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
18739         Likewise.  Also, use symbolic stack frame offsets.
18740         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (FRAMESIZE,
18741         stackblock): Redefine for _CALL_ELF == 2 to save parameters into
18742         our own stack frame instead of the caller's.
18743         (__socket): Use symbolic stack frame offsets.
18744
18745 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18746             Alan Modra  <amodra@gmail.com>
18747
18748         * elf/elf.h (DT_PPC64_OPT, PPC64_OPT_TLS, PPC64_OPT_MULTI_TOC):
18749         Define.
18750         (STO_PPC64_LOCAL_BIT, STO_PPC64_LOCAL_MASK)
18751         (PPC64_LOCAL_ENTRY_OFFSET): Define.
18752         * sysdeps/powerpc/powerpc64/dl-machine.h (ppc64_local_entry_offset):
18753         New function.
18754         (elf_machine_fixup_plt): Call it.
18755         (elf_machine_plt_conflict): Likewise.  Add map, sym_map, and
18756         reloc arguments.
18757         (elf_machine_rela): Update call to elf_machine_plt_conflict.
18758         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
18759         (_dl_profile_resolve) [_CALL_ELF == 2]: Restore caller's TOC into
18760         r2 before calling target.
18761
18762 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18763             Alan Modra  <amodra@gmail.com>
18764
18765         * sysdeps/powerpc/powerpc64/sysdep.h [_CALL_ELF == 2]
18766         (PPC64_LOAD_FUNCPTR, DOT_LABEL, BODY_LABEL, ENTRY_2, END_2): New
18767         versions of macros to support ELFv2 ABI.
18768         (LOCALENTRY): New macro.
18769         (ENTRY, EALIGN): Use it.
18770         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use LOCALENTRY.
18771         * sysdeps/powerpc/powerpc64/setjmp-common.S (__GI__setjmp): Do not
18772         fall through into ENTRY entry point.
18773         * libc/sysdeps/powerpc/powerpc64/dl-machine.h (Elf64_FuncDesc):
18774         Only define if _CALL_ELF != 2.
18775
18776         (elf_machine_matches_host): Verify ABI version matches.
18777         (RTLD_START): Use LOCALENTRY.
18778         (elf_machine_type_class): Use SHN_UNDEF PLT handling for ELFv2 ABI.
18779         (PLT_INITIAL_ENTRY_WORDS): New version for _CALL_ELF != 2.
18780         (PLT_ENTRY_WORDS): New macro.
18781         (GLINK_INITIAL_ENTRY_WORDS, GLINK_ENTRY_WORDS): Likewise.
18782         (elf_machine_runtime_setup): Support ELFv2 ABI.
18783         (elf_machine_fixup_plt): Likewise.
18784         (elf_machine_plt_conflict): Likewise.
18785         (resolve_ifunc): Likewise.
18786         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_irela): Likewise.
18787         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
18788         Likewise.
18789         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
18790         (DL_ADDR_SYM_MATCH): Only define if _CALL_ELF != 2.
18791         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
18792         (makecontext): Support ELFv2 ABI.
18793         * elf/elf.h (EF_PPC64_ABI): Define.
18794
18795 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18796
18797         * sysdeps/powerpc/powerpc64/sysdep.h
18798         (PPC64_LOAD_FUNCPTR) [ASSEMBLER]: New assembler macro.
18799         (ENTRY_1) [ASSEMBLER]: Do not switch to .text section here ...
18800         (ENTRY) [ASSEMBLER]: ... but instead here ...
18801         (EALIGN) [ASSEMBLER]: ... and here.
18802         (PPC64_LOAD_FUNCPTR) [!ASSEMBLER]: New macro.
18803         (ENTRY_1) [!ASSEMBLER]: New macro; set up .opd entry.
18804         (ENTRY_2) [!ASSEMBLER]: Use it.
18805         * sysdeps/powerpc/powerpc64/dl-machine.h (RTLD_START): Update for
18806         ENTRY_2 changes.  Use PPC64_LOAD_FUNCPTR.
18807         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve)
18808         (_dl_profile_resolve): Use PPC64_LOAD_FUNCPTR.
18809         * sysdeps/powerpc/powerpc64/crti.S (_init, _fini): Use ENTRY_2.
18810         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (clone):
18811         Use PPC64_LOAD_FUNCPTR.
18812
18813         * sysdeps/powerpc/tls.h (tcbhead_t): Add __private_ss field.
18814
18815 2013-12-04  Alan Modra  <amodra@gmail.com>
18816
18817         * elf/elf.h (R_PPC64_TLSGD, R_PPC64_TLSLD, R_PPC64_TOCSAVE): Define.
18818         (R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA): Likewise.
18819         (R_PPC64_TPREL16_HIGH, R_PPC64_TPREL16_HIGHA): Likewise.
18820         (R_PPC64_DTPREL16_HIGH, R_PPC64_DTPREL16_HIGHA): Likewise.
18821
18822         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Add
18823         overflow checking for R_PPC64_ADDR16_HI, R_PPC64_ADDR16_HA,
18824         R_PPC64_TPREL16_HI, and R_PPC64_TPREL16_HA.
18825         Support new R_PPC64_ADDR16_HIGH, R_PPC64_ADDR16_HIGHA,
18826         R_PPC64_TPREL16_HIGH, and R_PPC64_TPREL16_HIGHA relocations.
18827         Fix overflow checking for R_PPC64_ADDR30 and R_PPC64_ADDR32.
18828
18829 2013-12-04  Ulrich Weigand  <Ulrich.Weigand@de.ibm.com>
18830
18831         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
18832         (__makecontext): Fix incorrect CFI when backtracing out of
18833         context created via makecontext.
18834         * sysdeps/unix/sysv/linux/powerpc/powerpc64/secontext.S
18835         (__setcontext): Fix incorrect CFI during switch to new context.
18836         (__novec_setcontext): Likewise.
18837
18838 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
18839
18840         [BZ #4772]
18841         * time/strptime_l.c (__strptime_internal): Allow modifiers
18842         in strptime.
18843         * time/tst-strptime.c (day_tests): Add testcase.
18844
18845 2013-12-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
18846
18847         * scripts/bench.pl: Skip over blank lines.
18848
18849 2013-12-04  Paul Eggert  <eggert@cs.ucla.edu>
18850
18851         [BZ #926]
18852         * manual/time.texi (Calendar Time): Clarify what timezone functions
18853         use.
18854
18855 2013-12-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18856
18857         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18858
18859 2013-12-04  Ondřej Bílka  <neleai@seznam.cz>
18860
18861         * debug/memcpy_chk.c (__memcpy_chk): Use call instead of custom
18862         implementation.
18863         * debug/memmove_chk.c (MEMMOVE_CHK): Likewise.
18864         * debug/mempcpy_chk.c (__mempcpy_chk): Likewise.
18865         * debug/memset_chk.c (__memset_chk): Likewise.
18866         * debug/stpncpy_chk.c (__stpncpy_chk): Likewise.
18867         * debug/strncpy_chk.c: Likewise.
18868
18869 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
18870
18871         [BZ #15268]
18872         [BZ #15425]
18873         * sysdeps/ieee754/dbl-64/e_exp.c: Include <float.h>.
18874         (__ieee754_exp): For possibly underflowing results, check size of
18875         result and force underflow exception if required.
18876         * math/auto-libm-test-in: Add more tests of exp.
18877         * math/auto-libm-test-out: Regenerated.
18878         * sysdeps/i386/fpu/libm-test-ulps: Update.
18879         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18880
18881         [BZ #16283]
18882         * math/w_exp2.c (__exp2): Handle a zero result as underflow.
18883         * math/w_exp2f.c (__exp2f): Likewise.
18884         * math/w_exp2l.c (__exp2l): Likewise.
18885         * math/auto-libm-test-in: Do not allow missing errno on exp2
18886         underflow.
18887         * math/auto-libm-test-out: Regenerated.
18888
18889 2013-12-03  Ondřej Bílka  <neleai@seznam.cz>
18890
18891         [BZ #16274]
18892         * sysdeps/unix/sysv/linux/shm_open.c (shm_open): Correctly
18893         handle filename validation.
18894         * rt/tst-shm.c (do_test): Do not skip a test when shm_open fails.
18895         (do_open): Delete.
18896
18897 2013-12-03  Joseph Myers  <joseph@codesourcery.com>
18898
18899         [BZ #6786]
18900         * sysdeps/ieee754/dbl-64/s_erf.c: Include <errno.h> and <float.h>.
18901         (__erfc): Set errno to ERANGE when returning 0 or tiny * tiny.
18902         * sysdeps/ieee754/flt-32/s_erff.c: Include <errno.h> and
18903         <float.h>.
18904         (__erfcf): Set errno to ERANGE when returning 0 or tiny * tiny.
18905         * sysdeps/ieee754/ldbl-128/s_erfl.c: Include <errno.h>.
18906         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18907         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Include <errno.h>.
18908         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18909         * sysdeps/ieee754/ldbl-96/s_erfl.c: Include <errno.h>.
18910         (__erfcl): Set errno to ERANGE when returning 0 or tiny * tiny.
18911         * math/auto-libm-test-in: Don't allow missing errno from erfc.
18912         Add more erfc tests.
18913         * math/auto-libm-test-out: Regenerated.
18914         * sysdeps/i386/fpu/libm-test-ulps: Update.
18915         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18916
18917         * math/auto-libm-test-in: Add tests of erf, erfc, exp, exp10,
18918         exp2, expm1, j0 and j1.
18919         * math/auto-libm-test-out: Regenerated.
18920         * math/libm-test.inc (erf_test_data): Use AUTO_TESTS_f_f.
18921         (erfc_test_data): Likewise.
18922         (exp_test_data): Likewise.
18923         (exp_tonearest_test_data): Likewise.
18924         (exp_towardzero_test_data): Likewise.
18925         (exp_downward_test_data): Likewise.
18926         (exp_upward_test_data): Likewise.
18927         (exp10_test_data): Likewise.
18928         (exp2_test_data): Likewise.
18929         (expm1_test_data): Likewise.
18930         (j0_test_data): Likewise.
18931         (j1_test_data): Likewise.
18932         * math/gen-auto-libm-tests.c: Mention "xfail-rounding" in comment.
18933         (input_flag_type): Add flag_xfail_rounding.
18934         (input_flags): Add xfail-rounding.
18935         (adjust_real): Assert mpfr_number_p not mpfr_regular_p.
18936         (output_for_one_input_case): Handle flag_xfail_rounding.
18937         * sysdeps/i386/fpu/libm-test-ulps: Update.
18938         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
18939
18940 2013-12-03  Aurelien Jarno  <aurelien@aurel32.net>
18941
18942         [BZ #16289]
18943         * locale/loadarchive.c (_nl_load_locale_from_archive): Avoid
18944         division by 0.
18945
18946 2013-12-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
18947
18948         [BZ #16195]
18949         * include/stap-probe.h [!USE_STAP_PROBE && !__ASSEMBLER__]
18950         (LIBC_PROBE): Change definition to call STAP_PROBE* macros.
18951         (STAP_PROBE0): New macro.
18952         (STAP_PROBE1): Likewise.
18953         (STAP_PROBE2): Likewise.
18954         (STAP_PROBE3): Likewise.
18955         (STAP_PROBE4): Likewise.
18956
18957 2013-12-02  Ondřej Bílka  <neleai@seznam.cz>
18958
18959         * manual/llio.texi (Memory-mapped I/O): Add shm_open and shm_close.
18960
18961 2013-12-02  Steve Ellcey  <sellcey@mips.com>
18962
18963         * benchtests/Makefile (bench): Add sqrt.
18964         (LDLIBS-bench-sqrt): New.
18965         * benchtests/sqrt-input: New.
18966
18967 2013-12-02  Pavel Simerda  <psimerda@redhat.com>
18968
18969         * sysdeps/posix/getaddrinfo.c (GAIH_OKIFUNSPEC): Remove macro.
18970         (GAIH_EAI): Likewise.
18971         (gaih_inet_serv): Don't use GAIH_OKIFUNSPEC.
18972         (gaih_inet): Likewise.
18973         (getaddrinfo): Don't use GAIH_EAI.
18974
18975         * sysdeps/posix/getaddrinfo.c (UNIX_PATH_MAX): Remove macro.
18976         (struct gaih): Remove definition.
18977
18978 2013-12-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
18979
18980         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname4_r):
18981         Use HERRNOP directly.
18982
18983 2013-12-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
18984
18985         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
18986
18987 2013-11-30  Joseph Myers  <joseph@codesourcery.com>
18988
18989         * math/gen-auto-libm-tests.c (test_functions): Add more
18990         single-argument functions.
18991         (special_fill_pi_2): New function.
18992         (special_fill_minus_pi_2): Likewise.
18993         (special_fill_pi_6): Likewise.
18994         (special_fill_minus_pi_6): Likewise.
18995         (special_fill_pi_3): Likewise.
18996         (special_fill_2pi_3): Likewise.
18997         (special_fill_e): Likewise.
18998         (special_fill_1_e): Likewise.
18999         (special_fill_e_minus_1): Likewise.
19000         (special_real_inputs): Add more special inputs.
19001         (output_for_one_input_case): Do not require ERANGE on underflow to
19002         zero if round-to-nearest result does not underflow to zero, unless
19003         exact results required.
19004         * math/auto-libm-test-in: Add tests of acos, acosh, asin, asinh,
19005         atan, atanh, cbrt, cos and cosh.
19006         * math/auto-libm-test-out: Regenerated.
19007         * math/libm-test.inc (acos_test_data): Use AUTO_TESTS_f_f.
19008         (acos_tonearest_test_data): Likewise.
19009         (acos_towardzero_test_data): Likewise.
19010         (acos_downward_test_data): Likewise.
19011         (acos_upward_test_data): Likewise.
19012         (acosh_test_data): Likewise.
19013         (asin_test_data): Likewise.
19014         (asin_tonearest_test_data): Likewise.
19015         (asin_towardzero_test_data): Likewise.
19016         (asin_upward_test_data): Likewise.
19017         (asinh_test_data): Likewise.
19018         (atan_test_data): Likewise.
19019         (atanh_test_data): Likewise.
19020         (cbrt_test_data): Likewise.
19021         (cos_test_data): Likewise.
19022         (cos_tonearest_test_data): Likewise.
19023         (cos_towardzero_test_data): Likewise.
19024         (cos_downward_test_data): Likewise.
19025         (cos_upward_test_data): Likewise.
19026         (cosh_test_data): Likewise.
19027         (cosh_tonearest_test_data): Likewise.
19028         (cosh_towardzero_test_data): Likewise.
19029         (cosh_downward_test_data): Likewise.
19030         (cosh_upward_test_data): Likewise.
19031         * sysdeps/i386/fpu/libm-test-ulps: Update.
19032         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
19033
19034 2013-11-29  Joseph Myers  <joseph@codesourcery.com>
19035
19036         [BZ #6787]
19037         * math/w_exp10.c (__exp10): Handle a zero result as underflow.
19038         * math/w_exp10f.c (__exp10f): Likewise.
19039         * math/w_exp10l.c (__exp10l): Likewise.
19040         * math/libm-test.inc (exp10_test_data): Add more tests and expect
19041         errno settings in existing tests.
19042
19043         [BZ #14032]
19044         * sysdeps/i386/fpu/e_sqrt.S (__ieee754_sqrt): Do fsqrt with
19045         precision control set to double precision.
19046         * sysdeps/i386/fpu/w_sqrt.c: New file.
19047         * math/auto-libm-test-in: Add more tests.
19048         * math/auto-libm-test-out: Update.
19049
19050         * math/libm-test.inc (sqrt_tonearest_test_data): New variable.
19051         (sqrt_test_tonearest): New function.
19052         (sqrt_towardzero_test_data): New variable.
19053         (sqrt_test_towardzero): New function.
19054         (sqrt_downward_test_data): New variable.
19055         (sqrt_test_downward): New function.
19056         (sqrt_upward_test_data): New variable.
19057         (sqrt_test_upward): New function.
19058         (main): Call the new functions.
19059
19060         * math/gen-auto-libm-tests.c: New file.
19061         * math/auto-libm-test-in: Likewise.
19062         * math/auto-libm-test-out: New generated file.
19063         * math/gen-libm-test.pl ($auto_input, %auto_tests): New global
19064         variables.
19065         (%beautify): Add generated representations of zero.
19066         (top level): Set $auto_input and call parse_auto_input.
19067         (beautify): Remove trailing "f" from hex float constants.
19068         (parse_args): Handle XFAIL_TEST.
19069         (convert_condition): New function.
19070         (or_value): Likewise.
19071         (or_cond_value): Likewise.
19072         (generate_testfile): Handle AUTO_TESTS_* lines.
19073         (parse_auto_input): New function.
19074         * math/libm-test.inc (XFAIL_TEST): New macro.
19075         (ERRNO_UNCHANGED): Update value.
19076         (ERRNO_EDOM): Likewise.
19077         (ERRNO_ERANGE): Likewise.
19078         (IGNORE_RESULT): Likewise.
19079         (TEST_COND_flt_32): New macro.
19080         (TEST_COND_dbl_64): Likewise.
19081         (TEST_COND_ldbl_96_intel): Likewise.
19082         (TEST_COND_ldbl_96_m68k): Likewise.
19083         (TEST_COND_ldbl_128): Likewise.
19084         (TEST_COND_ldbl_128ibm): Likewise.
19085         (TEST_COND_long32): Likewise.
19086         (TEST_COND_long64): Likewise.
19087         (TEST_COND_before_rounding): Likewise.
19088         (TEST_COND_after_rounding): Likewise.
19089         (enable_test): Handle XFAIL_TEST flag.
19090         (sqrt_test_data): Use AUTO_TESTS_f_f for tests of finite inputs
19091         with finite results.
19092         * math/Makefile ($(objpfx)libm-test.stmp): Depend on
19093         auto-libm-test-out.
19094
19095 2013-11-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
19096             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
19097
19098         [BZ #16214]
19099         * sysdeps/s390/dl-tls.h (__TLS_GET_ADDR): Invoke
19100         __tls_get_addr_internal instead of __tls_get_offset in order to
19101         avoid GOT pointer dependency.  Make rtld export
19102         __tls_get_addr_internal@@GLIBC_PRIVATE while still hiding
19103         __tls_get_addr since we are a __tls_get_offset platform.
19104         * sysdeps/s390/s390-64/tls-macros.h (TLS_IE PIC): Don't rely on
19105         GOT pointer being set up before.
19106         * sysdeps/s390/s390-32/tls-macros.h (TLS_IE PIC): Likewise.
19107
19108 2013-11-28  Joseph Myers  <joseph@codesourcery.com>
19109
19110         * manual/math.texi (Errors in Math Functions): Document accuracy
19111         goals.
19112
19113         [BZ #15004]
19114         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Remove file.
19115         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: Likewise.
19116         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
19117         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
19118         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
19119         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
19120         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
19121         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
19122         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
19123         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
19124         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
19125         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
19126         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
19127         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
19128         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
19129         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
19130
19131         * sysdeps/powerpc/nofpu/atomic-feclearexcept.c: New file.
19132         * sysdeps/powerpc/nofpu/atomic-feholdexcept.c: Likewise.
19133         * sysdeps/powerpc/nofpu/atomic-feupdateenv.c: Likewise.
19134         * sysdeps/powerpc/nofpu/flt-rounds.c: Likewise.
19135         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feclearexcept.c:
19136         Likewise.
19137         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feholdexcept.c:
19138         Likewise.
19139         * sysdeps/powerpc/powerpc32/e500/nofpu/atomic-feupdateenv.c:
19140         Likewise.
19141         * sysdeps/powerpc/powerpc32/e500/nofpu/flt-rounds.c: Likewise.
19142         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = soft-fp]
19143         (sysdep_routines): Add atomic-feholdexcept, atomic-feclearexcept,
19144         atomic-feupdateenv and flt-rounds.
19145         * sysdeps/powerpc/nofpu/Versions (libc): Add
19146         __atomic_feholdexcept, __atomic_feclearexcept,
19147         __atomic_feupdateenv and __flt_rounds to GLIBC_2.19.
19148         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h
19149         (__feraiseexcept_soft): Declare and use libc_hidden_proto here.
19150         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c
19151         (__feraiseexcept_soft): Don't declare and use libc_hidden_proto
19152         here.
19153         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/libc.abilist:
19154         Update.
19155
19156         * manual/arith.texi (FP Exceptions): Document that exceptions may
19157         not be raised when matherr is used.
19158         (Math Error Reporting): Document overflow in directed rounding
19159         modes.  Document that errno may not be set when finite values are
19160         returned on overflow.  Document intent to set errno on underflow
19161         only for underflow to zero.
19162
19163         [BZ #16271]
19164         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Set
19165         round-to-nearest then adjust result for other rounding modes.
19166         * include/fenv.h (fegetround): Use libm_hidden_proto.
19167         * math/fegetround.c (fegetround): Use libm_hidden_def.
19168         * sysdeps/i386/fpu/fegetround.c (fegetround): Likewise.
19169         * sysdeps/powerpc/fpu/fegetround.c (fegetround): Likewise.
19170         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
19171         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c (fegetround):
19172         Likewise.
19173         * sysdeps/s390/fpu/fegetround.c (fegetround): Likewise.
19174         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
19175         * sysdeps/sparc/fpu/fegetround.c (fegetround): Likewise.
19176         * sysdeps/x86_64/fpu/fegetround.c (fegetround): Likewise.
19177
19178 2013-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
19179
19180         [BZ #16077]
19181         * nss/Versions (libnss_files): Add
19182         _nss_files_gethostbyname3_r.
19183         * nss/nss_files/files-hosts.c (_nss_files_gethostbyname3_r):
19184         New function.
19185         (HOST_DB_LOOKUP): Remove macro.
19186         (_nss_files_gethostbyname_r): Implement function without the
19187         HOST_DB_LOOKUP macro.
19188         (_nss_files_gethostbyname2_r): Likewise.
19189
19190 2013-11-28  Ondřej Bílka  <neleai@seznam.cz>
19191
19192         * malloc/malloc.c (__libc_calloc): Make memset a tail call.
19193
19194 2013-11-26  Uros Bizjak  <ubizjak@gmail.com>
19195
19196         * soft-fp/op-4.h (_FP_FRAC_ASSEMBLE_4): Check rsize against
19197         _FP_W_TYPE_SIZE to avoid "left shift count >= width of type"
19198         warning.
19199
19200 2013-11-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19201
19202         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Use
19203         __fe_nomask_env_priv instead of __fe_nomask_env to avoid a PLT call.
19204         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Likewise.
19205         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Likewise.
19206         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Rename to
19207         __fe_nomask_env_priv and attribute_hidden.
19208         * sysdeps/powerpc/fpu/fenv_private.h (libc_fesetenv_ppc): Likewise.
19209         (libc_feupdateenv_test_ppc): Likewise.
19210         (libc_feresetround_ppc): Likewise.
19211         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19212         (__fe_nomask_env): Rename to __fe_nomask_env_priv and adjust
19213         compat_symbol macro.
19214         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19215         (__fe_nomask_env): Likewise.
19216         * sysdeps/powerpc/fpu/fe_nomask.c (__fe_nomask_env): Likewise.
19217
19218 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19219
19220         * string/Makefile: Remove ifunc tests.
19221         * string/test-string.h: Define TEST_IFUNC.
19222         * string/test-bcopy-ifunc.c: Remove.
19223         * string/test-bzero-ifunc.c: Likewise.
19224         * string/test-memccpy-ifunc.c: Likewise.
19225         * string/test-memchr-ifunc.c: Likewise.
19226         * string/test-memcmp-ifunc.c: Likewise.
19227         * string/test-memcpy-ifunc.c: Likewise.
19228         * string/test-memmem-ifunc.c: Likewise.
19229         * string/test-memmove-ifunc.c: Likewise.
19230         * string/test-mempcpy-ifunc.c: Likewise.
19231         * string/test-memrchr-ifunc.c: Likewise.
19232         * string/test-memset-ifunc.c: Likewise.
19233         * string/test-rawmemchr-ifunc.c: Likewise.
19234         * string/test-stpcpy-ifunc.c: Likewise.
19235         * string/test-stpncpy-ifunc.c: Likewise.
19236         * string/test-strcasecmp-ifunc.c: Likewise.
19237         * string/test-strcasestr-ifunc.c: Likewise.
19238         * string/test-strcat-ifunc.c: Likewise.
19239         * string/test-strchr-ifunc.c: Likewise.
19240         * string/test-strchrnul-ifunc.c: Likewise.
19241         * string/test-strcmp-ifunc.c: Likewise.
19242         * string/test-strcpy-ifunc.c: Likewise.
19243         * string/test-strcspn-ifunc.c: Likewise.
19244         * string/test-strlen-ifunc.c: Likewise.
19245         * string/test-strncasecmp-ifunc.c: Likewise.
19246         * string/test-strncat-ifunc.c: Likewise.
19247         * string/test-strncmp-ifunc.c: Likewise.
19248         * string/test-strncpy-ifunc.c: Likewise.
19249         * string/test-strnlen-ifunc.c: Likewise.
19250         * string/test-strpbrk-ifunc.c: Likewise.
19251         * string/test-strrchr-ifunc.c: Likewise.
19252         * string/test-strspn-ifunc.c: Likewise.
19253         * string/test-strstr-ifunc.c: Likewise.
19254
19255 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19256
19257         * benchtests/Makefile: Remove ifunc tests.
19258         * benchtests/bench-string.h: Define TEST_IFUNC.
19259         * benchtests/bench-bcopy-ifunc.c: Remove.
19260         * benchtests/bench-bzero-ifunc.c: Likewise.
19261         * benchtests/bench-memccpy-ifunc.c: Likewise.
19262         * benchtests/bench-memchr-ifunc.c: Likewise.
19263         * benchtests/bench-memcmp-ifunc.c: Likewise.
19264         * benchtests/bench-memcpy-ifunc.c: Likewise.
19265         * benchtests/bench-memmem-ifunc.c: Likewise.
19266         * benchtests/bench-memmove-ifunc.c: Likewise.
19267         * benchtests/bench-mempcpy-ifunc.c: Likewise.
19268         * benchtests/bench-memrchr-ifunc.c: Likewise.
19269         * benchtests/bench-memset-ifunc.c: Likewise.
19270         * benchtests/bench-rawmemchr-ifunc.c: Likewise.
19271         * benchtests/bench-stpcpy_chk-ifunc.c: Likewise.
19272         * benchtests/bench-stpcpy-ifunc.c: Likewise.
19273         * benchtests/bench-stpncpy-ifunc.c: Likewise.
19274         * benchtests/bench-strcasecmp-ifunc.c: Likewise.
19275         * benchtests/bench-strcasestr-ifunc.c: Likewise.
19276         * benchtests/bench-strcat-ifunc.c: Likewise.
19277         * benchtests/bench-strchr-ifunc.c: Likewise.
19278         * benchtests/bench-strchrnul-ifunc.c: Likewise.
19279         * benchtests/bench-strcmp-ifunc.c: Likewise.
19280         * benchtests/bench-strcpy_chk-ifunc.c: Likewise.
19281         * benchtests/bench-strcpy-ifunc.c: Likewise.
19282         * benchtests/bench-strcspn-ifunc.c: Likewise.
19283         * benchtests/bench-strlen-ifunc.c: Likewise.
19284         * benchtests/bench-strncasecmp-ifunc.c: Likewise.
19285         * benchtests/bench-strncat-ifunc.c: Likewise.
19286         * benchtests/bench-strncmp-ifunc.c: Likewise.
19287         * benchtests/bench-strncpy-ifunc.c: Likewise.
19288         * benchtests/bench-strnlen-ifunc.c: Likewise.
19289         * benchtests/bench-strpbrk-ifunc.c: Likewise.
19290         * benchtests/bench-strrchr-ifunc.c: Likewise.
19291         * benchtests/bench-strsep-ifunc.c: Likewise.
19292         * benchtests/bench-strspn-ifunc.c: Likewise.
19293         * benchtests/bench-strstr-ifunc.c: Likewise.
19294
19295 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19296
19297         * sysdeps/x86_64/dl-tlsdesc.S (_dl_tlsdesc_resolve_hold): Fix typo.
19298
19299 2013-11-26  Ondřej Bílka  <neleai@seznam.cz>
19300
19301         * resolv/netdb.h: Use __glibc_reserved instead __unused.
19302         * rt/aio.h: Likewise.
19303         * sysdeps/gnu/bits/utmp.h: Likewise.
19304         * sysdeps/gnu/bits/utmpx.h: Likewise.
19305         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
19306         * sysdeps/unix/sysv/linux/bits/ipc.h: Likewise.
19307         * sysdeps/unix/sysv/linux/bits/msq.h: Likewise.
19308         * sysdeps/unix/sysv/linux/bits/sem.h: Likewise.
19309         * sysdeps/unix/sysv/linux/bits/shm.h: Likewise.
19310         * sysdeps/unix/sysv/linux/bits/stat.h: Likewise.
19311         * sysdeps/unix/sysv/linux/kernel_stat.h: Likewise.
19312         * sysdeps/unix/sysv/linux/ntp_gettimex.c: Likewise.
19313         * sysdeps/unix/sysv/linux/powerpc/bits/ipc.h: Likewise.
19314         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h: Likewise.
19315         * sysdeps/unix/sysv/linux/powerpc/bits/sem.h: Likewise.
19316         * sysdeps/unix/sysv/linux/powerpc/bits/shm.h: Likewise.
19317         * sysdeps/unix/sysv/linux/powerpc/bits/stat.h: Likewise.
19318         * sysdeps/unix/sysv/linux/powerpc/powerpc32/kernel_stat.h: Likewise.
19319         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
19320         * sysdeps/unix/sysv/linux/s390/bits/ipc.h: Likewise.
19321         * sysdeps/unix/sysv/linux/s390/bits/msq.h: Likewise.
19322         * sysdeps/unix/sysv/linux/s390/bits/sem.h: Likewise.
19323         * sysdeps/unix/sysv/linux/s390/bits/shm.h: Likewise.
19324         * sysdeps/unix/sysv/linux/s390/bits/stat.h: Likewise.
19325         * sysdeps/unix/sysv/linux/s390/bits/utmp.h: Likewise.
19326         * sysdeps/unix/sysv/linux/s390/bits/utmpx.h: Likewise.
19327         * sysdeps/unix/sysv/linux/s390/s390-32/utmp32.h: Likewise.
19328         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
19329         * sysdeps/unix/sysv/linux/sh/bits/shm.h: Likewise.
19330         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
19331         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h: Likewise.
19332         * sysdeps/unix/sysv/linux/sparc/bits/msq.h: Likewise.
19333         * sysdeps/unix/sysv/linux/sparc/bits/sem.h: Likewise.
19334         * sysdeps/unix/sysv/linux/sparc/bits/shm.h: Likewise.
19335         * sysdeps/unix/sysv/linux/sparc/bits/stat.h: Likewise.
19336         * sysdeps/unix/sysv/linux/sparc/sparc32/kernel_stat.h: Likewise.
19337         * sysdeps/unix/sysv/linux/sparc/sparc64/kernel_stat.h: Likewise.
19338         * sysdeps/unix/sysv/linux/sparc/sparc64/xstatconv.c: Likewise.
19339         * sysdeps/unix/sysv/linux/sparc/sys/procfs.h: Likewise.
19340         * sysdeps/unix/sysv/linux/sys/timex.h: Likewise.
19341         * sysdeps/unix/sysv/linux/x86/bits/msq.h: Likewise.
19342         * sysdeps/unix/sysv/linux/x86/bits/sem.h: Likewise.
19343         * sysdeps/unix/sysv/linux/x86/bits/shm.h: Likewise.
19344         * sysdeps/unix/sysv/linux/x86/bits/stat.h: Likewise.
19345         * sysdeps/unix/sysv/linux/xstatconv.c: Likewise.
19346         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
19347
19348 2013-11-25  Carlos O'Donell  <carlos@redhat.com>
19349
19350         [BZ #16245]
19351         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes):
19352         Rename PTRAVE_EVENT_SECCOMP to PTRACE_EVENT_SECCOMP.
19353
19354 2013-11-25  Joseph Myers  <joseph@codesourcery.com>
19355
19356         * sysdeps/powerpc/nofpu/fenv_libc.h (__fegetround): New macro.
19357         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h (__fegetround):
19358         Likewise.
19359
19360 2013-11-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19361
19362         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Use
19363         SET_RESTORE_ROUND instead of feholdexcept/fesetround/fesetenv.
19364         * sysdeps/powerpc/fpu/fenv_libc.h (__fegetround): Remove define.
19365         (__fesetround): Remove define.
19366         * sysdeps/powerpc/fpu/fenv_private.h: New file: Inline floating point
19367         rounding and exceptions handling.
19368         * sysdeps/powerpc/fpu/math_private.h: Include fenv_private.h.
19369         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_mask_env): Define as hidden.
19370         (__fe_nomask_env): Likewise.
19371         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c (__llrintl): Use
19372         __fegetround instead of fegetround.
19373         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c (__lrintl): Likewise.
19374         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c (__rintl): Likewise.
19375
19376 2013-11-21  Roland McGrath  <roland@hack.frob.com>
19377
19378         * malloc/malloc.c: Move #include <sys/param.h> to the top; comment why
19379         it's there.
19380
19381         * sysdeps/generic/sys/swap.h (swapon): Add FLAGS argument to prototype.
19382
19383 2013-11-21  Meador Inge  <meadori@codesourcery.com>
19384
19385         [BZ #11157]
19386         * crypt/crypt.h (encrypt): Use __glibc_block instead of __block.
19387         (encrypt_r): Likewise.
19388         * malloc/obstack.h (obstack_free): Likewise.
19389         * posix/unistd.h (encrypt): Likewise.
19390
19391 2013-11-21  Guy Martin  <gmsoft@tuxicoman.be>
19392
19393         * sysdeps/generic/ldsodefs.h: Replace DL_DT_INIT_ADDRESS() and
19394         DL_DT_FINI_ADDRESS() macro with DL_CALL_DT_INIT() and
19395         DL_CALL_DT_FINI() that call the functions directly.
19396         * elf/dl-init.c: Use the new DL_CALL_DT_INIT() macro.
19397         * elf/dl-close.c: Use the new DL_CALL_DT_FINI() macro.
19398         * elf/dl-fini.c: Likewise.
19399
19400 2013-11-20  Ondřej Bílka  <neleai@seznam.cz>
19401
19402         * malloc/hooks.c (memalign_check): Add alignment rounding.
19403         * malloc/malloc.c (_mid_memalign): New function.
19404         (__libc_valloc, __libc_pvalloc, __libc_memalign, __posix_memalign):
19405         Implement by calling _mid_memalign.
19406         * manual/probes.texi (Memory Allocation Probes): Remove
19407         memory_valloc_retry and memory_pvalloc_retry.
19408
19409 2013-11-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
19410
19411         * locale/programs/locarchive.c (open_archive): Add const
19412         qualifier to ARCHIVEFNAME and copy default fname to
19413         DEFAULT_FNAME.
19414
19415         [BZ #15601]
19416         * libio/tst-widetext.input: Rename Oriya to Odia.
19417         * locale/iso-639.def: Likewise.
19418
19419         * manual/probes.texi (Mathematical Function Probes): Add
19420         documentation for sin, cos, asin and acos probes.
19421         * sysdeps/ieee754/dbl-64/sincos32.c: Include stap-probe.h.
19422         (__sin32): Add slowasin probe.
19423         (__cos32): Add slowacos probe.
19424         (__mpsin): Add slowsin probe.
19425         (__mpcos): Add slowcos probe.
19426
19427 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
19428
19429         [BZ #15483]
19430         * sysdeps/powerpc/nofpu/sim-full.c (__sim_exceptions): Change to
19431         thread-local __sim_exceptions_thread and global
19432         __sim_exceptions_global.
19433         (__sim_disabled_exceptions): Change to thread-local
19434         __sim_disabled_exceptions_thread and global
19435         __sim_disabled_exceptions_global.
19436         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
19437         and global __sim_round_mode_global.
19438         (__simulate_exceptions): Use thread-local floating-point state and
19439         set global state from it as needed.
19440         * sysdeps/powerpc/nofpu/Versions (GLIBC_PRIVATE): Add
19441         __sim_exceptions_thread, __sim_disabled_exceptions_thread and
19442         __sim_round_mode_thread.
19443         * sysdeps/powerpc/nofpu/soft-supp.h: Include <shlib-compat.h>.
19444         (__sim_exceptions): Change to thread-local __sim_exceptions_thread
19445         and global __sim_exceptions_global.
19446         (__sim_disabled_exceptions): Change to thread-local
19447         __sim_disabled_exceptions_thread and global
19448         __sim_disabled_exceptions_global.
19449         (__sim_round_mode): Change to thread-local __sim_round_mode_thread
19450         and global __sim_round_mode_global.
19451         [SIM_GLOBAL_COMPAT] (SIM_COMPAT_SYMBOL): New macro.
19452         (SIM_SET_GLOBAL): Likewise.
19453         * sysdeps/powerpc/soft-fp/sfp-machine.h
19454         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_ROUNDMODE): Use
19455         __sim_round_mode_thread.
19456         [!(__NO_FPRS__ && !_SOFT_FLOAT)] (FP_TRAPPING_EXCEPTIONS): Use
19457         __sim_disabled_exceptions_thread.
19458         (__sim_exceptions): Change to __sim_exceptions_thread.
19459         (__sim_disabled_exceptions): Change to
19460         __sim_disabled_exceptions_thread.
19461         (__sim_round_mode): Change to __sim_round_mode_thread.
19462         * sysdeps/powerpc/nofpu/fclrexcpt.c (__feclearexcept): Use
19463         thread-local floating-point state and set global state from it as
19464         needed.
19465         * sysdeps/powerpc/nofpu/fedisblxcpt.c (fedisableexcept): Likewise.
19466         * sysdeps/powerpc/nofpu/feenablxcpt.c: Include "soft-supp.h".
19467         (__sim_disabled_exceptions): Remove extern declaration.
19468         (feenableexcept): Use thread-local floating-point state and set
19469         global state from it as needed.
19470         * sysdeps/powerpc/nofpu/fegetenv.c (__sim_exceptions): Remove
19471         extern declaration.
19472         (__sim_disabled_exceptions): Likewise.
19473         (__sim_round_mode): Likewise.
19474         (__fegetenv): Use thread-local floating-point state.
19475         * sysdeps/powerpc/nofpu/fegetexcept.c (fegetexcept): Likewise.
19476         * sysdeps/powerpc/nofpu/fegetround.c (fegetround): Likewise.
19477         * sysdeps/powerpc/nofpu/fesetenv.c (__fesetenv): Use thread-local
19478         floating-point state and set global state from it as needed.
19479         * sysdeps/powerpc/nofpu/fesetround.c (fesetround): Likewise.
19480         * sysdeps/powerpc/nofpu/feupdateenv.c (__feupdateenv): Likewise.
19481         * sysdeps/powerpc/nofpu/fgetexcptflg.c (__fegetexceptflag):
19482         Likewise.
19483         * sysdeps/powerpc/nofpu/fraiseexcpt.c (__feraiseexcept): Likewise.
19484         * sysdeps/powerpc/nofpu/fsetexcptflg.c (__fesetexceptflag):
19485         Likewise.
19486         sysdeps/powerpc/nofpu/ftestexcept.c (fetestexcept): Likewise.
19487         * sysdeps/powerpc/nofpu/get-rounding-mode.h (get_rounding_mode):
19488         Use __sim_round_mode_thread.
19489         * math/test-fenv-tls.c: New file.
19490         * math/Makefile (tests): Add test-fenv-tls.
19491         ($(objpfx)test-fenv-tls): Depend on
19492         $(common-objpfx)nptl/libpthread.so.
19493
19494 2013-11-19  Andreas Schwab  <schwab@suse.de>
19495
19496         * locale/programs/locale.c (show_info): Decode wordarray elements.
19497         * locale/categories.def (LC_MONETARY): Add element for
19498         _NL_MONETARY_CRNCYSTR.
19499         * locale/C-monetary.c (conversion_rate): New variable.
19500         (_nl_C_LC_MONETARY): Use it for _NL_MONETARY_CONVERSION_RATE
19501         element.
19502
19503 2013-11-18  Chris Metcalf  <cmetcalf@tilera.com>
19504
19505         * math/test-fpucw-ieee.c [!defined _FPU_IEEE] (FPU_CONTROL):
19506         Omit definition of FPU_CONTROL and use default if no _FPU_IEEE.
19507
19508 2013-11-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
19509
19510         * elf/Makefile (tst-auxv): New test.
19511         * elf/tst-auxv.c: New
19512         * elf/rtld.c (dl_main): Adjust AT_EXECFN
19513
19514 2013-11-18  Joseph Myers  <joseph@codesourcery.com>
19515
19516         * include/libc-symbols.h (__hidden_proto): Add argument "thread".
19517         (hidden_proto): Caller changed.
19518         (hidden_tls_proto): New macro.
19519         (libc_hidden_tls_proto): Likewise.
19520         (rtld_hidden_tls_proto): Likewise.
19521         (libm_hidden_tls_proto): Likewise.
19522         (libresolv_hidden_tls_proto): Likewise.
19523         (librt_hidden_tls_proto): Likewise.
19524         (libdl_hidden_tls_proto): Likewise.
19525         (libnss_files_hidden_tls_proto): Likewise.
19526         (libnsl_hidden_tls_proto): Likewise.
19527         (libnss_nisplus_hidden_tls_proto): Likewise.
19528         (libutil_hidden_tls_proto): Likewise.
19529
19530 2013-11-18  Ondřej Bílka  <neleai@seznam.cz>
19531
19532         [BZ #10253]
19533         * elf/dl-load.c (fillin_rpath): Add linkmap parameter and expand path.
19534         (decompose_rpath): Defer expansion to fillin_rpath.
19535         (_dl_init_paths): Pass linkmap to fillin_rpath.
19536
19537 2013-11-18  Rajalakshmi Srinivasaraghavan  <raji@linux.vnet.ibm.com>
19538
19539         * benchtests/Makefile: Add strsep.
19540         * benchtests/bench-strsep.c: New file: strsep benchtest.
19541         * benchtests/bench-strsep-ifunc.c: New file: strsep benchtest.
19542
19543 2013-11-18  Andreas Schwab  <schwab@suse.de>
19544
19545         * locale/programs/locale.c (show_info) [case byte]: Check for
19546         '\377' instead of '\177'.
19547         * locale/C-monetary.c (not_available): Always use "\377".
19548         * stdlib/strfmon_l.c (__vstrfmon_l): Use -2 as marker for
19549         unspecified p_sign_posn and n_sign_posn.  Check for '\377' to
19550         detect unavailable sign_posn locale elements.
19551         * locale/localeconv.c (__localeconv): For grouping and
19552         mon_grouping handle "\177" and "\377" like no grouping.
19553         (INT_ELEM): New macro.  Use it to set all numeric members.
19554         * locale/programs/ld-monetary.c (monetary_read)
19555         <tok_mon_grouping>: Normalize single -1 to the empty string.
19556         * locale/programs/ld-numeric.c (numeric_read) <tok_grouping>:
19557         Likewise.
19558
19559 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
19560
19561         [BZ #16055]
19562         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Limit width
19563         when we match (nil).
19564         * stdio-common/tst-sscanf.c (struct test): Add testcase.
19565
19566 2013-11-16  Joseph Myers  <joseph@codesourcery.com>
19567
19568         * math/libm-test.inc (TEST_NAN_SIGN): New macro.
19569         (NO_TEST_INLINE): Update value.
19570         (ERRNO_UNCHANGED): Likewise.
19571         (ERRNO_EDOM): Likewise.
19572         (ERRNO_ERANGE): Likewise.
19573         (IGNORE_RESULT): Likewise.
19574         (check_float_internal): Check signs of NaN results if
19575         TEST_NAN_SIGN used.
19576         (check_complex): Pass TEST_NAN_SIGN flag through to second
19577         check_float_internal call.
19578         (copysign_test_data): Add tests with quiet NaNs as second
19579         argument.  Use TEST_NAN_SIGN.
19580         (fabs_test_data): Add test of negative quiet NaN argument.  Use
19581         TEST_NAN_SIGN.
19582         (signbit_test_data): Add tests of quiet NaN argument.
19583         * math/gen-libm-test.pl (parse_args): Handle TEST_NAN_SIGN.
19584
19585         * math/gen-libm-test.pl (show_exceptions): Take extra argument
19586         $ignore_result.
19587         (parse_args): Handle function results specified as IGNORE.
19588         * math/libm-test.inc (IGNORE_RESULT): New macro.
19589         (check_float_internal): Do not check numerical result if flag
19590         IGNORE_RESULT set.
19591         (check_complex): Pass through IGNORE_RESULT to second
19592         check_float_internal call.
19593         (check_int): Do not check numerical result if flag IGNORE_RESULT
19594         set.
19595         (check_long): Likewise.
19596         (check_bool): Likewise.
19597         (check_longlong): Likewise.
19598         (lrint_test_data): Add tests of infinite and NaN arguments.
19599         (lrint_tonearest_test_data): Likewise.
19600         (lrint_towardzero_test_data): Likewise.
19601         (lrint_downward_test_data): Likewise.
19602         (lrint_upward_test_data): Likewise.
19603         (llrint_test_data): Likewise.
19604         (llrint_tonearest_test_data): Likewise.
19605         (llrint_towardzero_test_data): Likewise.
19606         (llrint_downward_test_data): Likewise.
19607         (llrint_upward_test_data): Likewise.
19608         (lround_test_data): Likewise.
19609         (llround_test_data): Likewise.
19610
19611         * math/libm-test.inc (NO_TEST_INLINE): New macro.
19612         (ERRNO_UNCHANGED): Update value.
19613         (ERRNO_EDOM): Likewise.
19614         (ERRNO_ERANGE): Likewise.
19615         (NO_TEST_INLINE_FLOAT): New macro.
19616         (NO_TEST_INLINE_DOUBLE): Likewise.
19617         (enable_test): New function.
19618         (RUN_TEST_f_f): Check enable_test before running test.
19619         (RUN_TEST_2_f): Likewise.
19620         (RUN_TEST_fff_f): Likewise.
19621         (RUN_TEST_c_f): Likewise.
19622         (RUN_TEST_f_f1): Likewise.
19623         (RUN_TEST_fF_f1): Likewise.
19624         (RUN_TEST_fI_f1): Likewise.
19625         (RUN_TEST_ffI_f1): Likewise.
19626         (RUN_TEST_c_c): Likewise.
19627         (RUN_TEST_cc_c): Likewise.
19628         (RUN_TEST_f_i): Likewise.
19629         (RUN_TEST_f_i_tg): Likewise.
19630         (RUN_TEST_ff_i_tg): Likewise.
19631         (RUN_TEST_f_b): Likewise.
19632         (RUN_TEST_f_b_tg): Likewise.
19633         (RUN_TEST_f_l): Likewise.
19634         (RUN_TEST_f_L): Likewise.
19635         (RUN_TEST_fFF_11): Likewise.
19636         (asinh_test_data): Use NO_TEST_INLINE instead of [!TEST_INLINE]
19637         conditionals.
19638         (cosh_test_data): Likewise.
19639         (exp_test_data): Likewise.
19640         (expm1_test_data): Likewise.
19641         (hypot_test_data): Likewise.
19642         (pow_test_data): Likewise.
19643         (sinh_test_data): Likewise.
19644         (tanh_test_data): Likewise.
19645         * math/gen-libm-test.pl (parse_args): Allow NO_TEST_INLINE as
19646         flags argument.
19647
19648         * libm-test.inc (acos_test_data): Disallow inexact exceptions for
19649         tests with quiet NaN input and output.
19650         (acosh_test_data): Likewise.
19651         (asin_test_data): Likewise.
19652         (asinh_test_data): Likewise.
19653         (atan_test_data): Likewise.
19654         (atanh_test_data): Likewise.
19655         (atan2_test_data): Likewise.
19656         (cbrt_test_data): Likewise.
19657         (cos_test_data): Likewise.
19658         (cosh_test_data): Likewise.
19659         (erf_test_data): Likewise.
19660         (erfc_test_data): Likewise.
19661         (exp_test_data): Likewise.
19662         (exp10_test_data): Likewise.
19663         (exp2_test_data): Likewise.
19664         (expm1_test_data): Likewise.
19665         (hypot_test_data): Likewise.
19666         (j0_test_data): Likewise.
19667         (j1_test_data): Likewise.
19668         (jn_test_data): Likewise.
19669         (lgamma_test_data): Likewise.
19670         (log_test_data): Likewise.
19671         (log10_test_data): Likewise.
19672         (log1p_test_data): Likewise.
19673         (log2_test_data): Likewise.
19674         (pow_test_data): Likewise.
19675         (scalb_test_data): Likewise.
19676         (sin_test_data): Likewise.
19677         (sincos_test_data): Likewise.
19678         (sinh_test_data): Likewise.
19679         (tan_test_data): Likewise.
19680         (tanh_test_data): Likewise.
19681         (tgamma_test_data): Likewise.
19682         (y0_test_data): Likewise.
19683         (y1_test_data): Likewise.
19684         (yn_test_data): Likewise.
19685
19686         [BZ #16167]
19687         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Check for first
19688         argument being NaN and avoid computations with second argument in
19689         that case.
19690         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
19691         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.
19692         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
19693
19694 2013-11-15  Arun Kumar Pyasi <arun@chitwanix.com>
19695
19696         * locale/iso-639.def: Add Chitwani Tharu (the).
19697
19698 2013-11-14  Andreas Schwab  <schwab@suse.de>
19699
19700         * locale/C-address.c (_nl_C_LC_ADDRESS): Set country_num to zero
19701         word instead of empty string.
19702
19703 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19704
19705         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19706         (__fe_nomask_env): Fir compat symbol to be remove for GLIBC_2.19.
19707         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19708         (__fe_nomask_env): Likewise.
19709
19710 2013-11-13  Steve Ellcey  <sellcey@mips.com>
19711
19712         * benchtests/bench-timing.h: Include time.h.
19713
19714 2013-11-13  H.J. Lu  <hongjiu.lu@intel.com>
19715
19716         [BZ #15997]
19717         * sysdeps/unix/sysv/linux/configure.ac (arch_minimum_kernel): Set
19718         to 3.4.0 for x32.
19719         * sysdeps/unix/sysv/linux/configure: Regenerated.
19720
19721 2013-11-13  Joseph Myers  <joseph@codesourcery.com>
19722
19723         [BZ #16151]
19724         * stdlib/strtod_l.c (round_and_return): Do not consider
19725         retval[RETURN_LIBM_SIZE - 1] when determining more_bits for an
19726         exponent one less than half the least subnormal exponent.
19727         * stdlib/test-strtod-round-data: Add more tests.
19728         * stdlib/tst-strtod-round.c (tests): Regenerated.
19729
19730 2013-11-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19731
19732         [BZ #14143]
19733         * sysdeps/powerpc/bits/fenv.h (__fe_nomask_env): Remove declaration.
19734         (__fe_mask_env): Likewise.
19735         * sysdeps/powerpc/fpu/fenv_libc.h (__fe_nomask_env): Remove
19736         libm_hidden_proto and add function prototype.
19737         (__fe_mask_env): Add function prototype.
19738         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
19739         (__fe_nomask_env): Add compat symbol for GLIBC_2.1.
19740         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
19741         (__fe_mask_env): Remove compiler warnings regarding ununsed variables.
19742         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
19743         (__fe_nomask_env): Add compat symbol for GLIBC_2.3.
19744
19745 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
19746
19747         * elf/dl-lookup.c (_dl_lookup_symbol_x): If UNDEF_MAP is false
19748         set reference_name to "" to avoid passing NULL to DSO_FILENAME.
19749
19750 2013-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
19751
19752         * elf/tlsdeschtab.h (_dl_make_tlsdesc_dynamic): Handle failure
19753         of htab_find_slot().
19754
19755 2013-11-11  David S. Miller  <davem@davemloft.net>
19756
19757         [BZ #16150]
19758         * sysdeps/sparc/sparc64/multiarch/add_n.S: Resolve to the correct generic
19759         symbol in the non-vis3 case in static builds.
19760         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: Likewise.
19761         * sysdeps/sparc/sparc64/multiarch/mul_1.S: Likewise.
19762         * sysdeps/sparc/sparc64/multiarch/sub_n.S: Likewise.
19763         * sysdeps/sparc/sparc64/multiarch/submul_1.S: Likewise.
19764
19765 2013-11-11  Jan Kratochvil  <jan.kratochvil@redhat.com>
19766
19767         [BZ #387]
19768         * elf/dl-object.c (_dl_new_object): Initialize L_NAME from NEWNAME if
19769         it is empty.
19770
19771 2013-11-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19772
19773         * benchtests/Makefile: Add bench-strtod.
19774         * benchtests/bench-strtod.c: New file: strtod benchtest
19775
19776 2013-11-11  Andreas Schwab  <schwab@suse.de>
19777
19778         [BZ #16153]
19779         * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
19780         terminating NUL in key length.
19781
19782 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19783
19784         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
19785         Add artificial ODP entry for vDSO symbol for PPC64.
19786         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
19787         * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
19788
19789 2013-11-07  Ondřej Bílka  <neleai@seznam.cz>
19790
19791         [BZ #15374]
19792         * nss/getent.c (services_keys): Recognize services starting with digit.
19793
19794 2013-11-06  David S. Miller  <davem@davemloft.net>
19795
19796         [BZ #15985]
19797         * sysdeps/sparc/sparc32/fpu/s_fdim.S (__fdim): Do not use fnegd
19798         on pre-v9 cpus, use a fnegs+fmovs sequence instead.
19799
19800 2013-11-06  Will Newton  <will.newton@linaro.org>
19801
19802         * manual/memory.texi (Malloc Examples): Remove register
19803         keyword from examples.
19804
19805 2013-11-04  Chris Leonard  <cjl@sugarlabs.org>
19806
19807         * locale/iso-639.def: Correct Walaita (wal) and add Unami Delaware (unm).
19808
19809 2013-11-04  Joseph Myers  <joseph@codesourcery.com>
19810
19811         [BZ #6981]
19812         * include/stdc-predef.h [__GCC_IEC_559] (__STDC_IEC_559__): Define
19813         depending on [__GCC_IEC_559 > 0].
19814         [__GCC_IEC_559_COMPLEX] (__STDC_IEC_559_COMPLEX__): Define
19815         depending on [__GCC_IEC_559_COMPLEX > 0].
19816
19817 2013-11-03  Chris Leonard  <cjl@sugarlabs.org>
19818
19819         * locale/iso-639.def: Add Quechua, Southern (quz) and Silesian (szl)
19820         to iso-639.def.
19821
19822 2013-11-03  Ondřej Bílka  <neleai@seznam.cz>
19823
19824         * elf/rtld.c: Remove unused NONTLS_INIT_TP.
19825
19826 2013-11-01  Ondřej Bílka  <neleai@seznam.cz>
19827
19828         [BZ #16112]
19829         * malloc/malloc (malloc_info): Do not handle first bin as
19830         special case.
19831
19832 2013-11-01  Chris Leonard  <cjl@sugarlabs.org>
19833
19834         * locale/iso-639.def: Add Central Nahuatl (nhn).
19835
19836 2013-11-01  Bruno Haible  <bruno@clisp.org>
19837
19838         [BZ #7003]
19839         * manual/math.texi (BSD Random): Specify range upper bound as
19840         in POSIX.
19841
19842 2013-10-31  Chris Leonard  <cjl@sugarlabs.org>
19843
19844         * locale/iso-639.def: Add Meadow Mari (mhr).
19845
19846 2013-10-31  Ondřej Bílka  <neleai@seznam.cz>
19847
19848         [BZ #14752], [BZ #15763]
19849         * sysdeps/unix/sysv/linux/shm_open.c (shm_open, shm_unlink):
19850         Validate name.
19851         * rt/tst_shm.c: Add test for escaping directory.
19852
19853 2013-10-31  Andreas Schwab  <schwab@suse.de>
19854
19855         [BZ #15917]
19856         * stdio-common/vfscanf.c (_IO_vfwscanf): Handle leading '0' not
19857         followed by 'x' as part of digit sequence.
19858         * stdio-common/tst-sscanf.c (double_tests2): New tests.
19859
19860 2013-10-31  Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
19861
19862         [BZ #16037]
19863         * configure.ac: allow GNU Make 4.0 and greater.
19864         * configure: Regenerated.
19865
19866 2013-10-30  Will Newton  <will.newton@linaro.org>
19867
19868         [BZ #16038]
19869         * malloc/hooks.c (memalign_check): Limit alignment to the
19870         maximum representable power of two.
19871         * malloc/malloc.c (__libc_memalign): Likewise.
19872         * malloc/tst-memalign.c (do_test): Add test for very
19873         large alignment values.
19874         * malloc/tst-posix_memalign.c (do_test): Likewise.
19875
19876 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
19877
19878         [BZ #11087]
19879         * malloc/malloc.c (sysmalloc): Compute statistics atomically.
19880         (munmap_chunk): Likewise.
19881         (mremap_chunk): Likewise.
19882
19883 2013-10-30  Ondřej Bílka  <neleai@seznam.cz>
19884
19885         [BZ #15799]
19886         * stdlib/div.c (div): Remove obsolete code.
19887         * stdlib/ldiv.c (ldiv): Likewise.
19888         * stdlib/lldiv.c (lldiv): Likewise.
19889
19890 2013-10-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
19891
19892         [BZ #16071]
19893         * nss/nss_files/files-XXX.c (get_contents_ret): New
19894         enumerator.
19895         (get_contents): New function.
19896         (internal_getent): Use it.  Expand size of LINEBUFLEN.
19897
19898 2013-10-30  Mike Frysinger  <vapier@gentoo.org>
19899
19900         * configure.in: Moved to ...
19901         * configure.ac: ... here. Change reference to configure.in
19902         to configure.ac.
19903         * sysdeps/arm/preconfigure.ac: ... here.
19904         configure.in to configure.ac.
19905         * sysdeps/gnu/configure.in: Moved to ...
19906         * sysdeps/gnu/configure.ac: ... here.
19907         * sysdeps/i386/configure.in: Moved to ...
19908         * sysdeps/i386/configure.ac: ... here.
19909         * sysdeps/ieee754/ldbl-opt/configure.in: Moved to ...
19910         * sysdeps/ieee754/ldbl-opt/configure.ac: ... here.
19911         * sysdeps/mach/configure.in: Moved to ...
19912         * sysdeps/mach/configure.ac: ... here.
19913         * sysdeps/mach/hurd/configure.in: Moved to ...
19914         * sysdeps/mach/hurd/configure.ac: ... here.
19915         * sysdeps/powerpc/configure.in: Moved to ...
19916         * sysdeps/powerpc/configure.ac: ... here.
19917         * sysdeps/powerpc/powerpc32/configure.in: Moved to ...
19918         * sysdeps/powerpc/powerpc32/configure.ac: ... here.
19919         * sysdeps/powerpc/powerpc64/configure.in: Moved to ...
19920         * sysdeps/powerpc/powerpc64/configure.ac: ... here.
19921         * sysdeps/s390/s390-32/configure.in: Moved to ...
19922         * sysdeps/s390/s390-32/configure.ac: ... here.
19923         * sysdeps/s390/s390-64/configure.in: Moved to ...
19924         * sysdeps/s390/s390-64/configure.ac: ... here.
19925         * sysdeps/sh/configure.in: Moved to ...
19926         * sysdeps/sh/configure.ac: ... here.
19927         * sysdeps/sparc/configure.in: Moved to ...
19928         * sysdeps/sparc/configure.ac: ... here.
19929         * sysdeps/unix/sysv/linux/configure.in: Moved to ...
19930         * sysdeps/unix/sysv/linux/configure.ac: ... here.
19931         * sysdeps/unix/sysv/linux/powerpc/configure.in: Moved to ...
19932         * sysdeps/unix/sysv/linux/powerpc/configure.ac: ... here.
19933         * sysdeps/x86_64/configure.in: Moved to ...
19934         * sysdeps/x86_64/configure.ac: ... here.
19935         * sysdeps/x86_64/preconfigure.in: Moved to ...
19936         * sysdeps/x86_64/preconfigure.ac: ... here.
19937         * aclocal.m4: Change reference to configure.in to configure.ac.
19938         * config.h.in: Likewise.
19939         * manual/install.texi: Likewise.
19940         * manual/maint.texi: Likewise.
19941         * Makefile: Likewise.
19942         * malloc/Makefile: Likewise.
19943         * nscd/Makefile: Likewise.
19944         * Makeconfig: Change reference to configure.in and
19945         preconfigure.in to configure.ac and preconfigure.ac
19946         respectively.
19947         * INSTALL: Regenerated.
19948         * configure: Likewise.
19949         * sysdeps/gnu/configure: Likewise.
19950         * sysdeps/i386/configure: Likewise.
19951         * sysdeps/ieee754/ldbl-opt/configure: Likewise.
19952         * sysdeps/mach/configure: Likewise.
19953         * sysdeps/mach/hurd/configure: Likewise.
19954         * sysdeps/powerpc/configure: Likewise.
19955         * sysdeps/powerpc/powerpc32/configure: Likewise.
19956         * sysdeps/powerpc/powerpc64/configure: Likewise.
19957         * sysdeps/s390/s390-32/configure: Likewise.
19958         * sysdeps/s390/s390-64/configure: Likewise.
19959         * sysdeps/sh/configure: Likewise.
19960         * sysdeps/sparc/configure: Likewise.
19961         * sysdeps/unix/sysv/linux/configure: Likewise.
19962         * sysdeps/unix/sysv/linux/powerpc/configure: Likewise.
19963         * sysdeps/x86_64/configure: Likewise.
19964         * sysdeps/x86_64/preconfigure: Likewise.
19965
19966 2013-10-29  Andreas Schwab  <schwab@suse.de>
19967
19968         * stdio-common/Makefile (tst-swscanf-ENV): Define.
19969
19970 2013-10-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
19971
19972         * benchtests/pow-inputs: Add new inputs.
19973
19974         * benchtests/exp-inputs: Add new inputs.
19975
19976         * sysdeps/ieee754/dbl-64/sincos32.c (__sin32): Consolidate
19977         conditional check for return value.
19978         (__cos32): Likewise.
19979
19980 2013-10-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
19981
19982         * sysdeps/powerpc/powerpc64/strcpy.S (strcpy): Add word load/store
19983         to provide a boost for large inputs with word alignment.
19984         * sysdeps/powerpc/powerpc64/stpcpy.S (__stpcpy): Rewrite
19985         implementation based on optimized PPC64 strcpy.
19986         * sysdeps/powerpc/powerpc64/power7/strcpy.S: New file: optimized
19987         strcpy for PPC64/POWER7 based on both doubleword and word load/store.
19988         * sysdeps/powerpc/powerpc64/power7/stpcpy.S: New file: optimized
19989         stpcpy for PPC64/POWER7 based on PPC64/POWER7 strcpy.
19990
19991 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
19992
19993         [BZ #2801]
19994         * manual/socket.texi (Host Names): Fix gethostbyname_r example.
19995
19996 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
19997
19998         [BZ #14876]
19999         * time/strptime_l.c (__strptime_internal): 14876 Read timezone entry.
20000         * time/tst-strptime.c (day_tests): Add testcase.
20001
20002 2013-10-25   Ondřej Bílka  <neleai@seznam.cz>
20003
20004         [BZ #14029]
20005         * manual/pattern.texi: Acknowledge that fnmatch can fail.
20006
20007 2013-10-25  Fabrice Bauzac  <fbauzac@debian71.nce.amadeus.net>
20008
20009         [BZ #16074]
20010         * manual/llio.texi (Memory-mapped I/O): Indicate that mmap returns
20011         MAP_FAILED on error.
20012
20013 2013-10-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
20014
20015         [BZ #16072]
20016         * sysdeps/posix/getaddrinfo.c (gethosts): Allocate tmpbuf on
20017         heap for large requests.
20018
20019 2013-10-25  Aurelien Jarno  <aurelien@aurel32.net>
20020
20021         [BZ #9954]
20022         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): do not assign native
20023         result if the result has no associated interface.
20024         * sysdeps/posix/getaddrinfo.c (getaddrinfo): correctly detect
20025         interface for all 127.X.Y.Z addresses.
20026
20027 2013-10-24  Chris Leonard  <cjl@sugarlabs.org>
20028
20029         * locale/iso-639.def: Add Ligurian (lij)
20030
20031 2013-10-21  Ondřej Bílka  <neleai@seznam.cz>
20032
20033         [BZ #15825]
20034         * sunrpc/rpc_main.c: Document rpcgen -5.
20035
20036 2013-10-19  Michael Stahl  <mstahl@redhat.com>
20037
20038         * elf/rtld.c (do_preload): Print the reason why preloading failed.
20039
20040 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
20041
20042         [BZ #10278]
20043         * posix/glob.c: Match only directories when trailing slash is present.
20044         * posix/tst-gnuglob.c (my_opendir): Do not open files.
20045         (main): Add testcase.
20046
20047 2013-10-19  Ondřej Bílka  <neleai@seznam.cz>
20048
20049         [BZ #15670]
20050         * time/tzfile.c (__tzfile_read): Replace alloca with malloc.
20051
20052 2013-10-18  Carlos O'Donell  <carlos@redhat.com>
20053
20054         * manual/crypt.texi (Cryptographic Functions): Using SunRPC and
20055         AUTH_DES will prevent FIPS 140-2 compliance. Add vindex for
20056         AUTH_DES and cindex for FIPS 140-2.
20057         (DES Encryption): Add cindex FIPS 46-3.
20058
20059         * locale/locarchive.h (struct locarhandle): Add fname.
20060         * locale/programs/localedef.c (main): Pass ARGV[remaining]
20061         if an optional argument was specified to --list-archive,
20062         otherwise NULL.
20063         * locale/programs/locarchive.c (show_archive_content): Take new
20064         argument fname and pass it via ah.fname to open_archive.
20065         * locale/programs/localedef.h: Update decl.
20066         (open_archive): If AH->fname is non-null, open that file
20067         rather than the default file name, and don't ignore ENOENT.
20068         (create_archive): Set AH.fname to NULL.
20069         (delete_locales_from_archive): Likewise.
20070         (add_locales_to_archive): Likewise.
20071         * locale/programs/locfile.c (write_all_categories): Likewise.
20072
20073 2013-10-18  Joseph Myers  <joseph@codesourcery.com>
20074             Aldy Hernandez  <aldyh@redhat.com>
20075
20076         * sysdeps/powerpc/powerpc32/e500/nofpu/Makefile: New file.
20077         * sysdeps/powerpc/powerpc32/e500/nofpu/fclrexcpt.c: Likewise.
20078         * sysdeps/powerpc/powerpc32/e500/nofpu/fe_note_change.c: Likewise.
20079         * sysdeps/powerpc/powerpc32/e500/nofpu/fedisblxcpt.c: Likewise.
20080         * sysdeps/powerpc/powerpc32/e500/nofpu/feenablxcpt.c: Likewise.
20081         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetenv.c: Likewise.
20082         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetexcept.c: Likewise.
20083         * sysdeps/powerpc/powerpc32/e500/nofpu/fegetround.c: Likewise.
20084         * sysdeps/powerpc/powerpc32/e500/nofpu/feholdexcpt.c: Likewise.
20085         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_const.c: Likewise.
20086         * sysdeps/powerpc/powerpc32/e500/nofpu/fenv_libc.h: Likewise.
20087         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetenv.c: Likewise.
20088         * sysdeps/powerpc/powerpc32/e500/nofpu/fesetround.c: Likewise.
20089         * sysdeps/powerpc/powerpc32/e500/nofpu/feupdateenv.c: Likewise.
20090         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_prctl.c:
20091         Likewise.
20092         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_from_spe.c:
20093         Likewise.
20094         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_prctl.c:
20095         Likewise.
20096         * sysdeps/powerpc/powerpc32/e500/nofpu/fexcepts_to_spe.c:
20097         Likewise.
20098         * sysdeps/powerpc/powerpc32/e500/nofpu/fgetexcptflg.c: Likewise.
20099         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcept-soft.c:
20100         Likewise.
20101         * sysdeps/powerpc/powerpc32/e500/nofpu/fraiseexcpt.c: Likewise.
20102         * sysdeps/powerpc/powerpc32/e500/nofpu/fsetexcptflg.c: Likewise.
20103         * sysdeps/powerpc/powerpc32/e500/nofpu/ftestexcept.c: Likewise.
20104         * sysdeps/powerpc/powerpc32/e500/nofpu/get-rounding-mode.h:
20105         Likewise.
20106         * sysdeps/powerpc/powerpc32/e500/nofpu/s_fabsf.S: Likewise.
20107         * sysdeps/powerpc/powerpc32/e500/nofpu/spe-raise.c: Likewise.
20108         * sysdeps/powerpc/preconfigure: Likewise.
20109         * sysdeps/unix/sysv/linux/powerpc/powerpc32/e500/nofpu/Implies:
20110         Likewise.
20111         * sysdeps/powerpc/nofpu/soft-supp.h [__NO_FPRS__ && !_SOFT_FLOAT]:
20112         Replace contents of file by #include of <fenv_libc.h>.
20113         * sysdeps/powerpc/soft-fp/sfp-machine.h
20114         [__NO_FPRS__ && !_SOFT_FLOAT]: Include <fenv_libc.h>, <sysdep.h>
20115         and <sys/prctl.h>.
20116         [__NO_FPRS__ && !_SOFT_FLOAT] (__feraiseexcept_soft): Declare.
20117         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INEXACT): Define macro.
20118         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_INVALID): Likewise.
20119         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_DIVZERO): Likewise.
20120         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_UNDERFLOW): Likewise.
20121         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_EX_OVERFLOW): Likewise.
20122         [__NO_FPRS__ && !_SOFT_FLOAT] (_FP_DECL_EX): Likewise.
20123         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_ROUNDMODE): Likewise.
20124         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_INIT_EXCEPTIONS): Likewise.
20125         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_HANDLE_EXCEPTIONS): Likewise.
20126         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_ROUNDMODE): Likewise.
20127         [__NO_FPRS__ && !_SOFT_FLOAT] (FP_TRAPPING_EXCEPTIONS): Likewise.
20128         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu/nptl/localplt.data:
20129         Allow copysignl PLT reference to be missing.
20130
20131 2013-10-18  Richard Sandiford  <richard@codesourcery.com>
20132             Joseph Myers  <joseph@codesourcery.com
20133
20134         [BZ #15948]
20135         * locale/programs/ld-collate.c (new_element): Handle <U0000> as a
20136         single character.
20137         (add_to_tablewc): Assert sequence of wide characters is nonempty.
20138
20139 2013-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
20140
20141         * elf/tst-tls-dlinfo.c: Don't include tls.h.
20142         * elf/tst-tls1.c: Likewise.
20143         * elf/tst-tls10.h: Likewise.
20144         * elf/tst-tls14.c: Likewise.
20145         * elf/tst-tls2.c: Likewise.
20146         * elf/tst-tls3.c: Likewise.
20147         * elf/tst-tls4.c: Likewise.
20148         * elf/tst-tls5.c: Likewise.
20149         * elf/tst-tls6.c: Likewise.
20150         * elf/tst-tls7.c: Likewise.
20151         * elf/tst-tls8.c: Likewise.
20152         * elf/tst-tls9.c: Likewise.
20153         * elf/tst-tlsmod1.c: Likewise.
20154         * elf/tst-tlsmod13.c: Likewise.
20155         * elf/tst-tlsmod13a.c: Likewise.
20156         * elf/tst-tlsmod14a.c: Likewise.
20157         * elf/tst-tlsmod16a.c: Likewise.
20158         * elf/tst-tlsmod16b.c: Likewise.
20159         * elf/tst-tlsmod2.c: Likewise.
20160         * elf/tst-tlsmod3.c: Likewise.
20161         * elf/tst-tlsmod4.c: Likewise.
20162         * elf/tst-tlsmod5.c: Likewise.
20163         * elf/tst-tlsmod6.c: Likewise.
20164
20165 2013-10-18  Ondřej Bílka  <neleai@seznam.cz>
20166
20167         [BZ #12486]
20168         * malloc/malloc.c: remove checks for statistics.
20169
20170 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
20171
20172         [BZ #15277]
20173         * inet/inet_net.c (inet_network): Detect additional invalid strings.
20174         * inet/tst-network.c: Add testcase.
20175
20176 2013-10-17  Andreas Schwab  <schwab@suse.de>
20177
20178         [BZ #15218]
20179         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't use gethostbyaddr
20180         to determine canonical name.
20181
20182 2013-10-17  Ondřej Bílka  <neleai@seznam.cz>
20183
20184         * sysdeps/ieee754/dbl-64/dbl2mpn.c: Fix formatting.
20185         * sysdeps/ieee754/dbl-64/dla.h: Likewise.
20186         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
20187         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
20188         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
20189         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
20190         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
20191         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
20192         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
20193         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
20194         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
20195         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
20196         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
20197         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
20198         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
20199         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
20200         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
20201         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
20202         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
20203         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
20204         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
20205         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
20206         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
20207         * sysdeps/ieee754/dbl-64/MathLib.h: Likewise.
20208         * sysdeps/ieee754/dbl-64/mpa-arch.h: Likewise.
20209         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
20210         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
20211         * sysdeps/ieee754/dbl-64/mpn2dbl.c: Likewise.
20212         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
20213         * sysdeps/ieee754/dbl-64/mydefs.h: Likewise.
20214         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
20215         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
20216         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
20217         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
20218         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
20219         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
20220         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
20221         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
20222         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
20223         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
20224         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
20225         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
20226         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
20227         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
20228         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
20229         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
20230         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
20231         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
20232         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
20233         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
20234         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
20235         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
20236         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
20237         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
20238         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
20239         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
20240         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
20241         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
20242
20243 2013-10-17  Joseph Myers  <joseph@codesourcery.com>
20244
20245         [BZ #16041]
20246         * soft-fp/op-common.h (FP_EXTEND): When input is a signaling NaN,
20247         make result into a quiet NaN.
20248
20249 2013-10-16  Joseph Myers  <joseph@codesourcery.com>
20250
20251         * soft-fp/adddf3.c: Fix horizontal whitespace.
20252         * soft-fp/addsf3.c: Likewise.
20253         * soft-fp/addtf3.c: Likewise.
20254         * soft-fp/divdf3.c: Likewise.
20255         * soft-fp/divsf3.c: Likewise.
20256         * soft-fp/divtf3.c: Likewise.
20257         * soft-fp/double.h: Likewise.
20258         * soft-fp/eqdf2.c: Likewise.
20259         * soft-fp/eqsf2.c: Likewise.
20260         * soft-fp/eqtf2.c: Likewise.
20261         * soft-fp/extenddftf2.c: Likewise.
20262         * soft-fp/extended.h: Likewise.
20263         * soft-fp/extendsfdf2.c: Likewise.
20264         * soft-fp/extendsftf2.c: Likewise.
20265         * soft-fp/extendxftf2.c: Likewise.
20266         * soft-fp/fixdfdi.c: Likewise.
20267         * soft-fp/fixdfsi.c: Likewise.
20268         * soft-fp/fixdfti.c: Likewise.
20269         * soft-fp/fixsfdi.c: Likewise.
20270         * soft-fp/fixsfsi.c: Likewise.
20271         * soft-fp/fixsfti.c: Likewise.
20272         * soft-fp/fixtfdi.c: Likewise.
20273         * soft-fp/fixtfsi.c: Likewise.
20274         * soft-fp/fixtfti.c: Likewise.
20275         * soft-fp/fixunsdfdi.c: Likewise.
20276         * soft-fp/fixunsdfsi.c: Likewise.
20277         * soft-fp/fixunsdfti.c: Likewise.
20278         * soft-fp/fixunssfdi.c: Likewise.
20279         * soft-fp/fixunssfsi.c: Likewise.
20280         * soft-fp/fixunssfti.c: Likewise.
20281         * soft-fp/fixunstfdi.c: Likewise.
20282         * soft-fp/fixunstfsi.c: Likewise.
20283         * soft-fp/fixunstfti.c: Likewise.
20284         * soft-fp/floatdidf.c: Likewise.
20285         * soft-fp/floatdisf.c: Likewise.
20286         * soft-fp/floatditf.c: Likewise.
20287         * soft-fp/floatsidf.c: Likewise.
20288         * soft-fp/floatsisf.c: Likewise.
20289         * soft-fp/floatsitf.c: Likewise.
20290         * soft-fp/floattidf.c: Likewise.
20291         * soft-fp/floattisf.c: Likewise.
20292         * soft-fp/floattitf.c: Likewise.
20293         * soft-fp/floatundidf.c: Likewise.
20294         * soft-fp/floatundisf.c: Likewise.
20295         * soft-fp/floatunditf.c: Likewise.
20296         * soft-fp/floatunsidf.c: Likewise.
20297         * soft-fp/floatunsisf.c: Likewise.
20298         * soft-fp/floatunsitf.c: Likewise.
20299         * soft-fp/floatuntidf.c: Likewise.
20300         * soft-fp/floatuntisf.c: Likewise.
20301         * soft-fp/floatuntitf.c: Likewise.
20302         * soft-fp/fmadf4.c: Likewise.
20303         * soft-fp/fmasf4.c: Likewise.
20304         * soft-fp/fmatf4.c: Likewise.
20305         * soft-fp/gedf2.c: Likewise.
20306         * soft-fp/gesf2.c: Likewise.
20307         * soft-fp/getf2.c: Likewise.
20308         * soft-fp/ledf2.c: Likewise.
20309         * soft-fp/lesf2.c: Likewise.
20310         * soft-fp/letf2.c: Likewise.
20311         * soft-fp/muldf3.c: Likewise.
20312         * soft-fp/mulsf3.c: Likewise.
20313         * soft-fp/multf3.c: Likewise.
20314         * soft-fp/negdf2.c: Likewise.
20315         * soft-fp/negsf2.c: Likewise.
20316         * soft-fp/negtf2.c: Likewise.
20317         * soft-fp/op-1.h: Likewise.
20318         * soft-fp/op-2.h: Likewise.
20319         * soft-fp/op-4.h: Likewise.
20320         * soft-fp/op-8.h: Likewise.
20321         * soft-fp/op-common.h: Likewise.
20322         * soft-fp/quad.h: Likewise.
20323         * soft-fp/single.h: Likewise.
20324         * soft-fp/soft-fp.h: Likewise.
20325         * soft-fp/sqrtdf2.c: Likewise.
20326         * soft-fp/sqrtsf2.c: Likewise.
20327         * soft-fp/sqrttf2.c: Likewise.
20328         * soft-fp/subdf3.c: Likewise.
20329         * soft-fp/subsf3.c: Likewise.
20330         * soft-fp/subtf3.c: Likewise.
20331         * soft-fp/truncdfsf2.c: Likewise.
20332         * soft-fp/trunctfdf2.c: Likewise.
20333         * soft-fp/trunctfsf2.c: Likewise.
20334         * soft-fp/trunctfxf2.c: Likewise.
20335         * soft-fp/unorddf2.c: Likewise.
20336         * soft-fp/unordsf2.c: Likewise.
20337         * soft-fp/unordtf2.c: Likewise.
20338
20339 2013-10-15  Joseph Myers  <joseph@codesourcery.com>
20340
20341         * soft-fp/op-2.h (_FP_DIV_MEAT_2_gmp): Remove macro.
20342         * soft-fp/soft-fp.h (FP_UNSET_EXCEPTION): Likewise.
20343
20344 2013-10-15   Ondřej Bílka  <neleai@seznam.cz>
20345
20346         * elf/dl-libc.c: Clear initfini list after freeing.
20347
20348 2013-10-14  Joseph Myers  <joseph@codesourcery.com>
20349
20350         * soft-fp/adddf3.c: Fix vertical whitespace and indentation.
20351         * soft-fp/addsf3.c: Likewise.
20352         * soft-fp/addtf3.c: Likewise.
20353         * soft-fp/divdf3.c: Likewise.
20354         * soft-fp/divsf3.c: Likewise.
20355         * soft-fp/divtf3.c: Likewise.
20356         * soft-fp/double.h: Likewise.
20357         * soft-fp/eqdf2.c: Likewise.
20358         * soft-fp/eqsf2.c: Likewise.
20359         * soft-fp/eqtf2.c: Likewise.
20360         * soft-fp/extenddftf2.c: Likewise.
20361         * soft-fp/extended.h: Likewise.
20362         * soft-fp/extendsfdf2.c: Likewise.
20363         * soft-fp/extendsftf2.c: Likewise.
20364         * soft-fp/extendxftf2.c: Likewise.
20365         * soft-fp/fixdfdi.c: Likewise.
20366         * soft-fp/fixdfsi.c: Likewise.
20367         * soft-fp/fixdfti.c: Likewise.
20368         * soft-fp/fixsfdi.c: Likewise.
20369         * soft-fp/fixsfsi.c: Likewise.
20370         * soft-fp/fixsfti.c: Likewise.
20371         * soft-fp/fixtfdi.c: Likewise.
20372         * soft-fp/fixtfsi.c: Likewise.
20373         * soft-fp/fixtfti.c: Likewise.
20374         * soft-fp/fixunsdfdi.c: Likewise.
20375         * soft-fp/fixunsdfsi.c: Likewise.
20376         * soft-fp/fixunsdfti.c: Likewise.
20377         * soft-fp/fixunssfdi.c: Likewise.
20378         * soft-fp/fixunssfsi.c: Likewise.
20379         * soft-fp/fixunssfti.c: Likewise.
20380         * soft-fp/fixunstfdi.c: Likewise.
20381         * soft-fp/fixunstfsi.c: Likewise.
20382         * soft-fp/fixunstfti.c: Likewise.
20383         * soft-fp/floatdidf.c: Likewise.
20384         * soft-fp/floatdisf.c: Likewise.
20385         * soft-fp/floatditf.c: Likewise.
20386         * soft-fp/floatsidf.c: Likewise.
20387         * soft-fp/floatsisf.c: Likewise.
20388         * soft-fp/floatsitf.c: Likewise.
20389         * soft-fp/floattidf.c: Likewise.
20390         * soft-fp/floattisf.c: Likewise.
20391         * soft-fp/floattitf.c: Likewise.
20392         * soft-fp/floatundidf.c: Likewise.
20393         * soft-fp/floatundisf.c: Likewise.
20394         * soft-fp/floatunsidf.c: Likewise.
20395         * soft-fp/floatunsisf.c: Likewise.
20396         * soft-fp/floatuntidf.c: Likewise.
20397         * soft-fp/floatuntisf.c: Likewise.
20398         * soft-fp/floatuntitf.c: Likewise.
20399         * soft-fp/fmadf4.c: Likewise.
20400         * soft-fp/fmasf4.c: Likewise.
20401         * soft-fp/fmatf4.c: Likewise.
20402         * soft-fp/gedf2.c: Likewise.
20403         * soft-fp/gesf2.c: Likewise.
20404         * soft-fp/getf2.c: Likewise.
20405         * soft-fp/ledf2.c: Likewise.
20406         * soft-fp/lesf2.c: Likewise.
20407         * soft-fp/letf2.c: Likewise.
20408         * soft-fp/muldf3.c: Likewise.
20409         * soft-fp/mulsf3.c: Likewise.
20410         * soft-fp/multf3.c: Likewise.
20411         * soft-fp/negdf2.c: Likewise.
20412         * soft-fp/negsf2.c: Likewise.
20413         * soft-fp/negtf2.c: Likewise.
20414         * soft-fp/op-1.h: Likewise.
20415         * soft-fp/op-2.h: Likewise.
20416         * soft-fp/op-4.h: Likewise.
20417         * soft-fp/op-8.h: Likewise.
20418         * soft-fp/op-common.h: Likewise.
20419         * soft-fp/quad.h: Likewise.
20420         * soft-fp/single.h: Likewise.
20421         * soft-fp/soft-fp.h: Likewise.
20422         * soft-fp/sqrtdf2.c: Likewise.
20423         * soft-fp/sqrtsf2.c: Likewise.
20424         * soft-fp/sqrttf2.c: Likewise.
20425         * soft-fp/subdf3.c: Likewise.
20426         * soft-fp/subsf3.c: Likewise.
20427         * soft-fp/subtf3.c: Likewise.
20428         * soft-fp/truncdfsf2.c: Likewise.
20429         * soft-fp/trunctfdf2.c: Likewise.
20430         * soft-fp/trunctfsf2.c: Likewise.
20431         * soft-fp/trunctfxf2.c: Likewise.
20432         * soft-fp/unorddf2.c: Likewise.
20433         * soft-fp/unordsf2.c: Likewise.
20434         * soft-fp/unordtf2.c: Likewise.
20435
20436 2013-10-14   Ondřej Bílka  <neleai@seznam.cz>
20437
20438         [BZ #15672]
20439         * misc/error.c (error_tail): Fix possible buffer overflow.
20440
20441 2013-10-14  Aurelien Jarno  <aurelien@aurel32.net>
20442
20443         [BZ #13028]
20444         * res_send.c(__libc_res_nsend): Correctly copy the nameserver
20445         address.
20446
20447 2013-10-14  P. J. McDermott  <pj@pehjota.net>
20448
20449         [BZ #832]
20450         * elf/ldd.bash.in (try_trace): New function.  Delete previous code
20451         testing pipefail option.
20452
20453 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
20454
20455         * soft-fp/double.h: Indent preprocessor directives inside #if.
20456         * soft-fp/extended.h: Likewise.
20457         * soft-fp/op-2.h: Likewise.
20458         * soft-fp/op-4.h: Likewise.
20459         * soft-fp/op-common.h: Likewise.
20460         * soft-fp/quad.h: Likewise.
20461         * soft-fp/single.h: Likewise.
20462         * soft-fp/soft-fp.h: Likewise.
20463
20464 2013-10-12   Yuri Chornoivan <yurchor@ukr.net>
20465
20466         * iconv/iconv_prog.c: Fix typos.
20467         * stdio-common/psiginfo-data.h: Likewise.
20468
20469 2013-10-12   Reuben Thomas <rrt@sc3d.org>
20470
20471         [BZ #15764]
20472         * locale/setlocale.c: Fix typo.
20473
20474 2013-10-12  Joseph Myers  <joseph@codesourcery.com>
20475
20476         [BZ #16036]
20477         * soft-fp/unorddf2.c (__unorddf2): Raise "invalid" exception for
20478         signaling NaN arguments.
20479         * soft-fp/unordsf2.c (__unordsf2): Likewise.
20480         * soft-fp/unordtf2.c (__unordtf2): Likewise.
20481
20482         [BZ #14910]
20483         * soft-fp/gedf2.c (__gedf2): Raise "invalid" exception for all
20484         unordered operands.
20485         * soft-fp/gesf2.c (__gesf2): Likewise.
20486         * soft-fp/getf2.c (__getf2): Likewise.
20487         * soft-fp/ledf2.c (__ledf2): Likewise.
20488         * soft-fp/lesf2.c (__lesf2): Likewise.
20489         * soft-fp/letf2.c (__letf2): Likewise.
20490
20491         * soft-fp/eqdf2.c (__eqdf2): Use FP_INIT_EXCEPTIONS.
20492         * soft-fp/eqsf2.c (__eqsf2): Likewise.
20493         * soft-fp/eqtf2.c (__eqtf2): Likewise.
20494         * soft-fp/fixdfdi.c (__fixdfdi): Likewise.
20495         * soft-fp/fixdfsi.c (__fixdfsi): Likewise.
20496         * soft-fp/fixdfti.c (__fixdfti): Likewise.
20497         * soft-fp/fixsfdi.c (__fixsfdi): Likewise.
20498         * soft-fp/fixsfsi.c (__fixsfsi): Likewise.
20499         * soft-fp/fixsfti.c (__fixsfti): Likewise.
20500         * soft-fp/fixtfdi.c (__fixtfdi): Likewise.
20501         * soft-fp/fixtfsi.c (__fixtfsi): Likewise.
20502         * soft-fp/fixtfti.c (__fixtfti): Likewise.
20503         * soft-fp/fixunsdfdi.c (__fixunsdfdi): Likewise.
20504         * soft-fp/fixunsdfsi.c (__fixunsdfsi): Likewise.
20505         * soft-fp/fixunsdfti.c (__fixunsdfti): Likewise.
20506         * soft-fp/fixunssfdi.c (__fixunssfdi): Likewise.
20507         * soft-fp/fixunssfsi.c (__fixunssfsi): Likewise.
20508         * soft-fp/fixunssfti.c (__fixunssfti): Likewise.
20509         * soft-fp/fixunstfdi.c (__fixunstfdi): Likewise.
20510         * soft-fp/fixunstfsi.c (__fixunstfsi): Likewise.
20511         * soft-fp/fixunstfti.c (__fixunstfti): Likewise.
20512         * soft-fp/floatdidf.c (__floatdidf): Use FP_INIT_ROUNDMODE.
20513         * soft-fp/floatdisf.c (__floatdisf): Likewise.
20514         * soft-fp/floatsisf.c (__floatsisf): Likewise.
20515         * soft-fp/floattidf.c (__floattidf): Likewise.
20516         * soft-fp/floattisf.c (__floattisf): Likewise.
20517         * soft-fp/floattitf.c (__floattitf): Likewise.
20518         * soft-fp/floatundidf.c (__floatundidf): Likewise.
20519         * soft-fp/floatundisf.c (__floatundisf): Likewise.
20520         * soft-fp/floatunsisf.c (__floatunsisf): Likewise.
20521         * soft-fp/floatuntidf.c (__floatuntidf): Likewise.
20522         * soft-fp/floatuntisf.c (__floatuntisf): Likewise.
20523         * soft-fp/floatuntitf.c (__floatuntitf): Likewise.
20524         * soft-fp/gedf2.c (__gedf2): Use FP_INIT_EXCEPTIONS.
20525         * soft-fp/gesf2.c (__gesf2): Likewise.
20526         * soft-fp/getf2.c (__getf2): Likewise.
20527         * soft-fp/ledf2.c (__ledf2): Likewise.
20528         * soft-fp/lesf2.c (__lesf2): Likewise.
20529         * soft-fp/letf2.c (__letf2): Likewise.
20530
20531         * soft-fp/soft-fp.h [FP_NO_EXCEPTIONS] (FP_SET_EXCEPTION):
20532         Undefine and redefine.
20533         [FP_NO_EXCEPTIONS] (FP_CUR_EXCEPTIONS): Likewise.
20534         [FP_NO_EXCEPTIONS] (FP_TRAPPING_EXCEPTIONS): Likewise.
20535         [FP_NO_EXCEPTIONS] (FP_ROUNDMODE): Likewise.
20536         * soft-fp/floatditf.c (FP_NO_EXCEPTIONS): Define macro.
20537         (__floatditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20538         * soft-fp/floatsidf.c (FP_NO_EXCEPTIONS): Define macro.
20539         (__floatsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20540         * soft-fp/floatsitf.c (FP_NO_EXCEPTIONS): Define macro.
20541         (__floatsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20542         * soft-fp/floatunditf.c (FP_NO_EXCEPTIONS): Define macro.
20543         (__floatunditf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20544         * soft-fp/floatunsidf.c (FP_NO_EXCEPTIONS): Define macro.
20545         (__floatunsidf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20546         * soft-fp/floatunsitf.c (FP_NO_EXCEPTIONS): Define macro.
20547         (__floatunsitf): Don't use FP_DECL_EX or FP_HANDLE_EXCEPTIONS.
20548
20549         [BZ #16032]
20550         * soft-fp/op-2.h (_FP_DIV_MEAT_2_udiv): Shift numerator right
20551         without decrementing exponent if mantissa >= that for the
20552         denominator, not >.
20553         (_FP_DIV_MEAT_2_gmp): Test numerator mantissa >= that for the
20554         denominator, not >.  Decrement exponent in < case instead of
20555         incrementing in >= case.
20556         * soft-fp/op-4.h (_FP_DIV_MEAT_4_udiv): Shift numerator right
20557         without decrementing exponent if mantissa >= that for the
20558         denominator, not >.
20559
20560         * soft-fp/op-common.h (_FP_TO_INT): Reverse test of sign for
20561         computing saturated result for unsigned overflow.
20562
20563 2013-10-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
20564             Jeff Law  <law@redhat.com>
20565
20566         * sysdeps/ieee754/dbl-64/e_atan2.c: Include stap-probe.h.
20567         (atan2Mp): Add systemtap probe marker.
20568         * sysdeps/ieee754/dbl-64/e_log.c: include stap-probe.h.
20569         (__ieee754_log): Add systemtap probe marker.
20570         * sysdeps/ieee754/dbl-64/s_atan.c: Include stap-probe.h.
20571         (atanMp): Add systemtap probe marker.
20572         * sysdeps/ieee754/dbl-64/s_tan.c: Include stap-probe.h.
20573         (tanMp): Add systemtap probe marker.
20574         * sysdeps/ieee754/dbl-64/slowexp.c: Include stap-probe.h.
20575         (__slowexp): Add systemtap probe marker.
20576         * sysdeps/ieee754/dbl-64/slowpow.c: Include stap-probe.h.
20577         (__slowpow): Add systemtap probe marker.
20578         * manual/probes.texi: Document probes.
20579
20580 2013-10-11  Eric Biggers  <ebiggers3@gmail.com>
20581
20582         [BZ #15362]
20583         * libio/fileops.c (_IO_new_file_write): Return count of bytes
20584         written.
20585         (_IO_new_file_xsputn): Don't return EOF if nothing has been
20586         written.
20587         * libio/iofwrite.c (_IO_fwrite): Return count if bytes were
20588         written to buffer but not flushed.
20589         * libio/iofwrite_u.c:  Likewise.
20590         * libio/iopadn.c:  Return bytes returned even if EOF was
20591         encountered.
20592         * libio/iowpadn.c:  Likewise.
20593         * stdio-common/vfprintf.c [COMPILE_WPRINTF] (PAD): Return error
20594         if _IO_padn does not write the whole buffer.
20595         [!COMPILE_WPRINTF] (PAD): Likewise.
20596
20597 2013-10-10  David S. Miller  <davem@davemloft.net>
20598
20599         * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of
20600         directory block.
20601
20602 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
20603
20604         * soft-fp/extendxftf2.c: Use copyright year range.  Use URL
20605         instead of FSF address.
20606         * soft-fp/fixdfti.c: Likewise.
20607         * soft-fp/fixsfti.c: Likewise.
20608         * soft-fp/fixtfti.c: Likewise.
20609         * soft-fp/fixunsdfti.c: Likewise.
20610         * soft-fp/fixunssfti.c: Likewise.
20611         * soft-fp/fixunstfti.c: Likewise.
20612         * soft-fp/floattidf.c: Likewise.
20613         * soft-fp/floattisf.c: Likewise.
20614         * soft-fp/floattitf.c: Likewise.
20615         * soft-fp/floatuntidf.c: Likewise.
20616         * soft-fp/floatuntisf.c: Likewise.
20617         * soft-fp/floatuntitf.c: Likewise.
20618         * soft-fp/trunctfxf2.c: Likewise.
20619
20620         * soft-fp/extendxftf2.c: New file.  Copied from libgcc.
20621         * soft-fp/fixdfti.c: Likewise.
20622         * soft-fp/fixsfti.c: Likewise.
20623         * soft-fp/fixtfti.c: Likewise.
20624         * soft-fp/fixunsdfti.c: Likewise.
20625         * soft-fp/fixunssfti.c: Likewise.
20626         * soft-fp/fixunstfti.c: Likewise.
20627         * soft-fp/floattidf.c: Likewise.
20628         * soft-fp/floattisf.c: Likewise.
20629         * soft-fp/floattitf.c: Likewise.
20630         * soft-fp/floatuntidf.c: Likewise.
20631         * soft-fp/floatuntisf.c: Likewise.
20632         * soft-fp/floatuntitf.c: Likewise.
20633         * soft-fp/trunctfxf2.c: Likewise.
20634
20635 2013-10-10  David S. Miller  <davem@davemloft.net>
20636
20637         * sysdeps/sparc/fpu/libm-test-ulps: Update.
20638
20639 2013-10-10  Joseph Myers  <joseph@codsourcery.com>
20640
20641         * sysdeps/powerpc/nofpu/Makefile [$(subdir) = math]
20642         (CFLAGS-e_hypotl.c): Add -fno-builtin-fabsl.
20643         [$(subdir) = math] (CFLAGS-w_acosl.c): Likewise.
20644         [$(subdir) = math] (CFLAGS-w_asinl.c): Likewise.
20645         [$(subdir) = math] (CFLAGS-w_atanhl.c): Likewise.
20646         [$(subdir) = math] (CFLAGS-w_j0l.c): Likewise.
20647         [$(subdir) = math] (CFLAGS-w_j1l.c): Likewise.
20648
20649         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Check
20650         for NaNs before doing comparisons on argument.
20651         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl):
20652         Likewise.
20653
20654 2013-10-10  Will Newton  <will.newton@linaro.org>
20655
20656         * malloc/hooks.c (memalign_check): Ensure the value of bytes
20657         passed to _int_memalign does not overflow.
20658
20659 2013-10-10  Torvald Riegel  <triegel@redhat.com>
20660
20661         * scripts/bench.pl: Add include-sources directive.
20662         * benchtests/README: Update documentation.
20663
20664 2013-10-10  Joseph Myers  <joseph@codesourcery.com>
20665
20666         * soft-fp/soft-fp.h (FP_INIT_EXCEPTIONS): New macro.
20667         * soft-fp/extenddftf2.c (__extenddftf2): Use FP_INIT_EXCEPTIONS
20668         instead of FP_INIT_ROUNDMODE.
20669         * soft-fp/extendsfdf2.c (__extendsfdf2): Likewise.
20670         * soft-fp/extendsftf2.c (__extendsftf2): Likewise.
20671
20672         [BZ #16034]
20673         * soft-fp/op-common.h (_FP_NEG): Document input as raw.  Do not
20674         copy class of input value.
20675         * soft-fp/negdf2.c (__negdf2): Use raw unpacking and packing.  Do
20676         not handle exceptions.
20677         * soft-fp/negsf2.c (__negsf2): Likewise.
20678         * soft-fp/negtf2.c (__negtf2): Likewise.
20679         * sysdeps/sparc/sparc32/soft-fp/q_neg.c (_Q_neg): Likewise.
20680
20681 2013-10-09  Joseph Myers  <joseph@codesourcery.com>
20682
20683         * soft-fp/op-4.h (_FP_FRAC_DISASSEMBLE_4): Remove trailing
20684         semicolon.  From Linux kernel.
20685
20686 2013-10-09  Adam Buchbinder  <adam.buchbinder@gmail.com>
20687
20688         * soft-fp/op-common.h (_FP_UNPACK_CANONICAL): Fix typo in comment.
20689
20690 2013-10-08  Yogesh Chaudhari  <mr.yogesh@gmail.com>
20691
20692         [BZ #156]
20693         * manual/socket.texi: Added statement about buffer
20694         for gethostbyname2_r.
20695
20696 2013-10-08  Ondřej Bílka  <neleai@seznam.cz>
20697
20698         * sysdeps/x86_64/memset.S (ALIGN): Macro removed.
20699         Use .p2align directive instead, throughout.
20700         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
20701         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Likewise.
20702         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: Likewise.
20703         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
20704         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
20705         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: Likewise.
20706         * sysdeps/x86_64/strchr.S: Likewise.
20707         * sysdeps/x86_64/strrchr.S: Likewise.
20708
20709 2013-10-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
20710
20711         * sysdeps/ieee754/dbl-64/e_pow.c: Fix code formatting.
20712
20713         * sysdeps/ieee754/dbl-64/e_exp.c: Fix code formatting.
20714
20715         * sysdeps/generic/math_private.h (__mpsin1): Remove
20716         declaration.
20717         (__mpcos1): Likewise.
20718         (__mpsin): New argument __range_reduce.
20719         (__mpcos): Likewise.
20720         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
20721         (slow): Use __mpsin and __mpcos.
20722         (slow1): Likewise.
20723         (slow2): Likewise.
20724         (sloww): Likewise.
20725         (sloww1): Likewise.
20726         (sloww2): Likewise.
20727         (bsloww): Likewise.
20728         (bsloww1): Likewise.
20729         (bsloww2): Likewise.
20730         (cslow2): Likewise.
20731         (csloww): Likewise.
20732         (csloww1): Likewise.
20733         (csloww2): Likewise.
20734         * sysdeps/ieee754/dbl-64/sincos32.c (__mpsin): Add argument
20735         range_reduce.  Merge in __mpsin1.
20736         (__mpcos): Likewise.
20737         (__mpsin1): Remove.
20738         (__mpcos1): Likewise.
20739
20740 2013-10-07  Joseph Myers  <joseph@codesourcery.com>
20741
20742         * locale/loadlocale.c (_nl_intern_locale_data): Use
20743         LOCFILE_ALIGNED_P.
20744         * locale/programs/3level.h (CONCAT(add_locale_,TABLE)): Use
20745         LOCFILE_ALIGN_UP and LOCFILE_ALIGN.
20746         * locale/programs/ld-collate.c (obstack_int32_grow): Assert that
20747         obstack data is appropriately aligned.
20748         (obstack_int32_grow_fast): Likewise.
20749         * locale/programs/ld-ctype.c (ctype_output): Use LOCFILE_ALIGN.
20750         * locale/programs/locfile.c (add_locale_uint32): Likewise.
20751         (add_locale_uint32_array): Likewise.
20752
20753 2013-10-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
20754
20755         * benchtests/Makefile: Remove ARGLIST and RET variables.
20756         ($(objpfx)bench-%.c): Pass only function name to the script.
20757         * benchtests/README: Update documentation.
20758         * benchtests/acos-inputs: Add new directives.
20759         * benchtests/acosh-inputs: Likewise.
20760         * benchtests/asin-inputs: Likewise.
20761         * benchtests/asinh-inputs: Likewise.
20762         * benchtests/atan-inputs: Likewise.
20763         * benchtests/atanh-inputs: Likewise.
20764         * benchtests/cos-inputs: Likewise.
20765         * benchtests/cosh-inputs: Likewise.
20766         * benchtests/exp-inputs: Likewise.
20767         * benchtests/log-inputs: Likewise.
20768         * benchtests/pow-inputs: Likewise.
20769         * benchtests/rint-inputs: Likewise.
20770         * benchtests/sin-inputs: Likewise.
20771         * benchtests/sinh-inputs: Likewise.
20772         * benchtests/tan-inputs: Likewise.
20773         * benchtests/tanh-inputs: Likewise.
20774         * scripts/bench.pl: Add support for new directives.
20775
20776 2013-10-07  Alan Modra  <amodra@gmail.com>
20777
20778         * README: Fix careless merge.
20779
20780 2013-10-05  Alan Modra  <amodra@gmail.com>
20781
20782         * NEWS: Mention powerpc64le support and bugs fixed.
20783         * README: Both big-endian and little-endian powerpc64 supported.
20784
20785 2013-10-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
20786
20787         * sysdeps/mach/hurd/fork.c (_hurd_atfork_prepare_hook)
20788         (_hurd_atfork_child_hook, _hurd_atfork_parent_hook): New hooks.
20789         (__fork): Call _hurd_atfork_prepare_hook hooks before all locking, call
20790         _hurd_atfork_parent_hook or _hurd_atfork_child_hook after all unlocking.
20791
20792 2013-10-04  Ryan S. Arnold  <ryan.arnold@linaro.org>
20793
20794         * misc/swapon.c (swapon): Update definition, adding FLAGS parameter to
20795         match prototype.
20796
20797 2013-10-04  Joseph Myers  <joseph@codesourcery.com>
20798
20799         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = yes] (+cflags):
20800         Move -mhard-float appending from
20801         ports/sysdeps/powerpc/powerpc32/Makefile.
20802         [$(with-fp) = yes] (ASFLAGS): Likewise.
20803         [$(with-fp) = yes] (sysdep-LDFLAGS): Likewise.
20804         * sysdeps/powerpc/nofpu: Move directory from
20805         ports/sysdeps/powerpc/nofpu.
20806         * sysdeps/powerpc/soft-fp: Move directory from
20807         ports/sysdeps/powerpc/soft-fp.
20808         * sysdeps/powerpc/powerpc32/405: Move directory from
20809         ports/sysdeps/powerpc/powerpc32/405.
20810         * sysdeps/powerpc/powerpc32/440: Move directory from
20811         ports/sysdeps/powerpc/powerpc32/440.
20812         * sysdeps/powerpc/powerpc32/464: Move directory from
20813         ports/sysdeps/powerpc/powerpc32/464.
20814         * sysdeps/powerpc/powerpc32/476: Move directory from
20815         ports/sysdeps/powerpc/powerpc32/476.
20816         * sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu: Move directory
20817         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/nofpu.
20818         * sysdeps/unix/sysv/linux/powerpc/powerpc32/405: Move directory
20819         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/405.
20820         * sysdeps/unix/sysv/linux/powerpc/powerpc32/440: Move directory
20821         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/440.
20822         * sysdeps/unix/sysv/linux/powerpc/powerpc32/464: Move directory
20823         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/464.
20824         * sysdeps/unix/sysv/linux/powerpc/powerpc32/476: Move directory
20825         from ports/sysdeps/unix/sysv/linux/powerpc/powerpc32/476.
20826         * README: Update for powerpc-*-linux-gnu software floating point
20827         support in libc.
20828
20829         * sysdeps/unix/sysv/linux/configure.in (powerpc/powerpc32): Change
20830         case to powerpc/powerpc32*.
20831         * sysdeps/unix/sysv/linux/configure: Regenerated.
20832
20833         * sysdeps/powerpc/fpu_control.h [__NO_FPRS__ && !_SOFT_FLOAT]
20834         (_FPU_MASK_OM): Define as 0x04.
20835         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Define as 0x08.
20836         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Define as
20837         0x00c10080.
20838         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Define as
20839         0x0000003c.
20840         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Define as _FPU_DEFAULT.
20841
20842         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S
20843         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
20844         getcontext_e500.
20845         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S
20846         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use
20847         setcontext_e500.
20848         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S
20849         (__CONTEXT_FUNC_NAME) [__CONTEXT_ENABLE_E500]: Use getcontext_e500
20850         and setcontext_e500.
20851
20852 2013-10-04  Chris Leonard  <cjl@sugarlabs,.org>
20853
20854         * locale/iso-3166.def: Update iso-1366.def and related occurrences
20855
20856 2013-10-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
20857
20858         * manual/threads.texi (Default Thread Attributes): Fix typo.
20859
20860 2013-10-04  Will Newton  <will.newton@linaro.org>
20861
20862         * malloc/Makefile: Add tst-memalign.
20863         * malloc/tst-memalign.c: New file.
20864
20865         * malloc/tst-posix_memalign.c: Add comments.
20866         (do_test): Add comments and call free on all potentially
20867         allocated pointers. Add space after cast.
20868
20869         * malloc/tst-pvalloc.c: Add comments.
20870         (do_test): Add comments and call free on all potentially
20871         allocated pointers. Remove duplicate check for NULL pointer.
20872         Add space after cast.
20873
20874         * malloc/tst-valloc.c: Add comments.
20875         (do_test): Add comments and call free on all potentially
20876         allocated pointers. Remove duplicate check for NULL pointer.
20877         Add space after cast.
20878
20879 2013-10-04  Alan Modra  <amodra@gmail.com>
20880
20881         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
20882         Use stdint types in rather than __attribute__((mode())).
20883         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
20884
20885 2013-10-04  Alan Modra  <amodra@gmail.com>
20886
20887         * sysdeps/powerpc/powerpc32/dl-machine.c (__process_machine_rela):
20888         Correct handling of unaligned relocs for little-endian.
20889         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela): Likewise.
20890
20891 2013-10-04  Alan Modra  <amodra@gmail.com>
20892
20893         * configure.in: Map powerpc64le and powerpcle to base_machine/machine.
20894         * configure: Regenerate.
20895         * nptl/shlib-versions: Powerpc*le starts at 2.18.
20896         * shlib-versions: Likewise.
20897
20898 2013-10-04  Alan Modra  <amodra@gmail.com>
20899
20900         * string/tester.c (test_memrchr): Increment reported test cycle.
20901
20902 2013-10-04  Alan Modra  <amodra@gmail.com>
20903
20904         * string/test-memcpy.c (do_one_test): When reporting errors, print
20905         string address and don't overrun end of string.
20906
20907 2013-10-04  Alan Modra  <amodra@gmail.com>
20908
20909         * sysdeps/powerpc/powerpc64/power7/memchr.S: Replace rlwimi with
20910         insrdi.  Make better use of reg selection to speed exit slightly.
20911         Schedule entry path a little better.  Remove useless "are we done"
20912         checks on entry to main loop.  Handle wrapping around zero address.
20913         Correct main loop count.  Handle single left-over word from main
20914         loop inline rather than by using loop_small.  Remove extra word
20915         case in loop_small caused by wrong loop count.  Add little-endian
20916         support.
20917         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
20918         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.  Use proper
20919         cache hint.
20920         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
20921         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Add little-endian
20922         support.  Avoid rlwimi.
20923         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Likewise.
20924
20925 2013-10-04  Alan Modra  <amodra@gmail.com>
20926
20927         * sysdeps/powerpc/powerpc64/memset.S: Replace rlwimi with
20928         insrdi.  Formatting.
20929         * sysdeps/powerpc/powerpc64/power4/memset.S: Likewise.
20930         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
20931         * sysdeps/powerpc/powerpc64/power7/memset.S: Likewise.
20932         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
20933         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
20934         * sysdeps/powerpc/powerpc32/power7/memset.S: Likewise.
20935
20936 2013-10-04  Alan Modra  <amodra@gmail.com>
20937
20938         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Add little endian support.
20939         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
20940         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Likewise.
20941         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Likewise.
20942         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
20943         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
20944         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
20945         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
20946         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Likewise.  Make better
20947         use of regs.  Use power7 mtocrf.  Tidy function tails.
20948
20949 2013-10-04  Alan Modra  <amodra@gmail.com>
20950
20951         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Add little-endian support.
20952         Formatting.  Consistently use rXXX register defines or rN defines.
20953         Use early exit labels that avoid restoring unused non-volatile regs.
20954         Make cr field use more consistent with rWORDn compares.  Rename
20955         regs used as shift registers for unaligned loop, using rN defines
20956         for short lifetime/multiple use regs.
20957         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
20958         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.  Exit with
20959         addi 1,1,64 to pop stack frame.  Simplify return value code.
20960         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
20961
20962 2013-10-04  Alan Modra  <amodra@gmail.com>
20963
20964         * sysdeps/powerpc/powerpc64/power7/strchr.S (strchr): Add little-endian
20965         support.  Correct typos, formatting.  Optimize tail.  Use insrdi
20966         rather than rlwimi.
20967         * sysdeps/powerpc/powerpc32/power7/strchr.S: Likewise.
20968         * sysdeps/powerpc/powerpc64/power7/strchrnul.S (__strchrnul): Add
20969         little-endian support.  Correct typos.
20970         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Likewise.  Use insrdi
20971         rather than rlwimi.
20972         * sysdeps/powerpc/powerpc64/strchr.S (rTMP4, rTMP5): Define.  Use
20973         in loop and entry code to keep "and." results.
20974         (strchr): Add little-endian support.  Comment.  Move cntlzd
20975         earlier in tail.
20976         * sysdeps/powerpc/powerpc32/strchr.S: Likewise.
20977
20978 2013-10-04  Alan Modra  <amodra@gmail.com>
20979
20980         * sysdeps/powerpc/powerpc64/strcpy.S: Add little-endian support:
20981         * sysdeps/powerpc/powerpc32/strcpy.S: Likewise.
20982         * sysdeps/powerpc/powerpc64/stpcpy.S: Likewise.
20983         * sysdeps/powerpc/powerpc32/stpcpy.S: Likewise.
20984
20985 2013-10-04  Alan Modra  <amodra@gmail.com>
20986
20987         * sysdeps/powerpc/powerpc64/strcmp.S (rTMP2): Define as r0.
20988         (rTMP): Define as r11.
20989         (strcmp): Add little-endian support.  Optimise tail.
20990         * sysdeps/powerpc/powerpc32/strcmp.S: Similarly.
20991         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
20992         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
20993         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
20994         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
20995         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
20996         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
20997
20998 2013-10-04  Alan Modra  <amodra@gmail.com>
20999
21000         * sysdeps/powerpc/powerpc64/power7/strnlen.S (strnlen): Add
21001         little-endian support.  Remove unnecessary "are we done" tests.
21002         Handle "s" wrapping around zero and extremely large "size".
21003         Correct main loop count.  Handle single left-over word from main
21004         loop inline rather than by using small_loop.  Correct comments.
21005         Delete "zero" tail, use "end_max" instead.
21006         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Likewise.
21007
21008 2013-10-04  Alan Modra  <amodra@gmail.com>
21009
21010         * sysdeps/powerpc/powerpc64/power7/strlen.S (strlen): Add little-endian
21011         support.  Don't branch over align.
21012         * sysdeps/powerpc/powerpc32/power7/strlen.S: Likewise.
21013         * sysdeps/powerpc/powerpc64/strlen.S (strlen): Add little-endian
21014         support.  Rearrange tmp reg use to suit.  Comment.
21015         * sysdeps/powerpc/powerpc32/strlen.S: Likewise.
21016
21017 2013-10-04  Alan Modra  <amodra@gmail.com>
21018
21019         * sysdeps/unix/sysv/linux/powerpc/bits/sigstack.h: New file.
21020
21021 2013-10-04  Alan Modra  <amodra@gmail.com>
21022
21023         * sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S: Use
21024         conditional form of branch and link when obtaining pc.
21025         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: Likewise.
21026
21027 2013-10-04  Alan Modra  <amodra@gmail.com>
21028
21029         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Use
21030         HIWORD/LOWORD.
21031         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Ditto.
21032         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Ditto.
21033
21034 2013-10-04  Alan Modra  <amodra@gmail.com>
21035
21036         * sysdeps/powerpc/longjmp.c: Use proper symbol versioning macros.
21037         * sysdeps/powerpc/novmx-longjmp.c: Likewise.
21038         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Likewise.
21039         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Likewise.
21040         * sysdeps/powerpc/powerpc32/fpu/__longjmp.S: Likewise.
21041         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
21042         * sysdeps/powerpc/powerpc32/mcount.c: Likewise.
21043         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
21044         * sysdeps/powerpc/powerpc64/setjmp.S: Likewise.
21045         * nptl/sysdeps/unix/sysv/linux/powerpc/pt-longjmp.c: Likewise.
21046
21047 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21048             Alistair Popple <alistair@ozlabs.au.ibm.com>
21049             Alan Modra <amodra@gmail.com>
21050
21051         [BZ #15723]
21052         * sysdeps/powerpc/jmpbuf-offsets.h: Comment fix.
21053         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Correct
21054         _dl_hwcap access for little-endian.
21055         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Likewise.  Don't
21056         destroy vmx regs when saving unaligned.
21057         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Correct CR load.
21058         * sysdeps/powerpc/powerpc64/setjmp-common.S: Likewise CR save.  Don't
21059         destroy vmx regs when saving unaligned.
21060
21061 2013-10-04  Alan Modra  <amodra@gmail.com>
21062
21063         * sysdeps/powerpc/powerpc32/power4/hp-timing.h (HP_TIMING_NOW):
21064         Don't use a union to pack hi/low value.
21065
21066 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21067
21068         * sysdeps/powerpc/powerpc64/fpu/s_ceilf.S: Correct float constants
21069         for little-endian.
21070         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
21071         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: Likewise.
21072         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
21073         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
21074         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
21075
21076 2013-10-04  Alan Modra  <amodra@gmail.com>
21077
21078         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Increase alignment of
21079         constants to usual value for .cst8 section, and remove redundant
21080         high address load.
21081         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Use float
21082         constant for 0x1p52.  Load little-endian words of double from
21083         correct stack offsets.
21084
21085 2013-10-04  Alan Modra  <amodra@gmail.com>
21086
21087         * sysdeps/powerpc/sysdep.h (LOWORD, HIWORD, HISHORT): Define.
21088         * sysdeps/powerpc/powerpc32/fpu/s_copysign.S: Load little-endian
21089         words of double from correct stack offsets.
21090         * sysdeps/powerpc/powerpc32/fpu/s_copysignl.S: Likewise.
21091         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S: Likewise.
21092         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
21093         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
21094         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
21095         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
21096         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
21097         * sysdeps/powerpc/powerpc32/power5/fpu/s_isnan.S: Likewise.
21098         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnan.S: Likewise.
21099         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
21100         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
21101         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
21102         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
21103         * sysdeps/powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
21104         * sysdeps/powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
21105         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Use HISHORT.
21106         * sysdeps/powerpc/powerpc64/power7/fpu/s_isinf.S: Likewise.
21107
21108 2013-10-04  Alan Modra  <amodra@gmail.com>
21109
21110         * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Rewrite using
21111         64-bit int/double union.
21112         (_FPU_SETCW): Likewise.
21113         * sysdeps/powerpc/fpu/tst-setcontext-fpscr.c (_GET_DI_FPSCR): Likewise.
21114         (_SET_DI_FPSCR, _GET_SI_FPSCR, _SET_SI_FPSCR): Likewise.
21115
21116 2013-10-04  Alan Modra  <amodra@gmail.com>
21117
21118         * sysdeps/powerpc/fpu/s_llround.c (__llround): Rewrite.
21119         * sysdeps/powerpc/fpu/s_llroundf.c (__llroundf): Rewrite.
21120
21121 2013-10-04  Alan Modra  <amodra@gmail.com>
21122
21123         * sysdeps/powerpc/fpu/s_float_bitwise.h (__float_and_test28): Don't
21124         use vector int constants.
21125         (__float_and_test24, __float_and8, __float_get_exp): Likewise.
21126
21127 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21128
21129         * sysdeps/powerpc/fpu/fenv_libc.h (fenv_union_t): Replace int
21130         array with long long.
21131         * sysdeps/powerpc/fpu/e_sqrt.c (__slow_ieee754_sqrt): Adjust.
21132         * sysdeps/powerpc/fpu/e_sqrtf.c (__slow_ieee754_sqrtf): Adjust.
21133         * sysdeps/powerpc/fpu/fclrexcpt.c (__feclearexcept): Adjust.
21134         * sysdeps/powerpc/fpu/fedisblxcpt.c (fedisableexcept): Adjust.
21135         * sysdeps/powerpc/fpu/feenablxcpt.c (feenableexcept): Adjust.
21136         * sysdeps/powerpc/fpu/fegetexcept.c (__fegetexcept): Adjust.
21137         * sysdeps/powerpc/fpu/feholdexcpt.c (feholdexcept): Adjust.
21138         * sysdeps/powerpc/fpu/fesetenv.c (__fesetenv): Adjust.
21139         * sysdeps/powerpc/fpu/feupdateenv.c (__feupdateenv): Adjust.
21140         * sysdeps/powerpc/fpu/fgetexcptflg.c (__fegetexceptflag): Adjust.
21141         * sysdeps/powerpc/fpu/fraiseexcpt.c (__feraiseexcept): Adjust.
21142         * sysdeps/powerpc/fpu/fsetexcptflg.c (__fesetexceptflag): Adjust.
21143         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Adjust.
21144
21145 2013-10-04  Anton Blanchard <anton@au1.ibm.com>
21146
21147         * sysdeps/powerpc/bits/mathinline.h (__signbitf): Use builtin.
21148         (__signbit): Likewise.  Correct for little-endian.
21149         (__signbitl): Call __signbit.
21150         (lrint): Correct for little-endian.
21151         (lrintf): Call lrint.
21152
21153 2013-10-04  Alan Modra  <amodra@gmail.com>
21154
21155         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (mynumber): Replace
21156         union 32-bit int array member with 64-bit int array.
21157         (t515, tm256): Double rather than long double.
21158         (__ieee754_sqrtl): Rewrite using 64-bit arithmetic.
21159
21160 2013-10-04  Alan Modra  <amodra@gmail.com>
21161
21162         * sysdeps/ieee754/ldbl-128ibm/ieee754.h (union ieee854_long_double):
21163         Delete.
21164         (IEEE854_LONG_DOUBLE_BIAS): Delete.
21165         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Don't include ieee854
21166         version of math_ldbl.h.
21167
21168 2013-10-04  Alan Modra  <amodra@gmail.com>
21169
21170         [BZ #15734], [BZ #15735]
21171         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Rewrite
21172         all uses of ieee875 long double macros and unions.  Simplify test
21173         for 0.0L.  Correct |x|<|y| and |x|=|y| test.  Use
21174         ldbl_extract_mantissa value for ix,iy exponents.  Properly
21175         normalize after ldbl_extract_mantissa, and don't add hidden bit
21176         already handled.  Don't treat low word of ieee854 mantissa like
21177         low word of IBM long double and mask off bit when testing for
21178         zero.
21179         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Rewrite
21180         all uses of ieee875 long double macros and unions.  Simplify tests
21181         for 0.0L and inf.  Correct double adjustment of k.  Delete dead code
21182         adjusting ha,hb.  Simplify code setting kld.  Delete two600 and
21183         two1022, instead use their values.  Recognise that tests for large
21184         "a" and small "b" are mutually exclusive.  Rename vars.  Comment.
21185         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c (__ieee754_remainderl):
21186         Rewrite all uses of ieee875 long double macros and unions.  Simplify
21187         test for 0.0L and nan.  Correct negation.
21188         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfl): Rewrite all uses of
21189         ieee875 long double macros and unions.  Correct output for large
21190         magnitude x.  Correct absolute value calculation.
21191         (__erfcl): Likewise.
21192         * math/libm-test.inc: Add tests for errors discovered in IBM long
21193         double versions of fmodl, remainderl, erfl and erfcl.
21194
21195 2013-10-04  Alan Modra  <amodra@gmail.com>
21196
21197         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Rewrite
21198         all uses of ieee854 long double macros and unions.  Simplify tests
21199         for long doubles that are fully specified by the high double.
21200         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c (__ieee754_gammal_r):
21201         Likewise.
21202         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c (__ieee754_ilogbl): Likewise.
21203         Remove dead code too.
21204         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_jnl): Likewise.
21205         (__ieee754_ynl): Likewise.
21206         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c (__ieee754_log10l): Likewise.
21207         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Likewise.
21208         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Likewise.
21209         Remove dead code too.
21210         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c (__kernel_tanl): Likewise.
21211         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (__expm1l): Likewise.
21212         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c (__frexpl): Likewise.
21213         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c (__isinf_nsl): Likewise.
21214         Simplify.
21215         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c (___isinfl): Likewise.
21216         Simplify.
21217         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c (__log1pl): Likewise.
21218         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c (__modfl): Likewise.
21219         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c (__nextafterl): Likewise.
21220         Comment on variable precision.
21221         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c (__nexttoward): Likewise.
21222         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
21223         Likewise.
21224         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c (__remquol): Likewise.
21225         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
21226         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
21227         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c (__tanhl): Likewise.
21228         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust tan_towardzero ulps.
21229
21230 2013-10-04  Alan Modra  <amodra@gmail.com>
21231
21232         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_high): Define.
21233         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Rewrite
21234         all uses of ieee854 long double macros and unions.
21235         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Likewise.
21236         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
21237         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Likewise.
21238         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c (__ieee754_coshl): Likewise.
21239         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c (__ieee754_log2l): Likewise.
21240         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
21241         Likewise.
21242         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Likewise.
21243         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
21244         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl): Likewise.
21245         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
21246         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c (__asinhl): Likewise.
21247         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Likewise.
21248         Simplify sign and nan test too.
21249         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c (__cosl): Likewise.
21250         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c (__fabsl): Likewise.
21251         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c (___finitel): Likewise.
21252         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c (___fpclassifyl):
21253         Likewise.
21254         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
21255         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c (__issignalingl):
21256         Likewise.
21257         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
21258         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c (___signbitl): Likewise.
21259         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c (__sincosl): Likewise.
21260         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c (__sinl): Likewise.
21261         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c (__tanl): Likewise.
21262         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (__logbl): Likewise.
21263
21264 2013-10-04  Alan Modra  <amodra@gmail.com>
21265
21266         * stdio-common/printf_size.c (__printf_size): Don't use
21267         union ieee854_long_double in fpnum union.
21268         * stdio-common/printf_fphex.c (__printf_fphex): Likewise.  Use
21269         signbit macro to retrieve sign from long double.
21270         * stdio-common/printf_fp.c (___printf_fp): Use signbit macro to
21271         retrieve sign from long double.
21272         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Adjust for fpnum change.
21273         * sysdeps/ieee754/ldbl-128/printf_fphex.c: Likewise.
21274         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise.
21275         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
21276         * math/test-misc.c (main): Don't use union ieee854_long_double.
21277
21278 2013-10-04  Alan Modra  <amodra@gmail.com>
21279
21280         [BZ #15680]
21281         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Comment fix.
21282         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c
21283         (PRINT_FPHEX_LONG_DOUBLE): Tidy code by moving -53 into ediff
21284         calculation.  Remove unnecessary test for denormal exponent.
21285         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c (__mpn_extract_long_double):
21286         Correct handling of denormals.  Avoid undefined shift behaviour.
21287         Correct normalisation of low mantissa when low double is denormal.
21288         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h
21289         (ldbl_extract_mantissa): Likewise.  Comment.  Use uint64_t* for hi64.
21290         (ldbl_insert_mantissa): Make both hi64 and lo64 parms uint64_t.
21291         Correct normalisation of low mantissa.  Test for overflow of high
21292         mantissa and normalise.
21293         (ldbl_nearbyint): Use more readable constant for two52.
21294         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c
21295         (__mpn_construct_long_double): Fix test for overflow of high
21296         mantissa and correct normalisation.  Avoid undefined shift.
21297
21298 2013-10-04  Alan Modra  <amodra@gmail.com>
21299
21300         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
21301         (union ibm_extended_long_double): Define as an array of ieee754_double.
21302         (IBM_EXTENDED_LONG_DOUBLE_BIAS): Delete.
21303         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Update all references
21304         to ibm_extended_long_double and IBM_EXTENDED_LONG_DOUBLE_BIAS.
21305         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
21306         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
21307         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c: Likewise.
21308         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
21309         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
21310         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
21311         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c: Likewise.
21312         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
21313
21314 2013-10-03  Joseph Myers  <joseph@codesourcery.com>
21315
21316         * locale/programs/locarchive.c (add_locale): Use constant 4096 for
21317         page size instead of calling getpagesize.
21318
21319         * locale/localeinfo.h (LOCFILE_ALIGN): New macro.
21320         (LOCFILE_ALIGN_MASK): Likewise.
21321         (LOCFILE_ALIGN_UP): Likewise.
21322         (LOCFILE_ALIGNED_P): Likewise.
21323         * locale/programs/ld-collate.c (collate_output): Use the new
21324         macros instead of __alignof__ (int32_t).
21325         * locale/weight.h (findidx): Likewise.
21326
21327 2013-10-03  Ondřej Bílka  <neleai@seznam.cz>
21328
21329         [BZ #431]
21330         * manual/string.texi: Fix strncat and wcsncat.
21331
21332 2013-10-03  Brooks Moses  <bmoses@google.com>
21333
21334         [BZ #15915]
21335         * Makefile (linkobj/libc_pic.a, linkobj/libc.so): Move rules to...
21336         * Makerules: ...here, and adjust associated comments.
21337
21338 2013-10-02  Will Newton  <will.newton@linaro.org>
21339
21340         * malloc/Makefile: Add tst-pvalloc.
21341         * malloc/tst-pvalloc.c: New file.
21342
21343 2013-10-02  Will Newton  <will.newton@linaro.org>
21344
21345         * malloc/tst-valloc.c: Rewrite to use test-skeleton.c and
21346         improve test coverage.
21347
21348 2013-10-02  Will Newton  <will.newton@linaro.org>
21349
21350         * malloc/Makefile: Add tst-posix_memalign.
21351         * malloc/tst-posix_memalign.c: New file.
21352
21353 2013-10-01  Eric Blake  <eblake@redhat.com>
21354
21355         * posix/glob.c (next_brace_sub, prefix_array, collated_compare):
21356         Use __THROWNL rather than __THROW on static functions.
21357
21358 2013-09-30  Petr Machata  <pmachata@redhat.com>
21359
21360         * elf/elf.h (R_AARCH64_ABS16): New macro.
21361         (R_AARCH64_PREL64, R_AARCH64_PREL32): Likewise.
21362         (R_AARCH64_PREL16, R_AARCH64_MOVW_UABS_G0): Likewise.
21363         (R_AARCH64_MOVW_UABS_G0_NC, R_AARCH64_MOVW_UABS_G1): Likewise.
21364         (R_AARCH64_MOVW_UABS_G1_NC, R_AARCH64_MOVW_UABS_G2): Likewise.
21365         (R_AARCH64_MOVW_UABS_G2_NC, R_AARCH64_MOVW_UABS_G3): Likewise.
21366         (R_AARCH64_MOVW_SABS_G0, R_AARCH64_MOVW_SABS_G1): Likewise.
21367         (R_AARCH64_MOVW_SABS_G2, R_AARCH64_LD_PREL_LO19): Likewise.
21368         (R_AARCH64_ADR_PREL_LO21, R_AARCH64_ADR_PREL_PG_HI21): Likewise.
21369         (R_AARCH64_ADR_PREL_PG_HI21_NC, R_AARCH64_ADD_ABS_LO12_NC): Likewise.
21370         (R_AARCH64_LDST8_ABS_LO12_NC, R_AARCH64_LDST16_ABS_LO12_NC): Likewise.
21371         (R_AARCH64_LDST32_ABS_LO12_NC, R_AARCH64_LDST64_ABS_LO12_NC): Likewise.
21372         (R_AARCH64_LDST128_ABS_LO12_NC, R_AARCH64_TSTBR14): Likewise.
21373         (R_AARCH64_CONDBR19, R_AARCH64_JUMP26, R_AARCH64_CALL26): Likewise.
21374         (R_AARCH64_MOVW_PREL_G0, R_AARCH64_MOVW_PREL_G0_NC): Likewise.
21375         (R_AARCH64_MOVW_PREL_G1, R_AARCH64_MOVW_PREL_G1_NC): Likewise.
21376         (R_AARCH64_MOVW_PREL_G2, R_AARCH64_MOVW_PREL_G2_NC): Likewise.
21377         (R_AARCH64_MOVW_PREL_G3, R_AARCH64_MOVW_GOTOFF_G0): Likewise.
21378         (R_AARCH64_MOVW_GOTOFF_G0_NC, R_AARCH64_MOVW_GOTOFF_G1): Likewise.
21379         (R_AARCH64_MOVW_GOTOFF_G1_NC, R_AARCH64_MOVW_GOTOFF_G2): Likewise.
21380         (R_AARCH64_MOVW_GOTOFF_G2_NC, R_AARCH64_MOVW_GOTOFF_G3): Likewise.
21381         (R_AARCH64_GOTREL64, R_AARCH64_GOTREL32): Likewise.
21382         (R_AARCH64_GOT_LD_PREL19, R_AARCH64_LD64_GOTOFF_LO15): Likewise.
21383         (R_AARCH64_ADR_GOT_PAGE, R_AARCH64_LD64_GOT_LO12_NC): Likewise.
21384         (R_AARCH64_LD64_GOTPAGE_LO15, R_AARCH64_TLSGD_ADR_PREL21): Likewise.
21385         (R_AARCH64_TLSGD_ADR_PAGE21, R_AARCH64_TLSGD_ADD_LO12_NC): Likewise.
21386         (R_AARCH64_TLSGD_MOVW_G1, R_AARCH64_TLSGD_MOVW_G0_NC): Likewise.
21387         (R_AARCH64_TLSLD_ADR_PREL21, R_AARCH64_TLSLD_ADR_PAGE21): Likewise.
21388         (R_AARCH64_TLSLD_ADD_LO12_NC, R_AARCH64_TLSLD_MOVW_G1): Likewise.
21389         (R_AARCH64_TLSLD_MOVW_G0_NC, R_AARCH64_TLSLD_LD_PREL19): Likewise.
21390         (R_AARCH64_TLSLD_MOVW_DTPREL_G2): Likewise.
21391         (R_AARCH64_TLSLD_MOVW_DTPREL_G1): Likewise.
21392         (R_AARCH64_TLSLD_MOVW_DTPREL_G1_NC): Likewise.
21393         (R_AARCH64_TLSLD_MOVW_DTPREL_G0): Likewise.
21394         (R_AARCH64_TLSLD_MOVW_DTPREL_G0_NC): Likewise.
21395         (R_AARCH64_TLSLD_ADD_DTPREL_HI12): Likewise.
21396         (R_AARCH64_TLSLD_ADD_DTPREL_LO12): Likewise.
21397         (R_AARCH64_TLSLD_ADD_DTPREL_LO12_NC): Likewise.
21398         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12): Likewise.
21399         (R_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC): Likewise.
21400         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12): Likewise.
21401         (R_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC): Likewise.
21402         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12): Likewise.
21403         (R_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC): Likewise.
21404         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12): Likewise.
21405         (R_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC): Likewise.
21406         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12): Likewise.
21407         (R_AARCH64_TLSLD_LDST128_DTPREL_LO12_NC): Likewise.
21408         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G1): Likewise.
21409         (R_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC): Likewise.
21410         (R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21): Likewise.
21411         (R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC): Likewise.
21412         (R_AARCH64_TLSIE_LD_GOTTPREL_PREL19): Likewise.
21413         (R_AARCH64_TLSLE_MOVW_TPREL_G2): Likewise.
21414         (R_AARCH64_TLSLE_MOVW_TPREL_G1): Likewise.
21415         (R_AARCH64_TLSLE_MOVW_TPREL_G1_NC): Likewise.
21416         (R_AARCH64_TLSLE_MOVW_TPREL_G0): Likewise.
21417         (R_AARCH64_TLSLE_MOVW_TPREL_G0_NC): Likewise.
21418         (R_AARCH64_TLSLE_ADD_TPREL_HI12): Likewise.
21419         (R_AARCH64_TLSLE_ADD_TPREL_LO12): Likewise.
21420         (R_AARCH64_TLSLE_ADD_TPREL_LO12_NC): Likewise.
21421         (R_AARCH64_TLSLE_LDST8_TPREL_LO12): Likewise.
21422         (R_AARCH64_TLSLE_LDST8_TPREL_LO12_NC): Likewise.
21423         (R_AARCH64_TLSLE_LDST16_TPREL_LO12): Likewise.
21424         (R_AARCH64_TLSLE_LDST16_TPREL_LO12_NC): Likewise.
21425         (R_AARCH64_TLSLE_LDST32_TPREL_LO12): Likewise.
21426         (R_AARCH64_TLSLE_LDST32_TPREL_LO12_NC): Likewise.
21427         (R_AARCH64_TLSLE_LDST64_TPREL_LO12): Likewise.
21428         (R_AARCH64_TLSLE_LDST64_TPREL_LO12_NC): Likewise.
21429         (R_AARCH64_TLSLE_LDST128_TPREL_LO12): Likewise.
21430         (R_AARCH64_TLSLE_LDST128_TPREL_LO12_NC): Likewise.
21431         (R_AARCH64_TLSDESC_LD_PREL19): Likewise.
21432         (R_AARCH64_TLSDESC_ADR_PREL21): Likewise.
21433         (R_AARCH64_TLSDESC_ADR_PAGE21): Likewise.
21434         (R_AARCH64_TLSDESC_LD64_LO12): Likewise.
21435         (R_AARCH64_TLSDESC_ADD_LO12): Likewise.
21436         (R_AARCH64_TLSDESC_OFF_G1): Likewise.
21437         (R_AARCH64_TLSDESC_OFF_G0_NC): Likewise.
21438         (R_AARCH64_TLSDESC_LDR): Likewise.
21439         (R_AARCH64_TLSDESC_ADD): Likewise.
21440         (R_AARCH64_TLSDESC_CALL): Likewise.
21441
21442 2013-09-30  Andreas Schwab  <schwab@suse.de>
21443
21444         [BZ #15048]
21445         * nscd/aicache.c (addhstaiX): Properly use the cache variable for
21446         the nss database lookup.
21447         * nscd/initgrcache.c (addinitgroupsX): Likewise.
21448         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
21449
21450 2013-09-28  Mike Frysinger  <vapier@gentoo.org>
21451
21452         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Fix style.
21453
21454 2013-09-28  P. J. McDermott  <pj@pehjota.net>
21455
21456         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't use
21457         ${Bash-specific parameter/pattern/string} parameter expansion.
21458         * sysdeps/unix/make-syscalls.sh: Likewise.
21459
21460 2013-09-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
21461
21462         * sysdeps/sh/stackguard-macros.h: New file.
21463
21464 2013-09-26  Ondřej Bílka  <neleai@seznam.cz>
21465
21466         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Update.
21467         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove strrchr ifunc.
21468         * sysdeps/x86_64/multiarch/strend-sse4.S Remove.
21469         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S Likewise.
21470         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
21471         * sysdeps/x86_64/strrchr.S (strrchr): Use optimized implementation.
21472
21473 2013-09-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21474
21475         * sysdeps/powerpc/powerpc64/stackguard-macros.h (POINTER_CHK_GUARD:
21476         Fix thread ID register.
21477
21478 2013-09-25  Joseph Myers  <joseph@codesourcery.com>
21479
21480         * conform/data/sched.h-data [XPG3 || XPG4]: Disable whole file.
21481         [POSIX || UNIX98]: Require rather than permitting all symbols from
21482         <time.h>.
21483         [POSIX || UNIX98] (sched_ss_low_priority): Do not specify optional
21484         element of struct sched_param.
21485         [POSIX || UNIX98] (sched_ss_repl_period): Likewise.
21486         [POSIX || UNIX98] (sched_ss_init_budget): Likewise.
21487         [POSIX || UNIX98] (sched_ss_max_repl): Likewise.
21488         [POSIX || UNIX98] (SCHED_SPORADIC): Do not specify optional
21489         constant.
21490
21491 2013-09-24  Olivier Langlois  <olivier@olivierlanglois.net>
21492
21493         * stdio-common/tst-long-dbl-fphex.c (do_test): Fix swprintf length
21494         argument calculation.
21495
21496 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
21497
21498         * conform/data/pthread.h-data [POSIX] (PTHREAD_MUTEX_INITIALIZER):
21499         Expect macro.
21500         [POSIX] (pthread_attr_t): Do not require type.
21501         [POSIX] (pthread_cond_t): Likewise.
21502         [POSIX] (pthread_condattr_t): Likewise.
21503         [POSIX] (pthread_key_t): Likewise.
21504         [POSIX] (pthread_mutex_t): Likewise.
21505         [POSIX] (pthread_mutexattr_t): Likewise.
21506         [POSIX] (pthread_once_t): Likewise.
21507         [POSIX] (pthread_t): Likewise.
21508         [POSIX-based standards] (pthread_atfork): Expect function.
21509
21510 2013-09-24  Joseph Myers  <joseph@codesourcery.com>
21511             Richard Sandiford  <richard@codesourcery.com>
21512
21513         * locale/programs/locfile.h: Include <byteswap.h> and <stdbool.h>.
21514         (swap_endianness_p): New extern variable.
21515         (set_big_endian): New inline function.
21516         (maybe_swap_uint32): Likewise.
21517         (maybe_swap_uint32_array): Likewise.
21518         (maybe_swap_uint32_obstack): Likewise.
21519         * locale/programs/locfile.c: Include <stdbool.h>.
21520         (swap_endianness_p): New variable.
21521         (add_locale_uint32): Call maybe_swap_uint32.
21522         (add_locale_uint32_array): Call maybe_swap_uint32_obstack.
21523         (write_locale_data): Call maybe_swap_uint32_array.
21524         * locale/programs/ld-collate.c (obstack_int32_grow): Call
21525         maybe_swap_uint32.
21526         (obstack_int32_grow_fast): Likewise.
21527         (output_weightwc): Call maybe_swap_uint32_obstack.
21528         (collate_output): Likewise.
21529         * locale/programs/localedef.c (OPT_LITTLE_ENDIAN): New macro.
21530         (OPT_LITTLE_ENDIAN): Likewise.
21531         (options): Add --little-endian and --big-endian options.
21532         (parse_opt): Handle OPT_LITTLE_ENDIAN and OPT_BIG_ENDIAN.
21533         * locale/programs/locarchive.c: Include "locfile.h".
21534         (GET): New macro.
21535         (SET): Likewise.
21536         (INC): Likewise.
21537         (create_archive): Use the new macros to access fields of
21538         structures directly mapped from or written to locale archives.
21539         (oldlocrecentcmp): Likewise.
21540         (enlarge_archive): Likewise.
21541         (insert_name): Likewise.
21542         (add_alias): Likewise.
21543         (add_locale): Likewise.
21544         (delete_locales_from_archive): Likewise.
21545         (show_archive_content): Likewise.
21546         (add_locale_to_archive): Likewise.  Use maybe_swap_uint32 on
21547         locale data.
21548
21549 2013-09-24  Roland McGrath  <roland@hack.frob.com>
21550
21551         * manual/freemanuals.texi: Updated from (newly) canonical copy at
21552         http://www.gnu.org/doc/freemanuals.texi.
21553         * manual/libc.texinfo (Free Manuals): Put the @appendix line here.
21554
21555 2013-09-24  Will Newton  <will.newton@linaro.org>
21556
21557         * sysdeps/mach/hurd/i386/tls.h (TLS_INIT_TP_EXPENSIVE): Remove
21558         macro.
21559
21560 2013-09-23  Joseph Myers  <joseph@codesourcery.com>
21561
21562         * locale/hashval.h (compute_hashval): Interpret bytes of key as
21563         unsigned char.
21564
21565 2013-09-23  Maciej W. Rozycki  <macro@codesourcery.com>
21566
21567         * manual/threads.texi (POSIX Threads): Fix a typo.
21568
21569 2013-09-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
21570
21571         [BZ #14547]
21572         * string/tst-strcoll-overflow.c: New test case.
21573         * string/Makefile (xtests): Add tst-strcoll-overflow.
21574         * string/strcoll_l.c (STRCOLL): Skip allocating memory for
21575         cache if string sizes may cause integer overflow.
21576
21577         [BZ #14547]
21578         * string/strcoll_l.c (coll_seq): New members rule, idx,
21579         save_idx and back_us.
21580         (get_next_seq_nocache): New function.
21581         (do_compare_nocache): New function.
21582         (STRCOLL): Use get_next_seq_nocache and do_compare_nocache
21583         when malloc fails.
21584
21585 2013-09-23  Carlos O'Donell  <carlos@redhat.com>
21586
21587         [BZ #15754]
21588         * sysdeps/generic/stackguard-macros.h: If PTRGUARD_LOCAL use
21589         __pointer_chk_guard_local, otherwise __pointer_chk_guard.
21590         * elf/Makefile: Define CFLAGS-tst-ptrguard1-static.c.
21591
21592         [BZ #15754]
21593         * elf/Makefile (tests): Add tst-ptrguard1.
21594         (tests-static): Add tst-ptrguard1-static.
21595         (tst-ptrguard1-ARGS): Define.
21596         (tst-ptrguard1-static-ARGS): Define.
21597         * elf/tst-ptrguard1.c: New file.
21598         * elf/tst-ptrguard1-static.c: New file.
21599         * sysdeps/x86_64/stackguard-macros.h: Define POINTER_CHK_GUARD.
21600         * sysdeps/i386/stackguard-macros.h: Likewise.
21601         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
21602         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
21603         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
21604         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
21605         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
21606         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
21607
21608 2013-09-23  Hector Marco  <hecmargi@upv.es>
21609             Ismael Ripoll  <iripoll@disca.upv.es>
21610             Carlos O'Donell  <carlos@redhat.com>
21611
21612         [BZ #15754]
21613         * sysdeps/generic/stackguard-macros.h: Define
21614         __pointer_chk_guard_local and POINTER_CHK_GUARD.
21615         * csu/libc-start.c [!SHARED && !THREAD_SET_POINTER_GUARD]:
21616         Define __pointer_chk_guard_local.
21617         (LIBC_START_MAIN) [!SHARED]: Call _dl_setup_pointer_guard.
21618         Use THREAD_SET_POINTER_GUARD or set __pointer_chk_guard_local.
21619
21620 2013-09-15  Vinitha Vijayan <vinitha.vijayann@gmail.com>
21621
21622         [BZ #15859]
21623         * elf/dl-deps.c (_dl_map_object_deps): Remove duplicate declaration.
21624
21625 2013-09-20  Andreas Schwab  <schwab@linux-m68k.org>
21626
21627         * include/string.h (__ffs): Declare as hidden.
21628         * string/ffs.c (__ffs): Define as hidden.
21629         * sysdeps/i386/ffs.c (__ffs): Likewise.
21630         * sysdeps/i386/i686/ffs.c (__ffs): Likewise.
21631         * sysdeps/powerpc/ffs.c (__ffs): Likewise.
21632         * sysdeps/s390/ffs.c (__ffs): Likewise.
21633         * sysdeps/x86_64/ffs.c (__ffs): Likewise.
21634
21635 2013-09-20  Alexandre Oliva <aoliva@redhat.com>
21636
21637         * NEWS: Mention malloc probes.
21638
21639         * malloc/arena.c (new_heap): New memory_heap_new probe.
21640         (grow_heap): New memory_heap_more probe.
21641         (shrink_heap): New memory_heap_less probe.
21642         (heap_trim): New memory_heap_free probe.
21643         * malloc/malloc.c (sysmalloc): New memory_sbrk_more probe.
21644         (systrim): New memory_sbrk_less probe.
21645         * manual/probes.texi: Document them.
21646
21647         * malloc/arena.c (arena_get_retry): Add memory_arena_retry probe.
21648         * manual/probes.texi: Document it.
21649
21650         * malloc/malloc.c (__libc_malloc): Add memory_malloc_retry probe.
21651         (__libc_realloc): Add memory_realloc_retry probe.
21652         (__libc_memalign): Add memory_memalign_retry probe.
21653         (__libc_valloc): Add memory_valloc_retry probe.
21654         (__libc_pvalloc): Add memory_pvalloc_retry probe.
21655         (__libc_calloc): Add memory_calloc_retry probe.
21656         * manual/probes.texi: Document them.
21657
21658         * malloc/arena.c (get_free_list): Add probe
21659         memory_arena_reuse_free_list.
21660         (reused_arena) [PER_THREAD]: Add probes memory_arena_reuse_wait
21661         and memory_arena_reuse.
21662         (arena_get2) [!PER_THREAD]: Likewise.
21663         * malloc/malloc.c (__libc_realloc) [!PER_THREAD]: Add probe
21664         memory_arena_reuse_realloc.
21665         * manual/probes.texi: Document them.
21666
21667         * malloc/malloc.c (__libc_free): Add
21668         memory_mallopt_free_dyn_thresholds probe.
21669         (__libc_mallopt): Add multiple memory_mallopt probes.
21670         * manual/probes.texi: Document them.
21671
21672         * malloc/malloc.c: Include stap-probe.h.
21673         (__libc_mallopt): Add memory_mallopt probe.
21674         * malloc/arena.c (_int_new_arena): Add memory_arena_new probe.
21675         * manual/probes.texi: New.
21676         * manual/Makefile (chapters): Add probes.
21677         * manual/threads.texi: Set next node.
21678
21679 2013-09-19  Wei-Lun Chao  <bluebat@member.fsf.org>
21680
21681         [BZ #15963, #13985]
21682         * locale/iso-639.def: Add Chiga (cgg) and Chinese (gan, hak,
21683         czh, cjy, lzh, cmn, mnp, cdo, czo, cpx, wuu, hsn, yue).
21684         Add `Chinese' to `nan' entry name.
21685
21686 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
21687
21688         * sysdeps/ieee754/dbl-64/s_sin.c (POLYNOMIAL2): New macro.
21689         (POLYNOMIAL): Likewise.
21690         (TAYLOR_SINCOS): Likewise.
21691         (TAYLOR_SLOW): Likewise.
21692         (__sin): Use TAYLOR_SINCOS.
21693         (__cos): Likewise.
21694         (slow): Use TAYLOR_SLOW.
21695         (sloww): Likewise.
21696         (bsloww): Likewise.
21697         (csloww): Likewise.
21698
21699 2013-09-19  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
21700
21701         * stdlib/strtod_l.c: Fix buffer overrun.
21702
21703 2013-09-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
21704
21705         * benchtests/Makefile (bench): Add sincos.
21706         * benchtests/bench-sincos.c: New file.
21707
21708         * math/libm-test.inc (cos_test_data): New test inputs.
21709         (sin_test_data): Likewise.
21710
21711         * sysdeps/ieee754/dbl-64/s_sin.c (SINCOS_TABLE_LOOKUP): New
21712         macro.
21713         (__sin): Use it.
21714         (__cos): Likewise.
21715         (slow1): Likewise.
21716         (slow2): Likewise.
21717         (sloww1): Likewise.
21718         (sloww2): Likewise.
21719         (bsloww1): Likewise.
21720         (bsloww2): Likewise.
21721         (cslow2): Likewise.
21722         (csloww1): Likewise.
21723         (csloww2): Likewise.
21724
21725         * sysdeps/ieee754/dbl-64/s_sin.c (reduce_and_compute): New
21726         function.
21727         (__sin): Use it.
21728         (__cos): Likewise.
21729
21730         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Remove redundant
21731         gotos.
21732         (__cos): Likewise.
21733
21734 2013-09-18  Maciej W. Rozycki  <macro@codesourcery.com>
21735
21736         * config.h.in (HAVE_MIPS_NAN2008): New macro.
21737         * elf/elf.h (EF_MIPS_NAN2008): Likewise.
21738         * sysdeps/generic/ldconfig.h (FLAG_MIPS_LIB32_NAN2008): Likewise.
21739         (FLAG_MIPS64_LIBN32_NAN2008): Likewise.
21740         (FLAG_MIPS64_LIBN64_NAN2008): Likewise.
21741         * elf/cache.c (print_entry): Handle the new cache flags.
21742
21743 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
21744             Aldy Hernandez  <aldyh@redhat.com>
21745
21746         * sysdeps/powerpc/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]:
21747         Change condition to [_SOFT_FLOAT].
21748         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_NEAREST): New macro.
21749         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_DOWN): Likewise.
21750         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_UP): Likewise.
21751         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RC_ZERO): Likewise.
21752         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_ZM): Likewise.
21753         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_OM): Likewise.
21754         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_UM): Likewise.
21755         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_XM): Likewise.
21756         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_MASK_IM): Likewise.
21757         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_RESERVED): Likewise.
21758         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_DEFAULT): Likewise.
21759         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_IEEE): Likewise.
21760         [__NO_FPRS__ && !_SOFT_FLOAT] (fpu_control_t): New typedef.
21761         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_GETCW): New macro.
21762         [__NO_FPRS__ && !_SOFT_FLOAT] (_FPU_SETCW): Likewise.
21763         [__NO_FPRS__ && !_SOFT_FLOAT] (__fpu_control): New variable
21764         declaration.
21765
21766 2013-09-18  Joseph Myers  <joseph@codesourcery.com>
21767
21768         * sysdeps/powerpc/powerpc32/__longjmp-common.S (LOAD_GP): Define
21769         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
21770         (__longjmp): Use LOAD_GP to load saved GPRs.
21771         * sysdeps/powerpc/powerpc32/setjmp-common.S (SAVE_GP): Define
21772         macro conditional on [__SPE__ || (__NO_FPRS__ && !_SOFT_FLOAT)].
21773         (__sigsetjmp): Use SAVE_GP to save GPRs.
21774
21775         * sysdeps/powerpc/powerpc32/Makefile [$(with-fp) = no] (+cflags):
21776         Do not append -msoft-float.
21777         [$(with-fp) = no] (sysdep-LDFLAGS): Likewise.
21778
21779 2013-09-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
21780
21781         * sysdeps/ieee754/dbl-64/sincos32.c: Fix code formatting.
21782
21783 2013-09-17  Joseph Myers  <joseph@codesourcery.com>
21784
21785         [BZ #15966]
21786         * sysdeps/powerpc/fpu_control.h [!_SOFT_FLOAT && !__NO_FPRS__]
21787         (_FPU_GETCW): Use initial "__" on variable and field names but not
21788         on macro parameter name.
21789         [!_SOFT_FLOAT && !__NO_FPRS__] (_FPU_SETCW): Likewise.  Use
21790         parentheses around reference to macro parameter.
21791
21792 2013-09-13  Richard Sandiford  <richard@codesourcery.com>
21793
21794         * locale/programs/ld-ctype.c (find_idx): Use uint32_t in
21795         prototype.
21796         (ctype_startup): Use uint32_t in cast and sizeof for
21797         ctype->charnames.
21798
21799 2013-09-11  Jia Liu  <proljc@gmail.com>
21800
21801         * sunrpc/rpc/types.h [__APPLE_CC__]: Define __u_char_defined and
21802         __daddr_t_defined.
21803         [__FreeBSD__]: Likewise.
21804
21805 2013-09-11  Ondřej Bílka  <neleai@seznam.cz>
21806
21807         * sysdeps/x86_64/multiarch/ifunc-impl-list.c
21808         (__libc_ifunc_impl_list): Remove: __strchr_sse42.
21809         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Remove.
21810         (strchr): Remove __strchr_sse42 ifunc selection.
21811         * sysdeps/x86_64/strchr.S (strchr): Use optimized implementation.
21812         * sysdeps/x86_64/strchrnul.S: Include sysdeps/x86_64/strchr.S.
21813
21814 2013-09-11  Will Newton  <will.newton@linaro.org>
21815
21816         * benchtests/bench-timing.h (TIMING_INIT): Rename ITERS
21817         parameter to RES. Remove hardcoded 1000 value.
21818         * benchtests/bench-skeleton.c (main): Pass RES parameter
21819         to TIMING_INIT and multiply result by 1000.
21820
21821 2013-09-10  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
21822
21823         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
21824
21825 2013-09-11  Andreas Schwab  <schwab@suse.de>
21826
21827         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (__O_TMPFILE): Define
21828         if not defined.
21829         (O_TMPFILE) [__USE_GNU]: Define.
21830         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_TMPFILE):
21831         Define.
21832
21833 2013-09-11  Will Newton  <will.newton@linaro.org>
21834
21835         [BZ #15857]
21836         * malloc/malloc.c (__libc_memalign): Check the value of bytes
21837         does not overflow.
21838
21839 2013-09-11  Will Newton  <will.newton@linaro.org>
21840
21841         [BZ #15856]
21842         * malloc/malloc.c (__libc_valloc): Check the value of bytes
21843         does not overflow.
21844
21845 2013-09-11  Will Newton  <will.newton@linaro.org>
21846
21847         [BZ #15855]
21848         * malloc/malloc.c (__libc_pvalloc): Check the value of bytes
21849         does not overflow.
21850
21851 2013-09-10  Ondřej Bílka  <neleai@seznam.cz>
21852
21853         * sysdeps/ieee754/dbl-64/e_j0.c: Remove DO_NOT_USE_THIS conditionals.
21854         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
21855         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
21856         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
21857         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
21858
21859 2013-09-10  Allan McRae  <allan@archlinux.org>
21860
21861         [BZ #15748]
21862         * manual/arith.texi (Parsing of Floats): Clarify
21863         cross-reference.
21864
21865         [BZ #15849]
21866         * manual/install.texi (Running make install): Mention
21867         --enable-pt-chown.
21868         * INSTALL: Regenerated.
21869
21870 2013-09-09  Maciej W. Rozycki  <macro@codesourcery.com>
21871
21872         * csu/init-first.c (_init): Remove the !SHARED condition around
21873         FPU control word initialization.
21874         * elf/dl-support.c (_dl_fpu_control): New variable.
21875         (_dl_aux_init) <AT_FPUCW>: Initialize it.
21876         * math/test-fpucw.c [!FPU_CONTROL] (FPU_CONTROL): New macro.
21877         (main): Replace _FPU_DEFAULT with FPU_CONTROL throughout.
21878         * math/test-fpucw-static.c: New file.
21879         * math/test-fpucw-ieee.c: New file.
21880         * math/test-fpucw-ieee-static.c: New file.
21881         * math/Makefile (tests): Add `test-fpucw-ieee' and
21882         `$(tests-static)'.
21883         (tests-static): New variable.
21884         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests))): Move
21885         dependency to...
21886         [($(build-shared),yes)]
21887         ($(addprefix $(objpfx),$(filter-out $(tests-static),$(tests)))):
21888         ... this.
21889         [($(build-shared),yes)] ($(addprefix $(objpfx),$(tests-static))):
21890         New dependency.
21891
21892 2013-09-09  Allan McRae  <allan@archlinux.org>
21893
21894         [BZ #15939]
21895         * manual/string.texi (Collation Functions): Fix typo in
21896         strcoll example.
21897         Reported by Suren Karapetyan <me@suren.karapetyan.name>.
21898
21899         [BZ #15893]
21900         * stdlib/isomac.c (get_null_defines): Fix memory leak.
21901
21902         [BZ #15892]
21903         * libio/memstream.c (open_memstream): Fix memory leak.
21904         * libio/wmemstream.c (open_wmemstream): Likewise.
21905
21906         [BZ #15895]
21907         * nscd/netgroupcache.c: Fix nesting of ifdefs.
21908
21909 2013-09-09  Will Newton  <will.newton@linaro.org>
21910
21911         * malloc/Makefile: Add tst-realloc to tests.
21912         * malloc/tst-realloc.c: New file.
21913
21914 2013-09-09  Allan McRae  <allan@archlinux.org>
21915
21916         [BZ #15844]
21917         * COPYING: Update from GNU website to fix FSF address.
21918         * COPYING.LIB: Likewise.
21919
21920 2013-09-06  David S. Miller  <davem@davemloft.net>
21921
21922         * po/zh_TW.po: Update Chinese (traditional) translation from
21923         translation project.
21924
21925 2013-09-06  Richard Sandiford  <richard@codesourcery.com>
21926             Joseph Myers  <joseph@codesourcery.com>
21927
21928         * locale/programs/locfile.c: Include <assert.h>, <wchar.h> and
21929         "localeinfo.h".
21930         (obstack_chunk_alloc): New macro.
21931         (obstack_chunk_free): Likewise.
21932         (record_offset): New function.
21933         (init_locale_data): Likewise.
21934         (align_locale_data): Likewise.
21935         (add_locale_empty): Likewise.
21936         (add_locale_raw_data): Likewise.
21937         (add_locale_raw_obstack): Likewise.
21938         (add_locale_string): Likewise.
21939         (add_locale_wstring): Likewise.
21940         (add_locale_uint32): Likewise.
21941         (add_locale_uint32_array): Likewise.
21942         (add_locale_char): Likewise.
21943         (start_locale_structure): Likewise.
21944         (end_locale_structure): Likewise.
21945         (start_locale_prelude): Likewise.
21946         (end_locale_prelude): Likewise.
21947         (write_locale_data): Take locale_file structure rather than an
21948         iovec.
21949         * locale/programs/locfile.h: Include "obstack.h".
21950         (struct locale_file): Change to store locale file contents instead
21951         of header.
21952         (init_locale_data): New prototype.
21953         (align_locale_data): Likewise.
21954         (add_locale_empty): Likewise.
21955         (add_locale_raw_data): Likewise.
21956         (add_locale_raw_obstack): Likewise.
21957         (add_locale_string): Likewise.
21958         (add_locale_wstring): Likewise.
21959         (add_locale_uint32): Likewise.
21960         (add_locale_uint32_array): Likewise.
21961         (add_locale_char): Likewise.
21962         (start_locale_structure): Likewise.
21963         (end_locale_structure): Likewise.
21964         (start_locale_prelude): Likewise.
21965         (end_locale_prelude): Likewise.
21966         (write_locale_data): Update prototype.
21967         * locale/programs/3level.h (struct TABLE): Remove result field.
21968         (CONCAT(TABLE,_finalize)): Change to CONCAT(add_locale_,TABLE).
21969         Use new locale_file interface.
21970         [!NO_FINALIZE]: Change condition to [!NO_ADD_LOCALE].
21971         (NO_FINALIZE): Change #undef to #undef of NO_ADD_LOCALE.
21972         * locale/programs/ld-address.c (address_output): Use new
21973         locale_file interface.
21974         * locale/programs/ld-collate.c (NO_FINALIZE): Change to
21975         NO_ADD_LOCALE.
21976         (collate_finish): Don't call collseq_table_finalize.
21977         (collate_output): Use new locale_file interface.
21978         * locale/programs/ld-ctype.c: Move includes of "3level.h" earlier
21979         in file.
21980         (NO_FINALIZE): Change to NO_ADD_LOCALE.
21981         (TABLE): Move defines earlier in file.
21982         (ELEMENT): Likewise.
21983         (DEFAULT): Likewise.
21984         (wctrans_table_add): Move macro and inline function earlier in
21985         file.
21986         (struct wctype_table): Move type earlier in file.
21987         (add_locale_wctype_table): New static prototype.
21988         (struct locale_ctype_t): Use logical types instead of struct iovec
21989         pointers for members.
21990         (ctype_output): Use new locale_file interface.
21991         (wctype_table_finalize): Change to add_locale_wctype_table.  Use
21992         new locale_file interface.
21993         (allocate_arrays): Update for use of new locale_file interface.
21994         * locale/programs/ld-identification.c (identification_output): Use
21995         new locale_file interface.
21996         * locale/programs/ld-measurement.c (measurement_output): Likewise.
21997         * locale/programs/ld-messages.c (messages_output): Likewise.
21998         * locale/programs/ld-monetary.c (monetary_output): Likewise.
21999         * locale/programs/ld-name.c (name_output): Likewise.
22000         * locale/programs/ld-numeric.c (numeric_output): Likewise.
22001         * locale/programs/ld-paper.c (paper_output): Likewise.
22002         * locale/programs/ld-telephone.c (telephone_output): Likewise.
22003         * locale/programs/ld-time.c (time_output): Likewise.
22004
22005 2013-09-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22006
22007         * benchtests/Makefile: Add memrchr benchmark.
22008         * benchtests/bench-memchr.c (USE_AS_MEMRCHR): Add define to use
22009         benchmark as memrchr.
22010         * benchtests/bench-memrchr-ifunc.c: New file.
22011         * benchtests/bench-memrchr.c: New file.
22012
22013 2013-09-06   Will Newton  <will.newton@linaro.org>
22014
22015         * benchtests/Makefile (string-bench): Add memcpy.
22016
22017 2013-09-05  Carlos O'Donell  <carlos@redhat.com>
22018             Cong Wang  <amwang@redhat.com>
22019
22020         [BZ #15850]
22021         * sysdeps/unix/sysv/linux/bits/in.h
22022         [_UAPI_LINUX_IN6_H]: Define __USE_KERNEL_IPV6_DEFS.
22023         * inet/netinet/in.h: Move in_addr definition and bits/in.h inclusion
22024         before __USE_KERNEL_IPV6_DEFS uses.
22025         * inet/netinet/in.h [!__USE_KERNEL_IPV6_DEFS]: Define IPPROTO_MH, and
22026         IPPROTO_BEETPH.
22027         [__USE_KERNEL_IPV6_DEFS]: Don't define any of IPPROTO_*, in6_addr,
22028         sockaddr_in6, or ipv6_mreq.
22029
22030 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22031
22032         * sysdeps/powerpc/powerpc32/power7/memrchr.S (__memrchr): Fix invalid
22033         memory access for final bytes in some large inputs.
22034         * sysdeps/powerpc/powerpc64/power7/memrchr.S (__memrchr): Likewise.
22035
22036 2013-09-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22037
22038         * string/test-memrchr.c: New file.
22039         * string/test-memrchr-ifunc.c: New file.
22040         * string/Makefile: Add new memrchr testcase.
22041
22042 2013-09-05  Mike Frysinger  <vapier@gentoo.org>
22043
22044         * sysdeps/unix/sysv/linux/tst-fanotify.c (do_test): Skip test when
22045         fanotify_init returns EPERM.
22046
22047 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
22048
22049         * conform/conformtest.pl (newtoken): Treat tokens not allowed as
22050         errors.
22051         (top level): Treat second token from macro or constant entries for
22052         allowed headers as allowed.
22053         * include/complex.h: Condition internal declarations on
22054         [!_ISOMAC].
22055         * include/fenv.h: Condition include of <stdbool.h> and internal
22056         declarations on [!_ISOMAC].
22057
22058 2013-09-04  Chris Leonard  <cjl@sugarlabs,.org>
22059
22060         [BZ #15923]
22061         * locale/iso-4217.def: Update iso-1427.def and related occurrences.
22062
22063 2013-09-04  Joseph Myers  <joseph@codesourcery.com>
22064
22065         * configure.in (--enable-versioning): Remove configure option.
22066         (libc_cv_asm_symver_directive): Remove configure test.
22067         (libc_cv_ld_version_script_option): Likewise.
22068         (VERSIONING): Remove variable and AC_SUBST.
22069         (DO_VERSIONING): Remove AC_DEFINE.
22070         * configure: Regenerated.
22071         * config.h.in (DO_VERSIONING): Remove macro.
22072         * Makerules [$(versioning) = yes]: Change conditionals to
22073         [$(build-shared) = yes].
22074         * config.make.in (versioning): Remove variable.
22075         * dlfcn/Makefile [$(versioning) = yes]: Change conditionals to
22076         [$(build-shared) = yes].
22077         * dlfcn/modstatic2.c (test) [DO_VERSIONING]: Remove conditional.
22078         * dlfcn/tststatic2.c (main) [DO_VERSIONING]: Likewise.
22079         * elf/Makefile [$(versioning) = yes]: Change conditionals to
22080         [$(build-shared) = yes].
22081         * extra-lib.mk [$(versioning) = yes]: Likewise.
22082         * hurd/Makefile [$(versioning) = yes]: Likewise.
22083         * hurd/geteuids.c [SHARED && DO_VERSIONING]: Change conditional to
22084         [SHARED].
22085         * include/libc-symbols.h [DO_VERSIONING]: Change conditional to
22086         [SHARED].
22087         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
22088         [SHARED && !NO_HIDDEN].
22089         * include/shlib-compat.h [DO_VERSIONING]: Change conditional to
22090         [SHARED].
22091         [SHARED && DO_VERSIONING]: Likewise..
22092         * libio/Makefile [$(versioning) = yes]: Change conditionals to
22093         [$(build-shared) = yes].
22094         * manual/install.texi (--disable-versioning): Remove
22095         documentation.
22096         * INSTALL: Regenerated.
22097         * resolv/res_libc.c [SHARED && DO_VERSIONING]: Change conditional
22098         to [SHARED].
22099         * sunrpc/Makefile [$(versioning) = yes]: Change conditional to
22100         [$(build-shared) = yes].
22101         * sysdeps/gnu/Makefile [$(versioning) = yes]: Likewise.
22102         * sysdeps/i386/i686/multiarch/strstr-c.c
22103         [SHARED && DO_VERSIONING && !NO_HIDDEN]: Change conditional to
22104         [SHARED && !NO_HIDDEN].
22105         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h
22106         [SHARED && DO_VERSIONING]: Change conditional to [SHARED].
22107         * sysdeps/powerpc/powerpc32/dl-machine.c
22108         [SHARED && !(DO_VERSIONING - 0)]: Remove conditional error.
22109         * sysdeps/powerpc/powerpc32/sysdep.h
22110         [SHARED && DO_VERSIONING && PIC && !NO_HIDDEN]: Change conditional
22111         to [SHARED && PIC && !NO_HIDDEN].
22112         * sysdeps/wordsize-32/divdi3.c [SHARED && DO_VERSIONING]: Change
22113         conditional to [SHARED].
22114
22115 2013-09-04   Will Newton  <will.newton@linaro.org>
22116
22117         * benchtests/bench-timing.h (TIMING_PRINT_MEAN): New macro.
22118         * benchtests/bench-string.h: Include bench-timing.h instead
22119         of including hp-timing.h directly. (INNER_LOOP_ITERS): New
22120         define. (HP_TIMING_BEST): Delete macro. (test_init): Remove
22121         call to HP_TIMING_DIFF_INIT.
22122         * benchtests/bench-memccpy.c: Use bench-timing.h macros
22123         instead of hp-timing.h macros.
22124         * benchtests/bench-memchr.c: Likewise.
22125         * benchtests/bench-memcmp.c: Likewise.
22126         * benchtests/bench-memcpy.c: Likewise.
22127         * benchtests/bench-memmem.c: Likewise.
22128         * benchtests/bench-memmove.c: Likewise.
22129         * benchtests/bench-memset.c: Likewise.
22130         * benchtests/bench-rawmemchr.c: Likewise.
22131         * benchtests/bench-strcasecmp.c: Likewise.
22132         * benchtests/bench-strcasestr.c: Likewise.
22133         * benchtests/bench-strcat.c: Likewise.
22134         * benchtests/bench-strchr.c: Likewise.
22135         * benchtests/bench-strcmp.c: Likewise.
22136         * benchtests/bench-strcpy.c: Likewise.
22137         * benchtests/bench-strcpy_chk.c: Likewise.
22138         * benchtests/bench-strlen.c: Likewise.
22139         * benchtests/bench-strncasecmp.c: Likewise.
22140         * benchtests/bench-strncat.c: Likewise.
22141         * benchtests/bench-strncmp.c: Likewise.
22142         * benchtests/bench-strncpy.c: Likewise.
22143         * benchtests/bench-strnlen.c: Likewise.
22144         * benchtests/bench-strpbrk.c: Likewise.
22145         * benchtests/bench-strrchr.c: Likewise.
22146         * benchtests/bench-strspn.c: Likewise.
22147         * benchtests/bench-strstr.c: Likewise.
22148
22149 2013-09-04  Will Newton  <will.newton@linaro.org>
22150
22151         * benchtests/Makefile: Use LDLIBS instead of LDFLAGS.
22152
22153 2013-09-03  Joseph Myers  <joseph@codesourcery.com>
22154
22155         [BZ #15427]
22156         * sysdeps/ieee754/flt-32/e_lgammaf_r.c (__ieee754_lgammaf_r): Use
22157         2**-30 instead of 2**-70 as threshold for returning -log(|x|).
22158         * math/libm-test.inc (lgamma_test_data): Add more tests.
22159         * sysdeps/i386/fpu/libm-test-ulps: Update.
22160         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22161
22162 2013-09-03   Ondřej Bílka  <neleai@seznam.cz>
22163
22164         * sysdeps/x86_64/multiarch/strcmp-sse2-unaligned.S: New file.
22165         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
22166         Add ifunc.
22167         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
22168         Add strcmp-sse2-unaligned
22169         * sysdeps/x86_64/multiarch/strcmp.S (strcmp): Add ifunc.
22170
22171 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
22172
22173         * Versions.def (libc): Add GLIBC_2.19.
22174
22175 2013-09-02  Mike Frysinger  <vapier@gentoo.org>
22176
22177         * sysdeps/unix/sysv/linux/tst-fanotify.c: New test.
22178         * sysdeps/unix/sysv/linux/Makefile (tests): Add tst-fanotify.
22179
22180 2013-09-02  Joseph Myers  <joseph@codesourcery.com>
22181
22182         [BZ #14155]
22183         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_jnf): Use double for
22184         intermediate calculations in recurrence.
22185         (__ieee754_ynf): Likewise.
22186         * math/libm-test.inc (jn_test_data): Do not allow spurious
22187         underflow exception.  Add more tests.
22188         (yn_test_data): Add more tests.
22189         * sysdeps/i386/fpu/libm-test-ulps: Update.
22190         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22191
22192 2013-09-02   Ondřej Bílka  <neleai@seznam.cz>
22193
22194         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Fix typo.
22195
22196 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
22197
22198         * csu/init-first.c: Fix then/than typos.
22199         * locale/programs/ld-collate.c: Likewise.
22200         * locale/programs/linereader.h: Likewise.
22201         * manual/charset.texi: Likewise.
22202         * manual/filesys.texi: Likewise.
22203         * manual/stdio.texi: Likewise.
22204         * manual/string.texi: Likewise.
22205         * stdlib/fmtmsg.c: Likewise.
22206         * sysdeps/i386/stpncpy.S: Likewise.
22207         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
22208         * sysdeps/powerpc/powerpc32/power6/memset.S: Likewise.
22209         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
22210         * sysdeps/powerpc/powerpc64/power6/memset.S: Likewise.
22211
22212 2013-08-30   Ondřej Bílka  <neleai@seznam.cz>
22213
22214         * elf/dl-open.c: Fix typos.
22215         * iconvdata/gbbig5.c: Likewise.
22216         * iconvdata/iso-2022-jp.c: Likewise.
22217         * iconv/gconv_int.h: Likewise.
22218         * iconv/loop.c: Likewise.
22219         * nis/rpcsvc/nis.h: Likewise.
22220         * resolv/ns_name.c: Likewise.
22221         * stdio-common/vfscanf.c: Likewise.
22222         * streams/stropts.h: Likewise.
22223         * sunrpc/rpc_thread.c: Likewise.
22224         * sysdeps/i386/strpbrk.S: Likewise.
22225         * sysdeps/ieee754/k_standard.c: Likewise.
22226         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
22227         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
22228         * sysdeps/mach/hurd/dl-sysdep.c: Likewise.
22229         * sysdeps/mach/hurd/profil.c: Likewise.
22230         * sysdeps/s390/dl-procinfo.h: Likewise.
22231         * sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
22232         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
22233         * sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
22234         * sysdeps/x86_64/dl-trampoline.S: Likewise.
22235         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
22236
22237 2013-08-30  Ondřej Bílka  <neleai@seznam.cz>
22238
22239         * sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
22240         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Remove rawmemchr ifunc.
22241
22242 2013-08-29  Ondřej Bílka  <neleai@seznam.cz>
22243
22244         * sysdeps/unix/sysv/linux/powerpc/aix/aix-dirent.h: Remove
22245         aix specific files.
22246         * sysdeps/unix/sysv/linux/powerpc/aix/aix-errno.h: Likewise.
22247         * sysdeps/unix/sysv/linux/powerpc/aix/aix-stat.h: Likewise.
22248         * sysdeps/unix/sysv/linux/powerpc/aix/aix-termios.h: Likewise.
22249         * sysdeps/unix/sysv/linux/powerpc/aix/direntconv.c: Likewise.
22250         * sysdeps/unix/sysv/linux/powerpc/aix/errnoconv.c: Likewise.
22251         * sysdeps/unix/sysv/linux/powerpc/aix/statconv.c: Likewise.
22252         * sysdeps/unix/sysv/linux/powerpc/aix/tcgetattr.c: Likewise.
22253         * sysdeps/unix/sysv/linux/powerpc/aix/tcsetattr.c: Likewise.
22254
22255 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
22256             Roland McGrath  <roland@hack.frob.com>
22257
22258         * sysdeps/mach/hurd/errnos.awk (BEGIN): Emit ESUCCESS.
22259         * sysdeps/mach/hurd/bits/errno.h: Regenerate.
22260
22261 2013-08-29  Samuel Thibault  <samuel.thibault@ens-lyon.org>
22262
22263         * sysdeps/mach/hurd/i386/init-first.c (init1): Use
22264         __executable_start symbol instead of _start.
22265
22266 2013-08-29  Thomas Schwinge  <thomas@codesourcery.com>
22267
22268         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_HEADER)
22269         (VALID_ELF_OSABI, VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA):
22270         Move macros to...
22271         * sysdeps/gnu/ldsodefs.h: ... this new file.
22272
22273         * sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_OSABI)
22274         (VALID_ELF_ABIVERSION, MORE_ELF_HEADER_DATA): Use ELFOSABI_GNU
22275         instead of ELFOSABI_LINUX.
22276
22277         [BZ #15522] strtod ("nan(N)") returning a sNaN in some cases
22278         * stdlib/strtof_l.c (SET_MANTISSA): Rewrite.
22279         * stdlib/strtod_l.c (SET_MANTISSA): Likewise.
22280         * sysdeps/ieee754/ldbl-64-128/strtold_l.c (SET_MANTISSA):
22281         Likewise.
22282         * sysdeps/ieee754/ldbl-96/strtold_l.c (SET_MANTISSA): Likewise.
22283         * sysdeps/ieee754/ldbl-128/strtold_l.c (SET_MANTISSA): Likewise.
22284         * sysdeps/ieee754/ldbl-128ibm/strtold_l.c (SET_MANTISSA):
22285         Likewise.
22286         * sysdeps/ieee754/ldbl-128ibm/ieee754.h
22287         (ibm_extended_long_double): Add ieee_nan member.
22288         * stdlib/tst-strtod6.c (test): New function, renamed from do_test.
22289         (do_test): New function.
22290
22291         * math/basic-test.c (TEST_CONVERT): New macro, renamed from
22292         TEST_TRUNC.
22293         (convert_dfsf_test, convert_tfsf_test, convert_tfdf_test): New
22294         functions, renamed from truncdfsf_test, trunctfsf_test,
22295         trunctfdf_test.
22296         (convert_sfdf_test, convert_sftf_test, convert_dftf_test): New
22297         functions.
22298         (do_test): Run all these.
22299
22300 2013-08-29   Ondřej Bílka  <neleai@seznam.cz>
22301
22302         * argp/argp-help.c: Fix typos.
22303         * argp/argp-parse.c: Likewise.
22304         * debug/backtracesyms.c: Likewise.
22305         * elf/elf.h: Likewise.
22306         * malloc/malloc.c: Likewise.
22307         * nis/nis_print.c: Likewise.
22308         * resolv/res_comp.c: Likewise.
22309         * stdlib/stdlib.h: Likewise.
22310         * sunrpc/clnt_tcp.c: Likewise.
22311         * sunrpc/clnt_udp.c: Likewise.
22312         * sunrpc/clnt_unix.c: Likewise.
22313         * sysdeps/unix/bsd/ptsname.c: Likewise.
22314         * sysdeps/unix/sysv/linux/ifaddrs.c: Likewise.
22315         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Likewise.
22316         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext-common.S:
22317         Likewise.
22318         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext-common.S:
22319         Likewise.
22320         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S:
22321         Likewise.
22322         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
22323
22324 2013-08-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
22325
22326         * nscd/aicache.c (addhstaiX): Use __glibc_unlikely.
22327         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
22328
22329 2013-08-27  Mike Frysinger  <vapier@gentoo.org>
22330
22331         [BZ #15897]
22332         * dlfcn/Makefile (tests): Add bug-dl-leaf.
22333         (modules-names): Add bug-dl-leaf-lib and bug-dl-leaf-lib-cb.
22334         ($(objpfx)bug-dl-leaf): New rule.
22335         ($(objpfx)bug-dl-leaf.so): Likewise.
22336         ($(objpfx)bug-dl-leaf.out): Likewise.
22337         ($(objpfx)bug-dl-leaf-lib.so): Likewise.
22338         ($(objpfx)bug-dl-leaf-lib-cb.so): Likewise.
22339         * dlfcn/bug-dl-leaf.c: New test.
22340         * dlfcn/bug-dl-leaf-lib.c: Likewise.
22341         * dlfcn/bug-dl-leaf-lib-cb.c: Likewise.
22342         * dlfcn/dlfcn.h (dlopen): Change __THROW to __THROWNL.
22343         (dlclose): Likewise.
22344         (dlmopen): Likewise.
22345
22346 2013-08-27  Roland McGrath  <roland@hack.frob.com>
22347
22348         * include/netdb.h [!_ISOMAC]:
22349         Don't include <tls.h>.
22350         (h_errno, __libc_h_errno): Move declaration and macros out of
22351         [_LIBC_REENTRANT].
22352
22353         * include/resolv.h [_RESOLV_H_]:
22354         Don't include <tls.h>.
22355         (__resp, _res): Move declaration and macro out of [_LIBC_REENTRANT].
22356         * resolv/res_libc.c: Don't include <tls.h>.
22357         (_res): Use __attribute__ ((nocommon)) in place of
22358         __attribute__ ((section (".bss"))).
22359
22360         * Makefile ($(common-objpfx)linkobj/libc_pic.a):
22361         If [sunrpc not in $(subdirs)], define to use libc_pic.a directly.
22362
22363         * resolv/res_send.c (send_dg): Don't try to use ioctl unless [FIONREAD].
22364
22365         * resolv/res_hconf.c [!NOT_IN_libc] (ifaddrs): Declare
22366         only under [SIOCGIFCONF && SIOCGIFNETMASK].
22367
22368         * resolv/res_mkquery.c: Include <sys/time.h>.
22369
22370         * inet/ifreq.c: Moved to ...
22371         * sysdeps/unix/ifreq.c: ... here.
22372         * inet/ifreq.c: New file, true stub version.
22373
22374         * socket/sa_len.c: New file.
22375         * socket/Makefile (aux): Add it.
22376         * sysdeps/unix/sysv/linux/Makefile
22377         [$(subdir) = socket] (sysdep_routines): Don't add sa_len here.
22378         * sysdeps/unix/sysv/linux/sa_len.c: Just #define HAVE_NET*_H
22379         and #include <socket/sa_len.c>.
22380         * sysdeps/unix/sysv/linux/s390/sa_len.c: Just #define
22381         HAVE_NETIUCV_IUCV_H and #include <sysdeps/unix/sysv/linux/sa_len.c>.
22382
22383         * sysdeps/unix/bsd/bsd4.4/bits/socket.h: Moved to ...
22384         * bits/socket.h: ... here.
22385
22386         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (enum __socket_type):
22387         Add SOCK_CLOEXEC, SOCK_NONBLOCK with values from FreeBSD.
22388         (SOCK_MAX, SOCK_TYPE_MASK): New macros.
22389
22390 2013-08-27  Andreas Schwab  <schwab@suse.de>
22391
22392         [BZ #15736]
22393         * locale/categories.def (LC_CTYPE): Add "nonascii-case" element.
22394         * string/Makefile (test-strcasecmp-ENV, test-strncasecmp-ENV)
22395         (test-strcasecmp-ifunc-ENV, test-strncasecmp-ifunc-ENV): Define.
22396         * string/test-strcasecmp.c (test_main): Run tests in several
22397         locales.
22398         * string/test-strncasecmp.c (test_main): Likewise.
22399
22400         * sysdeps/i386/i686/multiarch/strcmp-sse4.S (__strcasecmp_sse4_2)
22401         (__strncasecmp_sse4_2) [PIC]: Restore %ebx before falling through
22402         to __strcasecmp_nonascii and __strncasecmp_nonascii.
22403         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (__strcasecmp_ssse3)
22404         (__strncasecmp_ssse3) [PIC]: Likewise.
22405
22406 2013-08-26  Roland McGrath  <roland@hack.frob.com>
22407
22408         * io/lxstat64.c: Just call __xstat64, for parity with stub __lxstat.
22409
22410         * nss/nss_files/files-key.c: Include <rpc/des_crypt.h>
22411         instead of explicitly declaring xdecrypt.
22412         * nis/nss_nis/nis-publickey.c: Likewise.
22413
22414 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22415
22416         [BZ #15890]
22417         * nscd/aicache.c: Include res_hconf.h.
22418         (addhstaiX): Initialize res_hconf.
22419
22420 2013-08-26  Andreas Schwab  <schwab@suse.de>
22421
22422         * stdlib/Makefile (LDFLAGS-tst-tls-atexit): Remove.
22423         ($(objpfx)tst-tls-atexit): Add dependencies here instead.
22424
22425 2013-08-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
22426
22427         * nscd/aicache.c (addhstaiX): Fix indentation.
22428
22429 2013-08-25  Mike Frysinger  <vapier@gentoo.org>
22430
22431         * configure.ac: Quote $build_pt_chown test.
22432         * configure: Regenerated.
22433
22434 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
22435
22436         [BZ #15532]
22437         * math/s_cexp.c (__cexp): Return NaN + i0 for NaN + i0 argument.
22438         * math/s_cexpf.c (__cexpf): Likewise.
22439         * math/s_cexpl.c (__cexpl): Likewise.
22440         * math/libm-test.inc (cexp_test_data): Correct expected return
22441         value for NaN + i0.  Add another test.
22442
22443 2013-08-22  David S. Miller  <davem@davemloft.net>
22444
22445         * po/ca.po: Update Catalan translation from translation project.
22446         * po/uk.po: Add Ukrainian translations from translation project.
22447
22448 2013-08-21  Joseph Myers  <joseph@codesourcery.com>
22449
22450         [BZ #15797]
22451         * math/s_fdim.c (__fdim): Check for infinite arguments if result
22452         is infinite, not alongside NaN test.
22453         * math/s_fdimf.c (__fdimf): Likewise.
22454         * math/s_fdiml.c (__fdiml): Likewise.
22455         * math/libm-test.inc (fdim_test_data): Add more tests.  Test that
22456         errno is unchanged.
22457
22458 2013-08-21   Ondřej Bílka  <neleai@seznam.cz>
22459
22460         * argp/argp-help.c: Fix typos.
22461         * crypt/speeds.c: Likewise.
22462         * csu/check_fds.c: Likewise.
22463         * elf/dl-load.c: Likewise.
22464         * elf/dl-open.c: Likewise.
22465         * elf/reldep3.c: Likewise.
22466         * elf/reldep.c: Likewise.
22467         * elf/sprof.c: Likewise.
22468         * iconv/iconv_charmap.c: Likewise.
22469         * iconv/skeleton.c: Likewise.
22470         * iconv/strtab.c: Likewise.
22471         * io/lockf64.c: Likewise.
22472         * libio/libioP.h: Likewise.
22473         * resolv/gai_notify.c: Likewise.
22474         * resolv/ns_name.c: Likewise.
22475         * resolv/ns_samedomain.c: Likewise.
22476         * resolv/res_send.c: Likewise.
22477         * stdlib/random.c: Likewise.
22478         * sunrpc/rpc/xdr.h: Likewise.
22479         * sysdeps/i386/fpu/fraiseexcpt.c: Likewise.
22480         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
22481         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
22482         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
22483         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
22484         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
22485         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
22486         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
22487         * sysdeps/mach/hurd/check_fds.c: Likewise.
22488         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
22489         * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise.
22490         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
22491         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
22492         * sysdeps/powerpc/powerpc32/setjmp.S: Likewise.
22493         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
22494         * sysdeps/pthread/aio_notify.c: Likewise.
22495         * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise.
22496         * sysdeps/unix/sysv/linux/socketcall.h: Likewise.
22497         * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise.
22498         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
22499         * sysdeps/x86/fpu/bits/fenv.h: Likewise.
22500
22501 2013-08-21  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22502
22503         * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2
22504         version if bit_Slow_SSE4_2 is set.
22505         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
22506         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
22507
22508 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22509
22510         [BZ #15867]
22511         * sysdeps/powerpc/powerpc32/backtrace.c (__backtrace): Handle signal
22512         trampoline stack frame information.
22513         * sysdeps/powerpc/powerpc64/backtrace.c (__backtrace): Likewise.
22514         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
22515         (__vdso_sigtramp_rt64): New variable: PPC64 signal trampoline.
22516         (__vdso_sigtramp32): New variable: PPC32 signal trampoline.
22517         (__vdso_sigtramp_rt32): New variable: PPC32 signal trampoline.
22518         * sysdeps/unix/sysv/linux/powerpc/init-first.c
22519         (_libc_vdso_platform_setup): Initialize the signal trampolines.
22520         * debug/tst-backtrace5.c (fn): Add an option set modify sigaction
22521         sa_flags value.
22522         * debug/tst-backtrace6.c: New file: check backtrace for signal frames,
22523         interrupting a syscall and set with option SA_SIGINFO.
22524
22525 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
22526
22527         [BZ #15531]
22528         * math/s_cproj.c (__cproj): Only return an infinity if one part of
22529         argument is infinite.
22530         * math/s_cprojf.c (__cprojf): Likewise.
22531         * math/s_cprojl.c (__cprojl): Likewise.
22532         * sysdeps/ieee754/ldbl-128ibm/s_cprojl.c (__cprojl): Likewise.
22533         * math/libm-test.inc (cproj_test_data): Add more tests.
22534
22535         * sysdeps/unix/sysv/linux/mmap64.c: Include <string.h>.
22536
22537         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64)
22538         [MMAP2_PAGE_SHIFT == -1]: Use __getpagesize to determine page
22539         size.  Use __ffs to determine corresponding shift.
22540
22541 2013-08-20  Joseph Myers  <joseph@codesourcery.com>
22542             Roland McGrath  <roland@hack.frob.com>
22543
22544         * Makefile (INSTALL): Remove trailing blank lines from output of
22545         makeinfo.
22546
22547 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22548
22549         * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
22550         Align 32 bit compat elf_greg to 8 bytes.
22551
22552 2013-08-20  Andreas Arnez  <arnez@linux.vnet.ibm.com>
22553
22554         * elf/setup-vdso.h (setup_vdso): Fix missing string termination.
22555
22556 2013-08-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
22557
22558         * string/strcoll_l.c (coll_seq): New structure.
22559         (get_next_seq_cached): New function.
22560         (get_next_seq): New function.
22561         (do_compare): New function.
22562         (STRCOLL): Use GNU style definition.  Simplify implementation
22563         by using get_next_seq, get_next_seq_cached and do_compare.
22564
22565 2013-08-16  Florian Weimer  <fweimer@redhat.com>
22566
22567         [BZ #14699]
22568         CVE-2013-4237
22569         * sysdeps/posix/dirstream.h (struct __dirstream): Add errcode
22570         member.
22571         * sysdeps/posix/opendir.c (__alloc_dir): Initialize errcode
22572         member.
22573         * sysdeps/posix/rewinddir.c (rewinddir): Reset errcode member.
22574         * sysdeps/posix/readdir_r.c (__READDIR_R): Enforce NAME_MAX limit.
22575         Return delayed error code.  Remove GETDENTS_64BIT_ALIGNED
22576         conditional.
22577         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Do not define
22578         GETDENTS_64BIT_ALIGNED.
22579         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
22580         * manual/filesys.texi (Reading/Closing Directory): Document
22581         ENAMETOOLONG return value of readdir_r.  Recommend readdir more
22582         strongly.
22583         * manual/conf.texi (Limits for Files): Add portability note to
22584         NAME_MAX, PATH_MAX.
22585         (Pathconf): Add portability note for _PC_NAME_MAX, _PC_PATH_MAX.
22586
22587 2013-08-13  Andreas Schwab  <schwab@suse.de>
22588
22589         [BZ #15749]
22590         * sysdeps/ieee754/ldbl-96/s_cbrtl.c (__cbrtl): Use fabsl instead
22591         of fabs.
22592         * math/libm-test.inc (cbrt_test_data) [TEST_LDOUBLE &&
22593         LDBL_MAX_EXP >= 16384]: Add tests for it.
22594
22595 2013-08-12  David S. Miller  <davem@davemloft.net>
22596
22597         * version.h (RELEASE): Set to "development".
22598         (VERSION): Set to "2.18.90".
22599         * NEWS: Add 2.19 section.
22600
22601 2013-08-03  David S. Miller  <davem@davemloft.net>
22602
22603         * po/ko.po: Update Korean translation from translation project.
22604
22605 2013-08-01  David S. Miller  <davem@davemloft.net>
22606
22607         * manual/contrib.texi: Update entry for Siddhesh Poyarekar.  Add
22608         entries for Will Newton, Andi Kleen, David Holsgrove, and Ondrej
22609         Bilka.
22610
22611 2013-07-30  David S. Miller  <davem@davemloft.net>
22612
22613         * po/fr.po: Update French translation from translation project.
22614
22615 2013-07-28  David S. Miller  <davem@davemloft.net>
22616
22617         * po/cs.po: Update Czech translation from translation project.
22618
22619         * po/sv.po: Update Swedish translation from translation project.
22620
22621 2013-07-27  David S. Miller  <davem@davemloft.net>
22622
22623         * po/eo.po: Update Esperanto translation from translation project.
22624
22625         * po/vi.po: Update Vietnamese translation from translation project.
22626
22627         * po/de.po: Update German translation from translation project.
22628
22629 2013-07-26  David S. Miller  <davem@davemloft.net>
22630
22631         * po/bg.po: Update Bulgarian translation from translation project.
22632
22633         * po/nl.po: Update Dutch translation from translation project.
22634         * po/pl.po: Update Polish translation from translation project.
22635         * po/ru.po: Update Russian translation from translation project.
22636
22637 2013-07-24  David S. Miller  <davem@davemloft.net>
22638
22639         * po/libc.pot: Update.
22640
22641 2013-07-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22642
22643         * sysdeps/unix/sysv/linux/powerpc/dl-static.c: New file to support
22644         variable page size.
22645         * sysdeps/unix/sysv/linux/powerpc/ldsodefs.h: Likewise.
22646         * sysdeps/unix/sysv/linux/powerpc/Makefile: Build dl-static in elf.
22647         * sysdeps/unix/sysv/linux/powerpc/Versions: Add _dl_var_init.
22648
22649 2013-07-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
22650
22651         * sysdeps/s390/fpu/libm-test-ulps: Refresh.
22652
22653 2013-07-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
22654             Andreas Schwab  <schwab@suse.de>
22655             Roland McGrath  <roland@hack.frob.com>
22656             Joseph Myers  <joseph@codesourcery.com>
22657             Carlos O'Donell  <carlos@redhat.com>
22658
22659         [BZ #15755]
22660         * config.h.in: Define HAVE_PT_CHOWN.
22661         * config.make.in (build-pt-chown): New variable.
22662         * configure.in (--enable-pt_chown): New configure option.
22663         * configure: Regenerate.
22664         * login/Makefile: Include Makeconfig.  Build pt_chown only if
22665         build-pt-chown is enabled.
22666         * sysdeps/unix/grantpt.c (grantpt) [HAVE_PT_CHOWN]: Spawn
22667         pt_chown to fix pty ownership.
22668         * sysdeps/unix/sysv/linux/grantpt.c [HAVE_PT_CHOWN]: Define
22669         CLOSE_ALL_FDS.
22670         * manual/install.texi (Configuring and compiling): Mention
22671         --enable-pt_chown. Add @findex for grantpt.
22672         * INSTALL: Regenerate.
22673
22674 2013-07-20  David S. Miller  <davem@davemloft.net>
22675
22676         * sysdeps/sparc/fpu/libm-test-ulps: Update ULPs to handle minor
22677         difference between 32-bit and 64-bit.
22678
22679 2013-07-15  Carlos O'Donell  <carlos@redhat.com>
22680
22681         [BZ #15711]
22682         * sysdeps/unix/sysv/linux/Makefile ($(objpfx)bits/syscall%h):
22683         Avoid system header dependency with -ffreestanding.
22684         ($(objpfx)bits/syscall%d): Likewise.
22685
22686 2013-07-13  David S. Miller  <davem@davemloft.net>
22687
22688         * math/libm-test.inc (casin_test_data): Annotate more cases of missing
22689         underflows from atanl/atan2l due to bug 15319.
22690         (casinh_test_data): Likewise.
22691
22692 2013-07-07  David S. Miller  <davem@davemloft.net>
22693
22694         * sysdeps/sparc/fpu/libm-test-ulps: Regenerate from scratch.
22695
22696 2013-07-05  Jeroen Albers  <_jeroen_@yahoo.com>
22697
22698         * sysdeps/i386/fpu/libm-test-ulps: Update.
22699         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22700
22701 2013-07-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
22702
22703         * configure.in (--enable-lock-elision): Fix message text.
22704         * INSTALL: Regenerate.
22705         * configure: Regenerate.
22706
22707 2013-07-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
22708
22709         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
22710
22711 2013-07-03  Andreas Jaeger  <aj@suse.de>
22712
22713         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_LISTEN): Add
22714         define.
22715         (PTRACE_PEEKSIGINFO): Add new value from Linux 3.10.
22716         (ptrace_peeksiginfo_args): Add.
22717         (__ptrace_peeksiginfo_flags): Add.
22718         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
22719         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
22720         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
22721
22722 2013-07-03  Allan McRae  <allan@archlinux.org>
22723
22724         * sysdeps/i386/fpu/libm-test-ulps: Update.
22725
22726 2013-07-02  David S. Miller  <davem@davemloft.net>
22727
22728         * sysdeps/sparc/fpu/libm-test-ulps: Update.
22729
22730 2013-07-02  Markus Trippelsdorf  <markus@trippelsdorf.de>
22731
22732         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
22733
22734 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
22735
22736         * sysdeps/i386/fpu/libm-test-ulps: Regenerated.
22737         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
22738
22739 2013-07-02  Andi Kleen <ak@linux.intel.com>
22740
22741         * config.h.in (ENABLE_LOCK_ELISION): Add.
22742         * configure.in (--enable-lock-elision): Add option.
22743         * manual/install.texi: Document --enable lock elision.
22744         * configure: Regenerate
22745         * INSTALL: Regenerate.
22746
22747 2013-07-02  H.J. Lu  <hongjiu.lu@intel.com>
22748
22749         * sysdeps/i386/i686/multiarch/strcasecmp.S (__strcasecmp): Enable
22750         SSE4.2 strcasecmp for libc.a.
22751         * sysdeps/i386/i686/multiarch/strncase.S (__strncasecmp): Likewise.
22752
22753 2013-07-02  Joseph Myers  <joseph@codesourcery.com>
22754
22755         [BZ #13304]
22756         * soft-fp/op-common.h (_FP_FMA): New macro.
22757         * soft-fp/op-1.h (_FP_FRAC_HIGHBIT_DW_1): New macro.
22758         (_FP_MUL_MEAT_DW_1_imm): Likewise.  Split out of ...
22759         (_FP_MUL_MEAT_1_imm): ... here.
22760         (_FP_MUL_MEAT_DW_1_wide): New macro.  Split out of ...
22761         (_FP_MUL_MEAT_1_wide): ... here.
22762         (_FP_MUL_MEAT_DW_1_hard): Likewise.  Split out of ...
22763         (_FP_MUL_MEAT_1_hard): ... here.
22764         * soft-fp/op-2.h (_FP_FRAC_HIGHBIT_DW_2): New macro.
22765         (_FP_MUL_MEAT_DW_2_wide): Likewise.  Split out of ...
22766         (_FP_MUL_MEAT_2_wide): ... here.
22767         (_FP_MUL_MEAT_DW_2_wide_3mul): New macro.  Split out of ...
22768         (_FP_MUL_MEAT_2_wide_3mul): ... here.
22769         (_FP_MUL_MEAT_DW_2_gmp): New macro.  Split out of ...
22770         (_FP_MUL_MEAT_2_gmp): ... here.
22771         * soft-fp/op-4.h (_FP_FRAC_HIGHBIT_DW_4): New macro.
22772         (_FP_MUL_MEAT_DW_4_wide): Likewise.  Split out of ...
22773         (_FP_MUL_MEAT_4_wide): ... here.
22774         (_FP_MUL_MEAT_DW_4_gmp): New macro.  Split out of ...
22775         (_FP_MUL_MEAT_4_gmp): ... here.
22776         * soft-fp/single.h (_FP_FRACTBITS_DW_S): New macro.
22777         (_FP_WFRACBITS_DW_S): Likewise.
22778         (_FP_WFRACXBITS_DW_S): Likewise.
22779         (_FP_HIGHBIT_DW_S): Likewise.
22780         (FP_FMA_S): Likewise.
22781         (_FP_FRAC_HIGH_DW_S): Likewise.
22782         * soft-fp/double.h (_FP_FRACTBITS_DW_D): New macro.
22783         (_FP_WFRACBITS_DW_D): Likewise.
22784         (_FP_WFRACXBITS_DW_D): Likewise.
22785         (_FP_HIGHBIT_DW_D): Likewise.
22786         (FP_FMA_D): Likewise.
22787         (_FP_FRAC_HIGH_DW_D): Likewise.
22788         * soft-fp/extended.h (_FP_FRACTBITS_DW_E): New macro.
22789         (_FP_WFRACBITS_DW_E): Likewise.
22790         (_FP_WFRACXBITS_DW_E): Likewise.
22791         (_FP_HIGHBIT_DW_E): Likewise.
22792         (FP_FMA_E): Likewise.
22793         (_FP_FRAC_HIGH_DW_E): Likewise.
22794         * soft-fp/quad.h (_FP_FRACTBITS_DW_Q): New macro.
22795         (_FP_WFRACBITS_DW_Q): Likewise.
22796         (_FP_WFRACXBITS_DW_Q): Likewise.
22797         (_FP_HIGHBIT_DW_Q): Likewise.
22798         (FP_FMA_Q): Likewise.
22799         (_FP_FRAC_HIGH_DW_Q): Likewise.
22800         * soft-fp/fmasf4.c: New file.
22801         * soft-fp/fmadf4.c: Likewise.
22802         * soft-fp/fmatf4.c: Likewise.
22803
22804 2013-06-28  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22805
22806         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
22807         bit_Slow_SSE4_2 and bit_Prefer_PMINUB_for_stringop for Intel
22808         Silvermont.
22809         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_SSE4_2): New
22810         macro.
22811         (index_Slow_SSE4_2): Likewise.
22812         (index_Prefer_PMINUB_for_stringop): Likewise.
22813         * sysdeps/x86_64/multiarch/strchr.S: Skip SSE4.2 version if
22814         bit_Slow_SSE4_2 is set.
22815         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
22816         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
22817
22818 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22819
22820         * sysdeps/powerpc/Makefile: Add comment about generating an offset to
22821         rtld_global._dl_hwcap2.
22822         * sysdeps/powerpc/bits/hwcap.h: Added PPC_FEATURE2_* definitions for
22823         POWER8.
22824         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Extend for
22825         POWER8 feature descriptions defined in _dl_hwcap2.
22826         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Implement AT_HWCAP2
22827         string handling for POWER8 feature bits.
22828         (_DL_HWCAP_COUNT): Increment to 64 to cover AT_HWCAP2 bits.
22829         (_DL_HWCAP_LAST): New definition for position of last AT_HWCAP bit in
22830         _dl_powerpc_cap_flags.
22831         (_DL_HWCAP2_LAST): New definition for last usable bit of AT_HWCAP2.
22832         * sysdeps/powerpc/rtld-global-offsets.sym
22833         (RTLD_GLOBAL_RO_DL_HWCAP2_OFFSET): New offset macro to locate
22834         _dl_hwcap2 in the rtld_global_ro structure.
22835
22836 2013-06-28  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22837
22838         * elf/dl-support.c (_dl_hwcap2): Add a new hwcap field for more
22839         hardware capabilities in support of AT_HWCAP2.
22840         (_dl_aux_init): Read AT_HWCAP2 into GLRO(dl_hwcap2).
22841         * elf/dl-sysdep.c (_dl_sysdep_start): Read AT_HWCAP2 into
22842         GLRO(dl_hwcap2).
22843         (_dl_show_auxv): Add support for calling _dl_procinfo to display
22844         AT_HWCAP2.  If a platform doesn't chose to handle displaying AT_HWCAP2
22845         explicitly the unknown a_type display mechanism is used.
22846         * misc/getauxval.c (__getauxval): Return GLRO(dl_hwcap2) on AT_HWCAP2.
22847         * sysdeps/generic/ldsodefs.h (rtld_global_ro): Add _dl_hwcap2 as a new
22848         struct member.
22849         * sysdeps/generic/dl-procinfo.h (_dl_procinfo): Add TYPE parameter
22850         to macro prototype for AT_HWCAP2 support.
22851         * sysdeps/i386/dl-procinfo.h: Likewise.
22852         * sysdeps/s390/dl-procinfo.h: Likewise.
22853         * sysdeps/powerpc/dl-procinfo.h (_dl_procinfo): Add TYPE parameter to
22854         macro prototype for AT_HWCAP2 support.  Make WORD unsigned long int
22855         rather than signed int.  Stub in handler for TYPE == AT_HWCAP2 to
22856         return -1 for unknown a_type display fallback.
22857         * sysdeps/sparc/dl-procinfo.h: Likewise.
22858         * sysdeps/unix/sysv/linux/i386/dl-procinfo.h: Likewise.
22859         * sysdeps/unix/sysv/linux/s390/dl-procinfo.h: Likewise.
22860
22861 2013-06-28  Joseph Myers  <joseph@codesourcery.com>
22862
22863         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Shift by page_shift
22864         instead of MMAP2_PAGE_SHIFT in call to INLINE_SYSCALL.
22865
22866 2013-06-28  Pierre Ynard  <linkfanel@yahoo.fr>
22867
22868         [BZ #12492]
22869         * elf/dl-load.c (_dl_map_object_from_fd): Test for failure of
22870         mprotect making __stack_prot writable.
22871
22872 2013-06-28  Nathan Froyd  <froydnj@codesourcery.com>
22873             Joseph Myers  <joseph@codesourcery.com>
22874
22875         * elf/dl-profile.c (struct here_cg_arc_record): Declare 'count'
22876         as being properly aligned.
22877
22878 2013-06-28  Maciej W. Rozycki  <macro@codesourcery.com>
22879
22880         * dlfcn/modstatic5.c: New file.
22881         * dlfcn/tststatic5.c: New file.
22882         * dlfcn/Makefile (tests): Add tststatic5.
22883         (tests-static): Likewise.
22884         (modules-names): Add modstatic5.
22885         (tststatic5-ENV): New variable.
22886         ($(objpfx)tststatic5, $(objpfx)tststatic5.out): New dependencies.
22887
22888         [BZ #15022]
22889         * elf/dl-support.c (_dl_main_map): New variable.
22890         (_dl_ns): Use it to initialize [LM_ID_BASE] element.
22891         (_dl_nns, _dl_load_adds): Set to 1.
22892         (_dl_initial_searchlist): Refer to _dl_main_map.
22893         (_dl_non_dynamic_init): Initialize _dl_main_map.l_origin.
22894         * elf/dl-load.c (_dl_dst_substitute) [!SHARED]: Remove fallback
22895         call to _dl_get_origin.
22896         * elf/dl-open.c (dl_open_worker): Remove !SHARED special casing
22897         around call_map.
22898         (_dl_open) [!SHARED]: Remove code to initialize GL(dl_nns).
22899         * dlfcn/modstatic3.c: New file.
22900         * dlfcn/tststatic3.c: New file.
22901         * dlfcn/tststatic4.c: New file.
22902         * dlfcn/Makefile (tests): Add tststatic3 and tststatic4.
22903         (tests-static): Likewise.
22904         (modules-names): Add modstatic3.
22905         (tststatic3-ENV, tststatic4-ENV): New variables.
22906         ($(objpfx)tststatic3, $(objpfx)tststatic3.out): New dependencies.
22907         ($(objpfx)tststatic4, $(objpfx)tststatic4.out): Likewise.
22908
22909 2013-06-26  Joseph Myers  <joseph@codesourcery.com>
22910
22911         * configure.in (CC): Require GCC version 4.4 or later.
22912         * configure: Regenerated.
22913         * manual/install.texi (Tools for Compilation): Update GCC version
22914         requirement.
22915         * INSTALL: Regenerated.
22916
22917 2013-06-26  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
22918
22919         [BZ #15674]
22920         * string/test-memcmp.c (check2): New.
22921         (main): Call check2.
22922
22923         * sysdeps/x86_64/multiarch/memcmp-ssse3.S: Fix buffers overrun.
22924
22925 2013-06-26  Maciej W. Rozycki  <macro@codesourcery.com>
22926
22927         [BZ #15022]
22928         * elf/dl-open.c (_dl_open) [!SHARED]: Move call to DL_STATIC_INIT
22929         over to...
22930         (dl_open_worker) [!SHARED]: ... here.
22931
22932 2013-06-26  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22933
22934         * elf/elf.h (AT_HWCAP2): Add a new a_type entry.
22935
22936 2013-06-25  Richard Henderson  <rth@redhat.com>
22937
22938         * locale/programs/locarchive.c: Include <libc-internal.h>
22939
22940 2013-06-25  Joseph Myers  <joseph@codesourcery.com>
22941
22942         * manual/texinfo.tex: Update to version 2013-06-21.17, with
22943         trailing whitespace removed.
22944
22945 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
22946
22947         [BZ #10283]
22948         * locale/locarchive.h (struct locarhandle): Add mmap_base and mmap_len.
22949         * locale/programs/locarchive.c: Include libc-mmap.h.
22950         (prepare_address_space): Take two new outputs (the mmap base and len).
22951         Align p to MAP_FIXED_ALIGNMENT.  Set mmap base and len to the right
22952         values.
22953         (create_archive): Declare new mmap base and len values for
22954         prepare_address_space, and store the result in ah.
22955         (file_data_available_p): Replace pagesz with MAP_FIXED_ALIGNMENT.
22956         (enlarge_archive): If ah->mmap_base is not NULL, use that and
22957         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
22958         Declare new mmap base and len values for
22959         prepare_address_space, and store the result in new_ah.
22960         (open_archive): Declare new mmap base and len values for
22961         prepare_address_space, and store the result in ah.
22962         (close_archive): If ah->mmap_base is not NULL, use that and
22963         ah->mmap_len to unmap rather than ah->addr and ah->reserved.
22964         * sysdeps/generic/libc-mmap.h: New file.
22965
22966 2013-06-24  Mike Frysinger  <vapier@gentoo.org>
22967
22968         * include/libc-internal.h (ALIGN_DOWN): New helper macro.
22969         (ALIGN_UP): Likewise.
22970         (PTR_ALIGN_DOWN): Likewise.
22971         (PTR_ALIGN_UP): Likewise.
22972
22973 2013-06-24  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
22974
22975         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add "power8"
22976         entry mapped to PPC_PLATFORM_POWER8.
22977         * sysdeps/powerpc/dl-procinfo.h (_DL_PLATFORMS_COUNT): Increment for
22978         POWER8.
22979         (PPC_PLATFORM_POWER8): Add new platform bit for POWER8 processor.
22980         (_dl_string_platform): Add case for exporting platform position for
22981         POWER8.
22982         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power8/Implies: Chain
22983         search path to sysdeps/powerpc/powerpc32/power8 directory.
22984         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power8/Implies: Chain
22985         search path to sysdeps/powerpc/powerpc64/power8 directory.
22986         * sysdeps/powerpc/powerpc32/power8/Implies: Chain search path to
22987         power7 directories.
22988         * sysdeps/powerpc/powerpc64/power8/Implies: Chain search path to
22989         power7 directories.
22990
22991 2013-06-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
22992
22993         * INSTALL: Regenerate.
22994
22995         * nscd/connections.c (nscd_init): Fix comment.
22996
22997 2013-06-22  Joseph Myers  <joseph@codesourcery.com>
22998
22999         * sysdeps/unix/sysv/linux/libc_fatal.c: Include <string.h>.
23000
23001         [BZ #15667]
23002         * soft-fp/op-4.h (__FP_FRAC_ADD_3): Rename variables _c1 and _c2
23003         to __FP_FRAC_ADD_3_c1 and __FP_FRAC_ADD_3_c2.
23004
23005 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
23006
23007         * elf/dl-dst.h (DL_DST_REQUIRED): Remove call to
23008         DL_DST_REQ_STATIC.
23009         (DL_DST_REQ_STATIC): Remove macro.
23010
23011 2013-06-21  Joseph Myers  <joseph@codesourcery.com>
23012
23013         [BZ #7006]
23014         * soft-fp/op-common.h (_FP_FROM_INT): Do not call _FP_FRAC_SLL
23015         with a shift of 0 bits.
23016
23017 2013-06-21  Maciej W. Rozycki  <macro@codesourcery.com>
23018
23019         * dlfcn/Makefile (tststatic2-ENV): Redefine in terms of
23020         $(tststatic-ENV).
23021
23022 2013-06-21  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
23023
23024         [BZ #15655]
23025         * sysdeps/sh/sh4/fpu/fgetexcptflg.c: New file.
23026
23027 2013-06-20  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23028
23029         * config.h.in (HAVE_CC_INHIBIT_LOOP_TO_LIBCALL): New define.
23030         * configure.in (libc_cv_cc_loop_to_function): Check if compiler
23031         accepts -fno-tree-loop-distribute-patterns.
23032         * include/libc-symbols.h (inhibit_loop_to_libcall): New macro.
23033         * string/memmove.c (MEMMOVE): Disable loop transformation to avoid
23034         recursive call.
23035         * string/memset.c (memset): Likewise.
23036         * string/test-memmove.c (simple_memmove): Disable loop transformation
23037         to library calls.
23038         * string/test-memset.c (simple_memset): Likewise.
23039         * benchtests/bench-memmove.c (simple_memmove): Likewise.
23040         * benchtests/bench-memset.c (simple_memset): Likewise.
23041         * configure: Regenerated.
23042
23043 2013-06-20  Joseph Myers  <joseph@codesourcery.com>
23044
23045         * math/test-misc.c (main): Ignore fesetround failure when failures
23046         of subsequent rounding tests would be ignored.
23047
23048         [BZ #15654]
23049         * math/fedisblxcpt.c (fedisableexcept): Return 0.
23050         * math/feenablxcpt.c (feenableexcept): Return 0 for argument 0.
23051         * math/fegetenv.c (__fegetenv): Return 0.
23052         * math/fegetexcept.c (fegetexcept): Return 0.
23053         * math/fegetround.c (fegetround) [FE_TONEAREST]: Return
23054         FE_TONEAREST.
23055         * math/feholdexcpt.c (feholdexcept): Return 0.
23056         * math/fesetenv.c (__fesetenv): Return 0.
23057         * math/fesetround.c (fesetround) [FE_TONEAREST]: Return 0 for
23058         argument FE_TONEAREST.
23059         * math/feupdateenv.c (__feupdateenv): Return 0.
23060         * math/fgetexcptflg.c (__fegetexceptflag): Return 0.
23061
23062 2013-06-18  Roland McGrath  <roland@hack.frob.com>
23063
23064         * elf/rtld-Rules (rtld-compile-command.S): New variable.
23065         (rtld-compile-command.s, rtld-compile-command.c): New variables.
23066         ($(objpfx)rtld-%.os rules): Use them.
23067
23068 2013-06-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23069
23070         * nptl/sysdeps/powerpc/tls.h (tcbhead_t): Add Event-Based Branch
23071         fields.
23072
23073 2013-06-17  Roland McGrath  <roland@hack.frob.com>
23074
23075         * scripts/sysd-rules.awk: Sort sysd_rules_patterns by descending
23076         length of target pattern, then descending length of dependency pattern.
23077         * configure.in (AWK): Require gawk 3.1.2 or newer.
23078         * manual/install.texi (Tools for Compilation): Say that we do.
23079         * configure: Regenerated.
23080
23081         * Makerules [inhibit-sysdep-asm] (check-inhibit-asm): Variable removed.
23082         ($(common-objpfx)sysd-rules): Replace shell logic with running ...
23083         * scripts/sysd-rules.awk: ... this new script.
23084         * sysdeps/mach/hurd/Makefile (inhibit-sysdep-asm): Use a regexp rather
23085         than a glob-style pattern.
23086
23087 2013-06-17  Joseph Myers  <joseph@codesourcery.com>
23088
23089         * math/test-misc.c (main): Do not treat incorrectly rounded
23090         conversions as failure unless ROUNDING_TESTS passes.
23091
23092 2013-06-15  Joseph Myers  <joseph@codesourcery.com>
23093
23094         [BZ #15631]
23095         * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Save and
23096         restore exception state around main square root computation, then
23097         check for inexactness explicitly.
23098
23099         * math/libm-test.inc (fma_test_data): Add another test.
23100
23101 2013-06-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
23102
23103         * manual/threads.texi (Non-POSIX Extensions): New document
23104         node.  Document pthread_getattr_default_np and
23105         pthread_setattr_default_np.
23106
23107         * Versions.def (libpthread): Add GLIBC_2.18.
23108         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: Update.
23109         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
23110         Likewise.
23111         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
23112         Likewise.
23113         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
23114         Likewise.
23115         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
23116         Likewise.
23117         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist:
23118         Likewise.
23119         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
23120         Likewise.
23121         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
23122         Likewise.
23123         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
23124         Likewise.
23125         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
23126         Likewise.
23127
23128 2013-06-14  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
23129
23130         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
23131         Set bit_Fast_Unaligned_Load for Intel Silvermont architecture.
23132
23133 2013-06-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
23134             H.J. Lu  <hjl.tools@gmail.com>
23135
23136         [BZ #15627]
23137         * sysdeps/x86_64/rtld-memset.c: Remove file.
23138         * sysdeps/x86_64/rtld-memset.S: New file.
23139
23140 2013-06-14  Joseph Myers  <joseph@codesourcery.com>
23141
23142         * stdlib/tst-strtod-round.c: Include <math-tests.h>.
23143         (test_in_one_mode): Take arguments for whether the rounding mode
23144         is supported for each floating-point type.
23145         (do_test): Pass new arguments to test_in_one_mode using
23146         ROUNDING_TESTS.
23147
23148 2013-06-13  Roland McGrath  <roland@hack.frob.com>
23149
23150         * posix/tst-waitid.c (do_test): Distinguish different instances of
23151         stopped/continued in CHECK_SIGCHLD uses.  Insert a delay between
23152         sending SIGSTOP and calling waitpid to ensure SIGCHLD gets delivered
23153         before entering the kernel for waitpid.
23154
23155 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
23156
23157         * NEWS: Fix note on clock function precision.  Text by Roland
23158         McGrath.
23159
23160 2013-06-13  Roland McGrath  <roland@hack.frob.com>
23161
23162         * elf/Makefile ($(objpfx)ld.so): Link into a temporary file and move
23163         it into place only when and if the sanity check passes.
23164
23165 2013-06-13  Joseph Myers  <joseph@codesourcery.com>
23166
23167         * stdlib/gen-tst-strtod-round.c (round_str): Always generate
23168         output for whether conversion result is exact.  Take argument
23169         indicating whether type is IBM long double.
23170         (round_for_all): Change need_exact field to ibm_ld.
23171         * stdlib/tst-strtod-round.c (struct exactness): New type.
23172         (struct test): Change bool ld_ok field to struct exactness exact.
23173         (TEST): Update all definitions for change to field.
23174         (tests): Regenerate array contents.
23175         (test_in_one_mode): Take pointer to new field instead of old ld_ok
23176         field value.  Check for IBM long double here.
23177         (do_test): Update calls to test_in_one_mode.
23178
23179 2013-06-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
23180
23181         [BZ #12515]
23182         * sysdeps/unix/sysv/linux/clock.c (clock): Use result from
23183         CLOCK_PROCESS_CPUTIME_ID clock instead of __times.
23184
23185 2013-06-12  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
23186
23187         [BZ #15605]
23188         * sysdeps/generic/symbol-hacks.h: Add workaround for memset/memmove calls
23189         generated by the compiler on loop optimizations.
23190         * sysdeps/wordsize-32/symbol-hacks.h: Include next symbol-hacks.h for
23191         general definitions.
23192
23193 2013-06-12  Joseph Myers  <joseph@codesourcery.com>
23194
23195         * math/bug-nextafter.c: Include <math-tests.h>.
23196         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23197         the relevant type.
23198         * math/bug-nexttoward.c: Include <math-tests.h>.
23199         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23200         the relevant type.
23201         * math/test-misc.c: Include <math-tests.h>.
23202         (main): Only test for exceptions if EXCEPTION_TESTS is true for
23203         the relevant type.
23204
23205 2013-06-12  Andreas Jaeger  <aj@suse.de>
23206
23207         * po/ia.po: Update Interlingua translation from translation
23208         project.
23209
23210 2013-06-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
23211
23212         * include/fenv.h: Include stdbool.h.
23213         (struct rm_ctx): New structure.
23214         * sysdeps/generic/math_private.h (SET_RESTORE_ROUND_GENERIC):
23215         Define macro.
23216         (SET_RESTORE_ROUND): Define using SET_RESTORE_ROUND_GENERIC.
23217         (SET_RESTORE_ROUNDF): Likewise.
23218         (SET_RESTORE_ROUNDL): Likewise.
23219         (SET_RESTORE_ROUND_NOEX): Likewise.
23220         (SET_RESTORE_ROUND_NOEXF): Likewise.
23221         (SET_RESTORE_ROUND_NOEXL): Likewise.
23222         (SET_RESTORE_ROUND_53BIT): Likewise.
23223         [HAVE_RM_CTX] (libc_feresetround_noex_ctx): Define macro.
23224         (libc_feresetround_noexf_ctx): Likewise.
23225         (libc_feresetround_noexl_ctx): Likewise.
23226         (libc_feholdsetround_53bit_ctx): Likewise.
23227         (libc_feresetround_53bit_ctx): Likewise.
23228         * sysdeps/i386/fpu/fenv_private.h (HAVE_RM_CTX): Define macro.
23229         (libc_feholdexcept_setround_sse_ctx): New function.
23230         (libc_fesetenv_sse_ctx): Likewise.
23231         (libc_feupdateenv_sse_ctx): Likewise.
23232         (libc_feholdexcept_setround_387_prec_ctx): Likewise.
23233         (libc_feholdexcept_setround_387_ctx): Likewise.
23234         (libc_feholdexcept_setround_387_53bit_ctx): Likewise.
23235         (libc_feholdsetround_387_prec_ctx): Likewise.
23236         (libc_feholdsetround_387_ctx): Likewise.
23237         (libc_feholdsetround_387_53bit_ctx): Likewise.
23238         (libc_feholdsetround_sse_ctx): Likewise.
23239         (libc_feresetround_sse_ctx): Likewise.
23240         (libc_feresetround_387_ctx): Likewise.
23241         (libc_feupdateenv_387_ctx): Likewise.
23242         (libc_feholdexcept_setroundf_ctx): Define macro.
23243         (libc_fesetenvf_ctx): Likewise.
23244         (libc_feupdateenvf_ctx): Likewise.
23245         (libc_feholdsetroundf_ctx): Likewise.
23246         (libc_feresetroundf_ctx): Likewise.
23247         (libc_feholdexcept_setround_ctx): Likewise.
23248         (libc_fesetenv_ctx): Likewise.
23249         (libc_feupdateenv_ctx): Likewise.
23250         (libc_feholdsetround_ctx): Likewise.
23251         (libc_feresetround_ctx): Likewise.
23252         (libc_feholdexcept_setroundl_ctx): Likewise.
23253         (libc_feupdateenvl_ctx): Likewise.
23254         (libc_feholdsetroundl_ctx): Likewise.
23255         (libc_feresetroundl_ctx): Likewise.
23256         [!__SSE2_MATH__] (libc_feholdsetround_53bit_ctx): Likewise.
23257         (libc_feresetround_53bit_ctx): Likewise.
23258
23259 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23260
23261         * locale/iso-639.def: Convert to UTF-8.
23262
23263 2013-06-11  Joseph Myers  <joseph@codesourcery.com>
23264
23265         * sysdeps/generic/math-tests.h (EXCEPTION_TESTS_float): New macro.
23266         (EXCEPTION_TESTS_double): Likewise.
23267         (EXCEPTION_TESTS_long_double): Likewise.
23268         (EXCEPTION_TESTS): Likewise.
23269         * math/libm-test.inc (test_exceptions): Only test exceptions if
23270         EXCEPTION_TESTS (FLOAT).
23271
23272 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23273
23274         * benchtests/Makefile (string-bench): Add strcpy_chk and
23275         stpcpy_chk.
23276         * benchtests/bench-stpcpy_chk-ifunc.c: New file.
23277         * benchtests/bench-stpcpy_chk.c: New file.
23278         * benchtests/bench-strcpy_chk-ifunc.c: New file.
23279         * benchtests/bench-strcpy_chk.c: New file.
23280         * debug/test-strcpy_chk.c (do_one_test): Remove HP_TIMING
23281         code.
23282         (do_test): Likewise.
23283
23284 2013-06-11  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
23285
23286         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platforms): Add ppc405,
23287         ppc440, ppc464, and ppc476, merging from ports/ dl-procinfo.c.
23288         * sysdeps/powerpc/dl-procinfo.h: Fix whitespace by correcting spaces
23289         with tabs where appropriate.
23290         [PPC_PLATFORM_PPC405]: Define new platform merging from ports/
23291         dl-procinfo.h.
23292         [PPC_PLATFORM_PPC440]: Likewise.
23293         [PPC_PLATFORM_PPC464]: Likewise.
23294         [PPC_PLATFORM_PPC476]: Likewise.
23295         (_dl_string_platform): Add support for detecting ppc405, ppc440,
23296         ppc464, and ppc476 platform strings merging from ports/
23297         dl-procinfo.h.
23298
23299 2013-06-11  Andreas Schwab  <schwab@suse.de>
23300
23301         [BZ #14991]
23302         * iconvdata/big5hkscs.c (big5hkscs_to_ucs, from_ucs4)
23303         (from_ucs4_idx): Regenerate.
23304         (MIN_NEEDED_FROM, MAX_NEEDED_FROM, MIN_NEEDED_TO): Remove macros.
23305         (FROM_LOOP_MIN_NEEDED_FROM, FROM_LOOP_MAX_NEEDED_FROM)
23306         (FROM_LOOP_MIN_NEEDED_TO, FROM_LOOP_MAX_NEEDED_TO)
23307         (TO_LOOP_MIN_NEEDED_FROM, TO_LOOP_MAX_NEEDED_FROM)
23308         (TO_LOOP_MIN_NEEDED_TO, TO_LOOP_MAX_NEEDED_TO, PREPARE_LOOP)
23309         (EXTRA_LOOP_ARGS, SAVE_RESET_STATE, EMIT_SHIFT_TO_INIT)
23310         (EXTRA_LOOP_DECLS, MAX_NEEDED_OUTPUT): New macros.
23311         (MIN_NEEDED_INPUT, MAX_NEEDED_INPUT, MIN_NEEDED_OUTPUT): Define
23312         from FROM_LOOP and TO_LOOP specific macros.
23313         (BODY): Handle combining characters.
23314         * iconvdata/BIG5HKSCS.irreversible: Update.
23315         * iconvdata/BIG5HKSCS.precomposed: New file.
23316         * iconvdata/testdata/BIG5HKSCS: Regenerate to cover all assigned
23317         characters.
23318         * iconvdata/testdata/BIG5HKSCS..UTF8: Update.
23319
23320 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23321
23322         * include/sys/time.h: Fix indentation and add copyright header.
23323
23324         * string/test-memccpy.c (do_one_test): Remove HP_TIMING code.
23325         (do_test): Likewise.
23326         * string/test-memchr.c (do_one_test): Likewise.
23327         (do_test): Likewise.
23328         * string/test-memcmp.c (do_one_test): Likewise.
23329         (do_test): Likewise.
23330         * string/test-memcpy.c (do_one_test): Likewise.
23331         (do_test): Likewise.
23332         * string/test-memmem.c (do_one_test): Likewise.
23333         (do_test): Likewise.
23334         (do_random_tests): Likewise.
23335         * string/test-memmove.c (do_one_test): Likewise.
23336         (do_test): Likewise.
23337         * string/test-memset.c (do_one_test): Likewise.
23338         (do_test): Likewise.
23339         * string/test-rawmemchr.c (do_one_test): Likewise.
23340         (do_test): Likewise.
23341         * string/test-strcasecmp.c (do_one_test): Likewise.
23342         (do_test): Likewise.
23343         * string/test-strcasestr.c (do_one_test): Likewise.
23344         (do_test): Likewise.
23345         * string/test-strcat.c (do_one_test): Likewise.
23346         (do_test): Likewise.
23347         * string/test-strchr.c (do_one_test): Likewise.
23348         (do_test): Likewise.
23349         * string/test-strcmp.c (do_one_test): Likewise.
23350         (do_test): Likewise.
23351         * string/test-strcpy.c (do_one_test): Likewise.
23352         (do_test): Likewise.
23353         * string/test-string.h: Likewise.
23354         (test_init): Likewise.
23355         * string/test-strlen.c (do_one_test): Likewise.
23356         (do_test): Likewise.
23357         * string/test-strncasecmp.c (do_one_test): Likewise.
23358         (do_test): Likewise.
23359         * string/test-strncat.c (do_one_test): Likewise.
23360         (do_test): Likewise.
23361         * string/test-strncmp.c (do_one_test): Likewise.
23362         (do_test_limit): Likewise.
23363         (do_test): Likewise.
23364         * string/test-strncpy.c (do_one_test): Likewise.
23365         (do_test): Likewise.
23366         * string/test-strnlen.c (do_one_test): Likewise.
23367         (do_test): Likewise.
23368         * string/test-strpbrk.c (do_one_test): Likewise.
23369         (do_test): Likewise.
23370         * string/test-strrchr.c (do_one_test): Likewise.
23371         (do_test): Likewise.
23372         * string/test-strspn.c (do_one_test): Likewise.
23373         (do_test): Likewise.
23374         * string/test-strstr.c (do_one_test): Likewise.
23375         (do_test): Likewise.
23376
23377         * benchtests/Makefile (string-bench): Add string benchmarks.
23378         * benchtests/bench-bcopy-ifunc.c: New file.
23379         * benchtests/bench-bcopy.c: New file.
23380         * benchtests/bench-bzero-ifunc.c: New file.
23381         * benchtests/bench-bzero.c: New file.
23382         * benchtests/bench-memccpy-ifunc.c: New file.
23383         * benchtests/bench-memccpy.c: New file.
23384         * benchtests/bench-memchr-ifunc.c: New file.
23385         * benchtests/bench-memchr.c: New file.
23386         * benchtests/bench-memcmp-ifunc.c: New file.
23387         * benchtests/bench-memcmp.c: New file.
23388         * benchtests/bench-memmem-ifunc.c: New file.
23389         * benchtests/bench-memmem.c: New file.
23390         * benchtests/bench-memmove-ifunc.c: New file.
23391         * benchtests/bench-memmove.c: New file.
23392         * benchtests/bench-mempcpy-ifunc.c: New file.
23393         * benchtests/bench-mempcpy.c: New file.
23394         * benchtests/bench-memset-ifunc.c: New file.
23395         * benchtests/bench-memset.c: New file.
23396         * benchtests/bench-rawmemchr-ifunc.c: New file.
23397         * benchtests/bench-rawmemchr.c: New file.
23398         * benchtests/bench-stpcpy-ifunc.c: New file.
23399         * benchtests/bench-stpcpy.c: New file.
23400         * benchtests/bench-stpncpy-ifunc.c: New file.
23401         * benchtests/bench-stpncpy.c: New file.
23402         * benchtests/bench-strcasecmp-ifunc.c: New file.
23403         * benchtests/bench-strcasecmp.c: New file.
23404         * benchtests/bench-strcasestr-ifunc.c: New file.
23405         * benchtests/bench-strcasestr.c: New file.
23406         * benchtests/bench-strcat-ifunc.c: New file.
23407         * benchtests/bench-strcat.c: New file.
23408         * benchtests/bench-strchr-ifunc.c: New file.
23409         * benchtests/bench-strchr.c: New file.
23410         * benchtests/bench-strchrnul-ifunc.c: New file.
23411         * benchtests/bench-strchrnul.c: New file.
23412         * benchtests/bench-strcmp-ifunc.c: New file.
23413         * benchtests/bench-strcmp.c: New file.
23414         * benchtests/bench-strcpy-ifunc.c: New file.
23415         * benchtests/bench-strcpy.c: New file.
23416         * benchtests/bench-strcspn-ifunc.c: New file.
23417         * benchtests/bench-strcspn.c: New file.
23418         * benchtests/bench-strlen-ifunc.c: New file.
23419         * benchtests/bench-strlen.c: New file.
23420         * benchtests/bench-strncasecmp-ifunc.c: New file.
23421         * benchtests/bench-strncasecmp.c: New file.
23422         * benchtests/bench-strncat-ifunc.c: New file.
23423         * benchtests/bench-strncat.c: New file.
23424         * benchtests/bench-strncmp-ifunc.c: New file.
23425         * benchtests/bench-strncmp.c: New file.
23426         * benchtests/bench-strncpy-ifunc.c: New file.
23427         * benchtests/bench-strncpy.c: New file.
23428         * benchtests/bench-strnlen-ifunc.c: New file.
23429         * benchtests/bench-strnlen.c: New file.
23430         * benchtests/bench-strpbrk-ifunc.c: New file.
23431         * benchtests/bench-strpbrk.c: New file.
23432         * benchtests/bench-strrchr-ifunc.c: New file.
23433         * benchtests/bench-strrchr.c: New file.
23434         * benchtests/bench-strspn-ifunc.c: New file.
23435         * benchtests/bench-strspn.c: New file.
23436         * benchtests/bench-strstr-ifunc.c: New file.
23437         * benchtests/bench-strstr.c: New file.
23438
23439         * benchtests/Makefile: Disable parallel execution of targets.
23440         (string-bench): Add memcpy.
23441         (benchset): New variable to store a list of benchmark sets.
23442         (bench-func): Renamed from bench.
23443         (bench-set): New target.
23444         (bench): Depend on bench-func and bench-set.
23445         * benchtests/README: Add section on benchmark sets.
23446         * benchtests/bench-memcpy-ifunc.c: New file.
23447         * benchtests/bench-memcpy.c: New file.
23448         * benchtests/bench-string.h: New file.
23449
23450 2013-06-11  Andreas Schwab  <schwab@suse.de>
23451
23452         [BZ #15577]
23453         * nscd/connections.c (nscd_run_worker): Always zero-terminate key.
23454         * nscd/netgroupcache.c (addgetnetgrentX): Properly handle absent
23455         values in the triple.
23456         * nscd/nscd_netgroup.c (__nscd_setnetgrent): Include zero
23457         terminator in the group key.
23458
23459 2013-06-11  Andreas Jaeger  <aj@suse.de>
23460
23461         * po/zh_TW.po: Update Chinese (traditional) translation from
23462         translation project.
23463
23464 2013-06-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
23465
23466         * include/time.h (__clock_gettime): Add libc_hidden_proto.
23467         * rt/clock_getcpuclockid.c (clock_getcpuclockid): Rename to
23468         __clock_getcpuclockid.  Add weak_alias and libc_hidden_def.
23469         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
23470         (clock_getcpuclockid): Likewise.
23471         * rt/clock_getres.c (clock_getres): Rename to __clock_getres.
23472         Add weak_alias and libc_hidden_def.
23473         * sysdeps/posix/clock_getres.c (clock_getres): Likewise.
23474         * rt/clock_gettime.c (clock_gettime): Rename to
23475         __clock_gettime.  Add weak_alias and libc_hidden_def.
23476         * sysdeps/unix/clock_gettime.c (clock_gettime): Likewise.
23477         * rt/clock_nanosleep.c (clock_nanosleep): Rename to
23478         __clock_nanosleep.  Add weak_alias and libc_hidden_def.
23479         * sysdeps/unix/clock_nanosleep.c (clock_nanosleep): Likewise.
23480         * sysdeps/unix/sysv/linux/clock_nanosleep.c (clock_nanosleep):
23481         Likewise.
23482         * rt/clock_settime.c (clock_settime): Rename to
23483         __clock_settime.  Add weak_alias and libc_hidden_def.
23484         * sysdeps/unix/clock_settime.c (clock_settime): Likewise.
23485
23486 2013-06-10  Joseph Myers  <joseph@codesourcery.com>
23487
23488         * mach/err_boot.sub: Remove trailing whitespace.
23489         * mach/err_ipc.sub: Likewise.
23490         * mach/err_mach.sub: Likewise.
23491
23492         * sysdeps/generic/math-tests.h (ROUNDING_TESTS_float): New macro.
23493         (ROUNDING_TESTS_double): Likewise.
23494         (ROUNDING_TESTS_long_double): Likewise.
23495         (ROUNDING_TESTS): Likewise.
23496         * math/libm-test.inc: Include <math-tests.h>.
23497         (IF_ROUND_INIT_FE_DOWNWARD): Use ROUNDING_TESTS.
23498         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
23499         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
23500         (IF_ROUND_INIT_FE_UPWARD): Likewise.
23501
23502 2013-06-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
23503
23504         * benchtests/Makefile (CPPFLAGS-nonlib): Append values instead
23505         of assigning.
23506
23507 2013-06-08  Joseph Myers  <joseph@codesourcery.com>
23508
23509         * sysdeps/gnu/errlist.awk: Do not generate space at end of
23510         otherwise empty TRANS lines.
23511         * sysdeps/gnu/errlist.c: Regenerated.
23512
23513         * catgets/gencat.c (error_print): Use (void) in function
23514         definition.
23515         * crypt/crypt_util.c (__init_des): Likewise.
23516         * crypt/speeds.c (Stop): Likewise.
23517         (main): Likewise.
23518         * hurd/hurdmalloc.c (print_malloc_free_list): Likewise.
23519         * inet/ruserpass.c (token): Likewise.
23520         * intl/finddomain.c (_nl_finddomain_subfreeres): Likewise.
23521         * intl/localealias.c (extend_alias_table): Likewise.
23522         * intl/plural-exp.c (init_germanic_plural): Likewise.
23523         * libio/fcloseall.c (__fcloseall): Likewise.
23524         * libio/genops.c (_IO_flush_all): Likewise.
23525         (_IO_flush_all_linebuffered): Likewise.
23526         (_IO_cleanup): Likewise.
23527         (_IO_iter_begin): Likewise.
23528         (_IO_iter_end): Likewise.
23529         (_IO_list_lock): Likewise.
23530         (_IO_list_unlock): Likewise.
23531         (_IO_list_resetlock): Likewise.
23532         * libio/getchar.c (getchar): Likewise.
23533         * libio/getchar_u.c (getchar_unlocked): Likewise.
23534         * libio/getwchar.c (getwchar): Likewise.
23535         * libio/getwchar_u.c (getwchar_unlocked): Likewise.
23536         * libio/oldstdfiles.c (_IO_check_libio): Likewise.
23537         * login/getpt.c (__getpt): Likewise.
23538         * login/tst-utmp.c (main): Likewise.
23539         * malloc/hooks.c (__malloc_check_init): Likewise.
23540         * malloc/malloc.c (__malloc_stats): Likewise.
23541         * malloc/mtrace.c (tr_break): Likewise.
23542         (mtrace): Likewise.
23543         (muntrace): Likewise.
23544         * misc/fstab.c (endfsent): Likewise.
23545         * misc/getclktck.c (__getclktck): Likewise.
23546         * misc/getdtsz.c (__getdtablesize): Likewise.
23547         * misc/gethostid.c (gethostid): Likewise.
23548         * misc/getpagesize.c (__getpagesize): Likewise.
23549         * misc/getsysstats.c (__get_nprocs_conf): Likewise.
23550         (__get_nprocs): Likewise.
23551         (__get_phys_pages): Likewise.
23552         (__get_avphys_pages): Likewise.
23553         * misc/getttyent.c (getttyent): Likewise.
23554         (setttyent): Likewise.
23555         (endttyent): Likewise.
23556         * misc/getusershell.c (getusershell): Likewise.
23557         (endusershell): Likewise.
23558         (setusershell): Likewise.
23559         (initshells): Likewise.
23560         * misc/hsearch.c (__hdestroy): Likewise.
23561         * misc/sync.c (sync): Likewise.
23562         * misc/syslog.c (closelog_internal): Likewise.
23563         (closelog): Likewise.
23564         * misc/ttyslot.c (ttyslot): Likewise.
23565         * misc/vhangup.c (vhangup): Likewise.
23566         * posix/fork.c (__fork): Likewise.
23567         * posix/getegid.c (__getegid): Likewise.
23568         * posix/geteuid.c (__geteuid): Likewise.
23569         * posix/getgid.c (__getgid): Likewise.
23570         * posix/getpid.c (__getpid): Likewise.
23571         * posix/getppid.c (__getppid): Likewise.
23572         * posix/getuid.c (__getuid): Likewise.
23573         * posix/pause.c (pause): Likewise.
23574         * posix/setpgrp.c (setpgrp): Likewise.
23575         * posix/setsid.c (__setsid): Likewise.
23576         * posix/test-vfork.c (noop): Likewise.
23577         * resolv/gethnamaddr.c (_endhtent): Likewise.
23578         (_gethtent): Likewise.
23579         (ht_endhostent): Likewise.
23580         (gethostent): Likewise.
23581         (dns_service): Likewise.
23582         * stdlib/drand48.c (drand48): Likewise.
23583         * stdlib/lrand48.c (lrand48): Likewise.
23584         * stdlib/mrand48.c (mrand48): Likewise.
23585         * stdlib/rand.c (rand): Likewise.
23586         * stdlib/random.c (__random): Likewise.
23587         * stdlib/setenv.c (clearenv): Likewise.
23588         * sunrpc/clnt_tcp.c (clnttcp_abort): Likewise.
23589         * sunrpc/clnt_unix.c (clntunix_abort): Likewise.
23590         * sysdeps/mach/getpagesize.c (__getpagesize): Likewise.
23591         * sysdeps/mach/getsysstats.c (__get_nprocs_conf): Likewise.
23592         (__get_nprocs): Likewise.
23593         (__get_phys_pages): Likewise.
23594         (__get_avphys_pages): Likewise.
23595         * sysdeps/mach/hurd/dl-sysdep.c (__getpid): Likewise.
23596         * sysdeps/mach/hurd/getclktck.c (__getclktck): Likewise.
23597         * sysdeps/mach/hurd/getdtsz.c (__getdtablesize): Likewise.
23598         * sysdeps/mach/hurd/getegid.c (__getegid): Likewise.
23599         * sysdeps/mach/hurd/geteuid.c (__geteuid): Likewise.
23600         * sysdeps/mach/hurd/getgid.c (__getgid): Likewise.
23601         * sysdeps/mach/hurd/gethostid.c (gethostid): Likewise.
23602         * sysdeps/mach/hurd/getlogin.c (getlogin): Likewise.
23603         * sysdeps/mach/hurd/getpid.c (__getpid): Likewise.
23604         * sysdeps/mach/hurd/getppid.c (__getppid): Likewise.
23605         * sysdeps/mach/hurd/getuid.c (__getuid): Likewise.
23606         * sysdeps/mach/hurd/sync.c (sync): Likewise.
23607         * sysdeps/posix/clock.c (clock): Likewise.
23608         * sysdeps/unix/bsd/setsid.c (__setsid): Likewise.
23609         * sysdeps/unix/getpagesize.c (__getpagesize): Likewise.
23610         * sysdeps/unix/sysv/linux/getclktck.c (__getclktck): Likewise.
23611         * sysdeps/unix/sysv/linux/gethostid.c (gethostid): Likewise.
23612         * sysdeps/unix/sysv/linux/getpagesize.c (__getpagesize): Likewise.
23613         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Likewise.
23614         (__get_nprocs_conf): Likewise.
23615         (__get_phys_pages): Likewise.
23616         (__get_avphys_pages): Likewise.
23617         * time/clock.c (clock): Likewise.
23618         * time/tzset.c (__tzname_max): Likewise.
23619
23620 2013-06-07  Joseph Myers  <joseph@codesourcery.com>
23621
23622         * bits/byteswap.h [__GNUC__ && !__GNUC_PREREQ (4, 3)]
23623         (__bswap_32): Do not use "register".
23624         * crypt/crypt.c (_ufc_doit_r): Likewise.
23625         * debug/stpcpy_chk.c (__stpcpy_chk): Likewise.
23626         * debug/wcscat_chk.c (__wcscat_chk): Likewise.
23627         * gmon/gmon.c (__monstartup): Likewise.
23628         * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
23629         * hurd/hurdmalloc.c (more_memory): Likewise.
23630         (malloc): Likewise.
23631         (free): Likewise.
23632         (realloc): Likewise.
23633         (malloc_fork_prepare): Likewise.
23634         (malloc_fork_parent): Likewise.
23635         (malloc_fork_child): Likewise.
23636         * include/rpc/auth_des.h (xdr_authdes_verf): Likewise.
23637         (_svcauth_des): Likewise.
23638         * inet/inet_lnaof.c (inet_lnaof): Likewise.
23639         * inet/inet_net.c (inet_network): Likewise.
23640         * inet/inet_netof.c (inet_netof): Likewise.
23641         * inet/rcmd.c (__validuser2_sa): Likewise.
23642         * io/fts.c (fts_open): Likewise.
23643         (fts_load): Likewise.
23644         (fts_close): Likewise.
23645         (fts_read): Likewise.
23646         (fts_children): Likewise.
23647         (fts_build): Likewise.
23648         (fts_stat): Likewise.
23649         (fts_sort): Likewise.
23650         (fts_alloc): Likewise.
23651         (fts_lfree): Likewise.
23652         * libio/fileops.c (_IO_new_file_xsputn): Likewise.
23653         (_IO_file_xsgetn): Likewise.
23654         (_IO_file_xsgetn_mmap): Likewise.
23655         * libio/iofopncook.c (_IO_cookie_read): Likewise.
23656         (_IO_cookie_write): Likewise.
23657         * libio/oldfileops.c (_IO_old_file_xsputn): Likewise.
23658         * libio/wfileops.c (_IO_wfile_xsputn): Likewise.
23659         * mach/msgserver.c (__mach_msg_server_timeout): Likewise.
23660         * malloc/obstack.c (_obstack_begin): Likewise.
23661         (_obstack_begin_1): Likewise.
23662         (_obstack_newchunk): Likewise.
23663         (_obstack_allocated_p): Likewise.
23664         (obstack_free): Likewise.
23665         (_obstack_memory_used): Likewise.
23666         * misc/getttyent.c (getttynam): Likewise.
23667         (getttyent): Likewise.
23668         (skip): Likewise.
23669         (value): Likewise.
23670         * misc/getusershell.c (initshells): Likewise.
23671         * misc/syslog.c (__vsyslog_chk): Likewise.
23672         * misc/ttyslot.c (ttyslot): Likewise.
23673         * nis/nis_hash.c (__nis_hash): Likewise.
23674         * posix/fnmatch_loop.c (FCT): Likewise.
23675         * posix/getconf.c (print_all): Likewise.
23676         (main): Likewise.
23677         * posix/getopt.c (exchange): Likewise.
23678         * posix/glob.c (globfree): Likewise.
23679         (prefix_array): Likewise.
23680         (__glob_pattern_type): Likewise.
23681         * resolv/arpa/nameser.h (NS_GET16): Likewise.
23682         (NS_GET32): Likewise.
23683         (NS_PUT16): Likewise.
23684         (NS_PUT32): Likewise.
23685         * resolv/gethnamaddr.c (getanswer): Likewise.
23686         (gethostbyname2): Likewise.
23687         (gethostbyaddr): Likewise.
23688         (_gethtent): Likewise.
23689         (_gethtbyname2): Likewise.
23690         (_gethtbyaddr): Likewise.
23691         * resolv/ns_print.c (dst_s_get_int16): Likewise.
23692         * resolv/nss_dns/dns-host.c (getanswer_r): Likewise.
23693         * resolv/res_init.c (__res_vinit): Likewise.
23694         (net_mask): Likewise.
23695         * resolv/res_mkquery.c (outchar): Likewise.
23696         (PRINT): Likewise.
23697         * stdio-common/printf_fp.c (outchar): Likewise.
23698         (PRINT): Likewise.
23699         * stdio-common/printf_fphex.c (outchar): Likewise.
23700         (PRINT): Likewise.
23701         * stdio-common/printf_size.c (outchar): Likewise.
23702         (PRINT): Likewise.
23703         * stdio-common/test_rdwr.c (main): Likewise.
23704         * stdio-common/tfformat.c (matches): Likewise.
23705         * stdio-common/vfprintf.c (outchar): Likewise.
23706         (printf_unknown): Likewise.
23707         (buffered_vfprintf): Likewise.
23708         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Likewise.
23709         * stdio-common/xbug.c (AppendToBuffer): Likewise.
23710         (ReadFile): Likewise.
23711         * stdlib/qsort.c (SWAP): Likewise.
23712         (_quicksort): Likewise.
23713         * stdlib/setenv.c (__add_to_environ): Likewise.
23714         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Likewise.
23715         * stdlib/strtol_l.c (__strtol_l): Likewise.
23716         * stdlib/tst-strtod.c (main): Likewise.
23717         * stdlib/tst-strtol.c (main): Likewise.
23718         * stdlib/tst-strtoll.c (main): Likewise.
23719         * string/bits/string2.h (__strcmp_cc): Likewise.
23720         (__strcmp_cg): Likewise.
23721         (__strcspn_c1): Likewise.
23722         (__strcspn_c2): Likewise.
23723         (__strcspn_c3): Likewise.
23724         (__strspn_c1): Likewise.
23725         (__strspn_c2): Likewise.
23726         (__strspn_c3): Likewise.
23727         (__strsep_1c): Likewise.
23728         (__strsep_2c): Likewise.
23729         (__strsep_3c): Likewise.
23730         * string/memccpy.c (__memccpy): Likewise.
23731         * string/stpcpy.c (__stpcpy): Likewise.
23732         * string/strcmp.c (strcmp): Likewise.
23733         * string/strrchr.c (strrchr): Likewise.
23734         * sysdeps/generic/sigset-cvt-mask.h (sigset_get_old_mask):
23735         Likewise.
23736         * sysdeps/mach/hurd/getcwd.c
23737         (_hurd_canonicalize_directory_name_internal): Likewise.
23738         * sysdeps/mach/i386/sysdep.h (SNARF_ARGS): Likewise.
23739         * sysdeps/powerpc/powerpc32/power6/wcschr.c (wcschr): Likewise.
23740         * sysdeps/powerpc/powerpc32/power6/wcsrchr.c (wcsrchr): Likewise.
23741         * sysdeps/x86/bits/byteswap-16.h [__GNUC__] (__bswap_16):
23742         Likewise, in both definitions.
23743         * sysdeps/x86/bits/byteswap.h (__bswap_32): Likewise, in multiple
23744         definitions.
23745         [__GNUC_PREREQ (2, 0) && !__GNUC_PREREQ (4, 3) && __WORDSIZE ==
23746         64] (__bswap_64): Likewise.
23747         * time/test_time.c (main): Likewise.
23748         * time/tzfile.c (__tzfile_read): Likewise.
23749         (__tzfile_compute): Likewise.
23750         * time/tzset.c (__tzset_parse_tz): Likewise.
23751         (tzset_internal): Likewise.
23752         (compute_change): Likewise.
23753         * wcsmbs/wcscat.c (__wcscat): Likewise.
23754         * wcsmbs/wcschr.c (wcschr): Likewise.
23755         * wcsmbs/wcschrnul.c (__wcschrnul): Likewise.
23756         * wcsmbs/wcscspn.c (wcscspn): Likewise.
23757         * wcsmbs/wcspbrk.c (wcspbrk): Likewise.
23758         * wcsmbs/wcsrchr.c (wcsrchr): Likewise.
23759         * wcsmbs/wcsspn.c (wcsspn): Likewise.
23760         * wcsmbs/wcsstr.c (wcsstr): Likewise.
23761         * wcsmbs/wmemchr.c (wmemchr): Likewise.
23762         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
23763         * wcsmbs/wmemset.c (wmemset): Likewise.
23764
23765 2013-06-06  Joseph Myers  <joseph@codesourcery.com>
23766
23767         * scripts/config.guess: Update to version 2013-05-16.
23768         * scripts/config.sub: Update to version 2013-04-24.
23769         * scripts/install-sh: Update to version 2011-11-20.07.
23770         * scripts/mkinstalldirs: Update to version 2009-04-28.21.
23771         * scripts/move-if-change: Update to version 2012-01-06 07:23.
23772
23773 2013-06-06   Ondřej Bílka  <neleai@seznam.cz>
23774
23775         * debug/fgetws_u_chk.c: Fix leading whitespaces.
23776         * elf/sln.c: Likewise.
23777         * hurd/hurd/ioctl.h: Likewise.
23778         * hurd/hurdmalloc.c: Likewise.
23779         * hurd/xattr.c: Likewise.
23780         * include/shlib-compat.h: Likewise.
23781         * inet/ruserpass.c: Likewise.
23782         * libio/iofgets_u.c: Likewise.
23783         * libio/iofgetws_u.c: Likewise.
23784         * locale/programs/ld-identification.c: Likewise.
23785         * locale/programs/ld-time.c: Likewise.
23786         * mach/msg-destroy.c: Likewise.
23787         * nss/nss_files/files-netgrp.c: Likewise.
23788         * resolv/res_data.c: Likewise.
23789         * soft-fp/op-1.h: Likewise.
23790         * soft-fp/op-2.h: Likewise.
23791         * soft-fp/op-4.h: Likewise.
23792         * soft-fp/op-common.h: Likewise.
23793         * stdio-common/printf_fphex.c: Likewise.
23794         * stdlib/strtod_l.c: Likewise.
23795         * sunrpc/rpc/clnt.h: Likewise.
23796         * sysdeps/generic/framestate.c: Likewise.
23797         * sysdeps/i386/bsd-_setjmp.S: Likewise.
23798         * sysdeps/i386/bsd-setjmp.S: Likewise.
23799         * sysdeps/i386/__longjmp.S: Likewise.
23800         * sysdeps/i386/setjmp.S: Likewise.
23801         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
23802         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
23803         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
23804         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
23805         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
23806         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
23807         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
23808         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
23809         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
23810         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
23811         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
23812         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
23813         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
23814         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
23815         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
23816         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
23817         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
23818         * sysdeps/ieee754/ldbl-96/ldbl2mpn.c: Likewise.
23819         * sysdeps/ieee754/support.c: Likewise.
23820         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
23821         * sysdeps/powerpc/powerpc32/lshift.S: Likewise.
23822         * sysdeps/sparc/sparc32/__longjmp.S: Likewise.
23823         * sysdeps/sparc/sparc64/soft-fp/qp_cmp.c: Likewise.
23824         * sysdeps/sparc/sparc64/soft-fp/qp_cmpe.c: Likewise.
23825         * sysdeps/sparc/sparc64/soft-fp/qp_feq.c: Likewise.
23826         * sysdeps/sparc/sparc64/soft-fp/qp_fge.c: Likewise.
23827         * sysdeps/sparc/sparc64/soft-fp/qp_fgt.c: Likewise.
23828         * sysdeps/sparc/sparc64/soft-fp/qp_fle.c: Likewise.
23829         * sysdeps/sparc/sparc64/soft-fp/qp_flt.c: Likewise.
23830         * sysdeps/sparc/sparc64/soft-fp/qp_fne.c: Likewise.
23831         * sysdeps/sparc/sparc64/soft-fp/qp_mul.c: Likewise.
23832         * sysdeps/sparc/sparc64/soft-fp/qp_qtoi.c: Likewise.
23833         * sysdeps/sparc/sparc64/soft-fp/qp_qtoui.c: Likewise.
23834         * sysdeps/sparc/sparc64/soft-fp/qp_qtoux.c: Likewise.
23835         * sysdeps/sparc/sparc64/soft-fp/qp_qtox.c: Likewise.
23836         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
23837         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Likewise.
23838
23839 2013-06-05  Ondřej Bílka  <neleai@seznam.cz>
23840
23841         * posix/transbug.c: Remove executable mode.
23842
23843 2013-06-05  Joseph Myers  <joseph@codesourcery.com>
23844
23845         * crypt/speeds.c: Remove trailing whitespace.
23846         * dlfcn/default.c: Likewise.
23847         * elf/ifuncdep2.c: Likewise.
23848         * elf/ifuncmain1.c: Likewise.
23849         * elf/ifuncmain1vis.c: Likewise.
23850         * elf/testobj.h: Likewise.
23851         * elf/tst-stackguard1.c: Likewise.
23852         * gmon/sys/gmon.h: Likewise.
23853         * hurd/hurdmsg.c: Likewise.
23854         * hurd/new-fd.c: Likewise.
23855         * hurd/ports-get.c: Likewise.
23856         * iconvdata/ibm1008_420.c: Likewise.
23857         * inet/tst-getni1.c: Likewise.
23858         * inet/tst-getni2.c: Likewise.
23859         * libio/ioungetc.c: Likewise.
23860         * libio/wfiledoalloc.c: Likewise.
23861         * manual/libm-err-tab.pl: Likewise.
23862         * math/w_dremf.c: Likewise.
23863         * misc/ftruncate.c: Likewise.
23864         * posix/bug-glob2.c: Likewise.
23865         * posix/tst-pcre.c: Likewise.
23866         * posix/wait4.c: Likewise.
23867         * resolv/README: Likewise.
23868         * resolv/res_debug.h: Likewise.
23869         * resolv/tst-inet_ntop.c: Likewise.
23870         * setjmp/bug269-setjmp.c: Likewise.
23871         * soft-fp/extended.h: Likewise.
23872         * soft-fp/op-1.h: Likewise.
23873         * soft-fp/op-2.h: Likewise.
23874         * soft-fp/op-4.h: Likewise.
23875         * soft-fp/op-8.h: Likewise.
23876         * soft-fp/testit.c: Likewise.
23877         * stdio-common/bug16.c: Likewise.
23878         * stdlib/random.c: Likewise.
23879         * sunrpc/rpcsvc/rquota.x: Likewise.
23880         * sysdeps/ieee754/dbl-64/powtwo.tbl: Likewise.
23881         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
23882         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
23883         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
23884         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
23885         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
23886         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
23887         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
23888         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
23889         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
23890         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
23891         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
23892         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
23893         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
23894         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
23895         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
23896         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
23897         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
23898         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
23899         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
23900         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
23901         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
23902         * sysdeps/ieee754/ldbl-128/t_sincosl.c: Likewise.
23903         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
23904         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
23905         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
23906         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
23907         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
23908         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
23909         * sysdeps/ieee754/s_lib_version.c: Likewise.
23910         * sysdeps/mach/hurd/check_fds.c: Likewise.
23911         * sysdeps/mach/hurd/getsockname.c: Likewise.
23912         * sysdeps/mach/hurd/net/if_ppp.h: Likewise.
23913         * sysdeps/mach/hurd/recvfrom.c: Likewise.
23914         * sysdeps/powerpc/bits/link.h: Likewise.
23915         * sysdeps/powerpc/dl-procinfo.c: Likewise.
23916         * sysdeps/powerpc/fpu/feholdexcpt.c: Likewise.
23917         * sysdeps/powerpc/fpu/fenv_const.c: Likewise.
23918         * sysdeps/powerpc/fpu/fesetenv.c: Likewise.
23919         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
23920         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
23921         * sysdeps/powerpc/fpu/t_sqrt.c: Likewise.
23922         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
23923         * sysdeps/powerpc/powerpc32/fpu/s_floor.S: Likewise.
23924         * sysdeps/powerpc/powerpc32/fpu/s_floorf.S: Likewise.
23925         * sysdeps/powerpc/powerpc32/fpu/s_isnan.S: Likewise.
23926         * sysdeps/powerpc/powerpc32/fpu/s_lround.S: Likewise.
23927         * sysdeps/powerpc/powerpc32/fpu/s_round.S: Likewise.
23928         * sysdeps/powerpc/powerpc32/fpu/s_roundf.S: Likewise.
23929         * sysdeps/powerpc/powerpc32/fpu/s_trunc.S: Likewise.
23930         * sysdeps/powerpc/powerpc32/fpu/s_truncf.S: Likewise.
23931         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrint.S: Likewise.
23932         * sysdeps/powerpc/powerpc32/power4/fpu/s_llrintf.S: Likewise.
23933         * sysdeps/powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
23934         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
23935         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
23936         * sysdeps/powerpc/powerpc32/power4/hp-timing.c: Likewise.
23937         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
23938         * sysdeps/powerpc/powerpc32/power4/memset.S: Likewise.
23939         * sysdeps/powerpc/powerpc32/power4/wordcopy.c: Likewise.
23940         * sysdeps/powerpc/powerpc32/power5+/fpu/s_llround.S: Likewise.
23941         * sysdeps/powerpc/powerpc32/power5+/fpu/s_lround.S: Likewise.
23942         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
23943         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
23944         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S: Likewise.
23945         * sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S: Likewise.
23946         * sysdeps/powerpc/powerpc32/power6/fpu/s_llround.S: Likewise.
23947         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
23948         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
23949         * sysdeps/powerpc/powerpc32/power6x/fpu/s_lround.S: Likewise.
23950         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
23951         * sysdeps/powerpc/powerpc64/fpu/s_floor.S: Likewise.
23952         * sysdeps/powerpc/powerpc64/fpu/s_floorf.S: Likewise.
23953         * sysdeps/powerpc/powerpc64/fpu/s_isnan.S: Likewise.
23954         * sysdeps/powerpc/powerpc64/fpu/s_llrint.S: Likewise.
23955         * sysdeps/powerpc/powerpc64/fpu/s_llrintf.S: Likewise.
23956         * sysdeps/powerpc/powerpc64/fpu/s_llround.S: Likewise.
23957         * sysdeps/powerpc/powerpc64/fpu/s_llroundf.S: Likewise.
23958         * sysdeps/powerpc/powerpc64/fpu/s_round.S: Likewise.
23959         * sysdeps/powerpc/powerpc64/fpu/s_roundf.S: Likewise.
23960         * sysdeps/powerpc/powerpc64/fpu/s_roundl.S: Likewise.
23961         * sysdeps/powerpc/powerpc64/fpu/s_trunc.S: Likewise.
23962         * sysdeps/powerpc/powerpc64/fpu/s_truncf.S: Likewise.
23963         * sysdeps/powerpc/powerpc64/fpu/s_truncl.S: Likewise.
23964         * sysdeps/powerpc/powerpc64/hp-timing.c: Likewise.
23965         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
23966         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
23967         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
23968         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
23969         * sysdeps/powerpc/powerpc64/power5+/fpu/s_llround.S: Likewise.
23970         * sysdeps/powerpc/powerpc64/power5/fpu/s_isnan.S: Likewise.
23971         * sysdeps/powerpc/powerpc64/power6/fpu/s_isnan.S: Likewise.
23972         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
23973         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Likewise.
23974         * sysdeps/powerpc/powerpc64/power6x/fpu/s_isnan.S: Likewise.
23975         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llrint.S: Likewise.
23976         * sysdeps/powerpc/powerpc64/power6x/fpu/s_llround.S: Likewise.
23977         * sysdeps/powerpc/powerpc64/strlen.S: Likewise.
23978         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
23979         * sysdeps/powerpc/sysdep.h: Likewise.
23980         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
23981         * sysdeps/s390/s390-64/sub_n.S: Likewise.
23982         * sysdeps/sh/dl-trampoline.S: Likewise.
23983         * sysdeps/sh/memset.S: Likewise.
23984         * sysdeps/sh/sh4/fpu/fclrexcpt.c: Likewise.
23985         * sysdeps/sh/strlen.S: Likewise.
23986         * sysdeps/sparc/sparc32/dl-trampoline.S: Likewise.
23987         * sysdeps/sparc/sparc32/dotmul.S: Likewise.
23988         * sysdeps/sparc/sparc32/memcpy.S: Likewise.
23989         * sysdeps/sparc/sparc32/rem.S: Likewise.
23990         * sysdeps/sparc/sparc32/sdiv.S: Likewise.
23991         * sysdeps/sparc/sparc32/soft-fp/q_neg.c: Likewise.
23992         * sysdeps/sparc/sparc32/strchr.S: Likewise.
23993         * sysdeps/sparc/sparc32/udiv.S: Likewise.
23994         * sysdeps/sparc/sparc32/urem.S: Likewise.
23995         * sysdeps/sparc/sparc64/add_n.S: Likewise.
23996         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
23997         * sysdeps/sparc/sparc64/rawmemchr.S: Likewise.
23998         * sysdeps/sparc/sparc64/soft-fp/s_frexpl.c: Likewise.
23999         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h: Likewise.
24000         * sysdeps/sparc/sparc64/stpncpy.S: Likewise.
24001         * sysdeps/sparc/sparc64/strncmp.S: Likewise.
24002         * sysdeps/sparc/sparc64/strncpy.S: Likewise.
24003         * sysdeps/unix/bsd/times.c: Likewise.
24004         * sysdeps/unix/sysv/linux/a.out.h: Likewise.
24005         * sysdeps/unix/sysv/linux/net/if_ppp.h: Likewise.
24006         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S: Likewise.
24007         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S: Likewise.
24008         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions: Likewise.
24009         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise.
24010         * sysdeps/unix/sysv/linux/powerpc/sys/ucontext.h: Likewise.
24011         * sysdeps/unix/sysv/linux/s390/s390-32/clone.S: Likewise.
24012         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Likewise.
24013         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Likewise.
24014         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S: Likewise.
24015         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
24016         * sysdeps/unix/sysv/linux/s390/s390-64/mmap.S: Likewise.
24017         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
24018         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
24019         * sysdeps/unix/sysv/linux/s390/s390-64/socket.S: Likewise.
24020         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
24021         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
24022         * sysdeps/unix/sysv/linux/scsi/scsi_ioctl.h: Likewise.
24023         * sysdeps/unix/sysv/linux/sh/brk.c: Likewise.
24024         * sysdeps/unix/sysv/linux/sh/clone.S: Likewise.
24025         * sysdeps/unix/sysv/linux/sh/sh3/getcontext.S: Likewise.
24026         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
24027         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S: Likewise.
24028         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S: Likewise.
24029         * sysdeps/unix/sysv/linux/sh/vfork.S: Likewise.
24030         * sysdeps/unix/sysv/linux/sparc/a.out.h: Likewise.
24031         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
24032         * sysdeps/unix/sysv/linux/sys/personality.h: Likewise.
24033         * sysdeps/x86_64/fpu/s_ceill.S: Likewise.
24034         * sysdeps/x86_64/fpu/s_llrintl.S: Likewise.
24035         * sysdeps/x86_64/strcspn.S: Likewise.
24036
24037 2013-06-05  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
24038
24039         * locale/C-translit.h: Revert #include <stdint.h> because this is a
24040         generated file.  Regenerate properly from gen-translit.pl.
24041         * locale/gen-translit.pl: Add #include <stdint.h>.  This generates
24042         locale/C-translit.h.
24043
24044 2013-06-05  Andreas Schwab  <schwab@suse.de>
24045
24046         [BZ #15100]
24047         * time/strptime_l.c (__strptime_internal): Count Sunday in a %W
24048         week as 6 instead of -1.
24049         * time/tst-strptime.c (day_tests): Add test case.
24050
24051 2013-06-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
24052
24053         * sysdeps/generic/math_private.h
24054         (libc_feholdexcept_setround_53bit): Replace with
24055         libc_feholdsetround_53bit.
24056         (libc_feupdateenv_53bit): Replace with
24057         libc_feresetround_53bit.
24058         (SET_RESTORE_ROUND_53BIT): Adjust.
24059
24060 2013-06-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
24061
24062         * string/test-strchrnul.c: Add copyright header.
24063
24064         * posix/tst-getaddrinfo4.c: Increase test timeout.
24065
24066 2013-06-03  Carlos O'Donell  <carlos@redhat.com>
24067
24068         [BZ #15536]
24069         * math/libm-test.inc (MAX_EXP): Remove
24070         (MIN_EXP): Define.
24071         (ulp): Use MIN_EXP - MANT_DIG.
24072         (check_ulp): Verify subnormal ulps. Only allow a range of +/- 1 ulp.
24073
24074 2013-05-31  Carlos O'Donell  <carlos@redhat.com>
24075
24076         * po/be.po: Revert last change.
24077         * po/zh_CN.po: Likewise.
24078         * po/header.pot: Likewise.
24079
24080 2013-05-31  Joseph Myers  <joseph@codesourcery.com>
24081
24082         * Makefile ($(common-objpfx)linkobj/libc.so): Define
24083         link-libc-deps to empty as target-specific variable.
24084         * Makerules (link-libc-args): New variable.
24085         (libc-for-link): Likewise.
24086         (link-libc-deps): Likewise.
24087         (lib%.so): Depend on $(link-libc-deps).  Link with
24088         $(link-libc-args).
24089         (build-module): Link with $(link-libc-args).
24090         (build-module-asneeded): Likewise.
24091         (build-module-helper-objlist): Filter out $(link-libc-deps) from
24092         list of objects.
24093         ($(common-objpfx)libc.so): Define link-libc-deps to empty as
24094         target-specific variable.
24095         ($(extra-modules-build:%=$(objpfx)%.so)): Depend on
24096         $(link-libc-deps) instead of libc.so and libc_nonshared.a.
24097         * crypt/Makefile ($(objpfx)libcrypt.so): Remove dependencies on
24098         libc.
24099         * debug/Makefile ($(objpfx)libSegFault.so): Remove dependencies on
24100         libc and ld.so.
24101         ($(objpfx)libpcprofile.so): Likewise.
24102         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Remove ld.so and
24103         libc_nonshared.a.
24104         ($(objpfx)libdl.so): Remove dependencies on libc and ld.so.
24105         * hesiod/Makefile ($(objpfx)libnss_hesiod.so): Likewise.
24106         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Depend on
24107         $(link-libc-deps).
24108         ($(objpfx)$(mod).so): Remove dependencies on libc and ld.so.
24109         * locale/Makefile ($(objpfx)libBrokenLocale.so): Likewise.
24110         * login/Makefile ($(objpfx)libutil.so): Likewise.
24111         * malloc/Makefile ($(objpfx)libmemusage.so): Likewise.
24112         * math/Makefile ($(objpfx)libm.so): Likewise.
24113         * nis/Makefile ($(services:%=$(objpfx)libnss_%.so)
24114         $(objpfx)libnsl.so): Define libc-for-link as target-specific
24115         variable instead of depending directly on libc.
24116         * nss/Makefile ($(services:%=$(objpfx)libnss_%.so)): Likewise.
24117         ($(objpfx)/libnss_test1.so): Change dependencies on libc to
24118         $(link-libc-deps).
24119         * resolv/Makefile ($(objpfx)libresolv.so): Remove dependencies on
24120         libc.
24121         [$(have-ssp) = yes] (LDLIBS-resolv.so): Remove variable.
24122         ($(objpfx)libnss_dns.so): Remove dependencies on libc.
24123         ($(objpfx)libanl.so): Likewise.
24124         * rt/Makefile ($(objpfx)librt.so): Remove dependencies on libc and
24125         ld.so.
24126         * stdlib/Makefile ($(objpfx)tst-putenvmod.so): Depend on
24127         $(link-libc-deps).
24128         * sysdeps/i386/fpu/Makefile: Remove file.
24129         * sysdeps/powerpc/fpu/Makefile [$(subdir) = math]
24130         ($(objpfx)libm.so): Remove dependency on ld.so.
24131
24132 2013-05-30  Patsy Franklin  <pfrankli@redhat.com>
24133
24134         [BZ # 15553]
24135         * nis/yp_xdr.c (XDRMAXNAME): Define.
24136         (XDRMAXRECORD): Define.
24137         (xdr_domainname): Use XDRMAXNAME.
24138         (xdr_mapname): Likewise.
24139         (xdr_peername): Likewise.
24140         (xdr_keydat): Use XDRMAXRECORD.
24141         (xdr_valdat): Likewise.
24142
24143 2013-05-30  Jeff Law  <law@redhat.com>
24144
24145         [BZ #14256]
24146         * manual/errno.texi (ESTALE): Update to account for more than
24147         just NFS file systems.
24148         * sysdeps/gnu/errlist.c: Regenerated.
24149
24150 2013-05-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
24151
24152         [BZ #15465]
24153         * elf/Makefile (tests): Add tst-null-argv.
24154         (modules-names):  Add tst-null-argv-lib.
24155         ($(objpfx)tst-null-argv): Depend on tst-null-argv-lib.so.
24156         (tst-null-argv-ENV): Set environment for tst-null-argv.
24157         * sysdeps/generic/ldsodefs.h (DSO_FILENAME): New macro.
24158         (RTLD_PROGNAME): New macro.
24159         * elf/tst-null-argv.c: New test case.
24160         * elf/tst-null-argv-lib.c: Library for test case.
24161         * elf/dl-conflict.c (_dl_resolve_conflicts): Use DSO_FILENAME.
24162         * elf/dl-deps.c (_dl_map_object_deps): Likewise.
24163         * elf/dl-error.c (_dl_signal_error): Use RTLD_PROGNAME.
24164         * elf/dl-fini.c (_dl_fini): Use DSO_FILENAME.
24165         * elf/dl-init.c (call_init): Likewise.
24166         (_dl_init): Likewise.
24167         * elf/dl-load.c (print_search_path): Likewise.
24168         (_dl_map_object): Likewise.
24169         * elf/dl-lookup.c (do_lookup_x): Likewise.
24170         (add_dependency): Likewise.
24171         (_dl_lookup_symbol_x): Likewise.
24172         (_dl_debug_bindings): Likewise.
24173         * elf/dl-open.c (_dl_show_scope): Likewise.
24174         * elf/dl-reloc.c (_dl_relocate_object): Likewise.
24175         * elf/dl-version.c (match_symbol): Likewise.
24176         (_dl_check_map_versions): Likewise.
24177         * elf/rtld.c (dl_main): Likewise.
24178         (print_unresolved): Use RTLD_PROGNAME.
24179         (print_missing_version): Likewise.
24180         * sysdeps/i386/dl-machine.h (elf_machine_rel): Likewise.
24181         (elf_machine_rela): Likewise.
24182         * sysdeps/powerpc/powerpc32/dl-machine.c
24183         (__process_machine_rela): Likewise.
24184         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
24185         Likewise.
24186         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
24187         Likewise.
24188         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela):
24189         Likewise.
24190         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
24191         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela):
24192         Likewise.
24193         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
24194         Likewise.
24195         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
24196
24197 2013-05-28  Carlos O'Donell  <carlos@redhat.com>
24198
24199         * po/be.po: Add descriptive title.
24200         * po/zh_CN.po: Likewise.
24201         * po/header.pot: Likewise.
24202
24203 2013-05-28  Mike Frysinger  <vapier@gentoo.org>
24204
24205         * locale/programs/locarchive.c (create_archive): Inlucde fname in
24206         error message.
24207         (enlarge_archive): Likewise.
24208
24209 2013-05-28  Ben North  <ben@redfrontdoor.org>
24210
24211         * manual/arith.texi (frexp): It is the magnitude of the return
24212         value which lies in [0.5, 1), not the return value itself.
24213
24214 2013-05-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24215
24216         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
24217
24218 2013-05-26  Thomas Schwinge  <thomas@codesourcery.com>
24219
24220         * stdio-common/bug26.c (main): Correct fscanf template.
24221
24222         * sysdeps/mach/hurd/dl-sysdep.c (_dl_sysdep_start:go): Don't
24223         declare _dl_skip_args.
24224
24225         * sysdeps/mach/hurd/i386/init-first.c (_dl_non_dynamic_init):
24226         Don't declare.
24227
24228         * manual/platform.texi: Add missing @end deftypefun.
24229
24230 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
24231
24232         [BZ #15529]
24233         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Set high
24234         bit of mantissa of 2^16382.
24235         * math/libm-test.inc (hypot_test_data): Add more tests.
24236
24237         * math/libm-test.inc: Add drem and pow10 to list of tested
24238         functions.
24239         (pow10_test): New function.
24240         (drem_test): Likewise.
24241         (drem_test_tonearest): Likewise.
24242         (drem_test_towardzero): Likewise.
24243         (drem_test_downward): Likewise.
24244         (drem_test_upward): Likewise.
24245         (main): Call the new functions.
24246
24247         * math/libm-test.inc (finite_test_data): Remove.
24248         (finite_test): Run tests from isfinite_test_data.
24249         (gamma_test_data): Remove.
24250         (gamma_test): Run tests from lgamma_test_data.
24251         * sysdeps/i386/fpu/libm-test-ulps: Update.
24252         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24253
24254 2013-05-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
24255
24256         * manual/platform.texi: Add PowerPC PPR function set documentation.
24257         * sysdeps/powerpc/sys/platform/ppc.h: Add PowerPC PPR set function
24258         implementation.
24259
24260 2013-05-24  Carlos O'Donell  <carlos@redhat.com>
24261
24262         * math/libm-test.inc (MAX_EXP): Define.
24263         (ULPDIFF): Define.
24264         (ulp): New function.
24265         (check_float_internal): Use ULPDIFF.
24266         (cpow_test): Disable failing test.
24267         (check_ulp): Test ulp() implemetnation.
24268         (main): Call check_ulp before starting tests.
24269
24270 2013-05-24  Joseph Myers  <joseph@codesourcery.com>
24271
24272         * math/gen-libm-test.pl (generate_testfile): Do not handle
24273         START_DATA and END_DATA.
24274         * math/libm-test.inc (acos_test_data): Do not use START_DATA and
24275         END_DATA.
24276         (acos_tonearest_test_data): Likewise.
24277         (acos_towardzero_test_data): Likewise.
24278         (acos_downward_test_data): Likewise.
24279         (acos_upward_test_data): Likewise.
24280         (acosh_test_data): Likewise.
24281         (asin_test_data): Likewise.
24282         (asin_tonearest_test_data): Likewise.
24283         (asin_towardzero_test_data): Likewise.
24284         (asin_downward_test_data): Likewise.
24285         (asin_upward_test_data): Likewise.
24286         (asinh_test_data): Likewise.
24287         (atan_test_data): Likewise.
24288         (atanh_test_data): Likewise.
24289         (atan2_test_data): Likewise.
24290         (cabs_test_data): Likewise.
24291         (cacos_test_data): Likewise.
24292         (cacosh_test_data): Likewise.
24293         (carg_test_data): Likewise.
24294         (casin_test_data): Likewise.
24295         (casinh_test_data): Likewise.
24296         (catan_test_data): Likewise.
24297         (catanh_test_data): Likewise.
24298         (cbrt_test_data): Likewise.
24299         (ccos_test_data): Likewise.
24300         (ccosh_test_data): Likewise.
24301         (ceil_test_data): Likewise.
24302         (cexp_test_data): Likewise.
24303         (cimag_test_data): Likewise.
24304         (clog_test_data): Likewise.
24305         (clog10_test_data): Likewise.
24306         (conj_test_data): Likewise.
24307         (copysign_test_data): Likewise.
24308         (cos_test_data): Likewise.
24309         (cos_tonearest_test_data): Likewise.
24310         (cos_towardzero_test_data): Likewise.
24311         (cos_downward_test_data): Likewise.
24312         (cos_upward_test_data): Likewise.
24313         (cosh_test_data): Likewise.
24314         (cosh_tonearest_test_data): Likewise.
24315         (cosh_towardzero_test_data): Likewise.
24316         (cosh_downward_test_data): Likewise.
24317         (cosh_upward_test_data): Likewise.
24318         (cpow_test_data): Likewise.
24319         (cproj_test_data): Likewise.
24320         (creal_test_data): Likewise.
24321         (csin_test_data): Likewise.
24322         (csinh_test_data): Likewise.
24323         (csqrt_test_data): Likewise.
24324         (ctan_test_data): Likewise.
24325         (ctan_tonearest_test_data): Likewise.
24326         (ctan_towardzero_test_data): Likewise.
24327         (ctan_downward_test_data): Likewise.
24328         (ctan_upward_test_data): Likewise.
24329         (ctanh_test_data): Likewise.
24330         (ctanh_tonearest_test_data): Likewise.
24331         (ctanh_towardzero_test_data): Likewise.
24332         (ctanh_downward_test_data): Likewise.
24333         (ctanh_upward_test_data): Likewise.
24334         (erf_test_data): Likewise.
24335         (erfc_test_data): Likewise.
24336         (exp_test_data): Likewise.
24337         (exp_tonearest_test_data): Likewise.
24338         (exp_towardzero_test_data): Likewise.
24339         (exp_downward_test_data): Likewise.
24340         (exp_upward_test_data): Likewise.
24341         (exp10_test_data): Likewise.
24342         (exp2_test_data): Likewise.
24343         (expm1_test_data): Likewise.
24344         (fabs_test_data): Likewise.
24345         (fdim_test_data): Likewise.
24346         (finite_test_data): Likewise.
24347         (floor_test_data): Likewise.
24348         (fma_test_data): Likewise.
24349         (fma_towardzero_test_data): Likewise.
24350         (fma_downward_test_data): Likewise.
24351         (fma_upward_test_data): Likewise.
24352         (fmax_test_data): Likewise.
24353         (fmin_test_data): Likewise.
24354         (fmod_test_data): Likewise.
24355         (fpclassify_test_data): Likewise.
24356         (frexp_test_data): Likewise.
24357         (gamma_test_data): Likewise.
24358         (hypot_test_data): Likewise.
24359         (ilogb_test_data): Likewise.
24360         (isfinite_test_data): Likewise.
24361         (isgreater_test_data): Likewise.
24362         (isgreaterequal_test_data): Likewise.
24363         (isinf_test_data): Likewise.
24364         (isless_test_data): Likewise.
24365         (islessequal_test_data): Likewise.
24366         (islessgreater_test_data): Likewise.
24367         (isnan_test_data): Likewise.
24368         (isnormal_test_data): Likewise.
24369         (issignaling_test_data): Likewise.
24370         (isunordered_test_data): Likewise.
24371         (j0_test_data): Likewise.
24372         (j1_test_data): Likewise.
24373         (jn_test_data): Likewise.
24374         (ldexp_test_data): Likewise.
24375         (lgamma_test_data): Likewise.
24376         (lrint_test_data): Likewise.
24377         (lrint_tonearest_test_data): Likewise.
24378         (lrint_towardzero_test_data): Likewise.
24379         (lrint_downward_test_data): Likewise.
24380         (lrint_upward_test_data): Likewise.
24381         (llrint_test_data): Likewise.
24382         (llrint_tonearest_test_data): Likewise.
24383         (llrint_towardzero_test_data): Likewise.
24384         (llrint_downward_test_data): Likewise.
24385         (llrint_upward_test_data): Likewise.
24386         (log_test_data): Likewise.
24387         (log10_test_data): Likewise.
24388         (log1p_test_data): Likewise.
24389         (log2_test_data): Likewise.
24390         (logb_test_data): Likewise.
24391         (logb_downward_test_data): Likewise.
24392         (lround_test_data): Likewise.
24393         (llround_test_data): Likewise.
24394         (modf_test_data): Likewise.
24395         (nearbyint_test_data): Likewise.
24396         (nextafter_test_data): Likewise.
24397         (nexttoward_test_data): Likewise.
24398         (pow_test_data): Likewise.
24399         (pow_tonearest_test_data): Likewise.
24400         (pow_towardzero_test_data): Likewise.
24401         (pow_downward_test_data): Likewise.
24402         (pow_upward_test_data): Likewise.
24403         (remainder_test_data): Likewise.
24404         (remainder_tonearest_test_data): Likewise.
24405         (remainder_towardzero_test_data): Likewise.
24406         (remainder_downward_test_data): Likewise.
24407         (remainder_upward_test_data): Likewise.
24408         (remquo_test_data): Likewise.
24409         (rint_test_data): Likewise.
24410         (rint_tonearest_test_data): Likewise.
24411         (rint_towardzero_test_data): Likewise.
24412         (rint_downward_test_data): Likewise.
24413         (rint_upward_test_data): Likewise.
24414         (round_test_data): Likewise.
24415         (scalb_test_data): Likewise.
24416         (scalbn_test_data): Likewise.
24417         (scalbln_test_data): Likewise.
24418         (signbit_test_data): Likewise.
24419         (sin_test_data): Likewise.
24420         (sin_tonearest_test_data): Likewise.
24421         (sin_towardzero_test_data): Likewise.
24422         (sin_downward_test_data): Likewise.
24423         (sin_upward_test_data): Likewise.
24424         (sincos_test_data): Likewise.
24425         (sinh_test_data): Likewise.
24426         (sinh_tonearest_test_data): Likewise.
24427         (sinh_towardzero_test_data): Likewise.
24428         (sinh_downward_test_data): Likewise.
24429         (sinh_upward_test_data): Likewise.
24430         (sqrt_test_data): Likewise.
24431         (tan_test_data): Likewise.
24432         (tan_tonearest_test_data): Likewise.
24433         (tan_towardzero_test_data): Likewise.
24434         (tan_downward_test_data): Likewise.
24435         (tan_upward_test_data): Likewise.
24436         (tanh_test_data): Likewise.
24437         (tgamma_test_data): Likewise.
24438         (trunc_test_data): Likewise.
24439         (y0_test_data): Likewise.
24440         (y1_test_data): Likewise.
24441         (yn_test_data): Likewise.
24442         (significand_test_data): Likewise.
24443
24444         * math/gen-libm-test.pl (@functions): Remove variable.
24445         (generate_testfile): Don't handle START and END lines.
24446         * math/libm-test.inc (START): New macro.
24447         (END): Likewise.
24448         (END_COMPLEX): Likewise.
24449         (acos_test): Use END macro without arguments.
24450         (acos_test_tonearest): Likewise.
24451         (acos_test_towardzero): Likewise.
24452         (acos_test_downward): Likewise.
24453         (acos_test_upward): Likewise.
24454         (acosh_test): Likewise.
24455         (asin_test): Likewise.
24456         (asin_test_tonearest): Likewise.
24457         (asin_test_towardzero): Likewise.
24458         (asin_test_downward): Likewise.
24459         (asin_test_upward): Likewise.
24460         (asinh_test): Likewise.
24461         (atan_test): Likewise.
24462         (atanh_test): Likewise.
24463         (atan2_test): Likewise.
24464         (cabs_test): Likewise.
24465         (cacos_test): Use END_COMPLEX macro without arguments.
24466         (cacosh_test): Likewise.
24467         (carg_test): Use END macro without arguments.
24468         (casin_test): Use END_COMPLEX macro without arguments.
24469         (casinh_test): Likewise.
24470         (catan_test): Likewise.
24471         (catanh_test): Likewise.
24472         (cbrt_test): Use END macro without arguments.
24473         (ccos_test): Use END_COMPLEX macro without arguments.
24474         (ccosh_test): Likewise.
24475         (ceil_test): Use END macro without arguments.
24476         (cexp_test): Use END_COMPLEX macro without arguments.
24477         (cimag_test): Use END macro without arguments.
24478         (clog_test): Use END_COMPLEX macro without arguments.
24479         (clog10_test): Likewise.
24480         (conj_test): Likewise.
24481         (copysign_test): Use END macro without arguments.
24482         (cos_test): Likewise.
24483         (cos_test_tonearest): Likewise.
24484         (cos_test_towardzero): Likewise.
24485         (cos_test_downward): Likewise.
24486         (cos_test_upward): Likewise.
24487         (cosh_test): Likewise.
24488         (cosh_test_tonearest): Likewise.
24489         (cosh_test_towardzero): Likewise.
24490         (cosh_test_downward): Likewise.
24491         (cosh_test_upward): Likewise.
24492         (cpow_test): Use END_COMPLEX macro without arguments.
24493         (cproj_test): Likewise.
24494         (creal_test): Use END macro without arguments.
24495         (csin_test): Use END_COMPLEX macro without arguments.
24496         (csinh_test): Likewise.
24497         (csqrt_test): Likewise.
24498         (ctan_test): Likewise.
24499         (ctan_test_tonearest): Likewise.
24500         (ctan_test_towardzero): Likewise.
24501         (ctan_test_downward): Likewise.
24502         (ctan_test_upward): Likewise.
24503         (ctanh_test): Likewise.
24504         (ctanh_test_tonearest): Likewise.
24505         (ctanh_test_towardzero): Likewise.
24506         (ctanh_test_downward): Likewise.
24507         (ctanh_test_upward): Likewise.
24508         (erf_test): Use END macro without arguments.
24509         (erfc_test): Likewise.
24510         (exp_test): Likewise.
24511         (exp_test_tonearest): Likewise.
24512         (exp_test_towardzero): Likewise.
24513         (exp_test_downward): Likewise.
24514         (exp_test_upward): Likewise.
24515         (exp10_test): Likewise.
24516         (exp2_test): Likewise.
24517         (expm1_test): Likewise.
24518         (fabs_test): Likewise.
24519         (fdim_test): Likewise.
24520         (finite_test): Likewise.
24521         (floor_test): Likewise.
24522         (fma_test): Likewise.
24523         (fma_test_towardzero): Likewise.
24524         (fma_test_downward): Likewise.
24525         (fma_test_upward): Likewise.
24526         (fmax_test): Likewise.
24527         (fmin_test): Likewise.
24528         (fmod_test): Likewise.
24529         (fpclassify_test): Likewise.
24530         (frexp_test): Likewise.
24531         (gamma_test): Likewise.
24532         (hypot_test): Likewise.
24533         (ilogb_test): Likewise.
24534         (isfinite_test): Likewise.
24535         (isgreater_test): Likewise.
24536         (isgreaterequal_test): Likewise.
24537         (isinf_test): Likewise.
24538         (isless_test): Likewise.
24539         (islessequal_test): Likewise.
24540         (islessgreater_test): Likewise.
24541         (isnan_test): Likewise.
24542         (isnormal_test): Likewise.
24543         (issignaling_test): Likewise.
24544         (isunordered_test): Likewise.
24545         (j0_test): Likewise.
24546         (j1_test): Likewise.
24547         (jn_test): Likewise.
24548         (ldexp_test): Likewise.
24549         (lgamma_test): Likewise.
24550         (lrint_test): Likewise.
24551         (lrint_test_tonearest): Likewise.
24552         (lrint_test_towardzero): Likewise.
24553         (lrint_test_downward): Likewise.
24554         (lrint_test_upward): Likewise.
24555         (llrint_test): Likewise.
24556         (llrint_test_tonearest): Likewise.
24557         (llrint_test_towardzero): Likewise.
24558         (llrint_test_downward): Likewise.
24559         (llrint_test_upward): Likewise.
24560         (log_test): Likewise.
24561         (log10_test): Likewise.
24562         (log1p_test): Likewise.
24563         (log2_test): Likewise.
24564         (logb_test): Likewise.
24565         (logb_test_downward): Likewise.
24566         (lround_test): Likewise.
24567         (llround_test): Likewise.
24568         (modf_test): Likewise.
24569         (nearbyint_test): Likewise.
24570         (nextafter_test): Likewise.
24571         (nexttoward_test): Likewise.
24572         (pow_test): Likewise.
24573         (pow_test_tonearest): Likewise.
24574         (pow_test_towardzero): Likewise.
24575         (pow_test_downward): Likewise.
24576         (pow_test_upward): Likewise.
24577         (remainder_test): Likewise.
24578         (remainder_test_tonearest): Likewise.
24579         (remainder_test_towardzero): Likewise.
24580         (remainder_test_downward): Likewise.
24581         (remainder_test_upward): Likewise.
24582         (remquo_test): Likewise.
24583         (rint_test): Likewise.
24584         (rint_test_tonearest): Likewise.
24585         (rint_test_towardzero): Likewise.
24586         (rint_test_downward): Likewise.
24587         (rint_test_upward): Likewise.
24588         (round_test): Likewise.
24589         (scalb_test): Likewise.
24590         (scalbn_test): Likewise.
24591         (scalbln_test): Likewise.
24592         (signbit_test): Likewise.
24593         (sin_test): Likewise.
24594         (sin_test_tonearest): Likewise.
24595         (sin_test_towardzero): Likewise.
24596         (sin_test_downward): Likewise.
24597         (sin_test_upward): Likewise.
24598         (sincos_test): Likewise.
24599         (sinh_test): Likewise.
24600         (sinh_test_tonearest): Likewise.
24601         (sinh_test_towardzero): Likewise.
24602         (sinh_test_downward): Likewise.
24603         (sinh_test_upward): Likewise.
24604         (sqrt_test): Likewise.
24605         (tan_test): Likewise.
24606         (tan_test_tonearest): Likewise.
24607         (tan_test_towardzero): Likewise.
24608         (tan_test_downward): Likewise.
24609         (tan_test_upward): Likewise.
24610         (tanh_test): Likewise.
24611         (tgamma_test): Likewise.
24612         (trunc_test): Likewise.
24613         (y0_test): Likewise.
24614         (y1_test): Likewise.
24615         (yn_test): Likewise.
24616         (significand_test): Likewise.
24617
24618 2013-05-24  Ondřej Bílka  <neleai@seznam.cz>
24619
24620         [BZ #15381]
24621         * libio/genops.c (_IO_no_init): Initialize wide struct info.
24622
24623 2013-05-23  Edjunior Machado  <emachado@linux.vnet.ibm.com>
24624
24625         [BZ #14894]
24626         * sysdeps/powerpc/sys/platform/ppc.h: Add __ppc_yield,
24627         __ppc_mdoio and __ppc_mdoom.
24628         * manual/platform.texi: Document new functions __ppc_yield,
24629         __ppc_mdoio and __ppc_mdoom.
24630
24631 2013-05-22  Carlos O'Donell  <carlos@redhat.com>
24632
24633         * elf/ldconfig.c (is_hwcap_platform): Make comments full setences.
24634         (main): Mention "tls" pseudo-hwcap is legacy.
24635         * elf/dl-hwcaps.c (_dl_important_hwcaps): Correct rounding comment.
24636
24637 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
24638
24639         * math/gen-libm-test.pl (parse_args): Output only string of
24640         arguments as text for test name, not full call or descriptions of
24641         tests for extra outputs.
24642         (generate_testfile): Do not pass function name to parse_args.
24643         Generate this_func variable from START.
24644         * math/libm-test.inc (struct test_f_f_data): Rename test_name
24645         field to arg_str.
24646         (struct test_ff_f_data): Likewise.
24647         (test_ff_f_data_nexttoward): Likewise.
24648         (struct test_fi_f_data): Likewise.
24649         (struct test_fl_f_data): Likewise.
24650         (struct test_if_f_data): Likewise.
24651         (struct test_fff_f_data): Likewise.
24652         (struct test_c_f_data): Likewise.
24653         (struct test_f_f1_data): Likewise.  Remove field extra_name.
24654         (struct test_fF_f1_data): Likewise.
24655         (struct test_ffI_f1_data): Likewise.
24656         (struct test_c_c_data): Rename test_name field to arg_str.
24657         (struct test_cc_c_data): Likewise.
24658         (struct test_f_i_data): Likewise.
24659         (struct test_ff_i_data): Likewise.
24660         (struct test_f_l_data): Likewise.
24661         (struct test_f_L_data): Likewise.
24662         (struct test_fFF_11_data): Likewise.  Remove fields extra1_name
24663         and extra2_name.
24664         (COMMON_TEST_SETUP): New macro.
24665         (EXTRA_OUTPUT_TEST_SETUP): Likewise.
24666         (COMMON_TEST_CLEANUP): Likewise.
24667         (EXTRA_OUTPUT_TEST_CLEANUP): Likewise.
24668         (RUN_TEST_f_f): Take argument string.  Call new setup and cleanup
24669         macros.
24670         (RUN_TEST_LOOP_f_f): Update call to RUN_TEST_f_f.
24671         (RUN_TEST_2_f): Take argument string.  Call new setup and cleanup
24672         macros.
24673         (RUN_TEST_LOOP_2_f): Update call to RUN_TEST_2_f.
24674         (RUN_TEST_fff_f): Take argument string.  Call new setup and
24675         cleanup macros.
24676         (RUN_TEST_LOOP_fff_f): Update call to RUN_TEST_fff_f.
24677         (RUN_TEST_c_f): Take argument string.  Call new setup and cleanup
24678         macros.
24679         (RUN_TEST_LOOP_c_f): Update call to RUN_TEST_c_f.
24680         (RUN_TEST_f_f1): Take argument string.  Call new setup and cleanup
24681         macros.
24682         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
24683         (RUN_TEST_fF_f1): Take argument string.  Call new setup and
24684         cleanup macros.
24685         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
24686         (RUN_TEST_fI_f1): Take argument string.  Call new setup and
24687         cleanup macros.
24688         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
24689         (RUN_TEST_ffI_f1): Take argument string.  Call new setup and
24690         cleanup macros.
24691         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
24692         (RUN_TEST_c_c): Take argument string.  Call new setup and cleanup
24693         macros.
24694         (RUN_TEST_LOOP_c_c): Update call to RUN_TEST_c_c.
24695         (RUN_TEST_cc_c): Take argument string.  Call new setup and cleanup
24696         macros.
24697         (RUN_TEST_LOOP_cc_c): Update call to RUN_TEST_cc_c.
24698         (RUN_TEST_f_i): Take argument string.  Call new setup and cleanup
24699         macros.
24700         (RUN_TEST_LOOP_f_i): Update call to RUN_TEST_f_i.
24701         (RUN_TEST_f_i_tg): Take argument string.  Call new setup and
24702         cleanup macros.
24703         (RUN_TEST_LOOP_f_i_tg): Update call to RUN_TEST_f_i_tg.
24704         (RUN_TEST_ff_i_tg): Take argument string.  Call new setup and
24705         cleanup macros.
24706         (RUN_TEST_LOOP_ff_i_tg): Update call to RUN_TEST_ff_i_tg.
24707         (RUN_TEST_f_b): Take argument string.  Call new setup and cleanup
24708         macros.
24709         (RUN_TEST_LOOP_f_b): Update call to RUN_TEST_f_b.
24710         (RUN_TEST_f_b_tg): Take argument string.  Call new setup and
24711         cleanup macros.
24712         (RUN_TEST_LOOP_f_b_tg): Update call to RUN_TEST_f_b_tg.
24713         (RUN_TEST_f_l): Take argument string.  Call new setup and cleanup
24714         macros.
24715         (RUN_TEST_LOOP_f_l): Update call to RUN_TEST_f_l.
24716         (RUN_TEST_f_L): Take argument string.  Call new setup and cleanup
24717         macros.
24718         (RUN_TEST_LOOP_f_L): Update call to RUN_TEST_f_L.
24719         (RUN_TEST_fFF_11): Take argument string.  Call new setup and
24720         cleanup macros.
24721         (RUN_TEST_LOOP_fFF_11): Update call to RUN_TEST_fFF_11.
24722
24723 2013-05-22  Edjunior Barbosa Machado  <emachado@linux.vnet.ibm.com>
24724
24725         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add si_addr_lsb
24726         to _sifields.sigfault.
24727         (si_addr_lsb): Define new macro.
24728         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
24729         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
24730         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: Likewise.
24731
24732 2013-05-03  Carlos O'Donell  <carlos at redhat.com>
24733
24734         [BZ #15441]
24735         * intl/dcigettext.c (DCIGETTEXT): Skip translating if _nl_find_msg
24736         returns -1.
24737         (_nl_find_msg): Return -1 if recursive call returned -1. If newmem is
24738         null return -1.
24739         * intl/loadmsgcat.c (_nl_load_domain): If _nl_find_msg returns -1 abort
24740         loading the domain.
24741
24742 2013-05-22  Joseph Myers  <joseph@codesourcery.com>
24743
24744         * math/gen-libm-test.pl (parse_args): Do not include expected
24745         result in test name.
24746         * sysdeps/i386/fpu/libm-test-ulps: Update test names.
24747         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
24748         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
24749         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
24750         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
24751         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24752
24753 2013-05-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
24754
24755         * benchtests/Makefile: Sort function entries.
24756
24757         * benchtests/Makefile (bench): Add asin, acos, sinh, cosh,
24758         tanh, asinh, acosh, atanh.
24759         * benchtests/acos-inputs: New file.
24760         * benchtests/acosh-inputs: New file.
24761         * benchtests/asin-inputs: New file.
24762         * benchtests/asinh-inputs: New file.
24763         * benchtests/atanh-inputs: New file.
24764         * benchtests/cosh-inputs: New file.
24765         * benchtests/log-inputs: New file.
24766         * benchtests/sinh-inputs: New file.
24767         * benchtests/tanh-inputs: New file.
24768
24769 2013-05-21  Dmitry V. Levin  <ldv@altlinux.org>
24770
24771         [BZ #15339]
24772         * posix/tst-getaddrinfo4.c: New test.
24773         * posix/Makefile (tests): Add it.
24774
24775 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
24776
24777         [BZ #15339]
24778         * nss/getXXbyYY_r.c (REENTRANT_NAME): Set NETDB_INTERNAL only
24779         when no services were used.
24780         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set h_errno.
24781         Return EAI_SYSTEM if h_errno is NETDB_INTERNAL.
24782
24783 2013-05-21  Andreas Schwab  <schwab@suse.de>
24784
24785         [BZ #15014]
24786         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME))
24787         [HANDLE_DIGITS_DOTS]: Set any_service when digits-dots parsing was
24788         successful.
24789         * nss/digits_dots.c (__nss_hostname_digits_dots): Remove
24790         redundant variable declarations and reallocation of buffer when
24791         parsing as IPv6 address.  Always set NSS status when called from
24792         reentrant functions.  Use NETDB_INTERNAL instead of TRY_AGAIN when
24793         buffer too small.  Correct computation of needed size.
24794         * nss/Makefile (tests): Add test-digits-dots.
24795         * nss/test-digits-dots.c: New test.
24796
24797 2013-05-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
24798
24799         * benchtests/Makefile: Remove instructions for adding
24800         benchmark tests.
24801         * benchtests/README: New file to explain how to execute and
24802         enhance the benchmark tests.
24803
24804 2013-05-21  Andreas Schwab  <schwab@suse.de>
24805
24806         [BZ #15493]
24807         * setjmp/Makefile (tests): Add tst-sigsetjmp.
24808         * setjmp/tst-sigsetjmp.c: New test.
24809
24810 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
24811
24812         * sysdeps/x86_64/memset.S (memset): New implementation.
24813         (__bzero): Likewise.
24814         (__memset_tail): New function.
24815
24816 2013-05-20  Ondřej Bílka  <neleai@seznam.cz>
24817
24818         * sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: New file.
24819         * sysdeps/x86_64/multiarch/memcpy.S (__new_memcpy): Add
24820         __memcpy_sse2_unaligned ifunc selection.
24821         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
24822         Add memcpy-sse2-unaligned.S.
24823         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
24824         Add: __memcpy_sse2_unaligned.
24825
24826 2013-05-19  Joseph Myers  <joseph@codesourcery.com>
24827
24828         [BZ #15490]
24829         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
24830         math_force_eval before restoring floating-point envrionment.
24831         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Likewise.
24832         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl):
24833         Likewise.
24834         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Include
24835         <math_private.h>.
24836         (__nearbyintl): Use math_force_eval before restoring
24837         floating-point environment.
24838         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c (__nearbyintl): Likewise.
24839
24840         * math/gen-libm-test.pl (special_functions): Remove.
24841         (parse_args): Don't handle TEST_extra.  Handle functions with no
24842         return value.
24843         * math/libm-test.inc (struct test_sincos_data): Replace with
24844         struct test_fFF_11_data.
24845         (RUN_TEST_sincos): Replace with RUN_TEST_fFF_11.
24846         (RUN_TEST_LOOP_sincos): Replace with RUN_TEST_LOOP_fFF_11.
24847         (sincos_test_data): Change element type to struct
24848         test_fFF_11_data.  Use TEST_fFF_11 instead of TEST_extra.
24849         (sincos_test): Use RUN_TEST_LOOP_fFF_11 instead of
24850         RUN_TEST_LOOP_sincos.
24851         * math/README.libm-test: Don't mention special handling of
24852         individual functions.
24853         * sysdeps/i386/fpu/libm-test-ulps: Update names of sincos tests.
24854         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
24855         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
24856         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
24857         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
24858         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
24859
24860         * math/gen-libm-test.pl (get_variable): Remove function.
24861         (parse_args): Don't show pointer parameters to call in test
24862         names.  Use "extra output N" in test names for extra outputs
24863         rather than naming variables.
24864
24865 2013-05-18  Joseph Myers  <joseph@codesourcery.com>
24866
24867         [BZ #15488]
24868         * math/complex.h [__USE_ISOC11 && __GNUC_PREREQ (4, 7) &&
24869         __NO_LONG_DOUBLE_MATH] (CMPLXL): Define macro.
24870         * math/tst-CMPLX.c (do_test) [NO_LONG_DOUBLE]: Do not disable long
24871         double tests.
24872         * make/tst-CMPLX2.c [NO_LONG_DOUBLE] (check_long_double): Do not
24873         disable.
24874         (do_test) [NO_LONG_DOUBLE]: Do not disable call to
24875         check_long_double.
24876
24877         * math/gen-libm-test.pl (@tests): Remove variable.
24878         ($count): Likewise.
24879         (new_test): Remove function.
24880         (show_exceptions): New function.
24881         (special_functions): Use show_exceptions instead of new_test.
24882         (parse_args): Likewise.
24883         (generate_testfile): Pass only function name in generated call to
24884         print_max_error or print_complex_max_error.
24885         (get_ulps): Do not handle complex tests specially.
24886         (output_test): Rename to ...
24887         (get_all_ulps_for_test): ... this.  Return a string rather than
24888         printing to a file.  Require ulps to be present.
24889         (output_ulps): Generate arrays rather than #defines.
24890         * math/libm-test.inc: Move down #include of "libm-test-ulps.h".
24891         (struct ulp_data): New type.
24892         (BUILD_COMPLEX_ULP): Remove macro.
24893         (compare_ulp_data): New function.
24894         (find_ulps): Likewise.
24895         (find_test_ulps): Likewise.
24896         (find_function_ulps): Likewise.
24897         (find_complex_function_ulps): Likewise.
24898         (print_max_error): Determine allowed ulps using
24899         find_function_ulps.
24900         (print_complex_max_error): Determine allowed ulps using
24901         find_complex_function_ulps.
24902         (check_float_internal): Determine max ulps using find_test_ulps.
24903         (check_float): Do not take max_ulp parameter.  Update call to
24904         check_float_internal.
24905         (check_complex): Likewise.
24906         (check_int): Do not take max_ulp parameter.
24907         (check_long): Likewise.
24908         (check_bool): Likewise.
24909         (check_longlong): Likewise.
24910         (struct test_f_f_data): Remove max_ulp field.
24911         (struct test_ff_f_data): Likewise.
24912         (struct test_ff_f_data_nexttoward): Likewise.
24913         (struct test_fi_f_data): Likewise.
24914         (struct test_fl_f_data): Likewise.
24915         (struct test_if_f_data): Likewise.
24916         (struct test_fff_f_data): Likewise.
24917         (struct test_c_f_data): Likewise.
24918         (struct test_f_f1_data): Remove max_ulp and extra_ulp fields.
24919         (struct test_fF_f1_data): Likewise.
24920         (struct test_ffI_f1_data): Likewise.
24921         (struct test_c_c_data): Remove max_ulp field.
24922         (struct test_cc_c_data): Likewise.
24923         (struct test_f_i_data): Likewise.
24924         (struct test_ff_i_data): Likewise.
24925         (struct test_f_l_data): Likewise.
24926         (struct test_f_L_data): Likewise.
24927         (struct test_sincos_data): Likewise.
24928         (RUN_TEST_f_f): Do not handle ulps.
24929         (RUN_TEST_LOOP_f_f): Likewise.
24930         (RUN_TEST_2_f): Likewise.
24931         (RUN_TEST_LOOP_2_f): Likewise.
24932         (RUN_TEST_fff_f): Likewise.
24933         (RUN_TEST_LOOP_fff_f): Likewise.
24934         (RUN_TEST_c_f): Likewise.
24935         (RUN_TEST_LOOP_c_f): Likewise.
24936         (RUN_TEST_f_f1): Likewise.
24937         (RUN_TEST_LOOP_f_f1): Likewise.
24938         (RUN_TEST_fF_f1): Likewise.
24939         (RUN_TEST_LOOP_fF_f1): Likewise.
24940         (RUN_TEST_fI_f1): Likewise.
24941         (RUN_TEST_LOOP_fI_f1): Likewise.
24942         (RUN_TEST_ffI_f1): Likewise.
24943         (RUN_TEST_LOOP_ffI_f1): Likewise.
24944         (RUN_TEST_c_c): Likewise.
24945         (RUN_TEST_LOOP_c_c): Likewise.
24946         (RUN_TEST_cc_c): Likewise.
24947         (RUN_TEST_LOOP_cc_c): Likewise.
24948         (RUN_TEST_f_i): Likewise.
24949         (RUN_TEST_LOOP_f_i): Likewise.
24950         (RUN_TEST_f_i_tg): Likewise.
24951         (RUN_TEST_LOOP_f_i_tg): Likewise.
24952         (RUN_TEST_ff_i_tg): Likewise.
24953         (RUN_TEST_LOOP_ff_i_tg): Likewise.
24954         (RUN_TEST_f_b): Likewise.
24955         (RUN_TEST_LOOP_f_b): Likewise.
24956         (RUN_TEST_f_b_tg): Likewise.
24957         (RUN_TEST_LOOP_f_b_tg): Likewise.
24958         (RUN_TEST_f_l): Likewise.
24959         (RUN_TEST_LOOP_f_l): Likewise.
24960         (RUN_TEST_f_L): Likewise.
24961         (RUN_TEST_LOOP_f_L): Likewise.
24962         (RUN_TEST_sincos): Likewise.
24963         (RUN_TEST_LOOP_sincos): Likewise.
24964
24965 2013-05-17  Joseph Myers  <joseph@codesourcery.com>
24966
24967         [BZ #15480]
24968         [BZ #15485]
24969         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder): For
24970         main case of finite arguments, set rounding mode to FE_TONEAREST
24971         and discard exceptions.
24972         * math/libm-test.inc (remainder_test_data): Disallow "inexact"
24973         exceptions.
24974         (remainder_tonearest_test_data): New variable.
24975         (remainder_test_tonearest): New function.
24976         (remainder_towardzero_test_data): New variable.
24977         (remainder_test_towardzero): New function.
24978         (remainder_downward_test_data): New variable.
24979         (remainder_test_downward): New function.
24980         (remainder_upward_test_data): New variable.
24981         (remainder_test_upward): New function.
24982         (main): Call the new test functions.
24983
24984         * math/libm-test.inc (struct test_f_f1_data): Remove field
24985         extra_init.
24986         (struct test_fF_f1_data): Likewise.
24987         (struct test_ffI_f1_data): Likewise.
24988         (RUN_TEST_f_f1): Remove argument EXTRA_INIT.  Initialize EXTRA_VAR
24989         based on value of EXTRA_EXPECTED.
24990         (RUN_TEST_LOOP_f_f1): Update call to RUN_TEST_f_f1.
24991         (RUN_TEST_fF_f1): Remove argument EXTRA_INIT.  Initialize
24992         EXTRA_VAR based on value of EXTRA_EXPECTED.
24993         (RUN_TEST_LOOP_fF_f1): Update call to RUN_TEST_fF_f1.
24994         (RUN_TEST_fI_f1): Remove argument EXTRA_INIT.  Initialize
24995         EXTRA_VAR based on value of EXTRA_EXPECTED.
24996         (RUN_TEST_LOOP_fI_f1): Update call to RUN_TEST_fI_f1.
24997         (RUN_TEST_ffI_f1): Remove argument EXTRA_INIT.  Initialize
24998         EXTRA_VAR based on value of EXTRA_EXPECTED.
24999         (RUN_TEST_LOOP_ffI_f1): Update call to RUN_TEST_ffI_f1.
25000         * math/gen-libm-test.pl (parse_args): Don't output initializers
25001         for extra output values.
25002
25003         * math/libm-test.inc (check_int): Expect result to be exactly
25004         equal to expected value and do not handle ulps.
25005         (check_long): Likewise.
25006         (check_longlong): Likewise.
25007
25008         * math/libm-test.inc (ceil_test_data): Test for "inexact"
25009         exceptions.
25010         (cimag_test_data): Likewise.
25011         (conj_test_data): Likewise.
25012         (copysign_test_data): Likewise.
25013         (cproj_test_data): Likewise.
25014         (creal_test_data): Likewise.
25015         (fabs_test_data): Likewise.
25016         (fdim_test_data): Likewise.
25017         (finite_test_data): Likewise.
25018         (floor_test_data): Likewise.
25019         (fmax_test_data): Likewise.
25020         (fmin_test_data): Likewise.
25021         (fmod_test_data): Likewise.
25022         (fpclassify_test_data): Likewise.
25023         (frexp_test_data): Likewise.
25024         (ilogb_test_data): Likewise.
25025         (isfinite_test_data): Likewise.
25026         (isgreater_test_data): Likewise.
25027         (isgreaterequal_test_data): Likewise.
25028         (isinf_test_data): Likewise.
25029         (isless_test_data): Likewise.
25030         (islessequal_test_data): Likewise.
25031         (islessgreater_test_data): Likewise.
25032         (isnan_test_data): Likewise.
25033         (isnormal_test_data): Likewise.
25034         (issignaling_test_data): Likewise.
25035         (isunordered_test_data): Likewise.
25036         (ldexp_test_data): Likewise.
25037         (lrint_test_data): Likewise.
25038         (lrint_test_data) [TEST_FLOAT]: Disable one test.
25039         (lrint_test_data) [!TEST_LDOUBLE]: Likewise.
25040         (lrint_tonearest_test_data): Test for "inexact" exceptions.
25041         (lrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
25042         (lrint_tonearest_test_data) [!TEST_LDOUBLE]: Likewise.
25043         (lrint_tonearest_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
25044         test input.
25045         (lrint_towardzero_test_data): Test for "inexact" exceptions.
25046         (lrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
25047         (lrint_towardzero_test_data) [!TEST_LDOUBLE]: Likewise.
25048         (lrint_towardzero_test_data) [TEST_LDOUBLE]: Use "L" suffix on
25049         that test input.
25050         (lrint_downward_test_data): Test for "inexact" exceptions.
25051         (lrint_downward_test_data) [TEST_FLOAT]: Disable one test.
25052         (lrint_downward_test_data) [!TEST_LDOUBLE]: Likewise.
25053         (lrint_downward_test_data) [TEST_LDOUBLE]: Use "L" suffix on that
25054         test input.
25055         (lrint_upward_test_data): Test for "inexact" exceptions.
25056         (lrint_upward_test_data) [TEST_LDOUBLE]: Use "L" suffix on one
25057         test input.
25058         (llrint_test_data): Test for "inexact" exceptions.
25059         (llrint_test_data) [TEST_FLOAT]: Disable one test.
25060         (llrint_tonearest_test_data): Test for "inexact" exceptions.
25061         (llrint_tonearest_test_data) [TEST_FLOAT]: Disable one test.
25062         (llrint_towardzero_test_data): Test for "inexact" exceptions.
25063         (llrint_towardzero_test_data) [TEST_FLOAT]: Disable one test.
25064         (llrint_downward_test_data): Test for "inexact" exceptions.
25065         (llrint_downward_test_data) [TEST_FLOAT]: Disable one test.
25066         (llrint_upward_test_data): Test for "inexact" exceptions.
25067         (logb_test_data): Likewise.
25068         (logb_downward_test_data): Likewise.
25069         (nextafter_test_data): Likewise.
25070         (nexttoward_test_data): Likewise.
25071         (remainder_test_data): Likewise.
25072         (remquo_test_data): Likewise.
25073         (scalbn_test_data): Likewise.
25074         (scalbln_test_data): Likewise.
25075         (signbit_test_data): Likewise.
25076         (sqrt_test_data): Likewise.
25077         (significand_test_data): Likewise.
25078
25079 2013-05-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
25080
25081         [BZ #15424]
25082         * benchtests/bench-modf.c (struct args): Mark arg0 as
25083         volatile.
25084         * scripts/bench.pl: Mark members of struct args as volatile.
25085
25086 2013-05-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25087
25088         [BZ # 15497]
25089         * sysdeps/powerpc/fpu/e_hypot.c (GET_TWO_FLOAT_WORD): Fix test for
25090         negative infinity on POWER6 or lower.
25091         * sysdeps/powerpc/fpu/e_hypotf.c (GET_TWO_FLOAT_WORD): Likewise.
25092
25093 2013-05-16  Maciej W. Rozycki  <macro@codesourcery.com>
25094
25095         [BZ #15442]
25096         * soft-fp/op-common.h (_FP_FRAC_SNANP): New macro.
25097         (_FP_FRAC_SNANP_SEMIRAW): Likewise.
25098         (_FP_UNPACK_CANONICAL): Use _FP_FRAC_SNANP.
25099         (_FP_CHECK_SIGNAN_SEMIRAW): Use _FP_FRAC_SNANP_SEMIRAW.
25100         (_FP_SETQNAN): New macro.
25101         (_FP_SETQNAN_SEMIRAW): Likewise.
25102         (_FP_PACK_SEMIRAW): Use _FP_SETQNAN.
25103         (_FP_PACK_CANONICAL): Use _FP_SETQNAN.
25104         (_FP_ISSIGNAN): Use _FP_FRAC_SNANP.
25105         (FP_EXTEND): Use _FP_FRAC_SNANP.
25106         (FP_TRUNC): Use _FP_SETQNAN_SEMIRAW.
25107         * soft-fp/testit.c (gen_special_double): Take _FP_QNANNEGATEDP
25108         into account.
25109         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
25110         New macro.
25111         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_QNANNEGATEDP):
25112         Likewise.
25113
25114 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25115
25116         * math/libm-test.inc (atanh_test_data): Use ERRNO_ERANGE together
25117         with DIVIDE_BY_ZERO_EXCEPTION.
25118         (gamma_test_data): Likewise.
25119         (lgamma_test_data): Likewise.
25120         (log_test_data): Likewise.
25121         (log10_test_data): Likewise.
25122         (log2_test_data): Likewise.
25123         (tgamma_test_data): Likewise.
25124
25125         * math/libm-test.inc (acos_test): Don't test for ENOSYS error.
25126         (acos_test_tonearest): Likewise.
25127         (acos_test_towardzero): Likewise.
25128         (acos_test_downward): Likewise.
25129         (acos_test_upward): Likewise.
25130         (acosh_test): Likewise.
25131         (asin_test): Likewise.
25132         (asin_test_tonearest): Likewise.
25133         (asin_test_towardzero): Likewise.
25134         (asin_test_downward): Likewise.
25135         (asin_test_upward): Likewise.
25136         (asinh_test): Likewise.
25137         (atan_test): Likewise.
25138         (atanh_test): Likewise.
25139         (atan2_test): Likewise.
25140         (cabs_test): Likewise.
25141         (cacos_test): Likewise.
25142         (cacosh_test): Likewise.
25143         (casin_test): Likewise.
25144         (casinh_test): Likewise.
25145         (catan_test): Likewise.
25146         (catanh_test): Likewise.
25147         (cbrt_test): Likewise.
25148         (ccos_test): Likewise.
25149         (ccosh_test): Likewise.
25150         (cexp_test): Likewise.
25151         (clog_test): Likewise.
25152         (clog10_test): Likewise.
25153         (cos_test): Likewise.
25154         (cos_test_tonearest): Likewise.
25155         (cos_test_towardzero): Likewise.
25156         (cos_test_downward): Likewise.
25157         (cos_test_upward): Likewise.
25158         (cosh_test): Likewise.
25159         (cosh_test_tonearest): Likewise.
25160         (cosh_test_towardzero): Likewise.
25161         (cosh_test_downward): Likewise.
25162         (cosh_test_upward): Likewise.
25163         (cpow_test): Likewise.
25164         (csin_test): Likewise.
25165         (csinh_test): Likewise.
25166         (csqrt_test): Likewise.
25167         (ctan_test): Likewise.
25168         (ctan_test_tonearest): Likewise.
25169         (ctan_test_towardzero): Likewise.
25170         (ctan_test_downward): Likewise.
25171         (ctan_test_upward): Likewise.
25172         (ctanh_test): Likewise.
25173         (ctanh_test_tonearest): Likewise.
25174         (ctanh_test_towardzero): Likewise.
25175         (ctanh_test_downward): Likewise.
25176         (ctanh_test_upward): Likewise.
25177         (erf_test): Likewise.
25178         (erfc_test): Likewise.
25179         (exp_test): Likewise.
25180         (exp_test_tonearest): Likewise.
25181         (exp_test_towardzero): Likewise.
25182         (exp_test_downward): Likewise.
25183         (exp_test_upward): Likewise.
25184         (exp10_test): Likewise.
25185         (exp2_test): Likewise.
25186         (expm1_test): Likewise.
25187         (fmod_test): Likewise.
25188         (gamma_test): Likewise.
25189         (hypot_test): Likewise.
25190         (j0_test): Likewise.
25191         (j1_test): Likewise.
25192         (jn_test): Likewise.
25193         (lgamma_test): Likewise.
25194         (log_test): Likewise.
25195         (log10_test): Likewise.
25196         (log1p_test): Likewise.
25197         (log2_test): Likewise.
25198         (logb_test_downward): Likewise.
25199         (pow_test): Likewise.
25200         (pow_test_tonearest): Likewise.
25201         (pow_test_towardzero): Likewise.
25202         (pow_test_downward): Likewise.
25203         (pow_test_upward): Likewise.
25204         (remainder_test): Likewise.
25205         (remquo_test): Likewise.
25206         (sin_test): Likewise.
25207         (sin_test_tonearest): Likewise.
25208         (sin_test_towardzero): Likewise.
25209         (sin_test_downward): Likewise.
25210         (sin_test_upward): Likewise.
25211         (sincos_test): Likewise.
25212         (sinh_test): Likewise.
25213         (sinh_test_tonearest): Likewise.
25214         (sinh_test_towardzero): Likewise.
25215         (sinh_test_downward): Likewise.
25216         (sinh_test_upward): Likewise.
25217         (sqrt_test): Likewise.
25218         (tan_test): Likewise.
25219         (tan_test_tonearest): Likewise.
25220         (tan_test_towardzero): Likewise.
25221         (tan_test_downward): Likewise.
25222         (tan_test_upward): Likewise.
25223         (tanh_test): Likewise.
25224         (tgamma_test): Likewise.
25225         (y0_test): Likewise.
25226         (y1_test): Likewise.
25227         (yn_test): Likewise.
25228
25229         * math/gen-libm-test.pl (adjust_arg): Remove function.
25230         (special_function): Remove argument $in_func.  Only handle
25231         generating output for tables of tests, not inside functions.
25232         (parse_args): Likewise.
25233         (generate_testfile): Remove variable $in_func.  Update call to
25234         parse_args.
25235         * math/libm-test.inc (PLUS_ZERO_INIT): Rename macro to plus_zero.
25236         (MINUS_ZERO_INIT): Rename macro to minus_zero.
25237         (PLUS_INFTY_INIT): Rename macro to plus_infty.
25238         (MINUS_INFTY_INIT): Rename macro to minus_infty.
25239         (QNAN_VALUE_INIT): Rename macro to qnan_value.
25240         (MAX_VALUE_INIT): Rename macro to max_value.
25241         (MIN_VALUE_INIT): Rename macro to min_value.
25242         (MIN_SUBNORM_VALUE_INIT): Rename macro to min_subnorm_value.
25243         (plus_zero): Remove variable.
25244         (minus_zero): Likewise.
25245         (plus_infty): Likewise.
25246         (minus_infty): Likewise.
25247         (qnan_value): Likewise.
25248         (max_value): Likewise.
25249         (min_value): Likewise.
25250         (min_subnorm_value): Likewise.
25251
25252 2013-05-16  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
25253
25254         * crypt/sha512-block.c: Add missing #include <stdint.h> due to
25255         uint64_t or uint32_t usage.
25256         * crypt/sha256-block.c: Likewise.
25257         * crypt/sha256-crypt.c: Likewise.
25258         * crypt/sha256.c: Likewise.
25259         * crypt/sha512-block.c: Likewise.
25260         * crypt/sha512-crypt.c: Likewise.
25261         * crypt/sha512.c: Likewise.
25262         * debug/backtrace-tst.c: Likewise.
25263         * debug/pcprofiledump.c: Likewise.
25264         * elf/cache.c: Likewise.
25265         * elf/dl-cache.c: Likewise.
25266         * elf/dl-misc.c: Likewise.
25267         * elf/dl-profile.c: Likewise.
25268         * elf/dl-support.c: Likewise.
25269         * elf/ldconfig.c: Likewise.
25270         * elf/sprof.c: Likewise.
25271         * iconv/dummy-repertoire.c: Likewise.
25272         * iconv/iconv_charmap.c: Likewise.
25273         * iconv/skeleton.c: Likewise.
25274         * iconvdata/8bit-generic.c: Likewise.
25275         * iconvdata/cp737.h: Likewise.
25276         * iconvdata/cp775.h: Likewise.
25277         * iconvdata/ibm1008.h: Likewise.
25278         * iconvdata/ibm1025.h: Likewise.
25279         * iconvdata/ibm1046.h: Likewise.
25280         * iconvdata/ibm1097.h: Likewise.
25281         * iconvdata/ibm1112.h: Likewise.
25282         * iconvdata/ibm1122.h: Likewise.
25283         * iconvdata/ibm1123.h: Likewise.
25284         * iconvdata/ibm1124.h: Likewise.
25285         * iconvdata/ibm1129.h: Likewise.
25286         * iconvdata/ibm1130.h: Likewise.
25287         * iconvdata/ibm1132.h: Likewise.
25288         * iconvdata/ibm1133.h: Likewise.
25289         * iconvdata/ibm1137.h: Likewise.
25290         * iconvdata/ibm1140.h: Likewise.
25291         * iconvdata/ibm1141.h: Likewise.
25292         * iconvdata/ibm1142.h: Likewise.
25293         * iconvdata/ibm1143.h: Likewise.
25294         * iconvdata/ibm1144.h: Likewise.
25295         * iconvdata/ibm1145.h: Likewise.
25296         * iconvdata/ibm1146.h: Likewise.
25297         * iconvdata/ibm1147.h: Likewise.
25298         * iconvdata/ibm1148.h: Likewise.
25299         * iconvdata/ibm1149.h: Likewise.
25300         * iconvdata/ibm1153.h: Likewise.
25301         * iconvdata/ibm1154.h: Likewise.
25302         * iconvdata/ibm1155.h: Likewise.
25303         * iconvdata/ibm1156.h: Likewise.
25304         * iconvdata/ibm1157.h: Likewise.
25305         * iconvdata/ibm1158.h: Likewise.
25306         * iconvdata/ibm1160.h: Likewise.
25307         * iconvdata/ibm1161.h: Likewise.
25308         * iconvdata/ibm1162.h: Likewise.
25309         * iconvdata/ibm1163.h: Likewise.
25310         * iconvdata/ibm1164.h: Likewise.
25311         * iconvdata/ibm1166.h: Likewise.
25312         * iconvdata/ibm1167.h: Likewise.
25313         * iconvdata/ibm12712.h: Likewise.
25314         * iconvdata/ibm1390.h: Likewise.
25315         * iconvdata/ibm1399.h: Likewise.
25316         * iconvdata/ibm16804.h: Likewise.
25317         * iconvdata/ibm4517.h: Likewise.
25318         * iconvdata/ibm4899.h: Likewise.
25319         * iconvdata/ibm4909.h: Likewise.
25320         * iconvdata/ibm4971.h: Likewise.
25321         * iconvdata/ibm5347.h: Likewise.
25322         * iconvdata/ibm803.h: Likewise.
25323         * iconvdata/ibm856.h: Likewise.
25324         * iconvdata/ibm901.h: Likewise.
25325         * iconvdata/ibm902.h: Likewise.
25326         * iconvdata/ibm9030.h: Likewise.
25327         * iconvdata/ibm9066.h: Likewise.
25328         * iconvdata/ibm921.h: Likewise.
25329         * iconvdata/ibm922.h: Likewise.
25330         * iconvdata/ibm9448.h: Likewise.
25331         * iconvdata/isiri-3342.h: Likewise.
25332         * iconvdata/jis0201.h: Likewise.
25333         * include/link.h: Likewise.
25334         * include/netdb.h: Likewise.
25335         * inet/check_native.c: Likewise.
25336         * inet/check_pf.c: Likewise.
25337         * inet/getipv4sourcefilter.c: Likewise.
25338         * inet/getnameinfo.c: Likewise.
25339         * inet/getsourcefilter.c: Likewise.
25340         * inet/htonl.c: Likewise.
25341         * inet/setipv4sourcefilter.c: Likewise.
25342         * inet/setsourcefilter.c: Likewise.
25343         * inet/test-inet6_opt.c: Likewise.
25344         * inet/tst-network.c: Likewise.
25345         * locale/C-collate.c: Likewise.
25346         * locale/C-ctype.c: Likewise.
25347         * locale/C-time.c: Likewise.
25348         * locale/C-translit.h: Likewise.
25349         * locale/loadarchive.c: Likewise.
25350         * locale/programs/3level.h: Likewise.
25351         * locale/programs/charmap.c: Likewise.
25352         * locale/programs/charmap.h: Likewise.
25353         * locale/programs/ld-address.c: Likewise.
25354         * locale/programs/ld-collate.c: Likewise.
25355         * locale/programs/ld-ctype.c: Likewise.
25356         * locale/programs/ld-identification.c: Likewise.
25357         * locale/programs/ld-measurement.c: Likewise.
25358         * locale/programs/ld-messages.c: Likewise.
25359         * locale/programs/ld-monetary.c: Likewise.
25360         * locale/programs/ld-name.c: Likewise.
25361         * locale/programs/ld-numeric.c: Likewise.
25362         * locale/programs/ld-paper.c: Likewise.
25363         * locale/programs/ld-telephone.c: Likewise.
25364         * locale/programs/ld-time.c: Likewise.
25365         * locale/programs/linereader.c: Likewise.
25366         * locale/programs/locale.c: Likewise.
25367         * locale/programs/locarchive.c: Likewise.
25368         * locale/programs/locfile.h: Likewise.
25369         * locale/programs/repertoire.c: Likewise.
25370         * locale/programs/simple-hash.c: Likewise.
25371         * locale/programs/simple-hash.h: Likewise.
25372         * malloc/memusage.c: Likewise.
25373         * malloc/memusagestat.c: Likewise.
25374         * nis/nis_defaults.c: Likewise.
25375         * nis/nis_hash.c: Likewise.
25376         * nis/nis_print.c: Likewise.
25377         * nis/nis_xdr.c: Likewise.
25378         * nscd/connections.c: Likewise.
25379         * nscd/hstcache.c: Likewise.
25380         * nscd/nscd_gethst_r.c: Likewise.
25381         * nscd/nscd_getserv_r.c: Likewise.
25382         * nscd/nscd_helper.c: Likewise.
25383         * nscd/servicescache.c: Likewise.
25384         * nss/makedb.c: Likewise.
25385         * nss/nss_db/db-XXX.c: Likewise.
25386         * nss/nss_db/db-initgroups.c: Likewise.
25387         * nss/nss_db/db-netgrp.c: Likewise.
25388         * nss/nss_files/files-network.c: Likewise.
25389         * nss/nss_files/files-parse.c: Likewise.
25390         * posix/bug-regex5.c: Likewise.
25391         * posix/fnmatch_loop.c: Likewise.
25392         * posix/regcomp.c: Likewise.
25393         * posix/regexec.c: Likewise.
25394         * posix/tst-rfc3484-2.c: Likewise.
25395         * posix/tst-rfc3484-3.c: Likewise.
25396         * posix/tst-rfc3484.c: Likewise.
25397         * resolv/nss_dns/dns-canon.c: Likewise.
25398         * resolv/nss_dns/dns-network.c: Likewise.
25399         * resolv/res_init.c: Likewise.
25400         * resolv/res_mkquery.c: Likewise.
25401         * resolv/tst-aton.c: Likewise.
25402         * stdlib/cxa_atexit.c: Likewise.
25403         * stdlib/cxa_finalize.c: Likewise.
25404         * stdlib/gen-fpioconst.c: Likewise.
25405         * stdlib/strtol_l.c: Likewise.
25406         * string/tst-endian.c: Likewise.
25407         * sunrpc/auth_des.c: Likewise.
25408         * sunrpc/clnt_udp.c: Likewise.
25409         * sunrpc/rtime.c: Likewise.
25410         * sunrpc/svcauth_des.c: Likewise.
25411         * sunrpc/xdr.c: Likewise.
25412         * sunrpc/xdr_intXX_t.c: Likewise.
25413         * sunrpc/xdr_rec.c: Likewise.
25414         * sysdeps/generic/ldconfig.h: Likewise.
25415         * sysdeps/generic/ldsodefs.h: Likewise.
25416         * sysdeps/generic/memusage.h: Likewise.
25417         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
25418         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: Likewise.
25419         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: Likewise.
25420         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
25421         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
25422         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
25423         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
25424         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
25425         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
25426         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h: Likewise.
25427         * sysdeps/posix/getaddrinfo.c: Likewise.
25428         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
25429         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
25430         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
25431         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
25432         * sysdeps/powerpc/test-gettimebase.c: Likewise.
25433         * sysdeps/unix/sysv/linux/check_pf.c: Likewise.
25434         * sysdeps/unix/sysv/linux/getipv4sourcefilter.c: Likewise.
25435         * sysdeps/unix/sysv/linux/getsourcefilter.c: Likewise.
25436         * sysdeps/unix/sysv/linux/netlinkaccess.h: Likewise.
25437         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: Likewise.
25438         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
25439         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
25440         * sysdeps/unix/sysv/linux/setipv4sourcefilter.c: Likewise.
25441         * sysdeps/unix/sysv/linux/setsourcefilter.c: Likewise.
25442         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: Likewise.
25443         * sysdeps/x86_64/dl-tls.h: Likewise.
25444         * sysdeps/x86_64/dl-tlsdesc.h: Likewise.
25445         * time/alt_digit.c: Likewise.
25446         * time/era.c: Likewise.
25447         * wcsmbs/tst-c16c32-1.c: Likewise.
25448
25449 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25450
25451         * math/libm-test.inc (struct test_sincos_data): New type.
25452         (RUN_TEST_LOOP_sincos): New macro.
25453         (sincos_test_data): New variable.
25454         (sincos_test): Run tests with RUN_TEST_LOOP_sincos.
25455
25456 2013-05-16  Richard Henderson  <rth@redhat.com>
25457
25458         * math/atest-exp2.c (LIMB64): New macro.
25459         (CONSTSZ): New macro.
25460         (mp_exp1, mp_exp_m1, mp_log2): New variables.
25461         (hexdig): Move ...
25462         (print_mpn_fp): ... to function scope.
25463         (read_mpn_hex): Remove.
25464         (get_log2): Remove.
25465         (exp2_mpn): Use mp_log2.
25466         (main): Use mp_exp1.
25467
25468 2013-05-16  Joseph Myers  <joseph@codesourcery.com>
25469
25470         * math/libm-test.inc: Remove comment about not testing "inexact"
25471         exceptions.
25472         (INEXACT_EXCEPTION): New macro.
25473         (NO_INEXACT_EXCEPTION): Likewise.
25474         (INVALID_EXCEPTION_OK): Update value.
25475         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
25476         (OVERFLOW_EXCEPTION_OK): Likewise.
25477         (UNDERFLOW_EXCEPTION_OK): Likewise.
25478         (IGNORE_ZERO_INF_SIGN): Likewise.
25479         (ERRNO_UNCHANGED): Likewise.
25480         (ERRNO_EDOM): Likewise.
25481         (ERRNO_ERANGE): Likewise.
25482         (test_exceptions): Handle testing "inexact" exceptions.
25483         (nearbyint_test_data): Use NO_INEXACT_EXCEPTION on all tests.
25484         (rint_test_data): Use NO_INEXACT_EXCEPTION and INEXACT_EXCEPTION.
25485         (rint_test_data) [LDBL_MANT_DIG <= 100]: Disable some tests.
25486         (rint_tonearest_test_data): Use NO_INEXACT_EXCEPTION and
25487         INEXACT_EXCEPTION.
25488         (rint_towardzero_test_data): Likewise.
25489         (rint_downward_test_data): Likewise.
25490         (rint_upward_test_data): Likewise.
25491
25492         * math/libm-test.inc (exp_test_data): Use ERRNO_ERANGE together
25493         with OVERFLOW_EXCEPTION.
25494         (exp10_test_data): Likewise.
25495         (exp2_test_data): Likewise.
25496         (expm1_test_data): Likewise.
25497         (lgamma_test_data): Likewise.
25498         (pow_test_data): Likewise.
25499         (tgamma_test_data): Likewise.
25500         (yn_test_data): Remove duplicate test of overflow.
25501
25502         * math/libm-test.inc (struct test_cc_c_data): New type.
25503         (RUN_TEST_LOOP_cc_c): New macro.
25504         (cpow_test_data): New variable.
25505         (cpow_test): Run tests with RUN_TEST_LOOP_cc_c.
25506
25507         * math/libm-test.inc (struct test_f_L_data): New type.
25508         (RUN_TEST_LOOP_f_L): New macro.
25509         (llrint_test_data): New variable.
25510         (llrint_test): Run tests with RUN_TEST_LOOP_f_L.
25511         (llrint_tonearest_test_data): New variable.
25512         (llrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_L.
25513         (llrint_towardzero_test_data): New variable.
25514         (llrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_L.
25515         (llrint_downward_test_data): New variable.
25516         (llrint_test_downward): Run tests with RUN_TEST_LOOP_f_L.
25517         (llrint_upward_test_data): New variable.
25518         (llrint_test_upward): Run tests with RUN_TEST_LOOP_f_L.
25519         (llround_test_data): New variable.
25520         (llround_test): Run tests with RUN_TEST_LOOP_f_L.
25521
25522 2013-05-13  Peter Collingbourne  <pcc@google.com>
25523
25524         * math/atest-exp2.c (get_log2): Remove const attribute.
25525
25526 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
25527
25528         * math/libm-test.inc (struct test_f_l_data): New type.
25529         (RUN_TEST_LOOP_f_l): New macro.
25530         (lrint_test_data): New variable.
25531         (lrint_test): Run tests with RUN_TEST_LOOP_f_l.
25532         (lrint_tonearest_test_data): New variable.
25533         (lrint_test_tonearest): Run tests with RUN_TEST_LOOP_f_l.
25534         (lrint_towardzero_test_data): New variable.
25535         (lrint_test_towardzero): Run tests with RUN_TEST_LOOP_f_l.
25536         (lrint_downward_test_data): New variable.
25537         (lrint_test_downward): Run tests with RUN_TEST_LOOP_f_l.
25538         (lrint_upward_test_data): New variable.
25539         (lrint_test_upward): Run tests with RUN_TEST_LOOP_f_l.
25540         (lround_test_data): New variable.
25541         (lround_test): Run tests with RUN_TEST_LOOP_f_l.
25542
25543 2013-05-15  Peter Collingbourne  <pcc@google.com>
25544
25545         * sysdeps/x86_64/fpu/math_private.h (MOVQ): New macro.
25546         (EXTRACT_WORDS64) Use where appropriate.
25547         (INSERT_WORDS64) Likewise.
25548
25549         * sysdeps/x86_64/fpu/multiarch/s_fma.c (__fma_fma4): Replace xm
25550         constraints with x constraints.
25551         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c (__fmaf_fma4): Likewise.
25552
25553         * malloc/obstack.c (_obstack_compat): Add initializer.
25554
25555 2013-05-15  Edjunior Machado  <emachado@linux.vnet.ibm.com>
25556
25557         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Remove
25558         si_trapno and add si_addr_lsb to _sifields.sigfault.
25559         (si_trapno): Remove macro.
25560         (si_addr_lsb): Define new macro.
25561         (BUS_MCEERR_AR, BUS_MCEERR_AO): Define new values.
25562
25563 2013-05-15  Joseph Myers  <joseph@codesourcery.com>
25564
25565         * math/libm-test.inc (llrint_test): Consistently use TEST_f_L
25566         instead of TEST_f_l.
25567         (llrint_test_tonearest): Likewise.
25568         (llrint_test_towardzero): Likewise.
25569         (llrint_test_downward): Likewise.
25570         (llrint_test_upward): Likewise.
25571         (llround_test): Likewise.
25572
25573         * math/libm-test.inc (struct test_f_i_data): Add comment.
25574         (RUN_TEST_LOOP_f_b): New macro.
25575         (RUN_TEST_LOOP_f_b_tg): Likewise.
25576         (finite_test_data): New variable.
25577         (finite_test): Run tests with RUN_TEST_LOOP_f_b.
25578         (isfinite_test_data): New variable.
25579         (isfinite_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25580         (isinf_test_data): New variable.
25581         (isinf_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25582         (isnan_test_data): New variable.
25583         (isnan_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25584         (isnormal_test_data): New variable.
25585         (isnormal_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25586         (issignaling_test_data): New variable.
25587         (issignaling_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25588         (signbit_test_data): New variable.
25589         (signbit_test): Run tests with RUN_TEST_LOOP_f_b_tg.
25590
25591         * math/libm-test.inc (acos_test_data): Use ERRNO_EDOM together
25592         with INVALID_EXCEPTION.
25593         (acosh_test_data): Likewise.
25594         (asin_test_data): Likewise.
25595         (atanh_test_data): Likewise.
25596         (fmod_test_data): Likewise.
25597         (log_test_data): Likewise.
25598         (log10_test_data): Likewise.
25599         (log2_test_data): Likewise.
25600         (pow_test_data): Likewise.
25601         (sqrt_test_data): Likewise.
25602         (y0_test_data): Likewise.
25603         (y1_test_data): Likewise.
25604         (yn_test_data): Likewise.
25605
25606         * math/libm-test.inc (test_single_errno) [TEST_INLINE]: Disable
25607         function contents.
25608
25609         * math/libm-test.inc (struct test_ff_i_data): New type.
25610         (RUN_TEST_LOOP_ff_i_tg): New macro.
25611         (isgreater_test_data): New variable.
25612         (isgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25613         (isgreaterequal_test_data): New variable.
25614         (isgreaterequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25615         (isless_test_data): New variable.
25616         (isless_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25617         (islessequal_test_data): New variable.
25618         (islessequal_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25619         (islessgreater_test_data): New variable.
25620         (islessgreater_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25621         (isunordered_test_data): New variable.
25622         (isunordered_test): Run tests with RUN_TEST_LOOP_ff_i_tg.
25623
25624 2013-05-14  David S. Miller  <davem@davemloft.net>
25625
25626         * sysdeps/sparc/fpu/libm-test-ulps: Update.
25627
25628 2013-05-14  Joseph Myers  <joseph@codesourcery.com>
25629
25630         * math/libm-test.inc (RUN_TEST_LOOP_2_f): Fix whitespace.
25631
25632         * math/libm-test.inc (struct test_fF_f1_data): Change type of
25633         extra_test to int.
25634         (struct test_f_i_data): Change type of max_ulp to int.
25635
25636         * math/libm-test.inc (test_ffI_f1_data): New type.
25637         (RUN_TEST_LOOP_ffI_f1): New macro.
25638         (remquo_test_data): New variable.
25639         (remquo_test): Run tests with RUN_TEST_LOOP_ffI_f1.
25640
25641         * setjmp/tst-setjmp-fp.c: New file.
25642         * setjmp/Makefile (tests): Add tst-setjmp-fp.
25643         (link-libm): New variable.
25644         ($(objpfx)tst-setjmp-fp): Depend on $(link-libm).
25645
25646         * math/libm-test.inc (struct test_f_i_data): New type.
25647         (RUN_TEST_LOOP_f_i): New macro.
25648         (RUN_TEST_LOOP_f_i_tg): Likewise.
25649         (fpclassify_test_data): New variable.
25650         (fpclassify_test): Run tests with RUN_TEST_LOOP_f_i_tg.
25651         (ilogb_test_data): New variable.
25652         (ilogb_test): Run tests with RUN_TEST_LOOP_f_i.
25653
25654         * math/libm-test.inc (scalbln_test): Correct function name in END
25655         call.
25656
25657         * math/libm-test.inc (struct test_f_f1_data): Add comment.
25658         (RUN_TEST_LOOP_fI_f1): New macro.
25659         (frexp_test_data): New variable.
25660         (frexp_test): Run tests with RUN_TEST_LOOP_fI_f1.
25661
25662         * math/libm-test.inc (struct test_fF_f1_data): New type.
25663         (RUN_TEST_LOOP_fF_f1): New macro.
25664         (modf_test_data): New variable.
25665         (modf_test): Run tests with RUN_TEST_LOOP_fF_f1.
25666
25667         * math/libm-test.inc (struct test_f_f1_data): New type.
25668         (RUN_TEST_LOOP_f_f1): New macro.
25669         (gamma_test_data): New variable.
25670         (gamma_test): Run tests with RUN_TEST_LOOP_f_f1.
25671         (lgamma_test_data): New variable.
25672         (lgamma_test): Run tests with RUN_TEST_LOOP_f_f1.
25673
25674 2013-05-13  Carlos O'Donell  <carlos@redhat.com>
25675
25676         * elf/dl-hwcaps.c (_dl_important_hwcaps): Comment vDSO hwcap loading.
25677         * elf/ldconfig.c (is_hwcap_platform): Comment each hwcap check.
25678         (main): Comment "tls" pseudo-hwcap.
25679
25680 2013-05-13  Joseph Myers  <joseph@codesourcery.com>
25681
25682         * math/libm-test.inc (struct test_fl_f_data): New type.
25683         (RUN_TEST_LOOP_fl_f): New variable.
25684         (scalbln_test_data): New variable.
25685         (scalbln_test): Run tests with RUN_TEST_LOOP_fl_f.
25686
25687         * math/libm-test.inc (struct test_fi_f_data): New type.
25688         (RUN_TEST_LOOP_fi_f): New macro.
25689         (ldexp_test_data): New variable.
25690         (ldexp_test): Run tests with RUN_TEST_LOOP_fi_f.
25691         (scalbn_test_data): New variable.
25692         (scalbn_test): Run tests with RUN_TEST_LOOP_fi_f.
25693
25694         * math/libm-test.inc (struct test_c_f_data): New type.
25695         (RUN_TEST_LOOP_c_f): New macro.
25696         (cabs_test_data): New variable.
25697         (cabs_test): Run tests with RUN_TEST_LOOP_c_f.
25698         (carg_test_data): New variable.
25699         (carg_test): Run tests with RUN_TEST_LOOP_c_f.
25700         (cimag_test_data): New variable.
25701         (cimag_test): Run tests with RUN_TEST_LOOP_c_f.
25702         (creal_test_data): New variable.
25703         (creal_test): Run tests with RUN_TEST_LOOP_c_f.
25704
25705         * math/libm-test.inc (struct test_if_f_data): New type.
25706         (RUN_TEST_LOOP_if_f): New macro.
25707         (jn_test_data): New variable.
25708         (jn_test): Run tests with RUN_TEST_LOOP_if_f.
25709         (yn_test_data): New variable.
25710         (yn_test): Run tests with RUN_TEST_LOOP_if_f.
25711
25712         * math/libm-test.inc (scalbln_test): Consistently use TEST_fl_f.
25713
25714 2013-05-13  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
25715
25716         * math/libm-test.inc (M_1_DIV_El): Define using decimal constant.
25717         (log_test_data): Use M_1_DIV_El instead of 1.0 / M_El.
25718
25719 2013-05-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
25720
25721         * benchtests/Makefile (CPPFLAGS-nonlib): Add
25722         -DUSE_CLOCK_GETTIME if USE_CLOCK_GETTIME is defined.
25723         (bench-deps): Add bench-timing.h.
25724         * benchtests-bench-skeleton.c: Include bench-timing.h.
25725         (main): Use TIMING_* macros instead of clock_gettime.
25726         * benchtests/bench-timing.h: New file.
25727
25728         [BZ #14582]
25729         * sysdeps/ieee754/s_lib_version.c (_LIB_VERSION_INTERNAL):
25730         Renamed from _LIB_VERSION.
25731         (_LIB_VERSION): Set as weak alias of _LIB_VERSION_INTERNAL.
25732
25733 2013-05-12  Joseph Myers  <joseph@codesourcery.com>
25734
25735         * math/libm-test.inc (struct test_fff_f_data): New type.
25736         (RUN_TEST_LOOP_fff_f): New macro.
25737         (fma_test_data): New variable.
25738         (fma_test): Run tests with RUN_TEST_LOOP_fff_f.
25739         (fma_towardzero_test_data): New variable.
25740         (fma_test_towardzero): Run tests with RUN_TEST_LOOP_fff_f.
25741         (fma_downward_test_data): New variable.
25742         (fma_test_downward): Run tests with RUN_TEST_LOOP_fff_f.
25743         (fma_upward_test_data): New variable.
25744         (fma_test_upward): Run tests with RUN_TEST_LOOP_fff_f.
25745
25746         * math/libm-test.inc (BUILD_COMPLEX_ULP): New macro.
25747         (struct test_c_c_data): New type.
25748         (RUN_TEST_LOOP_c_c): New macro.
25749         (cacos_test_data): New variable.
25750         (cacos_test): Run tests with RUN_TEST_LOOP_c_c.
25751         (cacosh_test_data): New variable.
25752         (cacosh_test): Run tests with RUN_TEST_LOOP_c_c.
25753         (casin_test_data): New variable.
25754         (casin_test): Run tests with RUN_TEST_LOOP_c_c.
25755         (casinh_test_data): New variable.
25756         (casinh_test): Run tests with RUN_TEST_LOOP_c_c.
25757         (catan_test_data): New variable.
25758         (catan_test): Run tests with RUN_TEST_LOOP_c_c.
25759         (catanh_test_data): New variable.
25760         (catanh_test): Run tests with RUN_TEST_LOOP_c_c.
25761         (ccos_test_data): New variable.
25762         (ccos_test): Run tests with RUN_TEST_LOOP_c_c.
25763         (ccosh_test_data): New variable.
25764         (ccosh_test): Run tests with RUN_TEST_LOOP_c_c.
25765         (cexp_test_data): New variable.
25766         (cexp_test): Run tests with RUN_TEST_LOOP_c_c.
25767         (clog_test_data): New variable.
25768         (clog_test): Run tests with RUN_TEST_LOOP_c_c.
25769         (clog10_test_data): New variable.
25770         (clog10_test): Run tests with RUN_TEST_LOOP_c_c.
25771         (conj_test_data): New variable.
25772         (conj_test): Run tests with RUN_TEST_LOOP_c_c.
25773         (cproj_test_data): New variable.
25774         (cproj_test): Run tests with RUN_TEST_LOOP_c_c.
25775         (csin_test_data): New variable.
25776         (csin_test): Run tests with RUN_TEST_LOOP_c_c.
25777         (csinh_test_data): New variable.
25778         (csinh_test): Run tests with RUN_TEST_LOOP_c_c.
25779         (csqrt_test_data): New variable.
25780         (csqrt_test): Run tests with RUN_TEST_LOOP_c_c.
25781         (ctan_test_data): New variable.
25782         (ctan_test): Run tests with RUN_TEST_LOOP_c_c.
25783         (ctan_tonearest_test_data): New variable.
25784         (ctan_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
25785         (ctan_towardzero_test_data): New variable.
25786         (ctan_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
25787         (ctan_downward_test_data): New variable.
25788         (ctan_test_downward): Run tests with RUN_TEST_LOOP_c_c.
25789         (ctan_upward_test_data): New variable.
25790         (ctan_test_upward): Run tests with RUN_TEST_LOOP_c_c.
25791         (ctanh_test_data): New variable.
25792         (ctanh_test): Run tests with RUN_TEST_LOOP_c_c.
25793         (ctanh_tonearest_test_data): New variable.
25794         (ctanh_test_tonearest): Run tests with RUN_TEST_LOOP_c_c.
25795         (ctanh_towardzero_test_data): New variable.
25796         (ctanh_test_towardzero): Run tests with RUN_TEST_LOOP_c_c.
25797         (ctanh_downward_test_data): New variable.
25798         (ctanh_test_downward): Run tests with RUN_TEST_LOOP_c_c.
25799         (ctanh_upward_test_data): New variable.
25800         (ctanh_test_upward): Run tests with RUN_TEST_LOOP_c_c.
25801         * math/gen-libm-test.pl (get_ulps): Use BUILD_COMPLEX_ULP instead
25802         of BUILD_COMPLEX.
25803
25804         * math/libm-test.inc (struct test_ff_f_data): New type.
25805         (struct test_ff_f_data_nexttoward): Likewise.
25806         (RUN_TEST_LOOP_2_f): New macro.
25807         (RUN_TEST_LOOP_ff_f): Likewise.
25808         (atan2_test_data): New variable.
25809         (atan2_test): Run tests with RUN_TEST_LOOP_ff_f.
25810         (copysign_test_data): New variable.
25811         (copysign_test): Run tests with RUN_TEST_LOOP_ff_f.
25812         (fdim_test_data): New variable.
25813         (fdim_test): Run tests with RUN_TEST_LOOP_ff_f.
25814         (fmax_test_data): New variable.
25815         (fmax_test): Run tests with RUN_TEST_LOOP_ff_f.
25816         (fmin_test_data): New variable.
25817         (fmin_test): Run tests with RUN_TEST_LOOP_ff_f.
25818         (fmod_test_data): New variable.
25819         (fmod_test): Run tests with RUN_TEST_LOOP_ff_f.
25820         (hypot_test_data): New variable.
25821         (hypot_test): Run tests with RUN_TEST_LOOP_ff_f.
25822         (nextafter_test_data): New variable.
25823         (nextafter_test): Run tests with RUN_TEST_LOOP_ff_f.
25824         (nexttoward_test_data): New variable.
25825         (nexttoward_test): Run tests with RUN_TEST_LOOP_ff_f.
25826         (pow_test_data): New variable.
25827         (pow_test): Run tests with RUN_TEST_LOOP_ff_f.
25828         (pow_tonearest_test_data): New variable.
25829         (pow_test_tonearest): Run tests with RUN_TEST_LOOP_ff_f.
25830         (pow_towardzero_test_data): New variable.
25831         (pow_test_towardzero): Run tests with RUN_TEST_LOOP_ff_f.
25832         (pow_downward_test_data): New variable.
25833         (pow_test_downward): Run tests with RUN_TEST_LOOP_ff_f.
25834         (pow_upward_test_data): New variable.
25835         (pow_test_upward): Run tests with RUN_TEST_LOOP_ff_f.
25836         (remainder_test_data): New variable.
25837         (remainder_test): Run tests with RUN_TEST_LOOP_ff_f.
25838         (scalb_test_data): New variable.
25839         (scalb_test): Run tests with RUN_TEST_LOOP_ff_f.
25840         * sysdeps/i386/fpu/libm-test-ulps: Update.
25841
25842 2013-05-11  Joseph Myers  <joseph@codesourcery.com>
25843
25844         * math/libm-test.inc (fma_test): Use max_value instead of local
25845         variable fltmax.
25846         (nextafter_test): Likewise.
25847
25848         * math/libm-test.inc (acos_towardzero_test_data): New variable.
25849         (acos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25850         (acos_downward_test_data): New variable.
25851         (acos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25852         (acos_upward_test_data): New variable.
25853         (acos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25854         (acosh_test_data): New variable.
25855         (acosh_test): Run tests with RUN_TEST_LOOP_f_f.
25856         (asin_test_data): New variable.
25857         (asin_test): Run tests with RUN_TEST_LOOP_f_f.
25858         (asin_tonearest_test_data): New variable.
25859         (asin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25860         (asin_towardzero_test_data): New variable.
25861         (asin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25862         (asin_downward_test_data): New variable.
25863         (asin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25864         (asin_upward_test_data): New variable.
25865         (asin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25866         (asinh_test_data): New variable.
25867         (asinh_test): Run tests with RUN_TEST_LOOP_f_f.
25868         (atan_test_data): New variable.
25869         (atan_test): Run tests with RUN_TEST_LOOP_f_f.
25870         (atanh_test_data): New variable.
25871         (atanh_test): Run tests with RUN_TEST_LOOP_f_f.
25872         (cbrt_test_data): New variable.
25873         (cbrt_test): Run tests with RUN_TEST_LOOP_f_f.
25874         (ceil_test_data): New variable.
25875         (ceil_test): Run tests with RUN_TEST_LOOP_f_f.
25876         (cos_test_data): New variable.
25877         (cos_test): Run tests with RUN_TEST_LOOP_f_f.
25878         (cos_tonearest_test_data): New variable.
25879         (cos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25880         (cos_towardzero_test_data): New variable.
25881         (cos_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25882         (cos_downward_test_data): New variable.
25883         (cos_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25884         (cos_upward_test_data): New variable.
25885         (cos_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25886         (cosh_test_data): New variable.
25887         (cosh_test): Run tests with RUN_TEST_LOOP_f_f.
25888         (cosh_tonearest_test_data): New variable.
25889         (cosh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25890         (cosh_towardzero_test_data): New variable.
25891         (cosh_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25892         (cosh_downward_test_data): New variable.
25893         (cosh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25894         (cosh_upward_test_data): New variable.
25895         (cosh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25896         (erf_test_data): New variable.
25897         (erf_test): Run tests with RUN_TEST_LOOP_f_f.
25898         (erfc_test_data): New variable.
25899         (erfc_test): Run tests with RUN_TEST_LOOP_f_f.
25900         (exp_test_data): New variable.
25901         (exp_test): Run tests with RUN_TEST_LOOP_f_f.
25902         (exp_tonearest_test_data): New variable.
25903         (exp_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25904         (exp_towardzero_test_data): New variable.
25905         (exp_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25906         (exp_downward_test_data): New variable.
25907         (exp_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25908         (exp_upward_test_data): New variable.
25909         (exp_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25910         (exp10_test_data): New variable.
25911         (exp10_test): Run tests with RUN_TEST_LOOP_f_f.
25912         (exp2_test_data): New variable.
25913         (exp2_test): Run tests with RUN_TEST_LOOP_f_f.
25914         (expm1_test_data): New variable.
25915         (expm1_test): Run tests with RUN_TEST_LOOP_f_f.
25916         (fabs_test_data): New variable.
25917         (fabs_test): Run tests with RUN_TEST_LOOP_f_f.
25918         (floor_test_data): New variable.
25919         (floor_test): Run tests with RUN_TEST_LOOP_f_f.
25920         (j0_test_data): New variable.
25921         (j0_test): Run tests with RUN_TEST_LOOP_f_f.
25922         (j1_test_data): New variable.
25923         (j1_test): Run tests with RUN_TEST_LOOP_f_f.
25924         (log_test_data): New variable.
25925         (log_test): Run tests with RUN_TEST_LOOP_f_f.
25926         (log10_test_data): New variable.
25927         (log10_test): Run tests with RUN_TEST_LOOP_f_f.
25928         (log1p_test_data): New variable.
25929         (log1p_test): Run tests with RUN_TEST_LOOP_f_f.
25930         (log2_test_data): New variable.
25931         (log2_test): Run tests with RUN_TEST_LOOP_f_f.
25932         (logb_test_data): New variable.
25933         (logb_test): Run tests with RUN_TEST_LOOP_f_f.
25934         (logb_downward_test_data): New variable.
25935         (logb_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25936         (nearbyint_test_data): New variable.
25937         (nearbyint_test): Run tests with RUN_TEST_LOOP_f_f.
25938         (rint_test_data): New variable.
25939         (rint_test): Run tests with RUN_TEST_LOOP_f_f.
25940         (rint_tonearest_test_data): New variable.
25941         (rint_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25942         (rint_towardzero_test_data): New variable.
25943         (rint_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25944         (rint_downward_test_data): New variable.
25945         (rint_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25946         (rint_upward_test_data): New variable.
25947         (rint_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25948         (round_test_data): New variable.
25949         (round_test): Run tests with RUN_TEST_LOOP_f_f.
25950         (sin_test_data): New variable.
25951         (sin_test): Run tests with RUN_TEST_LOOP_f_f.
25952         (sin_tonearest_test_data): New variable.
25953         (sin_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25954         (sin_towardzero_test_data): New variable.
25955         (sin_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25956         (sin_downward_test_data): New variable.
25957         (sin_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25958         (sin_upward_test_data): New variable.
25959         (sin_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25960         (sinh_test_data): New variable.
25961         (sinh_test): Run tests with RUN_TEST_LOOP_f_f.
25962         (sinh_tonearest_test_data): New variable.
25963         (sinh_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25964         (sinh_towardzero_test_data): New variable.
25965         (sinh_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25966         (sinh_downward_test_data): New variable.
25967         (sinh_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25968         (sinh_upward_test_data): New variable.
25969         (sinh_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25970         (sqrt_test_data): New variable.
25971         (sqrt_test): Run tests with RUN_TEST_LOOP_f_f.
25972         (tan_test_data): New variable.
25973         (tan_test): Run tests with RUN_TEST_LOOP_f_f.
25974         (tan_tonearest_test_data): New variable.
25975         (tan_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
25976         (tan_towardzero_test_data): New variable.
25977         (tan_test_towardzero): Run tests with RUN_TEST_LOOP_f_f.
25978         (tan_downward_test_data): New variable.
25979         (tan_test_downward): Run tests with RUN_TEST_LOOP_f_f.
25980         (tan_upward_test_data): New variable.
25981         (tan_test_upward): Run tests with RUN_TEST_LOOP_f_f.
25982         (tanh_test_data): New variable.
25983         (tanh_test): Run tests with RUN_TEST_LOOP_f_f.
25984         (tgamma_test_data): New variable.
25985         (tgamma_test): Run tests with RUN_TEST_LOOP_f_f.
25986         (trunc_test_data): New variable.
25987         (trunc_test): Run tests with RUN_TEST_LOOP_f_f.
25988         (y0_test_data): New variable.
25989         (y0_test): Run tests with RUN_TEST_LOOP_f_f.
25990         (y1_test_data): New variable.
25991         (y1_test): Run tests with RUN_TEST_LOOP_f_f.
25992         (significand_test_data): New variable.
25993         (significand_test): Run tests with RUN_TEST_LOOP_f_f.
25994
25995 2013-05-10  Christian Grönke  <cgr_bugs@sysgo.com>
25996
25997         [BZ #12387]
25998         * sysdeps/unix/sysv/linux/sh/getgid.c: New file.
25999
26000 2013-05-10  Pino Toscano  <toscano.pino@tiscali.it>
26001
26002         * sysdeps/mach/hurd/bits/statvfs.h: Add ST_NOATIME.
26003
26004 2013-05-10  Andreas Jaeger  <aj@suse.de>
26005
26006         [BZ #15448]
26007         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_SET_S)
26008         (__CPU_CLR_S, __CPU_ISSET_S): Avoid integer overflow.
26009
26010 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
26011
26012         * math/gen-libm-test.pl (adjust_arg): New function.
26013         (special_functions): Handle generating output in both functions
26014         and arrays.
26015         (parse_args): Likewise.
26016         (generate_testfile): Handle START_DATA and END_DATA.  Pass extra
26017         $in_func argument to parse_args.
26018         * math/libm-test.inc (struct test_f_f_data): New type.
26019         (IF_ROUND_INIT_): New macro.
26020         (IF_ROUND_INIT_FE_DOWNWARD): Likewise.
26021         (IF_ROUND_INIT_FE_TONEAREST): Likewise.
26022         (IF_ROUND_INIT_FE_TOWARDZERO): Likewise.
26023         (IF_ROUND_INIT_FE_UPWARD): Likewise.
26024         (ROUND_RESTORE_): Likewise.
26025         (ROUND_RESTORE_FE_DOWNWARD): Likewise.
26026         (ROUND_RESTORE_FE_TONEAREST): Likewise.
26027         (ROUND_RESTORE_FE_TOWARDZERO): Likewise.
26028         (ROUND_RESTORE_FE_UPWARD): Likewise.
26029         (RUN_TEST_LOOP_f_f): New macro.
26030         (acos_test_data): New variable.
26031         (acos_test): Run tests with RUN_TEST_LOOP_f_f.
26032         (acos_tonearest_test_data): New variable.
26033         (acos_test_tonearest): Run tests with RUN_TEST_LOOP_f_f.
26034
26035 2013-05-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
26036
26037         * benchtests/bench-skeleton.c (startup): Fix coding style.
26038
26039 2013-05-10  Joseph Myers  <joseph@codesourcery.com>
26040
26041         [BZ #6809]
26042         * math/w_tgamma.c (__tgamma): Also call __kernel_standard for
26043         negative infinity argument.
26044         * math/w_tgammaf.c (__tgammaf): Also call __kernel_standard_f for
26045         negative infinity argument.
26046         * math/w_tgammal.c (__tgammal): Also call __kernel_standard_l for
26047         negative infinity argument.
26048         * math/libm-test.inc (tgamma_test): Expect errno to be set for
26049         domain errors.
26050
26051 2013-05-10  Florian Weimer  <fweimer@redhat.com>
26052
26053         * elf/sprof.c (load_profdata): Use fstat64 instead of fstat.
26054         * iconv/iconv_charmap.c (charmap_conversion): Likewise.
26055         * iconv/iconv_prog.c (main): Likewise.
26056         * locale/programs/charmap-dir.c (charmap_readdir)
26057         (fopen_uncompressed): Likewise.
26058         * locale/programs/locfile.c (siblings_uncached)
26059         (write_locale_data): Use lstat64 instead of lstat.
26060         * sunrpc/rpc_main.c (find_cpp, checkfiles): Use stat64 instead of
26061         stat.
26062
26063 2013-05-10  Andreas Jaeger  <aj@suse.de>
26064
26065         [BZ #15395]
26066         * sunrpc/rpc_main.c (main): Invoke setlocale and textdomain for
26067         localization.
26068         Include <locale.h>.
26069
26070 2013-05-09  Carlos O'Donell  <carlos@redhat.com>
26071
26072         * elf/dl-close.c (_dl_close_worker): Add comments.
26073
26074 2013-05-09  Joseph Myers  <joseph@codesourcery.com>
26075
26076         [BZ #15359]
26077         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (c): Use 106 bits for
26078         high part of pi/2.
26079         (__ieee754_rem_pio2l): Update comments.
26080
26081         [BZ #15429]
26082         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c (c): Use 113 bits for
26083         high part of pi/2.
26084         (__ieee754_rem_pio2l): Update comments.
26085
26086         * math/libm-test.inc (M_SQRT_2_2): Remove macro.
26087         (csqrt_test): Use M_SQRT1_2l instead of M_SQRT_2_2.
26088
26089         * math/libm-test.inc (carg_test): Use M_PI_34l instead of 3 *
26090         M_PI_4l.
26091
26092         * math/libm-test.inc (M_PI_34l): Define using decimal constant.
26093         (M_PI_34_LOG10El): Likewise.
26094         (M_PI2_LOG10El): Likewise.
26095         (M_PI4_LOG10El): Likewise.
26096         (M_PI_LOG10El): Likewise.
26097
26098 2013-05-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26099
26100         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26101
26102 2013-05-08  Joseph Myers  <joseph@codesourcery.com>
26103
26104         * math/libm-test.inc (PLUS_ZERO_INIT): New macro.
26105         (MINUS_ZERO_INIT): Likewise.
26106         (PLUS_INFTY_INIT): Likewise.
26107         (MINUS_INFTY_INIT): Likewise.
26108         (QNAN_VALUE_INIT): Likewise.
26109         (MAX_VALUE_INIT): Likewise.
26110         (MIN_VALUE_INIT): Likewise.
26111         (MIN_SUBNORM_VALUE_INIT): Likewise.
26112         (plus_zero): Initialize with PLUS_ZERO_INIT.
26113         (minus_zero): Initialize with MINUS_ZERO_INIT.
26114         (plus_infty): Initialize with PLUS_INFTY_INIT.
26115         (minus_infty): Initialize with MINUS_INFTY_INIT.
26116         (qnan_value): Initialize with QNAN_VALUE_INIT.
26117         (max_value): Initialize with MAX_VALUE_INIT.
26118         (min_value): Initialize with MIN_VALUE_INIT.
26119         (min_subnorm_value): Initialize with MIN_SUBNORM_VALUE_INIT.
26120
26121         * math/libm-test.inc (RUN_TEST_if_f): New macro.
26122         (jn_test): Use TEST_if_f instead of TEST_ff_f.
26123         (ldexp_text): Use TEST_fi_i instead of TEST_ff_f.
26124         (yn_test): Use TEST_if_f instead of TEST_ff_f.
26125
26126         * math/libm-test.inc (RUN_TEST_f_f): New macro.
26127         (RUN_TEST_2_f): Likewise.
26128         (RUN_TEST_ff_f): Likewise.
26129         (RUN_TEST_fi_f): Likewise.
26130         (RUN_TEST_fl_f): Likewise.
26131         (RUN_TEST_fff_f): Likewise.
26132         (RUN_TEST_c_f): Likewise.
26133         (RUN_TEST_f_f1): Likewise.
26134         (RUN_TEST_fF_f1): Likewise.
26135         (RUN_TEST_fI_f1): Likewise.
26136         (RUN_TEST_ffI_f1): Likewise.
26137         (RUN_TEST_c_c): Likewise.
26138         (RUN_TEST_cc_c): Likewise.
26139         (RUN_TEST_f_i): Likewise.
26140         (RUN_TEST_f_i_tg): Likewise.
26141         (RUN_TEST_ff_i_tg): Likewise.
26142         (RUN_TEST_f_b): Likewise.
26143         (RUN_TEST_f_b_tg): Likewise.
26144         (RUN_TEST_f_l): Likewise.
26145         (RUN_TEST_f_L): Likewise.
26146         (RUN_TEST_sincos): Likewise.
26147         * math/gen-libm-test.pl (new_test): Take new argument to indicate
26148         whether to show exceptions.  Do not include ");\n" in return
26149         value.
26150         (special_functions): Output call to RUN_TEST_sincos instead of
26151         check_float calls.  Update calls to new_test.
26152         (parse_args): Output call to single RUN_TEST_* macro instead of
26153         check_* calls and other assignments.  Update calls to new_test.
26154
26155         [BZ #2546]
26156         [BZ #2560]
26157         [BZ #5159]
26158         [BZ #15426]
26159         * sysdeps/ieee754/k_standard.c (__kernel_standard): Copy sign of
26160         input to result for tgamma overflow.
26161         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Include <float.h>.
26162         (gamma_coeff): New variable.
26163         (NCOEFF): New macro.
26164         (gamma_positive): New function.
26165         (__ieee754_gamma_r): Handle positive infinity, NaN, overflow and
26166         underflow here.  Use gamma_positive instead of exp (lgamma) for
26167         other arguments.
26168         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Include <float.h>.
26169         (gamma_coeff): New variable.
26170         (NCOEFF): New macro.
26171         (gammaf_positive): New function.
26172         (__ieee754_gammaf_r): Handle positive infinity, NaN, overflow and
26173         underflow here.  Use gamma_positive instead of exp (lgamma) for
26174         other arguments.
26175         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Include <float.h>.
26176         (gamma_coeff): New variable.
26177         (NCOEFF): New macro.
26178         (gammal_positive): New function.
26179         (__ieee754_gammal_r): Handle positive infinity, NaN, overflow and
26180         underflow here.  Use gamma_positive instead of exp (lgamma) for
26181         other arguments.
26182         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Include <float.h>.
26183         (gamma_coeff): New variable.
26184         (NCOEFF): New macro.
26185         (gammal_positive): New function.
26186         (__ieee754_gammal_r): Handle positive infinity, overflow and
26187         underflow here.  Handle NaN the same as positive infinity.  Remove
26188         check x < 0xffffffff for negative integers.  Use gamma_positive
26189         instead of exp (lgamma) for other arguments.
26190         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Include <float.h>.
26191         (gamma_coeff): New variable.
26192         (NCOEFF): New macro.
26193         (gammal_positive): New function.
26194         * sysdeps/ieee754/dbl-64/gamma_product.c: New file.
26195         * sysdeps/ieee754/dbl-64/gamma_productf.c: Likewise.
26196         * sysdeps/ieee754/ldbl-128/gamma_productl.c: Likewise.
26197         * sysdeps/ieee754/ldbl-128ibm/gamma_productl.c: Likewise.
26198         * sysdeps/ieee754/ldbl-96/gamma_product.c: Likewise.
26199         * sysdeps/ieee754/ldbl-96/gamma_productl.c: Likewise.
26200         * sysdeps/generic/math_private.h (__gamma_productf): New
26201         prototype.
26202         (__gamma_product): Likewise.
26203         (__gamma_productl): Likewise.
26204         * math/Makefile (libm-calls): Add gamma_product.
26205         * math/libm-test.inc (tgamma_test): Add more tests.
26206         * sysdeps/i386/fpu/libm-test-ulps: Update.
26207         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26208
26209 2013-05-08  Ondřej Bílka  <neleai@seznam.cz>
26210
26211         * benchtests/bench-skeleton.c (main): Preheat CPU.
26212
26213 2013-05-07  Aurelien Jarno <aurelien@aurel32.net>
26214
26215         * misc/sys/param.h (DEV_BSIZE): Define only if not already defined.
26216
26217 2013-05-07  Roland McGrath  <roland@hack.frob.com>
26218
26219         * sysdeps/generic/ldsodefs.h [IS_IN_rtld]: Declare _dl_skip_args
26220         and _dl_skip_args_internal.
26221
26222 2013-05-07  Carlos O'Donell  <carlos@redhat.com>
26223
26224         * manual/message.texi (Message Translation): Talk about users.
26225         Message to key mapping impacts design.
26226
26227 2013-05-06  Roland McGrath  <roland@hack.frob.com>
26228
26229         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: New file.
26230
26231         * elf/dl-open.c: Remove declaration of _dl_sysdep_start.
26232
26233         * sysdeps/unix/sysv/linux/wordsize-64/glob64.c: Moved to ...
26234         * sysdeps/wordsize-64/glob64.c: ... here.
26235
26236         * sysdeps/generic/not-cancel.h (NO_CANCELLATION): New macro.
26237         (pause_not_cancel, nanosleep_not_cancel, sigsuspend_not_cancel):
26238         New macros.
26239
26240         * debug/getlogin_r_chk.c: Moved to ...
26241         * login/getlogin_r_chk.c: ... here.
26242         * debug/Makefile (routines): Move getlogin_r_chk to ...
26243         * login/Makefile (routines): ... here.
26244         * debug/Versions (libc: GLIBC_2.4): Move getlogin_r_chk to ...
26245         * login/Versions (libc: GLIBC_2.4): ... here.
26246
26247         * io/poll.c (__poll): Renamed from poll.
26248         Add libc_hidden_def.
26249         (poll): Define as weak alias.
26250
26251         * debug/ptsname_r_chk.c: Moved to ...
26252         * login/ptsname_r_chk.c: ... here.
26253         * debug/Makefile (routines): Move ptsname_r_chk to ...
26254         * login/Makefile (routines): ... here.
26255         * debug/Versions (libc: GLIBC_2.4): Move __ptsname_r_chk to ...
26256         * login/Versions (libc: GLIBC_2.4): ... here.
26257
26258         * posix/getlogin.c: Moved to ...
26259         * login/getlogin.c: ... here.
26260         * posix/getlogin_r.c: Moved to ...
26261         * login/getlogin_r.c: ... here.
26262         * posix/getlogin_r.c: Moved to ...
26263         * login/getlogin_r.c: ... here.
26264         * posix/Makefile (routines): Move getlogin, getlogin_r, setlogin to ...
26265         * login/Makefile (routines): ... here.
26266         * posix/Versions (libc: GLIBC_2.0): Move setlogin to ...
26267         * login/Versions (libc: GLIBC_2.0): ... here.
26268
26269         * resource/setrlimit.c (__setrlimit): Renamed from setrlimit.
26270         (setrlimit): Define as weak alias.
26271
26272         * sysdeps/posix/truncate.c (__truncate): Renamed from truncate.
26273         Call __ names for open, ftruncate, and close.
26274         For LENGTH==0 case, just use O_TRUNC rather than calling ftruncate.
26275         (truncate): Define as weak alias.
26276
26277 2013-05-06  Joseph Myers  <joseph@codesourcery.com>
26278
26279         * math/gen-libm-test.pl (parse_args): Initialize x before each
26280         test of frexp, modf and remquo.
26281
26282         * math/libm-test.inc (gamma_test): Consistently use TEST_f_f1 to
26283         test signgam value.
26284
26285 2013-05-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26286
26287         [BZ #15418]
26288         [BZ #15419]
26289         * sysdeps/powerpc/fpu/e_hypot.c: Fix spurious FP exception generated by
26290         internal tests.
26291         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
26292
26293 2013-05-06  Roland McGrath  <roland@hack.frob.com>
26294
26295         * elf/dl-writev.h: New file.
26296         * elf/dl-misc.c: Include it.
26297         (_dl_debug_vdprintf): Call _dl_writev instead of __writev et al.
26298         * sysdeps/unix/sysv/linux/dl-writev.h: New file.
26299
26300 2013-05-04  Joseph Myers  <joseph@codesourcery.com>
26301
26302         * math/libm-test.inc (noXFails): Remove variable.
26303         (noXPasses): Likewise.
26304         (BUILD_COMPLEX_INT): Remove macro.
26305         (print_screen): Remove xfail argument.
26306         (print_screen_max_error): Likewise.
26307         (update_stats): Likewise.
26308         (print_max_error): Likewise.  Update calls to other affected
26309         functions.
26310         (print_complex_max_error): Likewise.
26311         (test_single_exception): Update calls to print_screen.
26312         (test_single_errno): Likewise.
26313         (check_float_internal): Remove xfail argument.  Update calls to
26314         other affected functions.
26315         (check_float): Likewise.
26316         (check_complex): Likewise.
26317         (check_int): Likewise.
26318         (check_long): Likewise.
26319         (check_bool): Likewise.
26320         (check_longlong): Likewise.
26321         (main): Don't print noXFails and noXPasses.
26322         * math/gen-libm-test.pl (top level): Don't mention expected
26323         failure handling in comment.
26324         (new_test): Don't handle expected failures.
26325         (parse_args): Don't mention expected failure handling in comment.
26326         (generate_testfile): Don't handle expected failures.
26327         (parse_ulps): Likewise.
26328         (print_ulps_file): Likewise.
26329         (get_failure): Remove function.
26330         (output_test): Don't handle expected failures.
26331         * make/README.libm-test: Don't mention expected failure handling.
26332
26333         * math/libm-test.inc (plus_zero): Make const.  Add initializer.
26334         (minus_zero): Likewise.
26335         (plus_infty): Likewise.
26336         (minus_infty): Likewise.
26337         (qnan_value): Likewise.
26338         (max_value): Likewise.
26339         (min_value): Likewise.
26340         (min_subnorm_value): Likewise.
26341         (initialize): Do not initialize those variables dynamically.
26342
26343 2013-05-03  Roland McGrath  <roland@hack.frob.com>
26344
26345         * io/open.c (__open_2): Moved to ...
26346         * io/open_2.c: ... this new file.
26347         * io/open64.c (__open64_2): Moved to ...
26348         * io/open64_2.c: ... this new file.
26349         * io/openat.c (__openat_2): Moved to ...
26350         * io/openat_2.c: ... this new file.
26351         * io/openat64.c (__openat64_2): Moved to ...
26352         * io/openat64_2.c: ... this new file.
26353         * io/Makefile (routines): Add them.
26354         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Remove them.
26355         * sysdeps/unix/sysv/linux/open_2.c: File removed.
26356         * sysdeps/unix/sysv/linux/open64_2.c: File removed.
26357         * sysdeps/unix/sysv/linux/openat.c (__OPENAT_2): Removed.
26358         * sysdeps/unix/sysv/linux/openat64.c (__OPENAT_2): Removed.
26359         * sysdeps/unix/sysv/linux/wordsize-64/openat.c (__openat_2): Removed.
26360         (__openat64): Add hidden_ver.
26361         * sysdeps/mach/hurd/open.c (__open_2, __open64_2): Removed.
26362         * sysdeps/mach/hurd/openat.c (__openat_2): Removed.
26363
26364         * elf/dl-sysdep.c (_dl_sysdep_start) [NEED_DL_SYSINFO]:
26365         Separately conditionalize setting of GLRO(dl_sysinfo) so
26366         that the GLRO(dl_sysinfo_dso) test is under [NEED_DL_SYSINFO_DSO]
26367         as well, but the actual setting is only under [NEED_DL_SYSINFO].
26368
26369 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26370
26371         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_time symbol.
26372         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Add __vdso_time
26373         definition.
26374         (VDSO_IFUNC_RET): Cast to void * to silence compiler warning.
26375         * sysdeps/unix/sysv/linux/powerpc/init-first.c
26376         (_libc_vdso_platform_setup): Add __vdso_time initialization.
26377         * sysdeps/unix/sysv/linux/powerpc/time.c: New file: time implementation
26378         for PowerPC using vDSO where is avaliable or gettimeofday as a fallback.
26379
26380 2013-05-03  Joseph Myers  <joseph@codesourcery.com>
26381
26382         * math/libm-test.inc (lgamma_test): Consistently use TEST_f_f1 to
26383         test signgam value.
26384
26385         * math/libm-test.inc (hypot_test): Do not use
26386         IGNORE_ZERO_INF_SIGN.
26387
26388 2013-05-03  Andreas Jaeger  <aj@suse.de>
26389
26390         * sysdeps/gnu/netinet/tcp.h (TCP_TIMESTAMP): New value, from
26391         Linux 3.9.
26392         * sysdeps/unix/sysv/linux/bits/socket.h (PF_VSOCK, AF_VSOCK): Add.
26393         (PF_MAX): Adjust for VSOCK change.
26394
26395 2013-05-03  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26396
26397         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26398
26399 2013-05-02  Carlos O'Donell  <carlos@redhat.com>
26400
26401         [BZ #15264]
26402         * localedata/locales/en_CA (LC_MESSAGES): Define yesstr and nostr.
26403         * localedata/locales/es_AR (LC_MESSAGES): Copy es_ES.
26404         * localedata/locales/es_ES (LC_MESSAGES): Define yesstr and nostr.
26405
26406 2013-05-02  David S. Miller  <davem@davemloft.net>
26407
26408         * sysdeps/sparc/fpu/libm-test-ulps: Update.
26409
26410 2013-05-01  Ondřej Bílka  <neleai@seznam.cz>
26411
26412         * string/bits/string2.h (__strcmp_cg): Call __strcmp_gc.
26413
26414 2013-05-01  Roland McGrath  <roland@hack.frob.com>
26415
26416         * sysdeps/posix/opendir.c: Include <sys/param.h> to get MIN/MAX macros.
26417
26418 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
26419
26420         [BZ #14952]
26421         * misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
26422         [__GNUC__ && (__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
26423         Use __attribute__ ((__gnu_inline__)).
26424         [__GNUC__ && !(__GNUC_STDC_INLINE__ || __GNUC_GNU_INLINE__)]:
26425         Don't use __attribute__ ((__gnu_inline__)).
26426
26427 2013-05-01  Joseph Myers  <joseph@codesourcery.com>
26428
26429         [BZ #15423]
26430         * math/s_catan.c (__catan): Handle small real or imaginary part of
26431         input specially to avoid spurious underflow.
26432         * math/s_catanf.c (__catanf): Likewise.
26433         * math/s_catanh.c (__catanh): Likewise.
26434         * math/s_catanhf.c (__catanhf): Likewise.
26435         * math/s_catanhl.c (__catanhl): Likewise.
26436         * math/s_catanl.c (__catanl): Likewise.
26437         * math/libm-test.inc (catan_test): Add more tests.
26438         (catanh_test): Likewise.
26439         * sysdeps/i386/fpu/libm-test-ulps: Update.
26440         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26441
26442 2013-04-30  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26443
26444         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26445
26446 2013-04-30  Joseph Myers  <joseph@codesourcery.com>
26447
26448         [BZ #15416]
26449         * math/s_catan.c (__catan): Compute expressions 1 - x^2 - y^2 more
26450         accurately for denominator in atan2.
26451         * math/s_catanf.c (__catanf): Likewise.
26452         * math/s_catanh.c (__catanh): Likewise.
26453         * math/s_catanhf.c (__catanhf): Likewise.
26454         * math/s_catanhl.c (__catanhl): Likewise.
26455         * math/s_catanl.c (__catanl): Likewise.
26456         * math/libm-test.inc (catan_test): Add more tests.
26457         (catanh_test): Likewise.
26458         * sysdeps/i386/fpu/libm-test-ulps: Update.
26459         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26460
26461 2013-04-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
26462
26463         * sysdeps/ieee754/dbl-64/s_sin.c: Format code.
26464
26465         * benchtests/Makefile (bench): Remove slow benchmarks.
26466         * benchtests/atan-inputs: Add slow benchmark inputs.
26467         * benchtests/bench-modf.c (NUM_VARIANTS): Define.
26468         (BENCH_FUNC): Accept variant offset.
26469         (VARIANT): Define.
26470         * benchtests/bench-skeleton.c (main): Run benchmark for each
26471         variant.
26472         * benchtests/cos-inputs: Add slow benchmark inputs.
26473         * benchtests/exp-inputs: Likewise.
26474         * benchtests/pow-inputs: Likewise.
26475         * benchtests/sin-inputs: Likewise.
26476         * benchtests/slowatan-inputs: Remove.
26477         * benchtests/slowatan.c: Remove.
26478         * benchtests/slowcos-inputs: Remove.
26479         * benchtests/slowcos.c: Remove.
26480         * benchtests/slowexp-inputs: Remove.
26481         * benchtests/slowexp.c: Remove.
26482         * benchtests/slowpow-inputs: Remove.
26483         * benchtests/slowpow.c: Remove.
26484         * benchtests/slowsin-inputs: Remove.
26485         * benchtests/slowsin.c: Remove.
26486         * benchtests/slowtan-inputs: Remove.
26487         * benchtests/slowtan.c: Remove.
26488         * benchtests/tan-inputs: Add slow benchmark inputs.
26489         * scripts/bench.pl: Parse comments and directives.
26490
26491         * benchtests/Makefile: Remove *-ITER.  Define BENCH_DURATION
26492         in CPPFLAGS.
26493         ($(objpfx)bench-%.c): Remove *-ITER.
26494         * benchtests/bench-modf.c: Remove definition of ITER.
26495         * benchtests/bench-skeleton.c (TIMESPEC_AFTER): New macro.
26496         (main): Loop for DURATION seconds instead of fixed number of
26497         iterations.
26498         * scripts/bench.pl: Don't expect iterations in parameters.
26499
26500 2013-04-29  Roland McGrath  <roland@hack.frob.com>
26501
26502         * io/fchdir.c (__fchdir): Renamed from fchdir.
26503         (fchdir): Define as weak alias.
26504
26505 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
26506
26507         * math/libm-test.inc (ERRNO_UNCHANGED): New macro.
26508         (ERRNO_EDOM): Likewise.
26509         (ERRNO_ERANGE): Likewise.
26510         (noErrnoTests): New variable.
26511         (init_max_error): Set errno to 0.
26512         (test_single_errno): New function.
26513         (test_errno): Likewise.
26514         (check_float_internal): Call test_errno.  Set errno to 0.
26515         (check_complex): Refer to errno tests in comment.
26516         (check_int): Call test_errno.  Set errno to 0.
26517         (check_long): Likewise.
26518         (check_bool): Likewise.
26519         (check_longlong): Likewise.
26520         (cos_test): Use ERRNO_* flags for errno tests instead of
26521         check_int.
26522         (expm1_test): Likewise.
26523         (fmod_test): Likewise.
26524         (ilogb_test): Likewise.
26525         (lgamma_test): Likewise.
26526         (pow_test): Likewise.
26527         (remainder_test): Likewise.
26528         (sin_test): Likewise.
26529         (tan_test): Likewise.
26530         (yn_test): Likewise.
26531         (initialize): Set errno to 0.
26532         (main): Print number of errno tests.
26533         * math/gen-libm-test.pl (parse_args): Allow ERRNO flags on tests.
26534
26535 2013-04-29  Andreas Jaeger  <aj@suse.de>
26536
26537         [BZ #15084]
26538         * resolv/res_debug.c (p_option): Fix strings for RES_USEBSTRING
26539         and RES_USEVC.
26540
26541         [BZ #15085]
26542         * resolv/resolv.h (RES_NOCHECKNAME): Mark as unimplemented.
26543         * resolv/res_debug.c (p_option): Mark RES_NOCHECKNAME as
26544         unimplemented.
26545
26546         [BZ #15380]
26547         * stdlib/random.c (__initstate): Return NULL if
26548         __initstate fails.
26549
26550         [BZ #15086]
26551         * resolv/res_debug.c (p_option): Handle RES_NOALIASES,
26552         RES_KEEPTSIG, RES_BLAST, RES_NOIP6DOTINT, RES_SNGLKUP,
26553         RES_SNGLKUPREOP.
26554
26555 2013-04-29  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26556
26557         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
26558
26559 2013-04-29  Joseph Myers  <joseph@codesourcery.com>
26560
26561         * math/libm-test.inc (cacos_test): Add missing semicolons at ends
26562         of individual tests.
26563         (casin_test): Likewise.
26564         (casinh_test): Likewise.
26565
26566 2013-04-27  Joseph Myers  <joseph@codesourcery.com>
26567
26568         [BZ #15409]
26569         * math/s_catan.c (__catan): Handle arguments with large real or
26570         imaginary part separately without squaring.
26571         * math/s_catanf.c (__catanf): Likewise.
26572         * math/s_catanh.c (__catanh): Likewise.
26573         * math/s_catanhf.c (__catanhf): Likewise.
26574         * math/s_catanhl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
26575         and redefine.
26576         (__catanhl): Handle arguments with large real or imaginary part
26577         separately without squaring.
26578         * math/s_catanl.c [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine
26579         and redefine.
26580         (__catanl): Handle arguments with large real or imaginary part
26581         separately without squaring.
26582         * math/libm-test.inc (catan_test): Add more tests.
26583         (catanh_test): Likewise.
26584         * sysdeps/i386/fpu/libm-test-ulps: Update.
26585         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26586
26587 2013-04-27  Andreas Jaeger  <aj@suse.de>
26588
26589         [BZ #15007]
26590         * stdlib/stdlib.h: Update guards for qecvt.
26591         * stdlib/bits/stdlib-ldbl.h: Sync guards for qecvt etc with
26592         <stdlib.h>.
26593
26594 2013-04-27  Allan McRae  <allan@archlinux.org>
26595
26596         * sysdeps/i386/fpu/libm-test-ulps: Update.
26597
26598 2013-04-26  Joseph Myers  <joseph@codesourcery.com>
26599
26600         [BZ #15406]
26601         * math/s_catan.c: Include <float.h>.
26602         (__catan): Ensure underflow exception occurs for underflowed
26603         result.
26604         * math/s_catanf.c: Include <float.h>.
26605         (__catanf): Ensure underflow exception occurs for underflowed
26606         result.
26607         * math/s_catanh.c: Include <float.h>.
26608         (__catanh): Ensure underflow exception occurs for underflowed
26609         result.
26610         * math/s_catanhf.c: Include <float.h>.
26611         (__catanhf): Ensure underflow exception occurs for underflowed
26612         result.
26613         * math/s_catanhl.c: Include <float.h>.
26614         (__catanhl): Ensure underflow exception occurs for underflowed
26615         result.
26616         * math/s_catanl.c: Include <float.h>.
26617         (__catanl): Ensure underflow exception occurs for underflowed
26618         result.
26619         * math/libm-test.inc (catan_test): Add more tests.
26620         (catanh_test): Likewise.
26621
26622         [BZ #15405]
26623         * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for
26624         underflowed result.
26625         * math/s_ccoshf.c (__ccoshf): Likewise.
26626         * math/s_ccoshl.c (__ccoshl): Likewise.
26627         * math/s_csin.c (__csin): Likewise.
26628         * math/s_csinf.c (__csinf): Likewise.
26629         * math/s_csinh.c (__csinh): Likewise.
26630         * math/s_csinhf.c (__csinhf): Likewise.
26631         * math/s_csinhl.c (__csinhl): Likewise.
26632         * math/s_csinl.c (__csinl): Likewise.
26633         * math/libm-test.inc (ccos_test): Add more tests.
26634         (ccosh_test): Likewise.
26635         (csin_test): Likewise.
26636         (csinh_test): Likewise.
26637
26638 2013-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26639
26640         * sysdeps/powerpc/power5/fpu/s_modf.c: Moved to ...
26641         * sysdeps/powerpc/power5+/fpu/s_modf.c: ... this.
26642         * sysdeps/powerpc/power5/fpu/s_modff.c: Moved to ...
26643         * sysdeps/powerpc/power5+/fpu/s_modff.c: ... this.
26644         * sysdeps/powerpc/powerpc32/power5+/Implies: Add powerpc/power5+ and
26645         powerpc/power5+/fpu folders.
26646         * sysdeps/powerpc/powerpc64/power5+/Implies: Likewise.
26647
26648
26649 2013-04-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
26650
26651         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
26652
26653 2013-04-25  Joseph Myers  <joseph@codesourcery.com>
26654
26655         * elf/Makefile [$(config-machine) = x86_64] (tests): Remove
26656         additions to variable.
26657         [$(config-machine) = x86_64] (modules-names): Likewise.
26658         ($(objpfx)tst-audit3): Remove dependency.
26659         ($(objpfx)tst-audit3.out): Likewise.
26660         ($(objpfx)tst-audit4): Likewise.
26661         ($(objpfx)tst-audit4.out): Likewise.
26662         ($(objpfx)tst-audit5): Likewise.
26663         ($(objpfx)tst-audit5.out): Likewise.
26664         ($(objpfx)tst-audit6): Likewise.
26665         ($(objpfx)tst-audit6.out): Likewise.
26666         ($(objpfx)tst-audit7): Likewise.
26667         ($(objpfx)tst-audit7.out): Likewise.
26668         (tst-audit3-ENV): Remove variable.
26669         (tst-audit4-ENV): Likewise.
26670         (tst-audit5-ENV): Likewise.
26671         (tst-audit6-ENV): Likewise.
26672         (tst-audit7-ENV): Likewise.
26673         [$(config-cflags-avx) = yes] (AVX-CFLAGS): Likewise.
26674         [$(config-cflags-avx) = yes] (CFLAGS-tst-audit4.c): Remove
26675         addition to variable.
26676         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4a.c): Likewise.
26677         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod4b.c): Likewise.
26678         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6b.c): Likewise.
26679         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod6c.c): Likewise.
26680         [$(config-cflags-avx) = yes] (CFLAGS-tst-auditmod7b.c): Likewise.
26681         * sysdeps/x86_64/Makefile [$(subdir) = elf] (tests): Add
26682         tst-audit3, tst-audit4 and tst-audit5.
26683         [$(subdir) = elf && $(config-cflags-avx) = yes] (tests): Add
26684         tst-audit6 and tst-audit7.
26685         [$(subdir) = elf] (modules-names): Add audit modules for those
26686         tests.
26687         [$(subdir) = elf] ($(objpfx)tst-audit3): New dependency.
26688         [$(subdir) = elf] ($(objpfx)tst-audit3.out): Likewise.
26689         [$(subdir) = elf] ($(objpfx)tst-audit4): Likewise.
26690         [$(subdir) = elf] ($(objpfx)tst-audit4.out): Likewise.
26691         [$(subdir) = elf] ($(objpfx)tst-audit5): Likewise.
26692         [$(subdir) = elf] ($(objpfx)tst-audit5.out): Likewise.
26693         [$(subdir) = elf] ($(objpfx)tst-audit6): Likewise.
26694         [$(subdir) = elf] ($(objpfx)tst-audit6.out): Likewise.
26695         [$(subdir) = elf] ($(objpfx)tst-audit7): Likewise.
26696         [$(subdir) = elf] ($(objpfx)tst-audit7.out): Likewise.
26697         [$(subdir) = elf] (tst-audit3-ENV): New variable.
26698         [$(subdir) = elf] (tst-audit4-ENV): Likewise.
26699         [$(subdir) = elf] (tst-audit5-ENV): Likewise.
26700         [$(subdir) = elf] (tst-audit6-ENV): Likewise.
26701         [$(subdir) = elf] (tst-audit7-ENV): Likewise.
26702         [$(subdir) = elf && $(config-cflags-avx) = yes] (AVX-CFLAGS):
26703         Likewise.
26704         [$(subdir) = elf && $(config-cflags-avx) = yes]
26705         (CFLAGS-tst-audit4.c): Append $(AVX-CFLAGS).
26706         [$(subdir) = elf && $(config-cflags-avx) = yes]
26707         (CFLAGS-tst-auditmod4a.c): Likewise.
26708         [$(subdir) = elf && $(config-cflags-avx) = yes]
26709         (CFLAGS-tst-auditmod4b.c): Likewise.
26710         [$(subdir) = elf && $(config-cflags-avx) = yes]
26711         (CFLAGS-tst-auditmod6b.c): Likewise.
26712         [$(subdir) = elf && $(config-cflags-avx) = yes]
26713         (CFLAGS-tst-auditmod6c.c): Likewise.
26714         [$(subdir) = elf && $(config-cflags-avx) = yes]
26715         (CFLAGS-tst-auditmod7b.c): Likewise.
26716         * elf/tst-audit3.c: Move to ...
26717         * sysdeps/x86_64/tst-audit3.c: ... here.
26718         * elf/tst-audit4.c: Move to ...
26719         * sysdeps/x86_64/tst-audit4.c: ... here.
26720         * elf/tst-audit5.c: Move to ...
26721         * sysdeps/x86_64/tst-audit5.c: ... here.
26722         * elf/tst-audit6.c: Move to ...
26723         * sysdeps/x86_64/tst-audit6.c: ... here.
26724         * elf/tst-audit7.c: Move to ...
26725         * sysdeps/x86_64/tst-audit7.c: ... here.
26726         * elf/tst-auditmod3a.c: Move to ...
26727         * sysdeps/x86_64/tst-auditmod3a.c: ... here.
26728         * elf/tst-auditmod3b.c: Move to ...
26729         * sysdeps/x86_64/tst-auditmod3b.c: ... here.
26730         * elf/tst-auditmod4a.c: Move to ...
26731         * sysdeps/x86_64/tst-auditmod4a.c: ... here.
26732         * elf/tst-auditmod4b.c: Move to ...
26733         * sysdeps/x86_64/tst-auditmod4b.c: ... here.
26734         * elf/tst-auditmod5a.c: Move to ...
26735         * sysdeps/x86_64/tst-auditmod5a.c: ... here.
26736         * elf/tst-auditmod5b.c: Move to ...
26737         * sysdeps/x86_64/tst-auditmod5b.c: ... here.
26738         * elf/tst-auditmod6a.c: Move to ...
26739         * sysdeps/x86_64/tst-auditmod6a.c: ... here.
26740         * elf/tst-auditmod6b.c: Move to ...
26741         * sysdeps/x86_64/tst-auditmod6b.c: ... here.
26742         * elf/tst-auditmod6c.c: Move to ...
26743         * sysdeps/x86_64/tst-auditmod6c.c: ... here.
26744         * elf/tst-auditmod7a.c: Move to ...
26745         * sysdeps/x86_64/tst-auditmod7a.c: ... here.
26746         * elf/tst-auditmod7b.c: Move to ...
26747         * sysdeps/x86_64/tst-auditmod7b.c: ... here.
26748
26749 2013-04-25  Paul Pluzhnikov  <ppluzhnikov@google.com>
26750
26751         [BZ #15366]
26752         * sysdeps/generic/inttypes.h (PRId8, PRId16, etc.):
26753         define unconditionally.
26754         * sysdeps/generic/stdint.h (INT8_MIN, INT16_MIN, etc.):
26755         define unconditionally.
26756         (INT8_C, INT16_C, etc.): Likewise.
26757
26758 2013-04-25  Maciej W. Rozycki  <macro@codesourcery.com>
26759
26760         * csu/libc-start.c (__libc_start_main) [!SHARED]: Declare
26761         __ehdr_start with hidden visibility.
26762
26763         * soft-fp/op-common.h (_FP_SQRT): s/sNAN/NAN/ in a comment.
26764
26765 2013-04-24  Carlos O'Donell  <carlos@redhat.com>
26766
26767         * math/libm-test.inc (cos_test): Use accurate hex constants.
26768         (sincost_test): Likewise.
26769
26770 2013-04-24  Joseph Myers  <joseph@codesourcery.com>
26771
26772         * math/libm-test.inc (catan_test): Add more tests.
26773         (catanh_test): Likewise.
26774
26775         * math/s_catanf.c (__catanf): Use suffixed floating-point
26776         constants.
26777         * math/s_catanhf.c (__catanhf): Likewise.
26778         * math/s_catanhl.c (__catanhl): Likewise.
26779         * math/s_catanl.c (__catanl): Likewise.
26780
26781         [BZ #15394]
26782         * math/s_catan.c (__catan): Calculate imaginary part of result
26783         with log1p not log unless computing log of number close to 0.
26784         * math/s_catanf.c (__catanf): Likewise.
26785         * math/s_catanl.c (__catanl): Likewise.
26786         * math/s_catanh.c (__catanh): Calculate real part of result with
26787         log1p not log unless computing log of number close to 0.
26788         * math/s_catanhf.c (__catanhf): Likewise.
26789         * math/s_catanhl.c (__catanhl): Likewise.
26790         * math/libm-test.inc (catan_test): Add more tests.
26791         (catanh_test): Likewise.
26792         * sysdeps/i386/fpu/libm-test-ulps: Update.
26793         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
26794
26795 2013-04-24  Siddhesh Poyarekar  <siddhesh@redhat.com>
26796
26797         * benchtests/Makefile: Mention files in which fast and slow
26798         paths of math functions are implemented.
26799
26800 2013-04-23  Roland McGrath  <roland@hack.frob.com>
26801
26802         * sysdeps/posix/timespec_get.c: New file.
26803
26804 2013-04-23  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
26805
26806         * sysdeps/powerpc/power5/fpu/s_modf.c: New file: modf optimization for
26807         POWER.
26808         * sysdeps/powerpc/power5/fpu/s_modff.c: New file: modff optimization
26809         for POWER.
26810         * sysdeps/powerpc/powerpc64/power5/Implies: Add powerpc/power5 and
26811         powerpc/power5/fpu folders.
26812         * sysdeps/powerpc/powerpc32/power5/Implies: Likewise.
26813         * benchtests/Makefile: Add modf testcase.
26814         * benchtests/bench-modf.c: New file: Benchmark test for mo
26815
26816 2013-04-23  Siddhesh Poyarekar  <siddhesh@redhat.com>
26817
26818         [BZ #14888]
26819         * time/Makefile (tests): Add tst-strptime-whitespace.
26820         * time/strptime_l.c (get_number): Use ISSPACE.
26821         (__strptime_internal): Likewise.
26822         * time/tst-strptime-whitespace.c: New test case.
26823
26824 2013-04-23  Andreas Schwab  <schwab@linux-m68k.org>
26825
26826         * nss/nss_files/files-init.c (TF): Don't initialize flexible array
26827         member.
26828         (_nss_files_init): Set it here.
26829
26830 2013-04-23  Heiko Carstens  <heiko.carstens@de.ibm.com>
26831
26832         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Change types of
26833         f_type, f_bsize, f_namelen, f_frsize, f_flags,and f_spare to
26834         unsigned.
26835
26836 2013-04-22  Jan-Benedict Glaw  <jbglaw@getslash.de>
26837
26838         * nss/getent.c (shadow_keys): Call endspent, not endpwent.
26839
26840 2013-04-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
26841
26842         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Compute results
26843         size just once.
26844
26845 2013-04-21  David S. Miller  <davem@davemloft.net>
26846
26847         * po/ru.po: Update Russion translation from translation project.
26848
26849 2013-04-17  Adam Conrad  <adconrad@0c3.net>
26850
26851         * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
26852         and setfsgid.
26853
26854 2013-04-17  Carlos O'Donell  <carlos@redhat.com>
26855
26856         * configure.in: Remove i386 configure warning. Remove i386 case.
26857         * configure: Regenerate.
26858         * sysdeps/i386/configure.in: Raise error if config_machine is i386.
26859         Add example to error message.
26860         * sysdeps/i386/configure: Regenerate.
26861
26862 2013-04-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
26863
26864         * benchtests/Makefile (bench): Add cos, tan, slowcos and
26865         slowtan.
26866         * benchtests/cos-inputs: New file.
26867         * benchtests/slowcos-inputs: New file.
26868         * benchtests/slowcos.c: New file.
26869         * benchtests/slowtan-inputs: New file.
26870         * benchtests/slowtan.c: New file.
26871         * benchtests/tan-inputs: New file.
26872
26873 2013-04-16  Roland McGrath  <roland@hack.frob.com>
26874
26875         * rt/tst-aio7.c (do_test): Don't test O_RDONLY fd case, which is now
26876         considered kosher.
26877
26878 2013-04-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
26879
26880         * benchtests/Makefile: Include cppflags-iterator.mk to add
26881         -DNOT_IN_libc=1 to CPPFLAGS of all benchmark programs.
26882
26883         * Makefile.in (bench-clean): New target.
26884         * benchtests/Makefile (bench-clean): Likewise.
26885
26886 2013-04-16  David Holsgrove  <david.holsgrove@xilinx.com>
26887
26888         * elf/elf.h: Add EM_MICROBLAZE and MicroBlaze relocations.
26889
26890 2013-04-15  Thomas Schwinge  <thomas@codesourcery.com>
26891
26892         * stdio-common/tstdiomisc.c: Fix coding-style violation.
26893
26894 2013-04-15  Andreas Schwab  <schwab@suse.de>
26895
26896         * nscd/grpcache.c (cache_addgr): Properly check for short write.
26897         * nscd/initgrcache.c (addinitgroupsX): Likewise.
26898         * nscd/pwdcache.c (cache_addpw): Likewise.
26899         * nscd/servicescache.c (cache_addserv): Likewise.  Don't write
26900         more than recsize.
26901
26902 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
26903
26904         * benchtests/Makefile (bench): Write all output to
26905         bench-out.tmp together.
26906
26907 2013-04-15  Andreas Schwab  <schwab@suse.de>
26908
26909         * nscd/nscd.c (main): Don't fork again after closing files.
26910
26911 2013-04-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
26912
26913         * libio/tst-fwrite-error.c (do_test): Fix BUF array definition.
26914
26915         * benchtests/Rules (bench-deps): Collect dependencies into a
26916         single variable.  Add Makefile to dependencies.
26917         ($(objpfx)bench-%.c): Depend on bench-deps.
26918
26919 2013-04-12  Roland McGrath  <roland@hack.frob.com>
26920             Xavier Roche  <roche+kml2@exalead.com>
26921
26922         [BZ #15361]
26923         * sysdeps/pthread/aio_fsync.c (aio_fsync): Don't check open modes,
26924         just that it's a file descriptor.
26925         * manual/llio.texi (Synchronizing AIO Operations): Update description
26926         for EBADF error from aio_fsync.
26927
26928 2013-04-12  Siddhesh Poyarekar  <siddhesh@redhat.com>
26929
26930         * Rules (bench): Move target definition...
26931         * benchtests/Makefile: ... here.
26932
26933 2013-04-11  Carlos O'Donell  <carlos@redhat.com>
26934
26935         * math/libm-test.inc (cos_test): Fix PI/2 test.
26936         (sincos_test): Likewise.
26937         * sysdeps/x86_64/fpu/libm-test-ulps: Regenerate.
26938         * sysdeps/i386/fpu/libm-test-ulps: Regenerate.
26939
26940 2013-04-11  Andreas Schwab  <schwab@suse.de>
26941
26942         [BZ #13988]
26943         * stdio-common/vfscanf.c (_IO_vfwscanf): When parsing a float
26944         accept exponent character only when digits were seen.
26945         * stdio-common/Makefile (tests): Add bug26.
26946         * stdio-common/bug26.c: New file.
26947
26948         [BZ #14293]
26949         * elf/dl-load.c (_dl_init_paths): Mark decomposed RUNPATH as
26950         non-freeable.
26951
26952 2013-04-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
26953
26954         * Makeconfig (rtld-prefix): Define built linker prefix.
26955         * Rules (run-bench): Use it.
26956         * math/Makefile (run-regen-ulps): Likewise.
26957
26958         * Rules (bench): Remove eval.
26959
26960 2013-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
26961             Roland McGrath  <roland@hack.frob.com>
26962             Ondrej Bilka  <neleai@seznam.cz>
26963
26964         [BZ #15346]
26965         * time/getdate.c: Include ctype.h and alloca.h.
26966         (__getdate_r): Trim leading and trailing spaces of input.
26967         * time/tst-getdate.c (tests): Add tests with leading and
26968         trailing spaces.
26969
26970 2013-04-08  Roland McGrath  <roland@hack.frob.com>
26971
26972         [BZ #14280]
26973         * sysdeps/mach/hurd/bits/ioctls.h (_IOTS): Cast to enum __ioctl_datum
26974         when computing value.
26975
26976 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
26977
26978         * math/README.libm-test (How can I generate "libm-test-ulps"?):
26979         Use testrun.sh to run libm tests.
26980
26981         [BZ #15309]
26982         * elf/dl-open.c (dl_open_worker): memset all of seen array.
26983
26984 2013-04-06  Marko Myllynen  <myllynen@redhat.com>
26985
26986         [BZ #15264]
26987         * locales/fi_FI (LC_MESSAGES): Define yesstr and nostr.
26988
26989 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
26990
26991         * Makefile.in (regen-ulps): New target.
26992         * math/Makefile [ifneq (no,$(PERL)]: Declare regen-ulps with .PHONY.
26993         [ifneq (no,$(PERL)] (run-regen-ulps): New variable.
26994         [ifneq (no,$(PERL)] (regen-ulps): New target.
26995         [ifeq (no,$(PERL)] (regen-ulps): New target.
26996         * math/libm-test.inc (ulps_file_name): Define.
26997         (output_dir): New variable.
26998         (options): Add "output-dir" option.
26999         (parse_opt): Handle 'o' case.
27000         (main): If output_dir is non-NULL use it as a prefix
27001         otherwise use "".
27002         * math/README.libm-test: Update `How can I generate "libm-test-ulps"?'
27003
27004 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
27005
27006         [BZ #10060, #10062]
27007         * aclocal.m4 (LIBC_COMPILER_BUILTIN_INLINED): New macro.
27008         * sysdeps/i386/configure.in: Use LIBC_COMPILER_BUILTIN_INLINED and
27009         fail configure if __sync_val_compare_and_swap is not inlined.
27010         * sysdeps/i386/configure: Regenerate.
27011         * configure.in: Build for i686 when configured for i386.
27012         * configure: Regenerate.
27013         * README: Remove i386 reference.
27014
27015 2013-04-06  Carlos O'Donell  <carlos@redhat.com>
27016
27017         * sysdeps/s390/s390-32/sysdep.h: Undefine PSEUDO before redefinition.
27018         * sysdeps/s390/s390-64/sysdep.h: Likewise.
27019
27020 2013-04-05  Thomas Schwinge  <thomas@codesourcery.com>
27021
27022         * stdio-common/tstdiomisc.c (snanval, msnanval, lsnanval)
27023         (lmsnanval): New variables.
27024         (F): Add conversion tests.
27025         * stdlib/tst-strtod6.c (do_test): Add issignaling tests.
27026         * stdlib/Makefile ($(objpfx)tst-strtod6): Depend on $(link-libm).
27027
27028         * stdio-common/tstdiomisc.c (F): Properly collect individual
27029         tests' results.
27030
27031         [BZ #14686, #15336]
27032         * sysdeps/ieee754/dbl-64/urem.h (nNAN, NAN): Remove definitions.
27033         * sysdeps/ieee754/dbl-64/e_remainder.c (__ieee754_remainder):
27034         Instead, use input NaN values or generate a qNaN by arithmetic
27035         operation.  Also fix bugs to comply with the standard.
27036         * math/libm-test.inc (remainder_test): Add more tests.
27037
27038         [BZ #15335, #15342]
27039         * sysdeps/ieee754/dbl-64/upow.h (NaNQ): Remove definitions.
27040         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Instead, use
27041         input NaN values or generate a qNaN by arithmetic operation.
27042
27043         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Remove
27044         unreachable code.
27045
27046         * sysdeps/ieee754/dbl-64/usncs.h (NAN): Removed unused
27047         definitions.
27048
27049 2013-04-03  Joseph Myers  <joseph@codesourcery.com>
27050
27051         [BZ #14478]
27052         * math/s_cexp.c (__cexp): Ensure underflow exception occurs for
27053         underflowed result.
27054         * math/s_cexpf.c (__cexpf): Likewise.
27055         * math/s_cexpl.c (__cexpl): Likewise.
27056         * math/libm-test.inc (cexp_test): Add more tests.
27057
27058 2013-04-03  Andreas Schwab  <schwab@suse.de>
27059
27060         [BZ #15330]
27061         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Allocate results and
27062         order arrays from heap if bigger than alloca cutoff.
27063
27064 2013-04-03  Thomas Schwinge  <thomas@codesourcery.com>
27065
27066         * sysdeps/i386/fpu/math-tests.h (SNAN_TESTS_float)
27067         (SNAN_TESTS_double): Refer to GCC PR56831.
27068         * sysdeps/powerpc/math-tests.h (SNAN_TESTS_TYPE_CAST): Refer to
27069         GCC PR56828.
27070
27071 2013-04-03  Siddhesh Poyarekar  <siddhesh@redhat.com>
27072
27073         * Rules (bench): Move bench.out after the run is complete.
27074
27075         * Rules (bench): Echo currently running benchmark.
27076
27077         * benchtests/Makefile (bench): Add atan and slowatan.
27078         * benchtests/atan-inputs: New file.
27079         * benchtests/slowatan-inputs: New file.
27080         * benchtests/slowatan.c: New file.
27081
27082         * sysdeps/ieee754/dbl-64/mpa.h (TWO): Remove definition.
27083         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Replace TWO with
27084         its value.
27085
27086         [BZ #15305]
27087         * sysdeps/unix/sysv/linux/kernel-features.h
27088         [__LINUX_KERNEL_VERSION >= 0x02061d]: Define
27089         __ASSUME_XFS_RESTRICTED_CHOWN.
27090         * sysdeps/unix/sysv/linux/pathconf.c
27091         (__statfs_chown_restricted) [!__ASSUME_XFS_RESTRICTED_CHOWN]:
27092         Save and restore errno.
27093
27094 2013-04-02  Joseph Myers  <joseph@codesourcery.com>
27095
27096         [BZ #15327]
27097         * math/s_cacosh.c (__cacosh): Implement for finite nonzero
27098         arguments using __kernel_casinh.
27099         * math/s_cacoshf.c (__cacoshf): Implement for finite nonzero
27100         arguments using __kernel_casinhf.
27101         * math/s_cacoshl.c (__cacoshl): Implement for finite nonzero
27102         arguments using __kernel_casinhl.
27103         * math/libm-test.inc (cacosh_test): Add more tests.
27104         * sysdeps/i386/fpu/libm-test-ulps: Update.
27105         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27106
27107 2013-04-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
27108
27109         * sysdeps/ieee754/dbl-64/mpa.h (HALFRAD): Define as TWO23.
27110         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Use mantissa_t.
27111
27112         * bench/Makefile (bench): Add sin and slowsin.
27113         * benchtests/sin-inputs: New file.
27114         * benchtests/slowsin-inputs: New file.
27115         * benchtests/slowsin.c: New file.
27116
27117         * benchtests/Makefile: Add benchmarks for slowpow and slowexp.
27118         (bench): Add slowexp and slowpow.
27119         (exp-ITER): Increase iterations.
27120         (pow-ITER): Likewise.
27121         * benchtests/exp-inputs: Change input.
27122         * benchtests/pow-inputs: Likewise.
27123         * benchtests/slowexp-inputs: New file.
27124         * benchtests/slowexp.c: New file.
27125         * benchtests/slowpow-inputs: New file.
27126         * benchtests/slowpow.c: New file.
27127
27128 2013-04-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27129
27130         * sysdeps/powerpc/powerpc32/fpu/s_rint.S: Remove branch prediction
27131         instructions.
27132         * sysdeps/powerpc/powerpc32/fpu/s_rintf.S: Likewise.
27133         * sysdeps/powerpc/powerpc64/fpu/s_rint.S: Likewise.
27134         * sysdeps/powerpc/powerpc64/fpu/s_rintf.S: Likewise.
27135         * benchtests/Makefile: Add rint benchtest.
27136         * benchtests/rint-inputs: Input for rint benchtest.
27137
27138 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
27139
27140         * Versions.def (libm): Add GLIBC_2.18.
27141         * include/math.h [!_ISOMAC] (__issignaling, __issignalingf): Add
27142         hidden libm prototypes.
27143         [!_ISOMAC && !__NO_LONG_DOUBLE_MATH] (__issignalingl): Likewise.
27144         * math/Makefile (libm-calls): Add s_issignaling.
27145         * math/Versions (libm: GLIBC_2.18): Add __issignaling,
27146         __issignalingf, __issignalingl.  Adjust all libm.abilist files.
27147         * math/bits/mathcalls.h [__USE_GNU] (__issignaling): New prototype
27148         declaration.
27149         * math/math.h [__USE_GNU] (issignaling): New macro.
27150         * sysdeps/ieee754/flt-32/s_issignalingf.c: New file.
27151         * sysdeps/ieee754/dbl-64/s_issignaling.c: Likewise.
27152         * sysdeps/ieee754/dbl-64/wordsize-64/s_issignaling.c: Likewise.
27153         * sysdeps/ieee754/ldbl-96/s_issignalingl.c: Likewise.
27154         * sysdeps/ieee754/ldbl-128/s_issignalingl.c: Likewise.
27155         * sysdeps/ieee754/ldbl-128ibm/s_issignalingl.c: Likewise.
27156         * manual/arith.texi (issignaling): New section.
27157         * manual/libm-err-tab.pl (@all_functions): Update comment.
27158         * math/gen-libm-test.pl (parse_args): Apply special handling for
27159         issignaling.
27160         * math/libm-test.inc (print_float, issignaling_test): New
27161         functions.
27162         (check_float_internal): Add issignaling checks.
27163         * sysdeps/generic/math-tests.h (SNAN_TESTS_TYPE_CAST): Provide
27164         default definition.
27165         * sysdeps/powerpc/math-tests.h: New file.
27166         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Add issignaling
27167         tests.
27168         * math/test-snan.c (TEST_FUNC): Likewise.
27169
27170 2013-03-30  David S. Miller  <davem@davemloft.net>
27171
27172         * po/de.po: Update from translation team.
27173
27174 2013-03-30  Joseph Myers  <joseph@codesourcery.com>
27175
27176         [BZ #10357]
27177         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27178         imaginary part less than 1.0 and real part less than 0.5
27179         specially.
27180         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27181         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27182         * math/libm-test.inc (UNDERFLOW_EXCEPTION_OK_DOUBLE): New macro.
27183         (cacos_test): Add more tests.
27184         (casin_test): Likewise.
27185         (casinh_test): Likewise.
27186         * sysdeps/i386/fpu/libm-test-ulps: Update.
27187         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27188
27189 2013-03-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
27190
27191         * sysdeps/powerpc/power4/fpu/mpa-arch.h (INTEGER_OF): Replace
27192         ONE with its value.
27193
27194         * sysdeps/ieee754/dbl-64/mpa.h (ONE, MONE): Remove defines.
27195         (__pow_mp): Replace ONE and MONE with their values.
27196         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27197         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Likewise.
27198         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
27199         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Likewise.
27200         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27201         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
27202
27203         * sysdeps/ieee754/dbl-64/s_tan.c: Fix formatting.
27204
27205         * sysdeps/ieee754/dbl-64/mpa.h (ZERO, MZERO): Remove defines.
27206         (__pow_mp): Replace ZERO and MZERO with their values.
27207         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
27208         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27209         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
27210         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
27211         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27212         * sysdeps/powerpc/power4/fpu/mpa.c (__mul): Likewise.
27213         (__sqr): Likewise.
27214
27215         * sysdeps/ieee754/dbl-64/s_atan.c: Fix formatting.
27216
27217         * sysdeps/ieee754/dbl-64/e_log.c: Fix formatting.
27218
27219 2013-03-28  Roland McGrath  <roland@hack.frob.com>
27220
27221         * include/stdlib.h [!SHARED] (__call_tls_dtors):
27222         Declare with __attribute__ ((weak)).
27223         * stdlib/exit.c (__libc_atexit) [!SHARED]:
27224         Call __call_tls_dtors only if it's not NULL.
27225
27226 2013-03-28  Roland McGrath  <roland@hack.frob.com>
27227
27228         * csu/libc-start.c (__libc_start_main) [!SHARED]: If _dl_aux_init
27229         didn't do it already, then set _dl_phdr and _dl_phnum based on the
27230         magic __ehdr_start linker symbol if it's defined.
27231         * sysdeps/mach/hurd/i386/init-first.c (init1) [!SHARED]: Don't set
27232         them up here if it was already done.
27233
27234         * elf/dl-support.c (_dl_phdr): Make pointer to const.
27235         (_dl_aux_init): Use const in cast when setting it.
27236         * sysdeps/mach/hurd/i386/init-first.c (init1): Remove superfluous cast.
27237         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr): Update decl.
27238         * csu/libc-tls.c (__libc_setup_tls): Make PHDR pointer to const.
27239
27240         * sysdeps/generic/ldsodefs.h [!SHARED] (_dl_phdr, _dl_phnum):
27241         Declare them here.
27242         * elf/dl-iteratephdr.c [!SHARED] (_dl_phdr, _dl_phnum): Not here.
27243         * csu/libc-tls.c: Nor here.
27244         * sysdeps/mach/hurd/i386/init-first.c (init1): Nor here.
27245
27246         * sysdeps/posix/libc_fatal.c: Don't include <sys/syslog.h>.
27247         (__libc_message): Never call vsyslog.
27248
27249 2013-03-28  Alan Modra  <amodra@gmail.com>
27250
27251         * sysdeps/powerpc/powerpc32/start.S (cfi_startproc, cfi_endproc):
27252         Define as empty.
27253         * sysdeps/powerpc/powerpc64/start.S (cfi_startproc, cfi_endproc):
27254         Likewise.
27255
27256 2013-03-28  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27257
27258         [BZ #15214]
27259         * sysdeps/ieee754/ldbl-128ibm/e_logl.c (__ieee754_logl): Fix spurious
27260         underflow.
27261         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
27262
27263 2013-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
27264
27265         [BZ #15304]
27266         * hesiod/nss_hesiod/hesiod-grp.c (_nss_hesiod_initgroups_dyn):
27267         Don't add gid passed as argument.
27268
27269         * sysdeps/ieee-754/dbl-64/e_atan2.c: Reformat.
27270
27271 2013-03-27  Joseph Myers  <joseph@codesourcery.com>
27272
27273         [BZ #15307]
27274         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27275         imaginary part between 1.0 and 1.5 and real part less than 0.5
27276         specially.
27277         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27278         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27279         * math/libm-test.inc (cacos_test): Add more tests.
27280         (casin_test): Likewise.
27281         (casinh_test): Likewise.
27282         * sysdeps/i386/fpu/libm-test-ulps: Update.
27283         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27284
27285 2013-03-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
27286
27287         * sysdeps/ieee754/dbl-64/mpa.c (__acr): Use integral
27288         constants.
27289         (norm): Likewise.
27290         (denorm): Likewise.
27291         (__dbl_mp): Likewise.
27292         (add_magnitudes): Likewise.
27293         (sub_magnitudes): Likewise.
27294         (__add): Likewise.
27295         (__sub): Likewise.
27296         (__mul): Likewise.
27297         (__sqr): Likewise.
27298         (__inv): Likewise.
27299         (__dvd): Likewise.
27300
27301         * sysdeps/ieee754/dbl-64/branred.c (__branred): Remove
27302         commented code.
27303         * sysdeps/ieee754/dbl-64/dosincos.c (__dubsin): Likewise.
27304         (__dubcos): Likewise.
27305         * sysdeps/ieee754/dbl-64/e_asin.c (__ieee754_asin): Likewise.
27306         (__ieee754_acos): Likewise.
27307         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Likewise.
27308         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Likewise.
27309         (__exp1): Likewise.
27310         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Likewise.
27311         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
27312         (log1): Likewise.
27313         (my_log2): Likewise.
27314         (checkint): Likewise.
27315         * sysdeps/ieee754/dbl-64/e_remainder.c
27316         (__ieee754_remainder): Likewise.
27317         * sysdeps/ieee754/dbl-64/s_atan.c (atan): Likewise.
27318         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Likewise.
27319         (bsloww): Likewise.
27320         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
27321
27322         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
27323         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T and
27324         MANTISSA_STORE_T to store computations on mantissa.  Use
27325         macros for rounding and division.
27326         (denorm): Likewise.
27327         (__dbl_mp): Likewise.
27328         (add_magnitudes): Likewise.
27329         (sub_magnitudes): Likewise.
27330         (__mul): Likewise.
27331         (__sqr): Likewise.
27332         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
27333         powers of two in terms of TWOPOW macro.
27334         (mp_no): Make type of mantissa as MANTISSA_T.
27335         [!RADIXI]: Define RADIXI.
27336         [!TWO52]: Define TWO52.
27337         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
27338
27339 2013-03-25  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27340
27341         * sysdeps/powerpc/fpu/s_llround.c: Fix libm ABI issue with missing
27342         llroundl symbol when building for PPC32.
27343
27344 2013-03-24  Mark H Weaver  <mhw@netris.org>
27345
27346         * manual/arith.texi (Normalization Functions): Fix prototypes for
27347         scalbn, scalbnf, scalbnl, scalbln, scalblnf, and scalblnl.
27348
27349 2013-03-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27350
27351         [BZ #13889]
27352         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (__ieee754_expl): Increase the
27353         high value to check if expl overflow.
27354         * sysdeps/ieee754/ldbl-128ibm/w_expl.c (__expl): Fix threshold constants
27355         to check for underflow and overflow.
27356         * math/libm-test.inc: Add exp test.
27357
27358 2013-03-21  Dmitry V. Levin  <ldv@altlinux.org>
27359
27360         [BZ #11120]
27361         * sysdeps/x86_64/strcmp.S: Replace all occurrences of NOT_IN_lib
27362         with NOT_IN_libc.
27363
27364 2013-03-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27365
27366         * sysdeps/powerpc/fpu/w_sqrt.c (compat_symbol): Add sqrtl compat
27367         symbol.
27368
27369 2013-03-21  Thomas Schwinge  <thomas@codesourcery.com>
27370
27371         * math/gen-libm-test.pl (parse_args, special_functions): Properly
27372         wrap blocks consisting of several statements.
27373
27374         * sysdeps/generic/math-tests.h: New file.
27375         * sysdeps/i386/fpu/math-tests.h: Likewise.
27376         * math/test-snan.c: Include it.
27377         (TEST_FUNC): Use SNAN_TESTS to short-circuit certain tests.
27378
27379 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
27380
27381         [BZ #15285]
27382         * sysdeps/ieee754/ldbl-128/e_j0l.c: Include <float.h>.
27383         (__ieee754_j0l): Do not improve calculations using cos of twice
27384         input for inputs above LDBL_MAX / 2.0L.
27385         (__ieee754_y0l): Likewise.
27386         * sysdeps/ieee754/ldbl-128/e_j1l.c: Include <float.h>.
27387         (__ieee754_j1l): Do not improve calculations using cos of twice
27388         input for inputs above LDBL_MAX / 2.0L.
27389         (__ieee754_y1l): Likewise.
27390         * math/libm-test.inc (j0_test): Add another test.
27391         (j1_test): Likewise.
27392         (y0_test): Likewise.
27393         (y1_test): Likewise.
27394         * sysdeps/i386/fpu/libm-test-ulps: Update.
27395
27396 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
27397
27398         * Rules ($(objpfx)bench-%.c): Include code from a C source
27399         file.
27400
27401 2013-03-21  Joseph Myers  <joseph@codesourcery.com>
27402
27403         [BZ #15287]
27404         * math/k_casinh.c (__kernel_casinh): Handle arguments with
27405         imaginary part 1.0 and real part less than 0.5 specially.
27406         * math/k_casinhf.c (__kernel_casinhf): Likewise.
27407         * math/k_casinhl.c (__kernel_casinhl): Likewise.
27408         * math/libm-test.inc (cacos_test): Add more tests.
27409         (casin_test): Likewise.
27410         (casinh_test): Likewise.
27411         * sysdeps/i386/fpu/libm-test-ulps: Update.
27412         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27413
27414 2013-03-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
27415
27416         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Use HALFRAD.
27417         * sysdeps/ieee754/dbl-64/sincos32.c (__mpranred): Likewise.
27418
27419 2013-03-20  Joseph Myers  <joseph@codesourcery.com>
27420
27421         * aclocal.m4 (LIBC_CONFIG_VAR): New autoconf macro.
27422         * config.make.in (config-cflags-sse4): Remove variable.
27423         (config-cflags-avx): Likewise.
27424         (config-cflags-sse2avx): Likewise.
27425         (config-cflags-novzeroupper): Likewise.
27426         (config-asflags-i686): Likewise.
27427         (have-mfma4): Likewise.
27428         (have-as-vis3): Likewise.
27429         (MIG): Likewise.
27430         * configure.in (MIG): Do not AC_SUBST.
27431         (libc_cv_cc_nofma): Move AC_SUBST next to configure test.
27432         (libc_cv_cc_sse4): Do not AC_SUBST.
27433         (libc_cv_cc_avx): Likewise.
27434         (libc_cv_cc_sse2avx): Likewise.
27435         (libc_cv_cc_novzeroupper): Likewise.
27436         (libc_cv_cc_fma4): Likewise.
27437         (libc_cv_as_i686): Likewise.
27438         (libc_cv_sparc_as_vis3): Likewise.
27439         * sysdeps/i386/configure.in (config-cflags-sse4): Set using
27440         LIBC_CONFIG_VAR.
27441         (config-asflags-i686): Likewise.
27442         (config-cflags-avx): Likewise.
27443         (config-cflags-sse2avx): Likewise.
27444         (have-mfma4): Likewise.
27445         (config-cflags-novzeroupper): Likewise.
27446         * sysdeps/mach/configure.in (MIG): Likewise.
27447         * sysdeps/sparc/configure.in (have-as-vis3): Likewise.
27448         * sysdeps/x86_64/configure.in (config-cflags-sse4): Set using
27449         LIBC_CONFIG_VAR.
27450         (config-cflags-avx): Likewise.
27451         (config-cflags-sse2avx): Likewise.
27452         (have-mfma4): Likewise.
27453         (config-cflags-novzeroupper): Likewise.
27454         * configure: Regenerated.
27455         * sysdeps/i386/configure: Likewise.
27456         * sysdeps/mach/configure: Likewise.
27457         * sysdeps/sparc/configure: Likewise.
27458         * sysdeps/x86_64/configure: Likewise.
27459
27460 2013-03-20  Roland McGrath  <roland@hack.frob.com>
27461
27462         [BZ #14812]
27463         * locale/programs/localedef.c (options): Put N_ translation marker
27464         on argument names, not just descriptions.
27465
27466 2013-03-20  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
27467
27468         * Makerules ($(inst_libdir)/libc.so): Use $(rtlddir).
27469
27470 2013-03-20  Ondřej Bílka  <neleai@seznam.cz>
27471
27472         [BZ #14176]
27473         * stdlib/stdlib.h (mblen, mbtowc, wctomb): Remove __wur.
27474
27475 2013-03-19  Roland McGrath  <roland@hack.frob.com>
27476
27477         * sysdeps/posix/libc_fatal.c: Include <sys/mman.h>.
27478         [!WRITEV_FOR_FATAL] (writev_for_fatal): New function.
27479         [!WRITEV_FOR_FATAL] (WRITEV_FOR_FATAL): New macro; call that.
27480         [!BEFORE_ABORT] (before_abort): New function.
27481         [!BEFORE_ABORT] (BEFORE_ABORT): New macro; call that.
27482         * sysdeps/unix/sysv/linux/libc_fatal.c: Trim includes.
27483         (writev_for_fatal): New function.
27484         (WRITEV_FOR_FATAL): New macro; call that.
27485         (backtrace_and_maps): New function.
27486         (BEFORE_ABORT): New macro; call that.
27487         (struct str_list): Type removed.
27488         (__libc_message, __libc_fatal): Functions removed.
27489         Include <sysdeps/posix/libc_fatal.c> instead.
27490
27491 2013-03-19  Joseph Myers  <joseph@codesourcery.com>
27492
27493         * math/k_casinhf.c (__kernel_casinhf): Consistently use float
27494         constants.
27495         * math/k_casinhl.c (__kernel_casinhl): Consistently use long
27496         double constants.
27497
27498 2013-03-19  Andreas Schwab  <schwab@suse.de>
27499
27500         * sysdeps/gnu/configure.in: Set libc_cv_rtldir for s390x.
27501         * sysdeps/gnu/configure: Regenerate.
27502
27503         * configure.in: Substitute libc_cv_rtlddir.
27504         * configure: Regenerate.
27505         * config.make.in (rtlddir): Set from libc_cv_rtlddir.
27506         * Makeconfig (rtlddir, inst_rtlddir): New variables.
27507         (rtld-LDFLAGS): Use them with $(rtld-installed-name).
27508         * elf/Makefile (install-others, CFLAGS-interp.c)
27509         (ldso_install, common-ldd-rewrite): Likewise.
27510         ($(inst_rtlddir)/$(rtld-installed-name)): Renamed from
27511         $(inst_slibdir)/$(rtld-installed-name).
27512         * scripts/rellns-sh: Add -p option.
27513         * Makerules (make-shlib-link): Use rellns-sh to get relative name
27514         for source.
27515
27516 2013-03-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
27517
27518         * manual/nptl.texi: Renamed to ...
27519         * manual/threads.texi: ... this.
27520         * manual/Makefile (chapters): Update.
27521
27522 2013-03-18  Roland McGrath  <roland@hack.frob.com>
27523
27524         [BZ #14812]
27525         * argp/argp-parse.c (argp_default_options): Put N_ translation marker
27526         on argument names, not just descriptions.
27527         * malloc/memusagestat.c (options): Likewise.
27528         * nss/getent.c (options): Likewise.
27529
27530 2013-03-18  Benno Schulenberg  <bensberg@justemail.net>
27531
27532         [BZ #14812]
27533         * iconv/iconv_prog.c (options): Put N_ translation marker
27534         on argument names, not just descriptions.
27535         * iconv/iconvconfig.c (options): Likewise.
27536
27537 2013-03-18  Ondrej Bilka  <neleai@seznam.cz>
27538
27539         * sysdeps/x86_64/strlen.S: Replace with new SSE2 based
27540         implementation which is faster on all x86_64 architectures.
27541         Tested on AMD, Intel Nehalem, SNB, IVB.
27542         * sysdeps/x86_64/strnlen.S: Likewise.
27543
27544         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines):
27545         Remove all multiarch strlen and strnlen versions.
27546         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: Update.
27547         Remove strlen and strnlen related parts.
27548
27549         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: Update.
27550         Inline strlen part.
27551         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Likewise.
27552
27553         * sysdeps/x86_64/multiarch/strlen.S: Remove.
27554         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S: Likewise.
27555         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: Likewise.
27556         * sysdeps/x86_64/multiarch/strlen-sse4.S: Likewise.
27557         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
27558         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: Likewise.
27559
27560 2013-03-17  Carlos O'Donell  <carlos@redhat.com>
27561
27562         * manual/memory.texi (Malloc Tunable Parameters):
27563         Sort parameters alphabetically. Add comments for missing entries.
27564
27565 2013-03-17  David S. Miller  <davem@davemloft.net>
27566
27567         * sysdeps/sparc/fpu/libm-test-ulps: Update.
27568
27569 2013-03-16  Joseph Myers  <joseph@codesourcery.com>
27570
27571         [BZ #15283]
27572         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_y1l): Correct test
27573         for arguments at most half maximum finite value.
27574         * math/libm-test.inc (j0_test): Add more tests.
27575         (j1_test): Likewise.
27576         (y0_test): Likewise.
27577         (y1_test): Likewise.
27578         * sysdeps/i386/fpu/libm-test-ulps: Update.
27579         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
27580
27581         [BZ #14155]
27582         * sysdeps/ieee754/ldbl-128/e_j0l.c (__ieee754_j0l): Do not compute
27583         1 / x and functions P and Q for arguments above 0x1p256L.
27584         (__ieee754_y0l): Likewise.
27585         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_j1l): Likewise.
27586         (__ieee754_y1l): Likewise.
27587         * math/libm-test.inc (j0_test): Do not allow spurious underflows.
27588         (j1_test): Likewise.
27589         (y0_test): Likewise.
27590         (y1_test): Likewise.
27591
27592 2013-03-16  Thomas Schwinge  <thomas@codesourcery.com>
27593
27594         * math/test-snan.c (TEST_FUNC): Add and use minus_sNaN_var
27595         variable.
27596
27597 2013-03-15  Roland McGrath  <roland@hack.frob.com>
27598
27599         * elf/dl-support.c (_dl_aux_init): Ignore zero value for AT_PAGESZ.
27600         (_dl_non_dynamic_init): Don't set _dl_pagesize; it will never be
27601         zero since it's initialized to EXEC_PAGESIZE.
27602
27603         * sysdeps/unix/sysv/linux/ldsodefs.h
27604         (_dl_non_dynamic_init, _dl_aux_init): Move declarations to ...
27605         * sysdeps/generic/ldsodefs.h: ... here.
27606
27607 2013-03-15  Thomas Schwinge  <thomas@codesourcery.com>
27608
27609         * math/libm-test.inc (ldexp_test): Add missing START/END markers.
27610
27611         * sysdeps/powerpc/fpu/test-powerpc-snan.c: Rename to
27612         math/test-snan.c.
27613         * math/test-snan.c: Renamed from
27614         sysdeps/powerpc/fpu/test-powerpc-snan.c.
27615         * math/Makefile (tests): Add test-snan.
27616         * sysdeps/powerpc/fpu/Makefile (libm-tests): Don't add
27617         test-powerpc-snan.
27618
27619         * math/basic-test.c (TEST_FUNC): Replace NANFUNC argument with
27620         SUFFIX.  Initialize qNaN_var with __builtin_nan family of
27621         functions.
27622         (TEST_TRUNC): Add SUFFIX argument.  Initialize qNaN_var with
27623         __builtin_nan family of functions.
27624         * math/libm-test.inc (initialize): Initialize qnan_value with
27625         __builtin_nan family of functions.
27626         * sysdeps/powerpc/fpu/test-powerpc-snan.c (SNANf, SNAN, SNANl):
27627         Remove variables.
27628         (init_signaling_nan, snan_float, snan_double, snan_ldouble):
27629         Remove functions.
27630         (TEST_FUNC): Add SUFFIX argument.  Move sNaN_var into static
27631         storage class.  Initialize qNaN_var and sNaN_var with
27632         __builtin_nan and __builtin_nans families of functions,
27633         respectively.
27634
27635         * math/libm-test.inc (acosh_test): Also test with qNaN input.
27636         (sqrt_test): Remove duplicate test with qNaN input.
27637         (lrint_test, llrint_test, lround_test, llround_test, rint_test)
27638         (round_test, signbit_test, significand_test): Note missing +/-Inf
27639         as well as qNaN tests.
27640
27641         * math/basic-test.c (TEST_FUNC, TEST_TRUNC): Rename NaN_var to
27642         qNaN_var.  Fix a few strings, too.
27643         * math/libm-test.inc (nan_value): Rename to qnan_value.
27644         * math/gen-libm-test.pl (%beautify): Adjust to that.
27645         * math/bits/mathcalls.h (nan): Refer to qNaN instead of NaN.
27646         * math/test-misc.c (main): Likewise.
27647         * sysdeps/ieee754/bits/nan.h (__nan_bytes, __nan_union): Rename
27648         to __qnan_bytes, and __qnan_union, respectively.
27649         * ports/sysdeps/mips/bits/nan.h (__nan_bytes, __nan_union):
27650         Likewise.
27651         * stdio-common/tstdiomisc.c (nanval, lnanval): Rename to qnanval,
27652         and lqnanval, respectively.
27653         * sysdeps/powerpc/bits/fenv.h: Fix usage of NaN/qNaN/sNaN.
27654         * sysdeps/powerpc/fpu/fenv_libc.h: Likewise.
27655         * sysdeps/powerpc/fpu/test-powerpc-snan.c (TEST_FUNC): Likewise,
27656         and rename NaN_var to qNaN_var, and SNaN_var to sNaN_var.
27657
27658         * math/libm-test.inc (fpstack_test) [__x86_64__]: Enable test.
27659         * math/test-misc.c (main) [__x86_64__]: Enable test for long
27660         doubles.
27661
27662         * math/test-misc.c (main): Fix copy'n'pastos.
27663         * misc/tst-efgcvt.c (special): Likewise.
27664
27665         * stdio-common/printf_fp.c (__isinfl_internal, __isnanl_internal):
27666         Remove declarations.
27667
27668 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27669
27670         * sysdeps/ieee754/dbl-64/mpa-arch.h: Remove.
27671         * sysdeps/ieee754/dbl-64/mpa.c: Revert last change.
27672         * sysdeps/ieee754/dbl-64/mpa.h: Revert last change.
27673         * sysdeps/powerpc/power4/fpu/mpa-arch.h: Remove.
27674
27675 2013-03-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27676
27677         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET): Add
27678         macro to return vdso values correctly in IFUNC implementations.
27679         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c (__gettimeofday):
27680         Optimization by using IFUNC.
27681
27682 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27683             Richard Henderson  <rth@redhat.com>
27684             Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
27685
27686         * Makefile.in (bench): New target.
27687         * NEWS: Mention the benchmark framework.
27688         * Rules (bench): Likewise.
27689         (binaries-bench): Generate binaries for functions to
27690         benchmark.
27691         * benchtests/Makefile: New makefile for benchmark tests.
27692         * benchtests/bench-skeleton.c: New skeleton file for benchmark
27693         programs.
27694         * benchtests/exp-inputs: New input file for EXP function.
27695         * benchtests/pow-inputs: New input file for POW function.
27696         * scripts/bench.pl: New script to generate source files for
27697         benchmark programs.
27698
27699 2013-03-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
27700
27701         * sysdeps/ieee754/dbl-64/mpa-arch.h: New file.
27702         * sysdeps/ieee754/dbl-64/mpa.c (norm): Use MANTISSA_T to store
27703         computations on mantissa.  Use macros for rounding and
27704         division.
27705         (denorm): Likewise.
27706         (__dbl_mp): Likewise.
27707         (add_magnitudes): Likewise.
27708         (sub_magnitudes): Likewise.
27709         (__mul): Likewise.
27710         (__sqr): Likewise.
27711         * sysdeps/ieee754/dbl-64/mpa.h: Include mpa-arch.h.  Define
27712         powers of two in terms of TWOPOW macro.
27713         (mp_no): Make type of mantissa as MANTISSA_T.
27714         [!RADIXI]: Define RADIXI.
27715         [!TWO52]: Define TWO52.
27716         * sysdeps/powerpc/power4/fpu/mpa-arch.h: New file.
27717
27718         * manual/nptl.texi (cindex): Modify threads to pthreads.
27719
27720 2013-03-15  Joseph Myers  <joseph@codesourcery.com>
27721
27722         * sysdeps/x86_64/preconfigure: Regenerated.
27723
27724 2013-03-14  Joseph Myers  <joseph@codesourcery.com>
27725
27726         [BZ #14155]
27727         * sysdeps/ieee754/dbl-64/e_j0.c (pzero): Return 1.0 for arguments
27728         0x1p28 and above.
27729         (qzero): Return -0.125 / x for arguments 0x1p28 and above.
27730         * sysdeps/ieee754/dbl-64/e_j1.c (pzero): Return 1.0 for arguments
27731         0x1p28 and above.
27732         (qzero): Return 0.375 / x for arguments 0x1p28 and above.
27733         * math/libm-test.inc (j0_test): Do not allow one spurious
27734         underflow exception.
27735         (y1_test): Likewise.
27736
27737 2013-03-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
27738
27739         * manual/Makefile (chapters): Add nptl.
27740         * manual/debug.texi (Debugging Support): Add link to Threads
27741         chapter.
27742         * manual/nptl.texi: New file.
27743
27744         * sysdeps/unix/sysv/linux/times.c (__times): Fix formatting.
27745
27746 2013-03-14  Petr Baudis  <pasky@ucw.cz>
27747
27748         * sysdeps/unix/sysv/linux/times.c (__times): On EFAULT, test
27749         for non-NULL pointer before the memory validity test. Pointed
27750         out by Holger Brunck <holger.brunck@keymile.com>.
27751
27752 2013-03-13  Andreas Schwab  <schwab@suse.de>
27753
27754         * extra-lib.mk (extra-objs): Add static-only-routines as .oS
27755         instead of .os.
27756
27757 2013-03-13  Joseph Myers  <joseph@codesourcery.com>
27758
27759         * timezone/zic.c: Update from tzcode 2013b.
27760
27761 2013-03-12  Carlos O'Donell  <carlos@redhat.com>
27762
27763         * manual/install.texi (Configuring and compiling):
27764         Mention i686 and i586.
27765         * INSTALL: Regenerate.
27766
27767 2013-03-12  Roland McGrath  <roland@hack.frob.com>
27768
27769         * sysdeps/init_array/elf-init.c: New file.
27770         * csu/elf-init.c
27771         (__libc_csu_init) [!NO_INITFINI]: Conditionalize _init call on this.
27772         (__libc_csu_fini) [!NO_INITFINI]: Conditionalize _fini call on this.
27773
27774         * csu/gmon-start.c [GMON_START_ARRAY_SECTION]: Don't define
27775         __gmon_start__ as global, but as static with a .preinit_array pointer.
27776         * sysdeps/init_array/gmon-start.c: New file.  Use that.
27777         * sysdeps/init_array/crti.S: New file, empty except for comments.
27778         * sysdeps/init_array/crtn.S: Likewise.
27779
27780 2013-03-11  Ondřej Bílka  <neleai@seznam.cz>
27781
27782         * sysdeps/x86_64/memset.S: Remove USE_MULTIARCH conditional for
27783         definining bcopy.
27784         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
27785         Remove Prefer_SSE_for_memop.
27786         * sysdeps/x86_64/multiarch/init-arch.h: Remove
27787         bit_Prefer_SSE_for_memop, index_Prefer_SSE_for_memop,
27788         HAS_PREFER_SSE_FOR_MEMOP.
27789         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Remove
27790         memset-x86-64.
27791         * sysdeps/x86_64/multiarch/ifunc-impl-list.c (__libc_ifunc_impl_list):
27792         Remove bzero, memset ifunc support.
27793         * sysdeps/x86_64/multiarch/bzero.S: Remove file.
27794         * sysdeps/x86_64/multiarch/memset-x86-64.S: Likewise.
27795         * sysdeps/x86_64/multiarch/memset.S: Likewise.
27796         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
27797
27798 2013-03-11  Andreas Schwab  <schwab@suse.de>
27799
27800         [BZ #15234]
27801         * Versions.def (libpthread): Add GLIBC_2.3, so that it can be used
27802         by SHLIB_COMPAT.
27803         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist
27804         (GLIBC_2.16): Remove pthread_atfork.
27805
27806 2013-03-08  Paul Pluzhnikov  <ppluzhnikov@google.com>
27807
27808         * posix/Makefile (testcases.h): Set LC_ALL=C before sed.
27809         (ptestcases.h): Likewise.
27810
27811 2013-03-08  Roland McGrath  <roland@hack.frob.com>
27812
27813         * Makeconfig ($(common-objpfx)config.status): Depend on
27814         sysdeps/*/preconfigure{,.in} too.
27815
27816 2013-03-08  Joseph Myers  <joseph@codesourcery.com>
27817
27818         * malloc/malloc.h (__malloc_ptr_t): Remove macro.
27819         (__free_hook): Use void * instead of __malloc_ptr_t.
27820         (__malloc_hook): Likewise.
27821         (__realloc_hook): Likewise.
27822         (__memalign_hook): Likewise.
27823         (__after_morecore_hook): Likewise.
27824         * malloc/arena.c (save_malloc_hook): Likewise.
27825         (save_free_hook): Likewise.
27826         * malloc/hooks.c (malloc_hook_ini): Likewise.
27827         (realloc_hook_ini): Likewise.
27828         (memalign_hook_ini): Likewise.
27829         * malloc/malloc.c (malloc_hook_ini): Likewise.
27830         (realloc_hook_ini): Likewise.
27831         (memalign_hook_ini): Likewise.
27832         (__free_hook): Likewise.
27833         (__malloc_hook): Likewise.
27834         (__realloc_hook): Likewise.
27835         (__memalign_hook): Likewise.
27836         (__libc_malloc): Likewise.
27837         (__libc_free): Likewise.
27838         (__libc_realloc): Likewise.
27839         (__libc_memalign): Likewise.
27840         (__libc_valloc): Likewise.
27841         (__libc_pvalloc): Likewise.
27842         (__libc_calloc): Likewise.
27843         (__posix_memalign): Likewise.
27844         * malloc/morecore.c (__sbrk): Likewise.
27845         (__default_morecore): Likewise.
27846
27847         * malloc/morecore.c (__default_morecore): Use ISO C prototype.
27848
27849         * malloc/malloc.h (__malloc_ptrdiff_t): Remove macro.
27850         * malloc/morecore.c (__default_morecore): Use ptrdiff_t instead of
27851         __malloc_ptrdiff_t.
27852
27853         * malloc/malloc.h (__malloc_size_t): Remove macro.
27854         * malloc/mcheck.c (old_malloc_hook): Use size_t instead of
27855         __malloc_size_t.
27856         (old_memalign_hook): Likewise.
27857         (old_realloc_hook): Likewise.
27858         (struct hdr): Likewise.
27859         (flood): Likewise.
27860         (mallochook): Likewise.
27861         (memalignhook): Likewise.
27862         (reallochook): Likewise.
27863         * malloc/mtrace.c (tr_old_malloc_hook): Likewise.
27864         (tr_old_realloc_hook): Likewise.
27865         (tr_old_memalign_hook): Likewise.
27866         (tr_mallochook): Likewise.
27867         (tr_reallochook): Likewise.
27868         (tr_memalignhook): Likewise.
27869
27870 2013-03-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
27871
27872         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_pack): Rename to
27873         default_ldbl_pack and using as default implementation.
27874         (ldbl_unpack): Rename to default_ldbl_unpack and using as default
27875         implementation.
27876         * sysdeps/powerpc/fpu/math_ldbl.h (ldbl_extract_mantissa): Remove
27877         redundant definition.
27878         (ldbl_insert_mantissa): Likewise.
27879         (ldbl_canonicalize): Likewise.
27880         (ldbl_nearbyint): Likewise.
27881         (ldbl_pack): Rename to ldbl_pack_ppc.
27882         (ldbl_unpack): Rename to ldbl_unpack_ppc.
27883         * sysdeps/unix/sysv/linux/powerpc/Implies: Remove file.
27884         * sysdeps/powerpc/Implies: Add ieee754/ldbl-opt after ieee754/ldbl-128ibm.
27885
27886 2013-03-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
27887
27888         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Move file...
27889         * sysdeps/powerpc/power4/fpu/mpa.c: ... here.
27890         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile: Move file...
27891         * sysdeps/powerpc/power4/fpu/Makefile: ... here.
27892         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Remove file.
27893         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile: Remove file.
27894         * sysdeps/powerpc/powerpc32/power4/Implies: New file.
27895         * sysdeps/powerpc/powerpc64/power4/Implies: New file.
27896
27897 2013-03-07  Andreas Jaeger  <aj@suse.de>
27898
27899         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
27900         bits/mman-linux.h.
27901
27902 2013-03-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
27903
27904         * sysdeps/ieee754/dbl-64/slowexp.c [!USE_LONG_DOUBLE_FOR_MP]:
27905         Include mpa.h and declare __MPEXP.
27906         [USE_LONG_DOUBLE_FOR_MP] (__slowexp): Call __IEEE754_EXPL.
27907         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
27908         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
27909         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Remove.
27910         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
27911         (CPPFLAGS-slowexp.c): Define USE_LONG_DOUBLE_FOR_MP.
27912         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Remove.
27913
27914         * sysdeps/ieee754/dbl-64/slowpow.c [USE_LONG_DOUBLE_FOR_MP]
27915         (__slowpow): Use long double EXPL and LOGL functions to
27916         compute POW.
27917         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile
27918         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
27919         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Remove.
27920         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile
27921         (CPPFLAGS-slowpow.c): Define USE_LONG_DOUBLE_FOR_MP.
27922         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Remove.
27923
27924         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Use
27925         intermediate variable to calculate exponent.
27926         (__sqr): Likewise.
27927         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
27928         Likewise.
27929         (__sqr): Likewise.
27930
27931         * sysdeps/ieee754/dbl-64/mpa.c [!NO__MUL]: Define __mul.
27932         [!NO__SQR]: Define __sqr.
27933         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: define NO__MUL
27934         and NO__SQR.  Remove all code except __mul and __sqr.  Include
27935         sysdeps/ieee754/dbl-64/mpa.c.
27936         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
27937
27938         [BZ #12723]
27939         * posix/Makefile (tests): Add tst-pathconf.
27940         * posix/tst-pathconf.c: New test case.
27941         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Remove
27942         _PC_PIPE_BUF.
27943         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Likewise.
27944
27945 2013-03-06  Patsy Franklin  <pfrankli@redhat.com>
27946
27947         * io/fcntl.h: Added a comment about AT_EACCESS and AT_REMOVEDIR.
27948
27949 2013-03-06  Andreas Jaeger  <aj@suse.de>
27950
27951         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_ANONYMOUS): Allow
27952         definition via __MAP_ANONYMOUS.
27953
27954         * sysdeps/unix/sysv/linux/s390/bits/mman.h (MAP_GROWSUP): Remove,
27955         it's not part of Linux headers.
27956
27957         * sysdeps/unix/sysv/linux/bits/mman-linux.h (MAP_HUGE_SHIFT): Define.
27958         (MAP_HUGE_MASK): Define.
27959
27960         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27961         Define.
27962         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27963         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27964         Define.
27965         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27966         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_O_EXIT_KILL):
27967         Define.
27968         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27969         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_O_EXITKILL):
27970         Define.
27971         (PTRACE_O_MASK): Adjust for PTRACE_O_EXITKILL.
27972
27973         * sysdeps/unix/sysv/linux/x86/bits/msq.h (MSG_COPY): Likewise.
27974         * sysdeps/unix/sysv/linux/generic/bits/msq.h (MSG_COPY): Define.
27975         * sysdeps/unix/sysv/linux/powerpc/bits/msq.h (MSG_COPY): Likewise.
27976         * sysdeps/unix/sysv/linux/bits/msq.h (MSG_COPY): Likewise.
27977         * sysdeps/unix/sysv/linux/s390/bits/msq.h (MSG_COPY): Likewise.
27978         * sysdeps/unix/sysv/linux/sparc/bits/msq.h (MSG_COPY): Define.
27979
27980         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
27981         Handle f2fs.
27982
27983         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
27984         Handle f2fs and efivarfs.
27985
27986         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Handle
27987         f2fs.
27988
27989         * sysdeps/unix/sysv/linux/linux_fsinfo.h (F2FS_SUPER_MAGIC): Add.
27990         (EFIVARFS_MAGIC): Add.
27991         (F2FS_LINK_MAX): Add.
27992
27993 2013-03-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
27994
27995         * stdio-common/vfprintf.c: Replace __builtin_expect with
27996         __glibc_unlikely.
27997
27998 2013-03-06  Joseph Myers  <joseph@codesourcery.com>
27999
28000         [BZ #13550]
28001         * sysdeps/generic/bp-sym.h: Remove file.
28002         * sysdeps/powerpc/powerpc64/bp-asm.h: Likewise.
28003         * sysdeps/powerpc/powerpc64/__longjmp-common.S: Don't include
28004         <bp-sym.h> and <bp-asm.h>.
28005         (__longjmp): Don't use BP_SYM.
28006         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Don't include <bp-sym.h>
28007         and <bp-asm.h>.
28008         (memcpy): Don't use BP_SYM.
28009         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Don't include
28010         <bp-sym.h> and <bp-asm.h>.
28011         (memcpy): Don't use BP_SYM.
28012         * sysdeps/powerpc/powerpc64/memcpy.S: Don't include <bp-sym.h> and
28013         <bp-asm.h>.
28014         (memcpy): Don't use BP_SYM.
28015         * sysdeps/powerpc/powerpc64/memset.S: Don't include <bp-sym.h> and
28016         <bp-asm.h>.
28017         (memset): Don't use BP_SYM.
28018         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28019         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28020         (__bzero): Don't use BP_SYM.
28021         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28022         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28023         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Don't include
28024         <bp-sym.h> and <bp-asm.h>.
28025         (memcmp): Don't use BP_SYM.  Remove comment about bounded
28026         pointers.
28027         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Don't include
28028         <bp-sym.h> and <bp-asm.h>.
28029         (memcpy): Don't use BP_SYM.
28030         * sysdeps/powerpc/powerpc64/power4/memset.S: Don't include
28031         <bp-sym.h> and <bp-asm.h>.
28032         (memset): Don't use BP_SYM.
28033         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28034         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28035         (__bzero): Don't use BP_SYM.
28036         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28037         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28038         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Don't include
28039         <bp-sym.h> and <bp-asm.h>.
28040         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28041         pointers.
28042         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Don't include
28043         <bp-sym.h> and <bp-asm.h>.
28044         (memcpy): Don't use BP_SYM.
28045         * sysdeps/powerpc/powerpc64/power6/memset.S: Don't include
28046         <bp-sym.h> and <bp-asm.h>.
28047         (memset): Don't use BP_SYM.
28048         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28049         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28050         (__bzero): Don't use BP_SYM.
28051         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28052         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28053         * sysdeps/powerpc/powerpc64/power7/memchr.S: Don't include
28054         <bp-sym.h> and <bp-asm.h>.
28055         (__memchr): Don't use BP_SYM.
28056         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Don't include
28057         <bp-sym.h> and <bp-asm.h>.
28058         (memcmp): Don't use BP_SYM.  Remove comment about bounded
28059         pointers.
28060         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Don't include
28061         <bp-sym.h> and <bp-asm.h>.
28062         (memcpy): Don't use BP_SYM.
28063         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: Don't include
28064         <bp-sym.h> and <bp-asm.h>.
28065         (__mempcpy): Don't use BP_SYM.
28066         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Don't include
28067         <bp-sym.h> and <bp-asm.h>.
28068         (__memrchr): Don't use BP_SYM.
28069         * sysdeps/powerpc/powerpc64/power7/memset.S: Don't include
28070         <bp-sym.h> and <bp-asm.h>.
28071         (memset): Don't use BP_SYM.
28072         (__bzero): Likewise.
28073         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: Don't include
28074         <bp-sym.h> and <bp-asm.h>.
28075         (__rawmemchr): Don't use BP_SYM.
28076         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Don't include
28077         <bp-sym.h> and <bp-asm.h>.
28078         (__STRCMP): Don't use BP_SYM.
28079         * sysdeps/powerpc/powerpc64/power7/strchr.S: Don't include
28080         <bp-sym.h> and <bp-asm.h>.
28081         (strchr): Don't use BP_SYM.
28082         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: Don't include
28083         <bp-sym.h> and <bp-asm.h>.
28084         (__strchrnul): Don't use BP_SYM.
28085         * sysdeps/powerpc/powerpc64/power7/strlen.S: Don't include
28086         <bp-sym.h> and <bp-asm.h>.
28087         (strlen): Don't use BP_SYM.
28088         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Don't include
28089         <bp-sym.h> and <bp-asm.h>.
28090         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28091         pointers.
28092         * sysdeps/powerpc/powerpc64/power7/strnlen.S: Don't include
28093         <bp-sym.h> and <bp-asm.h>.
28094         (__strnlen): Don't use BP_SYM.
28095         * sysdeps/powerpc/powerpc64/setjmp-common.S: Don't include
28096         <bp-sym.h> and <bp-asm.h>.
28097         (__GI__setjmp): Don't use BP_SYM.
28098         (_setjmp): Likewise.
28099         (__sigsetjmp): Likewise.
28100         * sysdeps/powerpc/powerpc64/start.S: Don't include "bp-sym.h".
28101         (L(start_addresses)): Don't use BP_SYM.
28102         (_start): Likewise.
28103         * sysdeps/powerpc/powerpc64/stpcpy.S: Don't include <bp-sym.h> and
28104         <bp-asm.h>.
28105         (__stpcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW,
28106         STORE_RETURN_BOUNDS, CHECK_BOUNDS_HIGH and STORE_RETURN_VALUE.
28107         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28108         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28109         * sysdeps/powerpc/powerpc64/strchr.S: Don't include <bp-sym.h> and
28110         <bp-asm.h>.
28111         (strchr): Don't use BP_SYM, CHECK_BOUNDS_LOW, STORE_RETURN_BOUNDS,
28112         CHECK_BOUNDS_HIGH_RTN and STORE_RETURN_VALUE.  Remove comment
28113         about bounded pointers.
28114         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
28115         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
28116         * sysdeps/powerpc/powerpc64/strcmp.S: Don't include <bp-sym.h> and
28117         <bp-asm.h>.
28118         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
28119         about bounded pointers.  Remove GKM FIXME comments.
28120         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
28121         * sysdeps/powerpc/powerpc64/strcpy.S: Don't include <bp-sym.h> and
28122         <bp-asm.h>.
28123         (strcpy): Don't use BP_SYM, CHECK_BOUNDS_LOW and
28124         STORE_RETURN_BOUNDS.  Remove comment about bounded pointers.
28125         Remove GKM FIXME comments.
28126         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28127         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28128         * sysdeps/powerpc/powerpc64/strlen.S: Don't include <bp-sym.h> and
28129         <bp-asm.h>.
28130         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove comment
28131         about bounded pointers.  Remove GKM FIXME comment.
28132         * sysdeps/powerpc/powerpc64/strncmp.S: Don't include <bp-sym.h>
28133         and <bp-asm.h>.
28134         (strncmp): Don't use BP_SYM.  Remove comment about bounded
28135         pointers.
28136         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S: Don't include
28137         <bp-sym.h> and <bp-asm.h>.
28138         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
28139         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S: Don't include
28140         <bp-sym.h> and <bp-asm.h>.
28141         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
28142         comment.
28143
28144 2013-03-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
28145
28146         * stdio-common/vfprintf.c (vfprintf): Check malloc return; don't
28147         call free(NULL).
28148
28149 2013-03-05  David S. Miller  <davem@davemloft.net>
28150
28151         * po/es.po: Update from translation team.
28152
28153 2013-03-05  Andreas Jaeger  <aj@suse.de>
28154
28155         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Include
28156         <bits/mman-linux.h>.
28157         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28158         is fine.
28159         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Move include of
28160         <bits/mman-linux.h> to end of file.
28161         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28162         is fine.
28163         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Move include of
28164         <bits/mman-linux.h> to end of file.
28165         (MCL_CURRENT, MCL_FUTURE): Do not define here, the generic value
28166         is fine.
28167         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Move include of
28168         <bits/mman-linux.h> to end of file.
28169
28170         * sysdeps/unix/sysv/linux/bits/mman-linux.h [!MCL_CURRENT]
28171         (MCL_CURRENT, MCL_FUTURE): Define here.
28172
28173 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28174
28175         [BZ #15232]
28176         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Use
28177         attribute_hidden.
28178         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
28179
28180 2013-03-05  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28181
28182         * sysdeps/unix/sysv/linux/s390/s390-32/getcontext.S: Set the
28183         fourth parameter needed for rt_sigprocmask syscall.
28184         * sysdeps/unix/sysv/linux/s390/s390-32/setcontext.S:
28185         * sysdeps/unix/sysv/linux/s390/s390-32/swapcontext.S: Likewise.
28186         * sysdeps/unix/sysv/linux/s390/s390-64/getcontext.S: Likewise.
28187         * sysdeps/unix/sysv/linux/s390/s390-64/setcontext.S: Likewise.
28188         * sysdeps/unix/sysv/linux/s390/s390-64/swapcontext.S: Likewise.
28189         * sysdeps/unix/sysv/linux/s390/ucontext_i.sym: Define _NSIG8.
28190
28191 2013-03-04  Joseph Myers  <joseph@codesourcery.com>
28192
28193         [BZ #13550]
28194         * sysdeps/powerpc/powerpc32/power4/strncmp.S (strncmp): Remove
28195         comment about bounded pointers.
28196         * sysdeps/powerpc/powerpc32/power7/strncmp.S (strncmp): Likewise.
28197         * sysdeps/powerpc/powerpc32/strncmp.S (strncmp): Likewise.
28198
28199 2013-03-04  Andreas Jaeger  <aj@suse.de>
28200
28201         * sysdeps/unix/sysv/linux/bits/mman-linux.h: New file, with Linux
28202         common definitions.
28203
28204         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Remove all defines
28205         provided by bits/mman-linux.h and include <bits/mman-linux.h>.
28206         * sysdeps/unix/sysv/linux/x86/bits/mman.h: Likewise.
28207         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
28208         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
28209         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
28210
28211 2013-03-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
28212
28213         [BZ #15055]
28214         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c (__ieee754_acoshl): Use
28215         __ieee754_sqrl instead of __sqrl.
28216
28217 2013-03-01  Joseph Myers  <joseph@codesourcery.com>
28218
28219         * sysdeps/powerpc/fpu/fpu_control.h: Move to ...
28220         * sysdeps/powerpc/fpu_control.h: ... here.
28221         * sysdeps/powerpc/fpu/bits/fenvinline.h: Move to ...
28222         * sysdeps/powerpc/bits/fenvinline.h: ... here.
28223         * sysdeps/powerpc/fpu/bits/mathinline.h: Move to ...
28224         * sysdeps/powerpc/bits/mathinline.h: ... here.
28225
28226 2013-03-01  Roland McGrath  <roland@hack.frob.com>
28227
28228         * elf/dl-hwcaps.c (_dl_important_hwcaps):
28229         Change [NEED_DL_SYSINFO || NEED_DL_SYSINFO_DSO] conditionals
28230         to just [NEED_DL_SYSINFO_DSO].
28231         * elf/dl-support.c: Likewise.
28232         * elf/dl-sysdep.c (_dl_sysdep_start): Likewise.
28233         * elf/rtld.c (dl_main): Likewise.
28234         * elf/setup-vdso.h (setup_vdso): Likewise.
28235         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Likewise.
28236         * sysdeps/unix/sysv/linux/dl-sysdep.c
28237         (_dl_discover_osversion): Likewise.
28238
28239 2013-03-01  Carlos O'Donell  <carlos@redhat.com>
28240
28241         * csu/libc-start.c (__pthread_initialize_minimal): Revert last change.
28242         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
28243
28244 2013-03-01  Siddhesh Poyarekar  <siddhesh@redhat.com>
28245
28246         * NEWS: Mention libm performance improvements and non-x86 PI
28247         futex support.
28248
28249         * csu/libc-start.c (__pthread_initialize_minimal): Change
28250         function arguments.
28251         * csu/libc-tls.c (__pthread_initialize_minimal): Likewise.
28252
28253 2013-02-28  Joseph Myers  <joseph@codesourcery.com>
28254
28255         [BZ #13550]
28256         * sysdeps/powerpc/powerpc32/bp-asm.h: Remove file.
28257         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Don't include
28258         <bp-sym.h> and <bp-asm.h>.
28259         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28260         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Don't include <bp-sym.h>
28261         and <bp-asm.h>.
28262         (memcpy): Don't use BP_SYM.
28263         * sysdeps/powerpc/powerpc32/add_n.S: Don't include <bp-sym.h> and
28264         <bp-asm.h>.
28265         (__mpn_add_n): Don't use BP_SYM.
28266         (__mpn_add_n) [__BOUNDED_POINTERS_]: Remove conditional code.
28267         * sysdeps/powerpc/powerpc32/addmul_1.S: Don't include <bp-sym.h>
28268         and <bp-asm.h>.
28269         (__mpn_addmul_1): Don't use BP_SYM.
28270         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28271         * sysdeps/powerpc/powerpc32/bsd-_setjmp.S: Don't include
28272         <bp-sym.h>.
28273         (_setjmp): Don't use BP_SYM.
28274         (__novmx_setjmp): Likewise.
28275         (__GI__setjmp): Likewise.
28276         (__vmx_setjmp): Likewise.
28277         * sysdeps/powerpc/powerpc32/bsd-setjmp.S: Don't include
28278         <bp-sym.h>.
28279         * sysdeps/powerpc/powerpc32/bzero.S: Don't include <bp-sym.h>.
28280         (__bzero): Don't use BP_SYM.
28281         (__bzero) [__BOUNDED_POINTERS__]: Remove conditional code.
28282         (__bzero) [!__BOUNDED_POINTERS__]: Make code unconditional.
28283         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Don't include
28284         <bp-sym.h> and <bp-asm.h>.
28285         (memcpy): Don't use BP_SYM.
28286         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S: Don't include
28287         <bp-sym.h> and <bp-asm.h>.
28288         (__longjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28289         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S: Don't include
28290         <bp-sym.h> and <bp-asm.h>.
28291         (__sigsetjmp): Don't use BP_SYM and CHECK_BOUNDS_BOTH_WIDE_LIT.
28292         * sysdeps/powerpc/powerpc32/lshift.S: Don't include <bp-sym.h> and
28293         <bp-asm.h>.
28294         (__mpn_lshift): Don't use BP_SYM.
28295         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
28296         * sysdeps/powerpc/powerpc32/memset.S: Don't include <bp-sym.h> and
28297         <bp-asm.h>.
28298         (memset): Don't use BP_SYM.
28299         (memset) [__BOUNDED_POINTERS__]: Remove conditional code.
28300         (memset) [!__BOUNDED_POINTERS__]: Make code unconditional.
28301         * sysdeps/powerpc/powerpc32/mul_1.S: Don't include <bp-sym.h> and
28302         <bp-asm.h>.
28303         (__mpn_mul_1): Don't use BP_SYM.
28304         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28305         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Don't include
28306         <bp-sym.h> and <bp-asm.h>.
28307         (memcmp): Don't use BP_SYM.
28308         * sysdeps/powerpc/powerpc32/power4/memcpy.S: Don't include
28309         <bp-sym.h> and <bp-asm.h>.
28310         (memcpy): Don't use BP_SYM.
28311         * sysdeps/powerpc/powerpc32/power4/memset.S: Don't include
28312         <bp-sym.h> and <bp-asm.h>.
28313         (memset): Don't use BP_SYM.
28314         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't include
28315         <bp-sym.h> and <bp-asm.h>.
28316         (strncmp): Don't use BP_SYM.
28317         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Don't include
28318         <bp-sym.h> and <bp-asm.h>.
28319         (memcpy): Don't use BP_SYM.
28320         * sysdeps/powerpc/powerpc32/power6/memset.S: Don't include
28321         <bp-sym.h> and <bp-asm.h>.
28322         (memset): Don't use BP_SYM.
28323         * sysdeps/powerpc/powerpc32/power7/memchr.S: Don't include
28324         <bp-sym.h> and <bp-asm.h>.
28325         (__memchr): Don't use BP_SYM.
28326         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Don't include
28327         <bp-sym.h> and <bp-asm.h>.
28328         (memcmp): Don't use BP_SYM.
28329         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Don't include
28330         <bp-sym.h> and <bp-asm.h>.
28331         (memcpy): Don't use BP_SYM.
28332         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: Don't include
28333         <bp-sym.h> and <bp-asm.h>.
28334         (__mempcpy): Don't use BP_SYM.
28335         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Don't include
28336         <bp-sym.h> and <bp-asm.h>.
28337         (__memrchr): Don't use BP_SYM.
28338         * sysdeps/powerpc/powerpc32/power7/memset.S: Don't include
28339         <bp-sym.h> and <bp-asm.h>.
28340         (memset): Don't use BP_SYM.
28341         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: Don't include
28342         <bp-sym.h> and <bp-asm.h>.
28343         (__rawmemchr): Don't use BP_SYM.
28344         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Don't include
28345         <bp-sym.h> and <bp-asm.h>.
28346         (__STRCMP): Don't use BP_SYM.
28347         * sysdeps/powerpc/powerpc32/power7/strchr.S: Don't include
28348         <bp-sym.h> and <bp-asm.h>.
28349         (strchr): Don't use BP_SYM.
28350         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: Don't include
28351         <bp-sym.h> and <bp-asm.h>.
28352         (__strchrnul): Don't use BP_SYM.
28353         * sysdeps/powerpc/powerpc32/power7/strlen.S: Don't include
28354         <bp-sym.h> and <bp-asm.h>.
28355         (strlen): Don't use BP_SYM.
28356         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Don't include
28357         <bp-sym.h> and <bp-asm.h>.
28358         (strncmp): Don't use BP_SYM.
28359         * sysdeps/powerpc/powerpc32/power7/strnlen.S: Don't include
28360         <bp-sym.h> and <bp-asm.h>.
28361         (__strnlen): Don't use BP_SYM.
28362         * sysdeps/powerpc/powerpc32/rshift.S: Don't include <bp-sym.h> and
28363         <bp-asm.h>.
28364         (__mpn_rshift): Don't use BP_SYM.
28365         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
28366         * sysdeps/powerpc/powerpc32/setjmp-common.S: Don't include
28367         <bp-sym.h> and <bp-asm.h>.
28368         (__sigsetjmp): Don't use BP_SYM.
28369         * sysdeps/powerpc/powerpc32/start.S: Don't include "bp-sym.h".
28370         (L(start_addresses)): Don't use BP_SYM.
28371         (_start): Likewise.
28372         * sysdeps/powerpc/powerpc32/stpcpy.S: Don't include <bp-sym.h> and
28373         <bp-asm.h>.
28374         (__stpcpy): Don't use BP_SYM and macros from bp-asm.h.
28375         (__stpcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28376         (__stpcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28377         * sysdeps/powerpc/powerpc32/strchr.S: Don't include <bp-sym.h> and
28378         <bp-asm.h>.
28379         (strchr): Don't use BP_SYM.h and macros from bp-asm.h.
28380         (strchr) [__BOUNDED_POINTERS__]: Remove conditional code.
28381         (strchr) [!__BOUNDED_POINTERS__]: Make code unconditional.
28382         * sysdeps/powerpc/powerpc32/strcmp.S: Don't include <bp-sym.h> and
28383         <bp-asm.h>.
28384         (strcmp): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
28385         comments.
28386         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
28387         * sysdeps/powerpc/powerpc32/strcpy.S: Don't include <bp-sym.h> and
28388         <bp-asm.h>.
28389         (strcpy): Don't use BP_SYM and macros from bp-asm.h.  Remove GKM
28390         FIXME comments.
28391         (strcpy) [__BOUNDED_POINTERS__]: Remove conditional code.
28392         (strcpy) [!__BOUNDED_POINTERS__]: Make code unconditional.
28393         * sysdeps/powerpc/powerpc32/strlen.S: Don't include <bp-sym.h> and
28394         <bp-asm.h>.
28395         (strlen): Don't use BP_SYM and CHECK_BOUNDS_LOW.  Remove GKM FIXME
28396         comment.
28397         * sysdeps/powerpc/powerpc32/strncmp.S: Don't include <bp-sym.h>
28398         and <bp-asm.h>.
28399         (strncmp): Don't use BP_SYM,
28400         * sysdeps/powerpc/powerpc32/sub_n.S: Don't include <bp-sym.h> and
28401         <bp-asm.h>.
28402         (__mpn_sub_n): Don't use BP_SYM.
28403         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
28404         * sysdeps/powerpc/powerpc32/submul_1.S: Don't include <bp-sym.h>
28405         and <bp-asm.h>.
28406         (__mpn_submul_1): Don't use BP_SYM.
28407         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28408         * sysdeps/unix/sysv/linux/powerpc/powerpc32/brk.S: Don't include
28409         <bp-sym.h> and <bp-asm.h>.
28410         (__brk): Don't use BP_SYM and DISCARD_BOUNDS.
28411         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S: Don't include
28412         <bp-sym.h> and <bp-asm.h>.
28413         (__clone): Don't use BP_SYM and DISCARD_BOUNDS.  Remove GKM FIXME
28414         comment.
28415
28416 2013-02-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
28417
28418         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (add_magnitudes):
28419         Use ZK to minimize writes to Z.
28420         (sub_magnitudes): Simplify code a bit.
28421         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (add_magnitudes):
28422         Use ZK to minimize writes to Z.
28423         (sub_magnitudes): Simplify code a bit.
28424
28425 2013-02-27  Roland McGrath  <roland@hack.frob.com>
28426
28427         * csu/gmon-start.c: Add special exception to license text.
28428
28429 2013-02-27  Richard Henderson  <rth@redhat.com>
28430
28431         * scripts/config.guess: Update from config.git.
28432         * scripts/config.sub: Likewise.
28433
28434 2013-02-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
28435
28436         * sysdeps/ieee754/dbl-64/mpsqrt.c: Reformat.
28437
28438         * sysdeps/ieee754/dbl-64/mpatan2.c: Reformat.
28439
28440         * sysdeps/ieee754/dbl-64/mpatan.c: Reformat.
28441
28442         * sysdeps/ieee754/dbl-64/mptan.c: Reformat.
28443
28444         * sysdeps/ieee754/dbl-64/mplog.c: Reformat.
28445
28446 2013-02-26  Roland McGrath  <roland@hack.frob.com>
28447
28448         * Makeconfig (%.v.i, %.v): Move these pattern rules outside of
28449         [$(build-shared = yes].
28450
28451 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
28452
28453         * sysdeps/ieee754/dbl-64/mpa.c: Include alloca.h.
28454         (__mul): Reduce iterations for calculating mantissa.
28455
28456         * sysdeps/ieee754/dbl-64/sincos32.c (__c32): Use MPONE and
28457         MPTWO.
28458         (__mpranred): Likewise.
28459
28460         [BZ #15160]
28461         * malloc/memusagestat.c (main): Draw graphs for heap and stack
28462         only if MAXSIZE_HEAP and MAXSIZE_STACK are non-zero.
28463
28464 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
28465
28466         * posix/regex_internal.h [__GNUC__ < 3 + (__GNUC_MINOR__ < 1]:
28467         Define __attribute__.
28468
28469 2013-02-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
28470
28471         * locale/elem-hash.h (elem_hash): Mark as pure and possibly
28472         unused.
28473         * posix/regex_internal.h (__attribute): Remove.
28474         [!_LIBC && __i386__]: Use __attribute__ instead of __attribute.
28475         (re_string_context_at): Likewise.
28476         (bitset_not): Use __attribute__ and mark function as possibly
28477         unused.
28478         (bitset_merge): Likewise.
28479         (bitset_mask): Likewise.
28480         (re_string_char_size_at): Likewise.
28481         (re_string_wchar_at): Likewise.
28482         (re_string_elem_size_at): Likewise.
28483
28484 2013-02-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
28485
28486         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Remove commented
28487         code.
28488         (cc32): Likewise.
28489
28490         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Use long instead of int.
28491         (__acr): Likewise.
28492         (__cpy): Likewise.
28493         (norm): Likewise.
28494         (denorm): Likewise.
28495         (__dbl_mp): Likewise.
28496         (add_magnitudes): Likewise.
28497         (sub_magnitudes): Likewise.
28498         (__mul): Likewise.
28499         (__inv): Likewise.
28500
28501         * sysdeps/ieee754/dbl-64/slowexp.c: Reformat in GNU coding
28502         style.
28503
28504         * sysdeps/ieee754/dbl-64/slowpow.c: Reformat in GNU coding
28505         style.
28506
28507         * sysdeps/ieee754/dbl-64/slowexp.c (__slowexp): Remove commented
28508         code.
28509
28510         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mp_dbl): Sync
28511         up changes with default code.
28512         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mp_dbl):
28513         Likewise.
28514
28515 2013-02-24  Allan McRae  <allan@archlinux.org>
28516
28517         * manual/socket.texi (The Internet Namespace): Order menu items
28518         to match that in the file.
28519
28520         * manual/libc-texinfo.sh: Use @detailmenu around the detailed
28521         node listing of the info page menu.
28522
28523 2013-02-21  Joseph Myers  <joseph@codesourcery.com>
28524
28525         [BZ #13550]
28526         * sysdeps/i386/bp-asm.h: Remove file.
28527         * sysdeps/i386/add_n.S: Do not include "bp-sym.h" and "bp-asm.h".
28528         (PARMS): Do not use macros from bp-asm.h.
28529         (S1): Likewise.
28530         (S2): Likewise.
28531         (SIZE): Likewise.
28532         (__mpn_add_n): Do not use BP_SYM
28533         * sysdeps/i386/addmul_1.S: Do not include "bp-sym.h" and
28534         "bp-asm.h".
28535         (PARMS): Do not use macros from bp-asm.h.
28536         (S1): Likewise.
28537         (SIZE): Likewise.
28538         (__mpn_addmul_1): Do not use BP_SYM
28539         * sysdeps/i386/bsd-_setjmp.S: Do not include "bp-sym.h" and
28540         "bp-asm.h".
28541         (PARMS): Do not use macros from bp-asm.h.
28542         (SIGMSK): Likewise.
28543         (_setjmp): Likewise.  Do not use BP_SYM.
28544         * sysdeps/i386/bsd-setjmp.S: Do not include "bp-sym.h" and
28545         "bp-asm.h".
28546         (PARMS): Do not use macros from bp-asm.h.
28547         (SIGMSK): Likewise.
28548         (setjmp): Likewise.  Do not use BP_SYM.
28549         * sysdeps/i386/fpu/s_frexp.S: Do not include "bp-sym.h" and
28550         "bp-asm.h".
28551         (PARMS): Do not use macros from bp-asm.h.
28552         (__frexp): Do not use BP_SYM.
28553         (frexp): Likewise.
28554         * sysdeps/i386/fpu/s_frexpf.S: Do not include "bp-sym.h" and
28555         "bp-asm.h".
28556         (PARMS): Do not use macros from bp-asm.h.
28557         (__frexpf): Do not use BP_SYM.
28558         (frexpf): Likewise.
28559         * sysdeps/i386/fpu/s_frexpl.S: Do not include "bp-sym.h" and
28560         "bp-asm.h".
28561         (PARMS): Do not use macros from bp-asm.h.
28562         (__frexpl): Do not use BP_SYM.
28563         (frexpl): Likewise.
28564         * sysdeps/i386/fpu/s_remquo.S: Do not include "bp-sym.h" and
28565         "bp-asm.h".
28566         (PARMS): Do not use macros from bp-asm.h.
28567         (__remquo): Do not use BP_SYM.
28568         (remquo): Likewise.
28569         * sysdeps/i386/fpu/s_remquof.S: Do not include "bp-sym.h" and
28570         "bp-asm.h".
28571         (PARMS): Do not use macros from bp-asm.h.
28572         (__remquof): Do not use BP_SYM.
28573         (remquof): Likewise.
28574         * sysdeps/i386/fpu/s_remquol.S: Do not include "bp-sym.h" and
28575         "bp-asm.h".
28576         (PARMS): Do not use macros from bp-asm.h.
28577         (__remquol): Do not use BP_SYM.
28578         (remquol): Likewise.
28579         * sysdeps/i386/i486/strcat.S: Do not include "bp-sym.h" and
28580         "bp-asm.h".
28581         (PARMS): Do not use macros from bp-asm.h.
28582         (DEST): Likewise.
28583         (SRC): Likewise.
28584         (strcat): Remove GKM FIXME comment.  Do not use BP_SYM.
28585         * sysdeps/i386/i486/strlen.S: Do not include "bp-sym.h" and
28586         "bp-asm.h".
28587         (PARMS): Do not use macros from bp-asm.h.
28588         (strlen): Do not use BP_SYM.
28589         * sysdeps/i386/i586/add_n.S: Do not include "bp-sym.h" and
28590         "bp-asm.h".
28591         (PARMS): Do not use macros from bp-asm.h.
28592         (S1): Likewise.
28593         (S2): Likewise.
28594         (SIZE): Likewise.
28595         (__mpn_add_n): Do not use BP_SYM.
28596         * sysdeps/i386/i586/addmul_1.S: Do not include "bp-sym.h" and
28597         "bp-asm.h".
28598         (PARMS): Do not use macros from bp-asm.h.
28599         (S1): Likewise.
28600         (SIZE): Likewise.
28601         (__mpn_addmul_1): Do not use BP_SYM.
28602         * sysdeps/i386/i586/bzero.S (__bzero): Do not use BP_SYM in
28603         weak_alias.
28604         (bzero): Likewise.
28605         * sysdeps/i386/i586/lshift.S: Do not include "bp-sym.h" and
28606         "bp-asm.h".
28607         (PARMS): Do not use macros from bp-asm.h.
28608         (S): Likewise.
28609         (SIZE): Likewise.
28610         (__mpn_lshift): Do not use BP_SYM.
28611         * sysdeps/i386/i586/memcpy.S: Do not include "bp-sym.h" and
28612         "bp-asm.h".
28613         (PARMS): Do not use macros from bp-asm.h.
28614         (DEST): Likewise.
28615         (SRC): Likewise.
28616         (LEN): Likewise.
28617         (memcpy): Likewise.  Do not use BP_SYM.
28618         * sysdeps/i386/i586/mempcpy.S (__mempcpy): Do not use BP_SYM in
28619         libc_hidden_def and weak_alias.
28620         (mempcpy): Do not use BP_SYM in weak_alias.
28621         * sysdeps/i386/i586/memset.S: Do not include "bp-sym.h" and
28622         "bp-asm.h".
28623         (PARMS): Do not use macros from bp-asm.h.
28624         (DEST): Likewise.
28625         (LEN): Likewise.
28626         [!BZERO_P] (CHR): Likewise.
28627         (memset): Likewise.  Do not use BP_SYM.
28628         * sysdeps/i386/i586/mul_1.S: Do not include "bp-sym.h" and
28629         "bp-asm.h".
28630         (PARMS): Do not use macros from bp-asm.h.
28631         (S1): Likewise.
28632         (SIZE): Likewise.
28633         (__mpn_mul_1): Do not use BP_SYM.
28634         * sysdeps/i386/i586/rshift.S: Do not include "bp-sym.h" and
28635         "bp-asm.h".
28636         (PARMS): Do not use macros from bp-asm.h.
28637         (S): Likewise.
28638         (SIZE): Likewise.
28639         (__mpn_rshift): Do not use BP_SYM.
28640         * sysdeps/i386/i586/strchr.S: Do not include "bp-sym.h" and
28641         "bp-asm.h".
28642         (PARMS): Do not use macros from bp-asm.h.
28643         (STR): Likewise.
28644         (CHR): Likewise.
28645         (strchr): Likewise.  Do not use BP_SYM.
28646         (index): Do not use BP_SYM in weak_alias.
28647         * sysdeps/i386/i586/strcpy.S: Do not include "bp-sym.h" and
28648         "bp-asm.h".
28649         (PARMS): Do not use macros from bp-asm.h.
28650         (DEST): Likewise.
28651         (SRC): Likewise.
28652         (STRCPY): Likewise.  Remove GKM FIXME comment.  Do not use BP_SYM.
28653         * sysdeps/i386/i586/strlen.S: Do not include "bp-sym.h" and
28654         "bp-asm.h".
28655         (PARMS): Do not use macros from bp-asm.h.
28656         (strlen): Do not use BP_SYM.
28657         * sysdeps/i386/i586/sub_n.S: Do not include "bp-sym.h" and
28658         "bp-asm.h".
28659         (PARMS): Do not use macros from bp-asm.h.
28660         (S1): Likewise.
28661         (S2): Likewise.
28662         (SIZE): Likewise.
28663         (__mpn_sub_n): Do not use BP_SYM.
28664         * sysdeps/i386/i586/submul_1.S: Do not include "bp-sym.h" and
28665         "bp-asm.h".
28666         (PARMS): Do not use macros from bp-asm.h.
28667         (S1): Likewise.
28668         (SIZE): Likewise.
28669         (__mpn_submul_1): Do not use BP_SYM.
28670         * sysdeps/i386/i686/add_n.S: Do not include "bp-sym.h" and
28671         "bp-asm.h".
28672         (PARMS): Do not use macros from bp-asm.h.
28673         (S1): Likewise.
28674         (S2): Likewise.
28675         (SIZE): Likewise.
28676         (__mpn_add_n): Do not use BP_SYM.
28677         * sysdeps/i386/i686/bzero.S (__bzero): Do not use BP_SYM in
28678         weak_alias.
28679         (bzero): Likewise.
28680         * sysdeps/i386/i686/memcmp.S: Do not include "bp-sym.h" and
28681         "bp-asm.h".
28682         (PARMS): Do not use macros from bp-asm.h.
28683         (BLK2): Likewise.
28684         (LEN): Likewise.
28685         (memcmp): Do not use BP_SYM.
28686         (bcmp): Do not use BP_SYM in weak_alias.
28687         * sysdeps/i386/i686/memcpy.S: Do not include "bp-sym.h" and
28688         "bp-asm.h".
28689         (PARMS): Do not use macros from bp-asm.h.
28690         (DEST): Likewise.
28691         (SRC): Likewise.
28692         (LEN): Likewise.
28693         (memcpy): Likewise.  Do not use BP_SYM.
28694         * sysdeps/i386/i686/memmove.S: Do not include "bp-sym.h" and
28695         "bp-asm.h".
28696         (PARMS): Do not use macros from bp-asm.h.
28697         (DEST): Likewise.
28698         (SRC): Likewise.
28699         (LEN): Likewise.
28700         (memmove): Likewise.  Do not use BP_SYM.
28701         * sysdeps/i386/i686/mempcpy.S: Do not include "bp-sym.h" and
28702         "bp-asm.h".
28703         (PARMS): Do not use macros from bp-asm.h.
28704         (DEST): Likewise.
28705         (SRC): Likewise.
28706         (LEN): Likewise.
28707         (__mempcpy): Likewise.  Do not use BP_SYM.
28708         (mempcpy): Do not use BP_SYM in weak_alias.
28709         * sysdeps/i386/i686/memset.S: Do not include "bp-sym.h" and
28710         "bp-asm.h".
28711         (PARMS): Do not use macros from bp-asm.h.
28712         (DEST): Likewise.
28713         (LEN): Likewise.
28714         [!BZERO_P] (CHR): Likewise.
28715         (memset): Likewise.  Do not use BP_SYM.
28716         * sysdeps/i386/i686/strcmp.S: Do not include "bp-sym.h" and
28717         "bp-asm.h".
28718         (PARMS): Do not use macros from bp-asm.h.
28719         (STR2): Likewise.
28720         (strcmp): Do not use BP_SYM.
28721         * sysdeps/i386/i686/strtok.S: Do not include "bp-sym.h" and
28722         "bp-asm.h".
28723         (PARMS): Do not use macros from bp-asm.h.
28724         (STR): Likewise.
28725         (DELIM): Likewise.
28726         [USE_AS_STRTOK_R] (SAVE): Likewise.
28727         (FUNCTION): Likewise.  Do not use BP_SYM.
28728         * sysdeps/i386/i686/strtok_r.S (__strtok_r): Do not use BP_SYM in
28729         aliases.
28730         (strtok_r): Likewise.
28731         (__GI___strtok_r): Likewise.
28732         * sysdeps/i386/lshift.S: Do not include "bp-sym.h" and "bp-asm.h".
28733         (PARMS): Do not use macros from bp-asm.h.
28734         (S): Likewise.
28735         (SIZE): Likewise.
28736         (__mpn_lshift): Do not use BP_SYM.
28737         * sysdeps/i386/memchr.S: Do not include "bp-sym.h" and "bp-asm.h".
28738         (PARMS): Do not use macros from bp-asm.h.
28739         (STR): Likewise.
28740         (CHR): Likewise.
28741         (__memchr): Do not use BP_SYM.
28742         (memchr): Do not use BP_SYM in weak_alias.
28743         * sysdeps/i386/memcmp.S: Do not include "bp-sym.h" and "bp-asm.h".
28744         (PARMS): Do not use macros from bp-asm.h.
28745         (BLK2): Likewise.
28746         (LEN): Likewise.
28747         (memcmp): Do not use BP_SYM.
28748         (bcmp): Do not use BP_SYM in weak_alias.
28749         * sysdeps/i386/mul_1.S: Do not include "bp-sym.h" and "bp-asm.h".
28750         (PARMS): Do not use macros from bp-asm.h.
28751         (S1): Likewise.
28752         (SIZE): Likewise.
28753         (__mpn_mul_1): Do not use BP_SYM.
28754         * sysdeps/i386/rawmemchr.S: Do not include "bp-sym.h" and
28755         "bp-asm.h".
28756         (PARMS): Do not use macros from bp-asm.h.
28757         (STR): Likewise.
28758         (CHR): Likewise.
28759         (__rawmemchr): Do not use BP_SYM.
28760         (rawmemchr): Do not use BP_SYM in weak_alias.
28761         * sysdeps/i386/rshift.S: Do not include "bp-sym.h" and "bp-asm.h".
28762         (PARMS): Do not use macros from bp-asm.h.
28763         (S): Likewise.
28764         (SIZE): Likewise.
28765         (__mpn_rshift): Do not use BP_SYM.
28766         * sysdeps/i386/setjmp.S: Do not include "bp-sym.h" and "bp-asm.h".
28767         (PARMS): Do not use macros from bp-asm.h.
28768         (SIGMSK): Likewise.
28769         (__sigsetjmp): Likewise.  Do not use BP_SYM.
28770         * sysdeps/i386/start.S: Do not include "bp-sym.h".
28771         (_start): Do not use BP_SYM.
28772         * sysdeps/i386/stpcpy.S: Do not include "bp-sym.h" and "bp-asm.h".
28773         (PARMS): Do not use macros from bp-asm.h.
28774         (DEST): Likewise.
28775         (SRC): Likewise.
28776         (__stpcpy): Likewise.  Do not use BP_SYM.
28777         (stpcpy): Do not use BP_SYM in weak_alias.
28778         * sysdeps/i386/stpncpy.S: Do not include "bp-sym.h" and
28779         "bp-asm.h".
28780         (PARMS): Do not use macros from bp-asm.h.
28781         (DEST): Likewise.
28782         (SRC): Likewise.
28783         (LEN): Likewise.
28784         (__stpncpy): Likewise.  Do not use BP_SYM.
28785         (stpncpy): Do not use BP_SYM in weak_alias.
28786         * sysdeps/i386/strchr.S: Do not include "bp-sym.h" and "bp-asm.h".
28787         (PARMS): Do not use macros from bp-asm.h.
28788         (STR): Likewise.
28789         (CHR): Likewise.
28790         (strchr): Likewise.  Do not use BP_SYM.
28791         * sysdeps/i386/strchrnul.S: Do not include "bp-sym.h" and
28792         "bp-asm.h".
28793         (PARMS): Do not use macros from bp-asm.h.
28794         (STR): Likewise.
28795         (CHR): Likewise.
28796         (__strchrnul): Likewise.  Do not use BP_SYM.
28797         (strchrnul): Do not use BP_SYM in weak_alias.
28798         * sysdeps/i386/strcspn.S: Do not include "bp-sym.h" and
28799         "bp-asm.h".
28800         (PARMS): Do not use macros from bp-asm.h.
28801         (STOP): Likewise.
28802         (strcspn): Do not use BP_SYM.
28803         * sysdeps/i386/strpbrk.S: Do not include "bp-sym.h" and
28804         "bp-asm.h".
28805         (PARMS): Do not use macros from bp-asm.h.
28806         (STR): Likewise.
28807         (STOP): Likewise.
28808         (strpbrk): Likewise.  Do not use BP_SYM.
28809         * sysdeps/i386/strrchr.S: Do not include "bp-sym.h" and
28810         "bp-asm.h".
28811         (PARMS): Do not use macros from bp-asm.h.
28812         (STR): Likewise.
28813         (CHR): Likewise.
28814         (strrchr): Likewise.  Do not use BP_SYM.
28815         * sysdeps/i386/strspn.S: Do not include "bp-sym.h" and "bp-asm.h".
28816         (PARMS): Do not use macros from bp-asm.h.
28817         (SKIP): Likewise.
28818         (strspn): Do not use BP_SYM.
28819         * sysdeps/i386/strtok.S: Do not include "bp-sym.h" and "bp-asm.h".
28820         (PARMS): Do not use macros from bp-asm.h.
28821         (STR): Likewise.
28822         (DELIM): Likewise.
28823         (SAVE): Likewise.
28824         (FUNCTION): Likewise.  Do not use BP_SYM.
28825         * sysdeps/i386/strtok_r.S (__strtok_r): Do not use BP_SYM in
28826         aliases.
28827         (strtok_r): Likewise.
28828         (__GI___strtok_r): Likewise.
28829         * sysdeps/i386/sub_n.S: Do not include "bp-sym.h" and "bp-asm.h".
28830         (PARMS): Do not use macros from bp-asm.h.
28831         (S1): Likewise.
28832         (S2): Likewise.
28833         (SIZE): Likewise.
28834         (__mpn_sub_n): Do not use BP_SYM.
28835         * sysdeps/i386/submul_1.S: Do not include "bp-sym.h" and
28836         "bp-asm.h".
28837         (PARMS): Do not use macros from bp-asm.h.
28838         (S1): Likewise.
28839         (SIZE): Likewise.
28840         (__mpn_submul_1): Do not use BP_SYM.
28841         * sysdeps/unix/i386/sysdep.S: Do not include <bp-asm.h> and
28842         <bp-sym.h>.
28843         * sysdeps/unix/sysv/linux/i386/clone.S: Do not include <bp-sym.h>
28844         and <bp-asm.h>.
28845         (PARMS): Do not use macros from bp-asm.h.
28846         (FLAGS): Likewise.
28847         (PTID): Likewise.
28848         (TLS): Likewise.
28849         (CTID): Likewise.
28850         (__clone): Do not use BP_SYM.
28851         (clone): Do not use BP_SYM in weak_alias.
28852         * sysdeps/unix/sysv/linux/i386/mmap64.S: Do not include <bp-sym.h>
28853         and <bp-asm.h>.
28854         (PARMS): Do not use macros from bp-asm.h.
28855         (LEN): Likewise.
28856         (__mmap64): Do not use BP_SYM.
28857         (mmap64): Do not use BP_SYM in weak_alias.
28858         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
28859         <bp-sym.h> and <bp-asm.h>.
28860         (PARMS): Do not use macros from bp-asm.h.
28861         (__posix_fadvise64_l64): Do not use BP_SYM.
28862         * sysdeps/unix/sysv/linux/i386/semtimedop.S
28863         (PARMS): Do not use macros from bp-asm.h.
28864         (NSOPS): Likewise.
28865         (semtimedop): Do not use BP_SYM.
28866         * sysdeps/unix/sysv/linux/i386/sysdep.h: Do not include <bp-sym.h>
28867         and <bp-asm.h>.
28868
28869 2013-02-21  Allan McRae  <allan@archlinux.org>
28870
28871         * manual/message.texi (Charset conversion in gettext):
28872         Move @end statement to beginning of line.
28873
28874 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
28875
28876         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Mark as
28877         static.
28878         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
28879         Likewise.
28880
28881         * sysdeps/ieee754/dbl-64/mpa.c (norm): Fix whitespace.
28882         (denorm): Likewise.
28883         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (norm): Likewise.
28884         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (norm): Likewise.
28885
28886 2013-02-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
28887
28888         * sysdeps/s390/s390-32/dl-trampoline.S (_dl_runtime_profile): Do a
28889         tail-call to the resolved function if pltexit isn't needed.
28890
28891 2013-02-21  Siddhesh Poyarekar  <siddhesh@redhat.com>
28892
28893         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Mark X
28894         or Y being zero as being unlikely.
28895         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul):
28896         Likewise.
28897
28898 2013-02-20  Carlos O'Donell  <carlos@redhat.com>
28899
28900         * manual/nss.texi (System Databases and Name Service Switch):
28901         Remove frobnicate @pxref.
28902
28903 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
28904
28905         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
28906         __attribute__ ((unused)) to __attribute__ ((__unused__)).
28907
28908 2013-02-20  Petr Machata  <pmachata@redhat.com>
28909
28910         * elf/elf.h (R_ARM_TARGET1): New macro.
28911         (R_ARM_SBREL31, R_ARM_V4BX, R_ARM_TARGET2): Likewise.
28912         (R_ARM_PREL31, R_ARM_MOVW_ABS_NC, R_ARM_MOVT_ABS): Likewise.
28913         (R_ARM_MOVW_PREL_NC, R_ARM_MOVT_PREL): Likewise.
28914         (R_ARM_THM_MOVW_ABS_NC, R_ARM_THM_MOVT_ABS): Likewise.
28915         (R_ARM_THM_MOVW_PREL_NC, R_ARM_THM_MOVT_PREL): Likewise.
28916         (R_ARM_THM_JUMP19, R_ARM_THM_JUMP6): Likewise.
28917         (R_ARM_THM_ALU_PREL_11_0, R_ARM_THM_PC12): Likewise.
28918         (R_ARM_ABS32_NOI, R_ARM_REL32_NOI): Likewise.
28919         (R_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0): Likewise.
28920         (R_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1): Likewise.
28921         (R_ARM_ALU_PC_G2, R_ARM_LDR_PC_G1, R_ARM_LDR_PC_G2): Likewise.
28922         (R_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G1): Likewise.
28923         (R_ARM_LDRS_PC_G2, R_ARM_LDC_PC_G0): Likewise.
28924         (R_ARM_LDC_PC_G1, R_ARM_LDC_PC_G2): Likewise.
28925         (R_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0): Likewise.
28926         (R_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1): Likewise.
28927         (R_ARM_ALU_SB_G2, R_ARM_LDR_SB_G0, R_ARM_LDR_SB_G1): Likewise.
28928         (R_ARM_LDR_SB_G2, R_ARM_LDRS_SB_G0): Likewise.
28929         (R_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G2): Likewise.
28930         (R_ARM_LDC_SB_G0, R_ARM_LDC_SB_G1, R_ARM_LDC_SB_G2): Likewise.
28931         (R_ARM_MOVW_BREL_NC, R_ARM_MOVT_BREL): Likewise.
28932         (R_ARM_MOVW_BREL, R_ARM_THM_MOVW_BREL_NC): Likewise.
28933         (R_ARM_THM_MOVT_BREL, R_ARM_THM_MOVW_BREL): Likewise.
28934         (R_ARM_PLT32_ABS, R_ARM_GOT_ABS, R_ARM_GOT_PREL): Likewise.
28935         (R_ARM_GOT_BREL12, R_ARM_GOTOFF12, R_ARM_GOTRELAX): Likewise.
28936         (R_ARM_TLS_LDO12, R_ARM_TLS_LE12, R_ARM_TLS_IE12GP): Likewise.
28937         (R_ARM_PRIVATE_0, R_ARM_PRIVATE_1, R_ARM_PRIVATE_2): Likewise.
28938         (R_ARM_PRIVATE_3, R_ARM_PRIVATE_4, R_ARM_PRIVATE_5): Likewise.
28939         (R_ARM_PRIVATE_6, R_ARM_PRIVATE_7, R_ARM_PRIVATE_8): Likewise.
28940         (R_ARM_PRIVATE_9, R_ARM_PRIVATE_10): Likewise.
28941         (R_ARM_PRIVATE_11, R_ARM_PRIVATE_12): Likewise.
28942         (R_ARM_PRIVATE_13, R_ARM_PRIVATE_14): Likewise.
28943         (R_ARM_PRIVATE_15, R_ARM_ME_TOO): Likewise.
28944         (R_ARM_THM_TLS_DESCSEQ16, R_ARM_THM_TLS_DESCSEQ32): Likewise.
28945         (R_ARM_THM_GOT_BREL12): Likewise.
28946         (R_ARM_PC24, R_ARM_PLT32): Updated a comment at this macro.
28947         (R_ARM_THM_PC11, R_ARM_THM_PC9): Likewise.
28948         (R_ARM_THM_ABS5, R_ARM_THM_PC22): Added a comment to this macro.
28949         (R_ARM_THM_PC8, R_ARM_THM_SWI8, R_ARM_XPC25): Likewise.
28950         (R_ARM_THM_XPC22, R_ARM_ALU_PCREL_7_0): Likewise.
28951         (R_ARM_ALU_PCREL_15_8, R_ARM_ALU_PCREL_23_15): Likewise.
28952         (R_ARM_LDR_SBREL_11_0, R_ARM_ALU_SBREL_19_12): Likewise.
28953         (R_ARM_ALU_SBREL_27_20, R_ARM_TLS_DESCSEQ): Likewise.
28954         (R_ARM_THM_TLS_DESCSEQ): Fixed whitespace.
28955
28956 2013-02-20  Thomas Schwinge  <thomas@codesourcery.com>
28957
28958         * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
28959         __attribute_used__ to __attribute__ ((unused)).
28960
28961 2013-02-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
28962
28963         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
28964         powerpc mpa.c.
28965         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__mul): Fix
28966         comment formatting.
28967         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__mul): Likewise.
28968
28969 2013-02-19  Joseph Myers  <joseph@codesourcery.com>
28970
28971         [BZ #13550]
28972         * sysdeps/i386/bp-asm.h [__BOUNDED_POINTERS__] (BOUNDS_VIOLATED):
28973         Remove macro.
28974         (ENTER): Remove both macro definitions.
28975         (LEAVE): Likewise.
28976         (CHECK_BOUNDS_LOW): Likewise.
28977         (CHECK_BOUNDS_HIGH): Likewise.
28978         (CHECK_BOUNDS_BOTH): Likewise.
28979         (CHECK_BOUNDS_BOTH_WIDE): Likewise.
28980         (RETURN_BOUNDED_POINTER): Likewise.
28981         (RETURN_NULL_BOUNDED_POINTER): Likewise.
28982         (PUSH_ERRNO_LOCATION_RETURN): Likewise.
28983         (POP_ERRNO_LOCATION_RETURN): Likewise.
28984         * sysdeps/i386/add_n.S (__mpn_add_n): Do not use removed macros.
28985         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
28986         * sysdeps/i386/addmul_1.S (__mpn_addmul_1): Do not use removed
28987         macros.
28988         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
28989         * sysdeps/i386/bsd-_setjmp.S (_setjmp): Do not use removed macros.
28990         * sysdeps/i386/bsd-setjmp.S (setjmp): Likewise.
28991         * sysdeps/i386/fpu/s_frexp.S (__frexp): Likewise.
28992         * sysdeps/i386/fpu/s_frexpf.S (__frexpf): Likewise.
28993         * sysdeps/i386/fpu/s_frexpl.S (__frexpl): Likewise.
28994         * sysdeps/i386/fpu/s_remquo.S (__remquo): Likewise.
28995         * sysdeps/i386/fpu/s_remquof.S (__remquof): Likewise.
28996         * sysdeps/i386/fpu/s_remquol.S (__remquol): Likewise.
28997         * sysdeps/i386/i486/strcat.S (strcat): Likewise.
28998         * sysdeps/i386/i486/strlen.S (strlen): Likewise.
28999         * sysdeps/i386/i586/add_n.S (__mpn_add_n): Likewise.
29000         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29001         * sysdeps/i386/i586/addmul_1.S (__mpn_addmul_1): Do not use
29002         removed macros.
29003         (__mpn_addmul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29004         * sysdeps/i386/i586/lshift.S (__mpn_lshift): Do not use removed
29005         macros.
29006         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29007         * sysdeps/i386/i586/memcpy.S (memcpy): Do not use removed macros.
29008         * sysdeps/i386/i586/memset.S (memset): Likewise.
29009         * sysdeps/i386/i586/mul_1.S (__mpn_mul_1): Likewise.
29010         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29011         * sysdeps/i386/i586/rshift.S (__mpn_rshift): Do not use removed
29012         macros.
29013         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29014         * sysdeps/i386/i586/strchr.S (strchr): Do not use removed macros.
29015         Change uses of L(2) to L(out).
29016         * sysdeps/i386/i586/strcpy.S (STRCPY): Do not use removed macros.
29017         * sysdeps/i386/i586/strlen.S (strlen): Likewise.
29018         * sysdeps/i386/i586/sub_n.S (__mpn_sub_n): Likewise.
29019         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29020         * sysdeps/i386/i586/submul_1.S (__mpn_submul_1): Do not use
29021         removed macros.
29022         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29023         * sysdeps/i386/i686/add_n.S (__mpn_add_n): Do not use removed
29024         macros.
29025         (__mpn_add_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29026         * sysdeps/i386/i686/memcmp.S (ENTRANCE): Do not use macro ENTER.
29027         (RETURN): Do not use macro LEAVE.
29028         * sysdeps/i386/i686/memcpy.S (memcpy): Do not use removed macros.
29029         * sysdeps/i386/i686/memmove.S (memmove): Likewise.
29030         * sysdeps/i386/i686/mempcpy.S (mempcpy): Likewise.
29031         * sysdeps/i386/i686/memset.S (memset): Likewise.
29032         * sysdeps/i386/i686/strcmp.S (strcmp): Likewise.
29033         (strcmp) [!__BOUNDED_POINTERS__]: Make code unconditional.
29034         (strcmp) [__BOUNDED_POINTERS__]: Remove conditional code.
29035         * sysdeps/i386/i686/strtok.S (save_ptr) [__BOUNDED_POINTERS__]:
29036         Likewise.
29037         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29038         (FUNCTION): Do not use removed macros.  Combine labels L(1_1),
29039         L(1_2) and L(1_3) into L(1).
29040         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
29041         * sysdeps/i386/lshift.S (__mpn_lshift): Do not use removed macros.
29042         (__mpn_lshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29043         * sysdeps/i386/memchr.S (__memchr): Do not use removed macros.
29044         (__memchr) [__BOUNDED_POINTERS__]: Remove conditional code.
29045         * sysdeps/i386/memcmp.S (memcmp): Do not use removed macros.
29046         * sysdeps/i386/mul_1.S (__mpn_mul_1): Likewise.
29047         (__mpn_mul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29048         * sysdeps/i386/rawmemchr.S (__rawmemchr): Do not use removed
29049         macros.
29050         * sysdeps/i386/rshift.S (__mpn_rshift): Likewise.
29051         (__mpn_rshift) [__BOUNDED_POINTERS__]: Remove conditional code.
29052         * sysdeps/i386/setjmp.S (__sigsetjmp): Do not use removed macros.
29053         * sysdeps/i386/stpcpy.S (__stpcpy): Likewise.
29054         * sysdeps/i386/stpncpy.S (__stpncpy): Likewise.
29055         (__stpncpy) [__BOUNDED_POINTERS__]: Remove conditional code.
29056         * sysdeps/i386/strchr.S (strchr): Do not use removed macros.
29057         * sysdeps/i386/strchrnul.S (__strchrnul): Likewise.
29058         * sysdeps/i386/strcspn.S (strcspn): Likewise.
29059         * sysdeps/i386/strpbrk.S (strpbrk): Likewise.
29060         * sysdeps/i386/strrchr.S (strrchr): Likewise.
29061         * sysdeps/i386/strspn.S (strspn): Likewise.
29062         * sysdeps/i386/strtok.S (save_ptr) [__BOUNDED_POINTERS__]: Remove
29063         conditional code.
29064         (save_ptr) [!__BOUNDED_POINTERS__]: Make code unconditional.
29065         (FUNCTION) [!__BOUNDED_POINTERS__]: Likewise.
29066         (FUNCTION) [__BOUNDED_POINTERS__]: Remove conditional code.
29067         (FUNCTION): Do not use removed macros.  Combine labels L(1_2) and
29068         L(1_3) into L(1_1).
29069         * sysdeps/i386/sub_n.S (__mpn_sub_n): Do not use removed macros.
29070         (__mpn_sub_n) [__BOUNDED_POINTERS__]: Remove conditional code.
29071         * sysdeps/i386/submul_1.S (__mpn_submul_1): Do not use removed
29072         macros.
29073         (__mpn_submul_1) [__BOUNDED_POINTERS__]: Remove conditional code.
29074
29075 2013-02-19  Jakub Jelinek  <jakub@redhat.com>
29076
29077         * stdlib/strtod_l.c (__mpn_lshift_1): Rewritten as function-like
29078         macro.
29079
29080 2013-02-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
29081
29082         * math/atest-exp.c (exp_mpn): Remove ROUND.
29083         * math/atest-exp2.c (exp_mpn): Likewise.
29084         * math/atest-sincos.c (sincosx_mpn): Remove ROUND and CHK.
29085
29086         * stdlib/cxa_thread_atexit_impl.c: Fix Copyright year.
29087         * stdlib/tst-tls-atexit-lib.c: Likewise.
29088         * stdlib/tst-tls-atexit.c: Likewise.
29089
29090 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29091
29092         * stdlib/stdlib.h (aligned_alloc): Use __attribute_malloc__
29093         and __attribute_alloc_size__.
29094
29095 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29096
29097         * include/programs/xmalloc.h: Change __attribute_alloc_size to
29098         __attribute_alloc_size__.
29099         * include/sys/cdefs.h (__attribute_alloc_size): Macro removed.
29100         * misc/sys/cdefs.h (__attribute_alloc_size__): New macro.
29101
29102 2013-02-18  Mike Frysinger  <vapier@gentoo.org>
29103
29104         * include/programs/xmalloc.h: New file.
29105         * catgets/gencat.c: Include it.
29106         (xmalloc, xcalloc, xrealloc, xstrdup): Don't declare them.
29107         * elf/pldd.c: Likewise.
29108         * iconv/iconv_charmap.c: Likewise.
29109         * iconv/iconvconfig.c: Likewise.
29110         * iconv/strtab.c: Likewise.
29111         * locale/programs/locale.c: Likewise.
29112         * locale/programs/localedef.h: Likewise.
29113         * locale/programs/simple-hash.c: Likewise.
29114         * nscd/nscd.h: Likewise.
29115         * nss/makedb.c: Likewise.
29116         * sysdeps/generic/ldconfig.h: Likewise.
29117
29118 2013-02-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
29119
29120         * Versions.def: Add GLIBC_2.18.
29121         * include/link.h (struct link_map): New member l_tls_dtor_count.
29122         * include/stdlib.h (__cxa_thread_atexit_impl): Declare.
29123         (__call_tls_dtors): Likewise.
29124         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add
29125         __cxa_thread_atexit_impl.
29126         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
29127         Likewise.
29128         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
29129         Likewise.
29130         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist:
29131         Likewise.
29132         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist:
29133         Likewise.
29134         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
29135         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist:
29136         Likewise.
29137         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist:
29138         Likewise.
29139         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
29140         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
29141         Likewise.
29142         * stdlib/Makefile (routines): Add __cxa_thread_atexit_impl.
29143         (tests): Add test case tst-tls-atexit.
29144         (modules-names): Add shared library for tst-tls-atexit.
29145         * stdlib/Versions (GLIBC_2.18): Add __cxa_thread_atexit_impl.
29146         (GLIBC_PRIVATE): Add __call_tls_dtors.
29147         * stdlib/cxa_thread_atexit_impl.c: New file with helper function
29148         for libstdc++.
29149         * stdlib/exit.c (__run_exit_handlers): Call __call_tls_dtors.
29150         * stdlib/tst-tls-atexit.c: New test case.
29151         * stdlib/tst-tls-atexit-lib.c: New test case.
29152
29153         * misc/tst-pselect.c: Include stdlib.h for declaration of exit.
29154
29155         * elf/Versions (ld): Add _dl_find_dso_for_object.
29156         * elf/dl-addr.c (_dl_addr): Use _dl_find_dso_for_object.
29157         * elf/dl-open.c (_dl_find_dso_for_object): New function.
29158         (dl_open_worker): Use _dl_find_dso_for_object.
29159         * elf/dl-sym.c (do_sym): Likewise.
29160         * sysdeps/generic/ldsodefs.h: Declare _dl_find_dso_for_object.
29161
29162 2013-02-18  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
29163
29164         * sysdeps/s390/s390-64/dl-trampoline.S (_dl_runtime_resolve):
29165         Syntactic changes only.
29166         (_dl_runtime_profile): Do a tail-call to the resolved function.
29167
29168 2013-02-17  Joseph Myers  <joseph@codesourcery.com>
29169
29170         [BZ #13550]
29171         * sysdeps/x86_64/bp-asm.h: Remove file.
29172         * sysdeps/unix/sysv/linux/x86_64/clone.S: Do not include
29173         <bp-sym.h> and <bp-asm.h>.
29174         (__clone): Do not use BP_SYM.
29175         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Do not include
29176         <bp-sym.h> and <bp-asm.h>.
29177         * sysdeps/unix/x86_64/sysdep.S: Likewise.
29178         * sysdeps/x86_64/bsd-_setjmp.S: Do not include "bp-sym.h" and
29179         "bp-asm.h".
29180         (_setjmp): Do not use BP_SYM.
29181         * sysdeps/x86_64/bsd-setjmp.S: Do not include "bp-sym.h" and
29182         "bp-asm.h".
29183         (setjmp): Do not use BP_SYM.
29184         * sysdeps/x86_64/mempcpy.S (__mempcpy): Do not use BP_SYM in
29185         libc_hidden_def.
29186         (mempcpy): Do not use BP_SYM in weak_alias.
29187         * sysdeps/x86_64/rtld-strchr.S: Do not include "bp-sym.h" and
29188         "bp-asm.h".
29189         (strchr): Do not use BP_SYM.
29190         * sysdeps/x86_64/rtld-strlen.S: Do not include "bp-sym.h" and
29191         "bp-asm.h".
29192         * sysdeps/x86_64/setjmp.S (__sigsetjmp): Do not use BP_SYM.
29193         * sysdeps/x86_64/start.S: Do not include "bp-sym.h".
29194         (_start): Do not use BP_SYM.
29195         * sysdeps/x86_64/strcat.S: Do not include "bp-sym.h" and
29196         "bp-asm.h".
29197         (strcat): Do not use BP_SYM.
29198         * sysdeps/x86_64/strcmp.S: Do not include "bp-sym.h" and
29199         "bp-asm.h".
29200         (STRCMP): Do not use BP_SYM.
29201         * sysdeps/x86_64/strcpy.S: Do not include "bp-sym.h" and
29202         "bp-asm.h".
29203         (STRCPY): Do not use BP_SYM.
29204         * sysdeps/x86_64/strcpy_chk.S: Do not include "bp-sym.h" and
29205         "bp-asm.h".
29206         * sysdeps/x86_64/strtok.S: Do not include "bp-sym.h" and
29207         "bp-asm.h".
29208         (FUNCTION): Do not use BP_SYM.
29209         * sysdeps/x86_64/strtok_r.S (strtok_r): Do not use BP_SYM in
29210         weak_alias.
29211         (__GI___strtok_r): Do not use BP_SYM in strong_alias.
29212
29213 2013-02-17  Andreas Jaeger  <aj@suse.de>
29214
29215         * time/Versions: Sort entries.
29216         * string/Versions: Likewise.
29217         * resolv/Versions: Likewise.
29218         * posix/Versions: Likewise.
29219         * iconv/Versions: Likewise.
29220         * elf/Versions: Likewise.
29221         * wcsmbs/Versions: Likewise.
29222
29223 2013-02-15  Siddhesh Poyarekar  <siddhesh@redhat.com>
29224
29225         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Avoid using LIM in
29226         loop termination condition.
29227
29228         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Use intermediate
29229         variable to calculate EZ.
29230         (__sqr): Likewise.
29231
29232         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Fix determination of
29233         the lower precision input.
29234
29235 2013-02-15  Joseph Myers  <joseph@codesourcery.com>
29236
29237         [BZ #13550]
29238         * Makeconfig [!+link-bounded] (+link-bounded): Remove variable.
29239         [!link-extra-libs] (link-extra-libs-bounded): Likewise.
29240         (run-via-rtld-prefix): Do not handle %-bp tests.
29241         (test-via-rtld-prefix): Do not mention %-bp tests in comment.
29242         (all-object-suffixes): Remove .ob.
29243         (bppfx): Remove variable.
29244         [$(build-bounded) = yes] (object-suffixes): Do not add .ob.
29245         [$(build-bounded) = yes] (CPPFLAGS-.ob): Remove variable.
29246         [$(build-bounded) = yes] (CFLAGS-.ob): Likewise.
29247         [$(build-bounded) = yes] (libtype.ob): Likewise.
29248         * Makerules (elide-routines.ob): Remove variable.
29249         (do-tests-clean): Do not handle *-bp.out.
29250         (common-mostlyclean): Do not handle *-bp and *-bp.out.
29251         * Rules [$(build-bounded) = yes] (tests-bp.out): Remove variable.
29252         [$(build-bounded) = yes] (xtests-bp.out): Likewise.
29253         (tests): Do not include $(tests-bp.out).
29254         (xtests): Do not include $(xtests-bp.out).
29255         [$(build-bounded) = yes] (binaries-bounded): Remove variable.
29256         [$(build-bounded) = yes] ($(addprefix
29257         $(objpfx),$(binaries-bounded))): Remove rule.
29258         ($(objpfx)%-bp.out): Remove rule.
29259         * config.make.in (build-bounded): Remove variable.
29260         * crypt/Makefile [$(build-bounded) = yes]
29261         ($(tests:%=$(objpfx)%-bp)): Remove dependency.
29262         * csu/Makefile [$(build-bounded) = yes] (extra-objs): Do not
29263         append to variable.
29264         [$(build-bounded) = yes] (install-lib): Likewise.
29265         [$(build-bounded) = yes] (generated): Likewise.
29266         [!start-installed-name-rule] ($(objpfx)b$(start-installed-name)):
29267         Remove rule.
29268         * intl/Makefile [$(build-bounded) = yes]
29269         ($(multithread-test-srcs:%=$(objpfx)%-bp)): Remove dependency.
29270         * math/Makefile [$(build-bounded) = yes]
29271         ($(tests:%=$(objpfx)%-bp): Likewise.
29272         * misc/Makefile [$(build-bounded) = yes]
29273         ($(objpfx)tst-tsearch-bp): Likewise.
29274         * nptl/Makeconfig (bounded-thread-library): Remove variable.
29275         * rt/Makefile [$(build-bounded) = yes] ($(tests:%=$(objpfx)%-bp)):
29276         Remove dependency.
29277         * string/Makefile (o-objects.ob): Remove variable.
29278         * sysdeps/i386/i686/Makefile [$(config-asflags-i686) = yes]
29279         (CFLAGS-.ob): Remove variable.
29280         [$(config-asflags-i686) = yes] (ASFLAGS-.ob): Likewise.
29281         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-.ob): Remove
29282         both definitions of variable.
29283         * sysdeps/sparc/sparc64/Makefile [$(have-as-vis3) = yes]
29284         (ASFLAGS-.ob): Remove variable.
29285
29286 2013-02-14  Joseph Myers  <joseph@codesourcery.com>
29287
29288         [BZ #13550]
29289         * config.h.in [USE_REGPARMS && !PROF && !__BOUNDED_POINTERS__]:
29290         Remove __BOUNDED_POINTERS__ from condition.
29291         * elf/dl-runtime.c [!PROF && !__BOUNDED_POINTERS__]: Likewise.
29292         * string/bits/string2.h [!__NO_STRING_INLINES &&
29293         !__BOUNDED_POINTERS__]: Likewise.
29294         * sysdeps/i386/dl-machine.h [!PROF && !__BOUNDED_POINTERS__]:
29295         Likewise.
29296         * sysdeps/unix/sysv/linux/shmat.c (shmat) [__BOUNDED_POINTERS__]:
29297         Remove conditional code.
29298         * sysdeps/x86/bits/string.h [!__NO_STRING_INLINES &&
29299         __USE_STRING_INLINES && __GNUC__ && __GNUC__ >= 2 &&
29300         !__BOUNDED_POINTERS__]: Remove __BOUNDED_POINTERS__ from
29301         condition.
29302
29303         [BZ #13550]
29304         * csu/libc-start.c: Do not include <bp-sym.h>.
29305         [!LIBC_START_MAIN] (LIBC_START_MAIN): Do not use BP_SYM.
29306         * elf/dl-open.c: Do not include <bp-sym.h>.
29307         (_dl_sysdep_start): Do not use BP_SYM in weak_extern.
29308         * math/fegetenv.c: Do not include <bp-sym.h>.
29309         (fegetenv): Do not use BP_SYM in versioned symbols.
29310         * nptl/sysdeps/pthread/bits/libc-lockP.h
29311         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]: Do not include
29312         <bp-sym.h>.
29313         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29314         (__pthread_mutex_init): Do not use BP_SYM in weak_extern.
29315         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29316         (__pthread_mutex_destroy): Likewise.
29317         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29318         (__pthread_mutex_lock): Likewise.
29319         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29320         (__pthread_mutex_trylock): Likewise.
29321         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29322         (__pthread_mutex_unlock): Likewise.
29323         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29324         (__pthread_mutexattr_init): Likewise.
29325         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29326         (__pthread_mutexattr_destroy): Likewise.
29327         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29328         (__pthread_mutexattr_settype): Likewise.
29329         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29330         (__pthread_rwlock_init): Likewise.
29331         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29332         (__pthread_rwlock_destroy): Likewise.
29333         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29334         (__pthread_rwlock_rdlock): Likewise.
29335         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29336         (__pthread_rwlock_tryrdlock): Likewise.
29337         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29338         (__pthread_rwlock_wrlock): Likewise.
29339         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29340         (__pthread_rwlock_trywrlock): Likewise.
29341         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29342         (__pthread_rwlock_unlock): Likewise.
29343         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29344         (__pthread_key_create): Likewise.
29345         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29346         (__pthread_setspecific): Likewise.
29347         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29348         (__pthread_getspecific): Likewise.
29349         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern] (__pthread_once):
29350         Likewise.
29351         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29352         (_pthread_cleanup_push_defer): Likewise.
29353         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29354         (_pthread_cleanup_pop_restore): Likewise.
29355         [!__NO_WEAK_PTHREAD_ALIASES && weak_extern]
29356         (pthread_setcancelstate): Likewise.
29357         * string/memchr.c [HAVE_BP_SYM_H || _LIBC]: Do not include
29358         <bp-sym.h>.
29359         [!(HAVE_BP_SYM_H || _LIBC)] (BP_SYM): Remove macro definition.
29360         (memchr): Do not use BP_SYM in weak_alias.
29361         * sysdeps/i386/fpu/fegetenv.c: Do not include <bp-sym.h>.
29362         (fegetenv): Do not use BP_SYM in versioned symbols.
29363         * sysdeps/i386/fpu/fesetenv.c: Do not include <bp-sym.h>.
29364         (fesetenv): Do not use BP_SYM in versioned symbols.
29365         * sysdeps/i386/fpu/feupdateenv.c: Do not include <bp-sym.h>.
29366         (feupdateenv): Do not use BP_SYM in versioned symbols.
29367         * sysdeps/i386/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
29368         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
29369         * sysdeps/posix/open64.c: Do not include <bp-sym.h>.
29370         (__open64): Do not use BP_SYM in weak_alias and libc_hidden_weak.
29371         (open64): Do not use BP_SYM in weak_alias.
29372         * sysdeps/powerpc/fpu/fegetenv.c: Do not include <bp-sym.h>.
29373         (fegetenv): Do not use BP_SYM in versioned symbols.
29374         * sysdeps/powerpc/fpu/fesetenv.c: Do not include <bp-sym.h>.
29375         (fesetenv): Do not use BP_SYM in versioned symbols.
29376         * sysdeps/powerpc/fpu/feupdateenv.c: Do not include <bp-sym.h>.
29377         (feupdateenv): Do not use BP_SYM in versioned symbols.
29378         * sysdeps/powerpc/fpu/fgetexcptflg.c: Do not include <bp-sym.h>.
29379         (fegetexceptflag): Do not use BP_SYM in versioned symbols.
29380         * sysdeps/powerpc/fpu/fraiseexcpt.c: Do not include <bp-sym.h>.
29381         (feraiseexcept): Do not use BP_SYM in versioned symbols.
29382         * sysdeps/powerpc/fpu/fsetexcptflg.c: Do not include <bp-sym.h>.
29383         (fesetexceptflag): Do not use BP_SYM in versioned symbols.
29384         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Do not include
29385         <bp-sym.h>.
29386         (__libc_start_main): Do not use BP_SYM.
29387
29388 2013-02-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
29389
29390         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cpy): Remove
29391         redundant return line.
29392         (norm): Likewise.
29393         (denorm): Likewise.
29394         (dbl_mp): Likewise.
29395         (sub_magnitudes): Likewise.
29396         (__add): Likewise.
29397         (__sub): Likewise.
29398         (__mul): Likewise.
29399         (__inv): Likewise.
29400         (__dvd): Likewise.
29401         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cpy): Likewise.
29402         (norm): Likewise.
29403         (denorm): Likewise.
29404         (dbl_mp): Likewise.
29405         (sub_magnitudes): Likewise.
29406         (__add): Likewise.
29407         (__sub): Likewise.
29408         (__mul): Likewise.
29409         (__inv): Likewise.
29410         (__dvd): Likewise.
29411
29412         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Use __sqr
29413         instead of __mul.
29414         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
29415         * sysdeps/ieee754/dbl-64/sincos32.c (ss32): Likewise.
29416         (cc32): Likewise.
29417
29418         * sysdeps/ieee754/dbl-64/mpa.c (__sqr): New function.
29419         * sysdeps/ieee754/dbl-64/mpa.h (__sqr): Declare.
29420         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): use __sqr instead
29421         of __mul for squares.
29422         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__sqr): New
29423         function
29424         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__sqr):
29425         Likewise.
29426         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define __sqr.
29427         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
29428
29429 2013-02-13  Joseph Myers  <joseph@codesourcery.com>
29430
29431         [BZ #13550]
29432         * misc/sys/cdefs.h [!__BOUNDED_POINTERS__]: Remove conditional
29433         code.
29434         * csu/libc-start.c (LIBC_START_MAIN): Do not use __unbounded in
29435         prototype or function definition.  Rename ubp_* variables and
29436         parameters.  Remove argv definitions conditional on
29437         [__BOUNDED_POINTERS__].
29438         * debug/backtrace.c (__backtrace): Do not use __unbounded.
29439         * elf/dl-runtime.c (_dl_fixup): Likewise.
29440         * include/set-hooks.h (RUN_HOOK): Likewise.
29441         * stdio-common/vfprintf.c (JUMP): Do not use __unbounded in either
29442         definition.
29443         * string/strcpy.c (strcpy): Do not use __unbounded.
29444         * sysdeps/generic/frame.h (struct layout): Likewise.
29445         * sysdeps/gnu/bits/msq.h (struct msqid_ds): Likewise.
29446         * sysdeps/i386/dl-machine.h (_dl_fixup): Likewise.
29447         * sysdeps/powerpc/powerpc32/backtrace.c (struct layout): Likewise.
29448         * sysdeps/powerpc/powerpc64/backtrace.c (struct layout): Likewise.
29449         * sysdeps/sparc/backtrace.c (struct layout): Likewise.
29450         (__backtrace): Likewise.
29451         * sysdeps/unix/sysv/linux/aio_sigqueue.c (__aio_sigqueue): Do not
29452         use __ptrvalue.
29453         * sysdeps/unix/sysv/linux/fxstat.c (__fxstat): Likewise.
29454         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Likewise.
29455         * sysdeps/unix/sysv/linux/gai_sigqueue.c (__gai_sigqueue):
29456         Likewise.
29457         * sysdeps/unix/sysv/linux/i386/brk.c (__brk): Likewise.
29458         * sysdeps/unix/sysv/linux/i386/fxstat.c (__fxstat): Likewise.
29459         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Likewise.
29460         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
29461         * sysdeps/unix/sysv/linux/i386/msgctl.c (struct __old_msqid_ds):
29462         Do not use __unbounded.
29463         * sysdeps/unix/sysv/linux/i386/setrlimit.c (__new_setrlimit):
29464         Rename __unboundedrlimits parameter to rlimits in prototype.
29465         * sysdeps/unix/sysv/linux/i386/shmctl.c (struct __old_shmid_ds):
29466         Do not use __unbounded.
29467         * sysdeps/unix/sysv/linux/i386/sigaction.c (__libc_sigaction): Do
29468         not use __ptrvalue.
29469         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
29470         * sysdeps/unix/sysv/linux/llseek.c (__llseek): Likewise.
29471         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
29472         * sysdeps/unix/sysv/linux/mmap64.c (__mmap64): Do not use
29473         __ptrvalue or __unbounded.
29474         (__mmap64) [__BOUNDED_POINTERS__]: Remove conditional code.
29475         * sysdeps/unix/sysv/linux/msgctl.c (struct __old_msqid_ds): Do not
29476         use __unbounded.
29477         (__new_msgctl): Do not use __ptrvalue.
29478         * sysdeps/unix/sysv/linux/msgrcv.c (struct ipc_kludge): Do not use
29479         __unbounded.
29480         (__libc_msgrcv): Do not use __ptrvalue.
29481         * sysdeps/unix/sysv/linux/powerpc/libc-start.c (struct
29482         startup_info): Do not use __unbounded.
29483         (__libc_start_main): Likewise.  Rename ubp_* variables and
29484         parameters.  Remove argv definitions conditional on
29485         [__BOUNDED_POINTERS__].
29486         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Do not use
29487         __ptrvalue.
29488         * sysdeps/unix/sysv/linux/semctl.c (struct __old_semid_ds): Do not
29489         use __unbounded.
29490         * sysdeps/unix/sysv/linux/shmat.c (shmat): Do not use __unbounded
29491         or __ptrvalue.
29492         * sysdeps/unix/sysv/linux/shmctl.c (struct __old_shmid_ds): Do not
29493         use __unbounded.
29494         (__new_shmctl): Do not use __ptrvalue.
29495         * sysdeps/unix/sysv/linux/shmdt.c (shmdt): Likewise.
29496         * sysdeps/unix/sysv/linux/sigaction.c (__libc_sigaction):
29497         Likewise.
29498         * sysdeps/unix/sysv/linux/sigqueue.c (__sigqueue): Likewise.
29499         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c
29500         (__libc_sigaction): Likewise.
29501         * sysdeps/unix/sysv/linux/sysctl.c (__sysctl): Likewise.
29502         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (__libc_sigaction):
29503         Likewise.
29504         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
29505
29506 2013-02-13   Ondřej Bílka  <neleai@seznam.cz>
29507
29508         * stdlib/Makefile (headers): Add bits/stdlib-bsearch.h.
29509
29510         * string/mempcpy.c: Implement by calling memcpy.
29511
29512 2013-02-13  Siddhesh Poyarekar  <siddhesh@redhat.com>
29513
29514         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove NFA.
29515
29516         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Faster polynomial
29517         evaluation.
29518
29519         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Don't bother with zero
29520         values in the mantissa.
29521
29522         * sysdeps/ieee754/dbl-64/mpa.c (add_magnitudes): Use ZK to
29523         minimize writes to Z.
29524         (sub_magnitudes): Simplify code a bit.
29525
29526 2013-02-12  Roland McGrath  <roland@hack.frob.com>
29527
29528         * include/libc-symbols.h (stub_warning): Remove "warning: " prefix
29529         from the message.  The linker prefixes all warnings with that already.
29530
29531 2013-02-12  Andreas Schwab  <schwab@suse.de>
29532
29533         [BZ #15078]
29534         * posix/regexec.c (extend_buffers): Add parameter min_len.
29535         (check_matching): Pass minimum needed length.
29536         (clean_state_log_if_needed): Likewise.
29537         (get_subexp): Likewise.
29538         * posix/Makefile (tests): Add bug-regex34.
29539         (bug-regex34-ENV): Define.
29540         * posix/bug-regex34.c: New file.
29541
29542         [BZ #11561]
29543         * posix/regcomp.c (parse_bracket_exp): When looking up collating
29544         elements compare against the byte sequence of it, not its name.
29545         * posix/Makefile (tests): Add bug-regex35.
29546         (bug-regex35-ENV): Define.
29547         * posix/bug-regex35.c: New file.
29548
29549 2013-02-11  Tom de Vries  <tom@codesourcery.com>
29550
29551         * string/str-two-way.h:  Fix typo RESULT_TYPE -> RETURN_TYPE in
29552         comment.
29553         Add RET0_IF_0 and CHECK_EOL to macro list in comment.
29554         (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J): Remove superfluous undef.
29555         (CHECK_EOL): Add undef.
29556
29557 2013-02-11   Ondřej Bílka  <neleai@seznam.cz>
29558
29559         * bits/stdlib-bsearch.h: New file.
29560         * stdlib/bsearch.c: Include bits/stdlib-bsearch.h.
29561         * stdlib/stdlib.h: Likewise.
29562
29563 2013-02-11  Roland McGrath  <roland@hack.frob.com>
29564
29565         * manual/conf.texi (General Limits): Fix SSIZE_MAX type to ssize_t.
29566         * manual/errno.texi (Error Messages): Fix typo in error_print_progname
29567         declaration.
29568         * manual/search.texi (Array Search Function): Add missing const in
29569         lfind prototype.
29570         * manual/resource.texi (Limits on Resources): Fix RLIM_INFINITY
29571         declaration to use rlim_t.
29572         (Basic Scheduling Functions): Remove erroneous const from
29573         sched_getparam prototype.  Remove erroneous * from
29574         sched_get_priority_max and sched_get_priority_min prototypes.
29575         (Resource Usage): Fix summary @comment on vtimes to refer to
29576         sys/vtimes.h rather than vtimes.h.
29577         Add missing *s in vtimes prototype.
29578         (Limits on Resources): Fix ulimit prototype to return long int.
29579         * manual/math.texi (SVID Random): Fix lrand48_r and mrand48_r
29580         prototypes to use long int rather than double.
29581         (BSD Random): Fix initstate and setstate to use char *, not void *.
29582         * manual/llio.texi (Asynchronous Reads/Writes): Fix lio_listio64
29583         prototype to make second argument 'struct aiocb64 *const[]'.
29584         Fix aio_read64 and aio_write64 prototypes to use struct aiocb64.
29585         (Status of AIO Operations): Remove erroneous const in aio_return and
29586         aio_return64 prototypes.
29587         (Synchronizing I/O): Fix sync prototype to return void.
29588         * manual/startup.texi (Suboptions): Remove an erroneous const in
29589         getsubopt prototype.
29590         * manual/getopt.texi (Using Getopt): Add a const in getopt prototype.
29591         * manual/users.texi (Lookup Netgroup): Fix getnetgrent_r prototype to
29592         use size_t rather than int.
29593         (Scanning All Users): Likewise for getpwent_r.
29594         (Setting Groups): Add missing const to setgroups prototype.
29595         * manual/sysinfo.texi (mtab): Fix typo in getmntent_r prototype.
29596         * manual/socket.texi (Host Names): Fix gethostbyaddr and
29597         gethostbyaddr_r prototypes to use socklen_t rather than size_t and
29598         'const void *' rather than 'const char *'.
29599         (Host Address Functions): Likewise for inet_ntop.
29600         (Networks Database): Fix getnetbyaddr prototype to use uint32_t.
29601         (Receiving Data): Fix recv, recvfrom, recvmsg prototypes to use
29602         ssize_t for return value.
29603         (Sending Data): Likewise for send, sendto, sendmsg.
29604         (Socket Option Functions): Add a missing const in setsockopt prototype.
29605         * manual/stdio.texi (Simple Output): Fix fputwc_unlocked prototype to
29606         use wchar_t for the argument.
29607         (Formatted Input Functions): Fix swscanf prototype to use wchar_t *.
29608         * manual/arith.texi (Control Functions): Fix fegetexcept prototype to
29609         take no arguments.
29610         (Normalization Functions): Fix scalb, scalbf, scalbl prototypes to use
29611         double/float/long double for second argument.
29612         Fix return types of significand, significandf, significandl.
29613         * manual/filesys.texi (Setting Permissions): Use mode_t for second
29614         argument in fchmod prototype.
29615         (File Owner): Use uid_t and gid_t in fchown prototype.
29616         (File Times): Add const to utimes, futimes, and lutimes prototypes.
29617         (Making Special Files): Use mode_t and dev_t in mknod prototype.
29618         (Scanning Directory Content): Fix scandir and scandir64 prototypes to
29619         use 'const struct dirent **' as argument types to CMP function pointer
29620         argument.
29621         (Symbolic Links): Fix readlink prototype with ssize_t as return value.
29622         (File Times): Fix summary magic @comment for struct utimbuf and utime
29623         to refer to utime.h, not time.h.
29624         * manual/string.texi (Argz Functions): Add missing const in
29625         argz_extract and argz_next prototypes.
29626         (Finding Tokens in a String): Likewise for basename.
29627         (String/Array Comparison): Fix typo in wcscasecmp prototype.
29628         (Copying and Concatenation): Fix typo in wmemmove prototype.
29629         * manual/signal.texi (Using Pause): Use (void) in pause prototype.
29630         (Signal Stack): Remove erroneous const in sigstack prototype.
29631         * manual/time.texi (Setting an Alarm): Add missing const in setitimer
29632         prototype.
29633         (Simple Calendar Time): Likewise for stime.
29634         * manual/terminal.texi (BSD Terminal Modes): Add missing const in stty
29635         prototype.
29636         * manual/sysinfo.texi (System Parameters): Fix mentions of sysctl.h to
29637         say sys/sysctl.h instead.
29638         * manual/syslog.texi (syslog; vsyslog): Add missing const in syslog
29639         and vsyslog prototypes.
29640
29641 2013-02-11  Tom de Vries  <tom@codesourcery.com>
29642
29643         * string/Makefile (CFLAGS-bug-strstr1.c, CFLAGS-bug-strcasestr1.c):
29644         Remove.
29645
29646 2013-02-11  Roland McGrath  <roland@hack.frob.com>
29647
29648         * misc/sys/mman.h: Fix typo in mremap comment.
29649
29650 2013-02-08  Roland McGrath  <roland@hack.frob.com>
29651
29652         * manual/examples/mkfsock.c (make_named_socket): Don't add one for
29653         the '\0' terminator.
29654
29655 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
29656
29657         [BZ #13550]
29658         * debug/segfault.c: Don't include <bp-checks.h>.
29659         * sysdeps/generic/bp-checks.h: Remove file.
29660         * sysdeps/unix/sysv/linux/getdents.c: Don't include <bp-checks.h>.
29661         (__GETDENTS): Don't use CHECK_N.
29662         * sysdeps/unix/sysv/linux/i386/brk.c: Don't include <bp-checks.h>.
29663         * sysdeps/unix/sysv/linux/i386/getgroups.c: Likewise.
29664         (__getgroups): Don't use CHECK_N.
29665         * sysdeps/unix/sysv/linux/i386/setgroups.c: Likewise.
29666         (setgroups): Don't use CHECK_N.
29667         * sysdeps/unix/sysv/linux/mmap64.c: Don't include <bp-checks.h>.
29668         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
29669         (__libc_msgrcv): Don't use CHECK_N.
29670         * sysdeps/unix/sysv/linux/msgsnd.c: Don't include <bp-checks.h>.
29671         (__libc_msgsnd): Don't use CHECK_N.
29672         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c: Don't include
29673         <bp-checks.h>.
29674         (__libc_pread): Don't use CHECK_N.
29675         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c: Don't
29676         include <bp-checks.h>.
29677         (__libc_pread64): Don't use CHECK_N.
29678         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c: Don't
29679         include <bp-checks.h>.
29680         (__libc_pwrite): Don't use CHECK_N.
29681         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c: Don't
29682         include <bp-checks.h>.
29683         (__libc_pwrite64): Don't use CHECK_N.
29684         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Don't include
29685         <bp-checks.h>.
29686         (__libc_pread): Don't use CHECK_N.
29687         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Don't
29688         include <bp-checks.h>.
29689         (__libc_pread64): Don't use CHECK_N.
29690         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Don't
29691         include <bp-checks.h>.
29692         (__libc_pwrite): Don't use CHECK_N.
29693         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Don't
29694         include <bp-checks.h>.
29695         (__libc_pwrite64): Don't use CHECK_N.
29696         * sysdeps/unix/sysv/linux/pread.c: Don't include <bp-checks.h>.
29697         (do_pread): Don't use CHECK_N.
29698         * sysdeps/unix/sysv/linux/pread64.c: Don't include <bp-checks.h>.
29699         (do_pread64): Don't use CHECK_N.
29700         * sysdeps/unix/sysv/linux/pwrite.c: Don't include <bp-checks.h>.
29701         (do_pwrite): Don't use CHECK_N.
29702         * sysdeps/unix/sysv/linux/pwrite64.c: Don't include <bp-checks.h>.
29703         (do_pwrite64): Don't use CHECK_N.
29704         * sysdeps/unix/sysv/linux/readv.c: Don't include <bp-checks.h>.
29705         (__libc_readv): Don't use CHECK_N.
29706         * sysdeps/unix/sysv/linux/semop.c: Don't include <bp-checks.h>.
29707         (semop): Don't use CHECK_N.
29708         * sysdeps/unix/sysv/linux/semtimedop.c: Don't include
29709         <bp-checks.h>.
29710         (semtimedop): Don't use CHECK_N.
29711         * sysdeps/unix/sysv/linux/sh/pread.c: Don't include <bp-checks.h>.
29712         (__libc_pread): Don't use CHECK_N.
29713         * sysdeps/unix/sysv/linux/sh/pread64.c: Don't include
29714         <bp-checks.h>.
29715         (__libc_pread64): Don't use CHECK_N.
29716         * sysdeps/unix/sysv/linux/sh/pwrite.c: Don't include
29717         <bp-checks.h>.
29718         (__libc_pwrite): Don't use CHECK_N.
29719         * sysdeps/unix/sysv/linux/sh/pwrite64.c: Don't include
29720         <bp-checks.h>.
29721         (__libc_pwrite64): Don't use CHECK_N.
29722         * sysdeps/unix/sysv/linux/sparc/sparc64/msgrcv.c: Don't include
29723         <bp-checks.h>.
29724         (__libc_msgrcv): Don't use CHECK_N.
29725         * sysdeps/unix/sysv/linux/sysctl.c: Don't include <bp-checks.h>.
29726         (__sysctl): Don't use CHECK_N.  Remove GKM FIXME comment.
29727         * sysdeps/unix/sysv/linux/writev.c: Don't include <bp-checks.h>.
29728         (__libc_writev): Don't use CHECK_N.
29729
29730 2013-02-08  Roland McGrath  <roland@hack.frob.com>
29731
29732         * string/strcpy.c: Removed unused variable.
29733
29734         * Makeconfig (+sysdep-includes): Define with := rather than =.
29735         Use an existing include/ subdir of each sysdeps dir before it.
29736
29737 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29738
29739         * nscd/connection.c (register_traced_file): Comment function.
29740         [HAVE_INOTIFY] (union __inev): Define.
29741         [HAVE_INOTIFY] (inotify_check_files): New function.
29742         [HAVE_INOTIFY] (clear_db_cache): Likewise.
29743         [HAVE_INOTIFY] (main_loop_poll): Call inotify_check_files and
29744         clear_db_cache.
29745         [HAVE_INOTIFY] (main_loop_epoll): Likewise.
29746
29747 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29748
29749         * elf/dl-cache.c (_dl_load_cache_lookup): Comment that cache is
29750         loaded if not already and that a failure is permanent.
29751
29752 2013-02-08  Carlos O'Donell  <carlos@redhat.com>
29753
29754         [BZ #15006]
29755         * sysdeps/generic/ldconfig.h: Define FLAG_ARM_LIBSF.
29756         * elf/cache.c (print_entry): Add FLAG_ARM_LIBSF support.
29757
29758 2013-02-08  Joseph Myers  <joseph@codesourcery.com>
29759
29760         [BZ #13550]
29761         * sysdeps/generic/bp-checks.h (CHECK_1): Remove all definitions.
29762         (CHECK_1_NULL_OK): Likewise.
29763         * sysdeps/unix/sysv/linux/fxstat.c: Do not include <bp-checks.h>.
29764         (__fxstat): Do not use CHECK_1.
29765         * sysdeps/unix/sysv/linux/fxstat64.c: Do not include
29766         <bp-checks.h>.
29767         (___fxstat64): Do not use CHECK_1.
29768         * sysdeps/unix/sysv/linux/fxstatat.c: Do not include
29769         <bp-checks.h>.
29770         (__fxstatat): Do not use CHECK_1.
29771         * sysdeps/unix/sysv/linux/fxstatat64.c: Do not include
29772         <bp-checks.h>.
29773         (__fxstatat64): Do not use CHECK_1.
29774         * sysdeps/unix/sysv/linux/i386/fxstat.c: Do not include
29775         <bp-checks.h>.
29776         (__fxstat): Do not use CHECK_1.
29777         * sysdeps/unix/sysv/linux/i386/fxstatat.c: Do not include
29778         <bp-checks.h>.
29779         (__fxstatat): Do not use CHECK_1.
29780         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
29781         <bp-checks.h>.
29782         (__getresgid): Do not use CHECK_1.
29783         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
29784         <bp-checks.h>.
29785         (__getresuid): Do not use CHECK_1.
29786         * sysdeps/unix/sysv/linux/i386/lxstat.c: Do not include
29787         <bp-checks.h>.
29788         (__lxstat): Do not use CHECK_1.
29789         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
29790         <bp-checks.h>.
29791         (__old_msgctl): Do not use CHECK_1.
29792         (__new_msgctl): Likewise.
29793         * sysdeps/unix/sysv/linux/i386/setrlimit.c: Do not include
29794         <bp-checks.h>.
29795         (__new_setrlimit): Do not use CHECK_1.
29796         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
29797         <bp-checks.h>.
29798         (__old_shmctl): Do not use CHECK_1.
29799         (__new_shmctl): Likewise.
29800         * sysdeps/unix/sysv/linux/i386/xstat.c: Do not include
29801         <bp-checks.h>.
29802         (__xstat): Do not use CHECK_1.
29803         * sysdeps/unix/sysv/linux/lxstat.c: Do not include <bp-checks.h>.
29804         (__lxstat): Do not use CHECK_1.
29805         * sysdeps/unix/sysv/linux/lxstat64.c: Do not include
29806         <bp-checks.h>.
29807         (___lxstat64): Do not use CHECK_1.
29808         * sysdeps/unix/sysv/linux/msgctl.c: Do not include <bp-checks.h>.
29809         (__old_msgctl): Do not use CHECK_1.
29810         (__new_msgctl): Likewise.
29811         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Do not include
29812         <bp-checks.h>.
29813         (__gettimeofday): Do not use CHECK_1.
29814         * sysdeps/unix/sysv/linux/ptrace.c: Do not include <bp-checks.h>.
29815         (ptrace) [__BOUNDED_POINTERS__]: Remove conditional code.
29816         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Do not include
29817         <bp-checks.h>.
29818         (__gettimeofday): Do not use CHECK_1.
29819         * sysdeps/unix/sysv/linux/shmctl.c: Do not include <bp-checks.h>.
29820         (__old_shmctl): Do not use CHECK_1_NULL_OK.
29821         (__new_shmctl): Do not use CHECK_1.
29822         * sysdeps/unix/sysv/linux/sigtimedwait.c: Do not include
29823         <bp-checks.h>.
29824         (do_sigtimedwait): Do not use CHECK_1.
29825         * sysdeps/unix/sysv/linux/sigwaitinfo.c: Do not include
29826         <bp-checks.h>.
29827         (do_sigwaitinfo): Do not use CHECK_1.
29828         * sysdeps/unix/sysv/linux/sparc/sparc64/msgctl.c: Do not include
29829         <bp-checks.h>.
29830         (msgctl): Do not use CHECK_1.
29831         * sysdeps/unix/sysv/linux/sparc/sparc64/shmctl.c: Do not include
29832         <bp-checks.h>.
29833         (shmctl): Do not use CHECK_1.
29834         * sysdeps/unix/sysv/linux/ustat.c: Do not include <bp-checks.h>.
29835         (ustat): Do not use CHECK_1.
29836         * sysdeps/unix/sysv/linux/wordsize-64/fxstat.c: Do not include
29837         <bp-checks.h>.
29838         (__fxstat): Do not use CHECK_1.
29839         * sysdeps/unix/sysv/linux/wordsize-64/fxstatat.c: Do not include
29840         <bp-checks.h>.
29841         (__fxstatat): Do not use CHECK_1.
29842         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c: Do not include
29843         <bp-checks.h>.
29844         (__lxstat): Do not use CHECK_1.
29845         * sysdeps/unix/sysv/linux/wordsize-64/xstat.c: Do not include
29846         <bp-checks.h>.
29847         (__xstat): Do not use CHECK_1.
29848         * sysdeps/unix/sysv/linux/xstat.c: Do not include <bp-checks.h>.
29849         (__xstat): Do not use CHECK_1.
29850         * sysdeps/unix/sysv/linux/xstat64.c: Do not include <bp-checks.h>.
29851         (___xstat64): Do not use CHECK_1.
29852
29853         [BZ #13550]
29854         * sysdeps/generic/bp-checks.h (CHECK_BOUNDS_LOW): Remove all
29855         definitions.
29856         (CHECK_BOUNDS_HIGH): Likewise.
29857         * string/strcpy.c: Do not include <bp-checks.h>.
29858         (strcpy): Do not use CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH.
29859
29860 2013-02-07  Roland McGrath  <roland@hack.frob.com>
29861
29862         * nscd/nscd-client.h (__nscd_drop_map_ref):
29863         Add __attribute__ ((unused)).
29864         * nis/nss-nisplus.h (niserr2nss): Likewise.
29865
29866         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Define it only
29867         under [!(USE_AS_STRCASESTR && STRCASESTR_NONASCII)].
29868
29869         * csu/libc-tls.c (init_static_tls, init_slotinfo):
29870         Remove inline keyword.
29871         * include/rounding-mode.h (round_away): Likewise.
29872         * libio/wfileops.c (adjust_wide_data): Likewise.
29873         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu): Likewise.
29874         (__m128i_strloadu_tolower): Likewise.
29875         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c
29876         (__m128i_strloadu_tolower): Likewise.
29877         * time/mktime.c (ydhms_diff): Likewise.
29878         * locale/elem-hash.h (elem_hash): Likewise.
29879         * locale/setlocale.c (setdata): Likewise.
29880         * posix/regex_internal.h (re_string_char_size_at): Likewise.
29881         (re_string_wchar_at): Likewise.
29882         (bitset_not, bitset_merge, bitset_mask): Likewise.
29883         [!(__GNUC__ > 3)] (inline): Remove macro.
29884         * nscd/nscd-client.h (__nscd_drop_map_ref): Remove inline keyword.
29885         * elf/dl-deps.c (_dl_map_object_deps: preload): Likewise.
29886         * elf/tlsdeschtab.h (_dl_tlsdesc_resolve_early_return_p): Likewise.
29887         (_dl_tlsdesc_wake_up_held_fixups): Likewise.
29888         * string/memcmp.c (memcmp_bytes): Likewise.
29889         * locale/programs/locarchive.c (compute_hashval): Likewise.
29890         * sysdeps/ieee754/dbl-64/x2y2m1.c (mul_split): Likewise.
29891         * sysdeps/unix/sysv/linux/fips-private.h (fips_enabled_p): Likewise.
29892         * resolv/res_send.c (evNowTime, evCmpTime): Likewise.
29893         * nss/getent.c (print_rpc, print_protocols): Likewise.
29894         (print_passwd, print_group, print_aliases): Likewise.
29895         * nis/nss-nisplus.h (niserr2nss): Likewise.
29896         * nscd/connections.c (restart_p): Likewise.
29897         Change return type to bool.
29898
29899 2013-02-05  Roland McGrath  <roland@hack.frob.com>
29900
29901         * Makeconfig (all-Depend-files): Add existing
29902         $(sorted-subdirs:=/Depend) files.
29903         (all-subdirs): Remove nss.
29904         * sysdeps/unix/inet/Subdirs: Add it here instead.
29905         * hesiod/Depend: New file.
29906
29907         * elf/dl-hwcaps.c (_dl_important_hwcaps): Use a variable-length array
29908         instead of calling alloca.
29909
29910         * io/lseek.c (__lseek): Rename to __libc_lseek.
29911         Define __lseek as an alias.
29912
29913         * sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
29914
29915 2013-02-04  Carlos O'Donell  <carlos@redhat.com>
29916
29917         * stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the
29918         else clause and remove check for non-standard endianness.
29919
29920 2013-02-04  David S. Miller  <davem@davemloft.net>
29921
29922         * sysdeps/sparc/fpu/libm-test-ulps: Update.
29923
29924 2013-02-04  Joseph Myers  <joseph@codesourcery.com>
29925
29926         [BZ #13550]
29927         * sysdeps/generic/bp-checks.h [__BOUNDED_POINTERS__]
29928         (__ubp_memchr): Remove prototype.
29929         [__BOUNDED_POINTERS__] (_CHECK_STRING): Remove macro.
29930         [__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
29931         [__BOUNDED_POINTERS__] (CHECK_STRING_NULL_OK): Likewise.
29932         [!__BOUNDED_POINTERS__] (CHECK_STRING): Likewise.
29933         * sysdeps/i386/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
29934         Remove alias.
29935         * sysdeps/sparc/sparc32/memchr.S [!__BOUNDED_POINTERS__]
29936         (__ubp_memchr): Likewise.
29937         * sysdeps/sparc/sparc64/memchr.S [!__BOUNDED_POINTERS__]
29938         (__ubp_memchr): Likewise.
29939         * sysdeps/unix/sysv/linux/execve.c: Do not include <bp-checks.h>.
29940         (__execve) [__BOUNDED_POINTERS__]: Remove conditional code.
29941         (__execve) [!__BOUNDED_POINTERS__]: Make code unconditional.
29942         * sysdeps/unix/sysv/linux/fxstatat.c (__fxstatat): Do not use
29943         CHECK_STRING.
29944         * sysdeps/unix/sysv/linux/fxstatat64.c (__fxstatat64): Likewise.
29945         * sysdeps/unix/sysv/linux/getcwd.c: Do not include <bp-checks.h>.
29946         (__getcwd): Do not use CHECK_STRING.
29947         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
29948         <bp-checks.h>.
29949         (__real_chown): Do not use CHECK_STRING.
29950         * sysdeps/unix/sysv/linux/i386/fchownat.c: Do not include
29951         <bp-checks.h>.
29952         (fchownat): Do not use CHECK_STRING.
29953         * sysdeps/unix/sysv/linux/i386/fxstatat.c (__fxstatat): Do not use
29954         CHECK_STRING.
29955         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
29956         <bp-checks.h>.
29957         (__lchown): Do not use CHECK_STRING.
29958         * sysdeps/unix/sysv/linux/i386/lxstat.c (__lxstat): Likewise.
29959         * sysdeps/unix/sysv/linux/i386/xstat.c (__xstat): Likewise.
29960         * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Likewise.
29961         * sysdeps/unix/sysv/linux/lxstat64.c (___lxstat64): Likewise.
29962         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
29963         include <bp-checks.h>.
29964         (truncate64): Do not use CHECK_STRING.
29965         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
29966         <bp-checks.h>.
29967         (__real_chown): Do not use CHECK_STRING.
29968         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
29969         <bp-checks.h>.
29970         (__lchown): Do not use CHECK_STRING.
29971         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
29972         <bp-checks.h>.
29973         (__chown): Do not use CHECK_STRING.
29974         * sysdeps/unix/sysv/linux/truncate64.c: Do not include
29975         <bp-checks.h>.
29976         (truncate64): Do not use CHECK_STRING.
29977         * sysdeps/unix/sysv/linux/wordsize-64/lxstat.c (__lxstat):
29978         Likewise.
29979         * sysdeps/unix/sysv/linux/xmknod.c: Do not include <bp-checks.h>.
29980         (__xmknod): Do not use CHECK_STRING.
29981         * sysdeps/unix/sysv/linux/xmknodat.c: Do not include
29982         <bp-checks.h>.
29983         (__xmknodat): Do not use CHECK_STRING.
29984         * sysdeps/unix/sysv/linux/xstat.c (__xstat): Likewise.
29985         * sysdeps/unix/sysv/linux/xstat64.c (___xstat64): Likewise.
29986
29987 2013-02-04  Andreas Schwab  <schwab@suse.de>
29988
29989         [BZ #14142]
29990         * include/errno.h: Redefine errno only if !NOT_IN_libc || IN_LIB.
29991         * include/netdb.h: Likewise for h_errno.
29992         * elf/tst-stackguard1.c: Include <tls.h>.
29993
29994 2013-02-02  Jan Kratochvil  <jan.kratochvil@redhat.com>
29995
29996         * elf/link.h (struct link_map): Extend the l_addr comment.
29997         * include/link.h (struct link_map): Likewise.
29998
29999 2013-02-01  Joseph Myers  <joseph@codesourcery.com>
30000
30001         [BZ #13550]
30002         * sysdeps/generic/bp-checks.h (BOUNDED_N): Remove all definitions.
30003         (BOUNDED_1): Remove macro.
30004         * debug/backtrace.c: Don't include <bp-checks.h>.
30005         (ADVANCE_STACK_FRAME): Don't use BOUNDED_1.
30006         (__backtrace): Likewise.
30007         * sysdeps/powerpc/powerpc32/backtrace.c: Don't include
30008         <bp-checks.h>.
30009         (__backtrace): Don't use BOUNDED_1.
30010         * sysdeps/powerpc/powerpc64/backtrace.c: Don't include
30011         <bp-checks.h>.
30012         (__backtrace): Don't use BOUNDED_1.
30013         * sysdeps/sparc/backtrace.c: Don't include <bp-checks.h>.
30014         (__backtrace): Don't use BOUNDED_1.
30015         * sysdeps/unix/sysv/linux/shmat.c: Don't include <bp-checks.h>.
30016         (shmat): Don't use BOUNDED_N.
30017
30018 2013-01-31  Joseph Myers  <joseph@codesourcery.com>
30019
30020         [BZ #13550]
30021         * sysdeps/generic/bp-start.h: Remove file.
30022         * csu/libc-start.c: Don't include <bp-start.h>.
30023         (LIBC_START_MAIN): Set up __environ directly instead of using
30024         INIT_ARGV_and_ENVIRON.
30025         * sysdeps/unix/sysv/linux/powerpc/libc-start.c: Don't include
30026         <bp-start.h>.
30027
30028         [BZ #13550]
30029         * sysdeps/generic/bp-checks.h (CHECK_IOCTL): Remove both
30030         definitions.
30031         (CHECK_FCNTL): Likewise.
30032         (CHECK_N_PAGES): Likewise.
30033
30034         [BZ #13550]
30035         * sysdeps/generic/bp-checks.h (CHECK_SIGSET): Remove both
30036         definitions.
30037         (CHECK_SIGSET_NULL_OK): Likewise.
30038         * sysdeps/unix/sysv/linux/sigpending.c: Don't include
30039         <bp-checks.h>.
30040         (sigpending): Don't use CHECK_SIGSET.
30041         * sysdeps/unix/sysv/linux/sigprocmask.c: Don't include
30042         <bp-checks.h>.
30043         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30044         * sysdeps/unix/sysv/linux/sigsuspend.c: Don't include
30045         <bp-checks.h>.
30046         (do_sigsuspend): Don't use CHECK_SIGSET.
30047         * sysdeps/unix/sysv/linux/sigtimedwait.c (do_sigtimedwait): Don't
30048         use CHECK_SIGSET.
30049         * sysdeps/unix/sysv/linux/sigwait.c: Don't include <bp-checks.h>.
30050         (do_sigwait): Don't use CHECK_SIGSET.
30051         * sysdeps/unix/sysv/linux/sigwaitinfo.c (do_sigwaitinfo): Don't
30052         use CHECK_SIGSET.
30053         * sysdeps/unix/sysv/linux/sparc/sparc64/sigpending.c: Don't
30054         include <bp-checks.h>.
30055         (sigpending): Don't use CHECK_SIGSET.
30056         * sysdeps/unix/sysv/linux/sparc/sparc64/sigprocmask.c: Don't
30057         include <bp-checks.h>.
30058         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30059         * sysdeps/unix/sysv/linux/x86_64/sigpending.c: Don't include
30060         <bp-checks.h>.
30061         (sigpending): Don't use CHECK_SIGSET.
30062         * sysdeps/unix/sysv/linux/x86_64/sigprocmask.c: Don't include
30063         <bp-checks.h>.
30064         (__sigprocmask): Don't use CHECK_SIGSET and CHECK_SIGSET_NULL_OK.
30065
30066         [BZ #13550]
30067         * sysdeps/generic/bp-semctl.h: Remove file.
30068         * sysdeps/unix/sysv/linux/i386/semctl.c: Don't include
30069         <bp-checks.h> and <bp-semctl.h>.
30070         (__old_semctl): Don't use CHECK_SEMCTL.
30071         (__new_semctl): Likewise.
30072         * sysdeps/unix/sysv/linux/semctl.c: Don't include <bp-checks.h>
30073         and <bp-semctl.h>.
30074         (__old_semctl): Don't use CHECK_SEMCTL.
30075         (__new_semctl): Likewise.
30076         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Don't include
30077         <bp-checks.h> and <bp-semctl.h>.
30078         (__old_semctl): Don't use CHECK_SEMCTL.
30079         (__new_semctl): Likewise.
30080         * sysdeps/unix/sysv/linux/sparc/sparc64/semctl.c: Don't include
30081         <bp-checks.h> and <bp-semctl.h>.
30082         (semctl): Don't use CHECK_SEMCTL.
30083
30084         [BZ #13550]
30085         * Makerules (elide-bp-thunks): Remove variable.
30086         (elide-routines.oS): Don't use $(elide-bp-thunks).
30087         (elide-routines.os): Likewise.
30088         (elide-routines.o): Likewise.
30089         (elide-routines.op): Likewise.
30090         (elide-routines.og): Likewise.
30091         (objects): Don't use $(bp-thunks).
30092         * sysdeps/unix/Makefile ($(common-objpfx)s-proto-bp.d): Do not
30093         include.
30094         (common-generated): Do not add s-proto-bp.d.
30095         * sysdeps/unix/make-syscalls.sh (ptr): Remove variable.
30096         (int): Likewise.
30097         (typ): Likewise.
30098         Do not generate makefile rules for bounded-pointer thunks.
30099         * sysdeps/generic/bp-thunks.h: Remove file.
30100         * sysdeps/unix/sysv/linux/i386/bp-thunks.h: Likewise.
30101         * sysdeps/unix/s-proto-bp.S: Likewise.
30102
30103         [BZ #15062]
30104         * math/k_casinh.c (__kernel_casinh): Compute real and imaginary
30105         parts of result separately when argument is not close to line from
30106         -i to i and one part of argument is small.
30107         * math/k_casinhf.c (__kernel_casinhf): Likewise.
30108         * math/k_casinhl.c (__kernel_casinhl): Likewise.
30109         * math/libm-test.inc (cacos_test): Add more tests.
30110         (casin_test): Likewise.
30111         (casinh_test): Likewise.
30112         * sysdeps/i386/fpu/libm-test-ulps: Update.
30113         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30114
30115 2013-01-31  David S. Miller  <davem@davemloft.net>
30116
30117         * po/de.po: Update from translation team.
30118
30119 2013-01-25  Maxim Kuvyrkov  <maxim.kuvyrkov@gmail.com>
30120
30121         * time/tzfile.c: Include stdint.h for SIZE_MAX.
30122
30123 2013-01-25  Thomas Schwinge  <thomas@codesourcery.com>
30124
30125         * configure.in (_AC_PROG_CC_C89): New definition.
30126         * configure: Regenerate.
30127
30128         * configure.in (AC_PROG_CPP): New definition.
30129         * configure: Regenerate.
30130
30131 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
30132
30133         * debug/tst-backtrace.h: New file.
30134         * debug/tst-backtrace2.c: Include tst-backtrace.h.
30135         (ret): Remove variable.
30136         (x): Likewise.
30137         (FAIL): Remove macro.
30138         (NO_INLINE): Likewise.
30139         (fn1): Use match function instead of strstr.
30140         * debug/tst-backtrace3.c: Include tst-backtrace.h.
30141         (ret): Remove variable.
30142         (x): Likewise.
30143         (FAIL): Remove macro.
30144         (NO_INLINE): Likewise.
30145         (fn): Use match function instead of strstr.
30146         * debug/tst-backtrace4.c: Include tst-backtrace.h.
30147         (ret): Remove variable.
30148         (x): Likewise.
30149         (FAIL): Remove macro.
30150         (NO_INLINE): Likewise.
30151         (handle_signal): Use match function instead of strstr.
30152         * debug/tst-backtrace5.c: Include tst-backtrace.h.
30153         (ret): Remove variable.
30154         (x): Likewise.
30155         (FAIL): Remove macro.
30156         (NO_INLINE): Likewise.
30157         (handle_signal): Use match function instead of strstr.
30158
30159 2013-01-23  Roland McGrath  <roland@hack.frob.com>
30160
30161         * misc/sys/cdefs.h (__glibc_unlikely, __glibc_likely): Fix whitespace.
30162
30163 2013-01-23  David S. Miller  <davem@davemloft.net>
30164
30165         * sysdeps/sparc/sparc32/sparcv9/bits/atomic.h
30166         (__arch_compare_and_exchange_val_32_acq): Use %g0 as second
30167         argument of CAS if possible.
30168         * sysdeps/sparc/sparc64/bits/atomic.h
30169         (__arch_compare_and_exchange_val_32_acq): Likewise.
30170         (__arch_compare_and_exchange_val_64_acq): Likewise.
30171
30172 2013-01-23  Pino Toscano  <toscano.pino@tiscali.it>
30173
30174         * sysdeps/unix/sysv/linux/ulimit.c: Moved to ...
30175         * sysdeps/posix/ulimit.c: ... this.
30176         Include <limits.h>.
30177         * sysdeps/unix/bsd/ulimit.c: Remove file.
30178
30179 2013-01-23  Adam Conrad  <adconrad@0c3.net>
30180
30181         * elf/Makefile (LDFLAGS-tst-array2): Add $(no-as-needed).
30182         (LDFLAGS-tst-array5): Likewise.
30183
30184 2013-01-23  Joseph Myers  <joseph@codesourcery.com>
30185
30186         [BZ #15036]
30187         * bits/wchar.h (__WCHAR_MAX): Define based on __WCHAR_MAX__, or
30188         based on [L'\0' - 1 > 0] if [!__WCHAR_MAX__].
30189         (__WCHAR_MIN): Likewise, using __WCHAR_MIN__.
30190         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: Remove.
30191
30192 2013-01-21  David S. Miller  <davem@davemloft.net>
30193
30194         * sysdeps/sparc/backtrace.c: New file.
30195         * sysdeps/sparc/sparc32/backtrace.h: New file.
30196         * sysdeps/sparc/sparc32/sparcv9/backtrace.h: New file.
30197         * sysdeps/sparc/sparc64/backtrace.h: New file.
30198         * sysdeps/sparc/sparc64/backtrace.c: Delete.
30199         * sysdeps/sparc/Makefile (CFLAGS-backtrace.c): Add
30200         -funwind-tables.
30201
30202 2013-01-21  Andreas Schwab  <schwab@suse.de>
30203
30204         [BZ #15020]
30205         * posix/wordexp.c (exec_comm): Avoid busy loop when command has
30206         closed its stdout.
30207
30208 2013-01-20  Andreas Schwab  <schwab@linux-m68k.org>
30209
30210         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Don't include
30211         "mpa2.h".
30212         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30213
30214 2013-01-18  Joseph Myers  <joseph@codesourcery.com>
30215             Mark Mitchell  <mark@codesourcery.com>
30216             Tom de Vries  <tom@codesourcery.com>
30217             Paul Pluzhnikov  <ppluzhnikov@google.com>
30218
30219         * debug/tst-backtrace2.c: New file.
30220         * debug/tst-backtrace3.c: Likewise.
30221         * debug/tst-backtrace4.c: Likewise.
30222         * debug/tst-backtrace5.c: Likewise.
30223         * debug/Makefile (CFLAGS-tst-backtrace2.c): New variable.
30224         (CFLAGS-tst-backtrace3.c): Likewise.
30225         (CFLAGS-tst-backtrace4.c): Likewise.
30226         (CFLAGS-tst-backtrace5.c): Likewise.
30227         (LDFLAGS-tst-backtrace2): Likewise.
30228         (LDFLAGS-tst-backtrace3): Likewise.
30229         (LDFLAGS-tst-backtrace4): Likewise.
30230         (LDFLAGS-tst-backtrace5): Likewise.
30231         (tests): Add new tests tst-backtrace2, tst-backtrace3,
30232         tst-backtrace4 and tst-backtrace5.
30233
30234 2013-01-18  Anton Blanchard  <anton@samba.org>
30235             Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
30236
30237         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Rename
30238         __kernel_vdso_get_tbfreq to __kernel_get_tbfreq.
30239         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Add parameter to
30240         INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK to specify return type.
30241         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
30242         (INTERNAL_VSYSCALL_NCS): Change "=&r" in inline asm output regs list to
30243         "+r" and remove output regs list as redundant.  Add explicit inline
30244         asm to specify register of return val to work around compiler codegen
30245         bug.  Remove (int) cast on return value.  Add return type parameter to
30246         use in macro so that this macro does not truncate return value for
30247         64-bit values.
30248         (INTERNAL_VSYSCALL_NO_SYSCALL_FALLBACK): Add return type parameter and
30249         pass to INTERNAL_VSYSCALL_NCS.
30250         (INLINE_VSYSCALL): Add 'long int' as return type to
30251         INTERNAL_VSYSCALL_NCS macro invocation.
30252         (INTERNAL_VSYSCALL): Add 'long int' as return type to
30253         INTERNAL_VSYSCALL_NCS macro invocation.
30254         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
30255
30256 2013-01-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
30257
30258         [BZ #14496]
30259         * sysdeps/i386/fpu/fenv_private.h (libc_feupdateenv_test_sse):
30260         Fix application of SIMD FP exception mask.
30261
30262         * sysdeps/ieee754/dbl-64/mpa.h (__pow_mp): New function to get an
30263         mp_no from a power of two.
30264         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove
30265         __mpexp_twomm1.  Use __pow_mp.
30266
30267         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Remove unnecessary
30268         multiplication.
30269
30270 2013-01-17  David S. Miller  <davem@davemloft.net>
30271
30272         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30273
30274 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
30275
30276         [BZ #15023]
30277         * include/complex.h: Condition contents on [!_COMPLEX_H].
30278         (__kernel_casinhf): New prototype.
30279         (__kernel_casinh): Likewise.
30280         (__kernel_casinhl): Likewise.
30281         * math/Makefile (libm_calls): Add k_casinh.
30282         * math/k_casinh.c: New file.
30283         * math/k_casinhf.c: Likewise.
30284         * math/k_casinhl.c: Likewise.
30285         * math/s_cacos.c (__cacos): Implement using __kernel_casinh for
30286         finite nonzero arguments.
30287         * math/s_cacosf.c (__cacosf): Implement using __kernel_casinhf for
30288         finite nonzero arguments.
30289         * math/s_cacosl.c (__cacosl): Implement using __kernel_casinhl for
30290         finite nonzero arguments.
30291         * math/s_casinh.c: Do not include <float.h>.
30292         (__casinh): Move code for finite nonzero arguments to k_casinh.c.
30293         * math/s_casinhf.c: Do not include <float.h>.
30294         (__casinhf): Move code for finite nonzero arguments to
30295         k_casinhf.c.
30296         * math/s_casinhl.c: Do not include <float.h>.
30297         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Do not undefine and
30298         redefine.
30299         (__casinhl): Move code for finite nonzero arguments to
30300         k_casinhl.c.
30301         * math/libm-test.inc (cacos_test): Add more tests.
30302         * sysdeps/i386/fpu/libm-test-ulps: Update.
30303         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
30304
30305 2013-01-17  Pino Toscano  <toscano.pino@tiscali.it>
30306
30307         * sysdeps/unix/sysv/linux/malloc-sysdep.h (HAVE_MREMAP): New define.
30308         * malloc/malloc.c: Include <unistd.h> and <malloc-sysdep.h>.
30309         [!HAVE_MREMAP]: Remove [defined linux] case.
30310         * malloc/arena.c: Do not include <malloc-sysdep.h>.
30311
30312 2013-01-17  Siddhesh Poyarekar  <siddhesh@redhat.com>
30313
30314         * sysdeps/ieee754/dbl-64/mpa.c: Fix header comment.
30315
30316 2013-01-17  H.J. Lu  <hongjiu.lu@intel.com>
30317
30318         * elf/elf.h (R_386_SIZE32): New relocation.
30319         * sysdeps/i386/dl-machine.h (elf_machine_rel): Handle
30320         R_386_SIZE32.
30321         (elf_machine_rela): Likewise.
30322         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
30323         R_X86_64_SIZE64 and R_X86_64_SIZE32.
30324
30325 2013-01-17  Joseph Myers  <joseph@codesourcery.com>
30326
30327         * sysdeps/powerpc/bits/mathdef.h [_SOFT_FLOAT || __NO_FPRS__]
30328         (FP_FAST_FMA): Do not define.
30329         [_SOFT_FLOAT || __NO_FPRS__] (FP_FAST_FMAF): Likewise.
30330         * sysdeps/powerpc/fpu/bits/fenvinline.h [__GNUC__ && !_SOFT_FLOAT
30331         && !__NO_MATH_INLINES]: Add [!__NO_FPRS__] condition.
30332         * sysdeps/powerpc/fpu/bits/mathinline.h [__GNUC__ &&
30333         !_SOFT_FLOAT]: Likewise.
30334         * sysdeps/powerpc/fpu/fpu_control.h [_SOFT_FLOAT || __NO_FPRS__]
30335         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_RESERVED): Define with generic
30336         value.
30337         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_DEFAULT): Likewise.
30338         [_SOFT_FLOAT || __NO_FPRS__] (fpu_control_t): Likewise.
30339         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_GETCW): Likewise.
30340         [_SOFT_FLOAT || __NO_FPRS__] (_FPU_SETCW): Likewise.
30341         [_SOFT_FLOAT || __NO_FPRS__] (__fpu_control): Likewise.
30342         [!_SOFT_FLOAT && !__NO_FPRS__]: Condition previous contents of
30343         file.
30344
30345 2013-01-16  Andreas Schwab  <schwab@suse.de>
30346
30347         [BZ #14327]
30348         * include/stdlib.h (__mktemp): Add declaration.
30349         * misc/mktemp.c (__mktemp): Renamed from mktemp, add weak alias.
30350         * misc/Versions (GLIBC_PRIVATE): Add __mktemp.
30351
30352 2013-01-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
30353
30354         * sysdeps/ieee754/dbl-64/atnat.h: Remove constant value
30355         definitions.
30356         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
30357         * sysdeps/ieee754/dbl-64/mpa.c: Do not include mpa2.h.
30358         * sysdeps/ieee754/dbl-64/mpa.h: Move all constant value
30359         definitions here.
30360         * sysdeps/ieee754/dbl-64/mpa2.h: Remove.
30361         * sysdeps/ieee754/dbl-64/mpatan.h: Remove constant value
30362         definitions.
30363         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Remove ZERO
30364         and ONE.
30365         * sysdeps/ieee754/dbl-64/mpexp.c: Do not include mpexp.h.
30366         * sysdeps/ieee754/dbl-64/mpexp.h: Remove.
30367         * sysdeps/ieee754/dbl-64/mpsqrt.h: Remove constant value
30368         definitions.
30369         * sysdeps/ieee754/dbl-64/mptan.c (__mptan): Remove MONE.
30370         * sysdeps/ieee754/dbl-64/ulog.h: Remove constant value
30371         definitions.
30372         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
30373
30374         * sysdeps/ieee754/dbl-64/mpa2.h: Fix the value of TWO.
30375
30376 2013-01-15  David S. Miller  <davem@davemloft.net>
30377
30378         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30379         trunc{,f} to libm-sysdep_routes.
30380         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30381         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc-vis3.S: New
30382         file.
30383         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_trunc.S: New file.
30384         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf-vis3.S: New
30385         file.
30386         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_truncf.S: New
30387         file.
30388         * sysdeps/sparc/sparc32/sparcv9/fpu/s_trunc.S: New file.
30389         * sysdeps/sparc/sparc32/sparcv9/fpu/s_truncf.S: New file.
30390         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc-vis3.S: New file.
30391         * sysdeps/sparc/sparc64/fpu/multiarch/s_trunc.S: New file.
30392         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf-vis3.S: New file.
30393         * sysdeps/sparc/sparc64/fpu/multiarch/s_truncf.S: New file.
30394         * sysdeps/sparc/sparc64/fpu/s_trunc.S: New file.
30395         * sysdeps/sparc/sparc64/fpu/s_truncf.S: New file.
30396
30397         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30398         nearbyint{,f} to libm-sysdep_routes.
30399         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30400         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint-vis3.S:
30401         New file.
30402         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyint.S: New
30403         file.
30404         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf-vis3.S:
30405         New file.
30406         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_nearbyintf.S: New
30407         file.
30408         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyint.S: New file.
30409         * sysdeps/sparc/sparc32/sparcv9/fpu/s_nearbyintf.S: New file.
30410         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint-vis3.S: New
30411         file.
30412         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyint.S: New file.
30413         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf-vis3.S: New
30414         file.
30415         * sysdeps/sparc/sparc64/fpu/multiarch/s_nearbyintf.S: New file.
30416         * sysdeps/sparc/sparc64/fpu/s_nearbyint.S: New file.
30417         * sysdeps/sparc/sparc64/fpu/s_nearbyintf.S: New file.
30418
30419         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Use
30420         libc_feholdexcept and libc_fesetenv.
30421
30422 2013-01-15  Mike Frysinger  <vapier@gentoo.org>
30423
30424         * sysdeps/unix/sysv/linux/scsi/sg.h: Include stddef.h.
30425
30426 2013-01-14  David S. Miller  <davem@davemloft.net>
30427
30428         * sysdeps/sparc/sparc-ifunc.h (SPARC_ASM_IFUNC2): New macro.
30429         (SPARC_ASM_VIS2_IFUNC): Likewise.
30430         (SPARC_ASM_VIS3_VIS2_IFUNC): Likewise.
30431         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: Make
30432         use of 'siam' instruction.
30433         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S:
30434         Likewise.
30435         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S:
30436         Likewise.
30437         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S:
30438         Likewise.
30439         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: Likewise.
30440         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: Likewise.
30441         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: Likewise.
30442         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: Likewise.
30443         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis2.S: New
30444         file.
30445         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis2.S: New
30446         file.
30447         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis2.S: New
30448         file.
30449         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis2.S: New
30450         file.
30451         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis2.S: New file.
30452         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis2.S: New file.
30453         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis2.S: New file.
30454         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis2.S: New file.
30455         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Hook in
30456         new VIS2 routines.
30457         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
30458         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
30459         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
30460         Likewise.
30461         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
30462         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
30463         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
30464         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
30465         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new VIS2
30466         routines to libm-sysdep_routines.
30467         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Likewise.
30468
30469         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add vis3
30470         fdim/fdimf to libm-sysdep_routines.
30471         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim-vis3.S: New
30472         file.
30473         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdim.S: New file.
30474         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf-vis3.S: New
30475         file.
30476         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fdimf.S: New file.
30477         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdim.S: New file.
30478         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fdimf.S: New file.
30479         * sysdeps/sparc/sparc32/fpu/s_fdim.S: New file.
30480         * sysdeps/sparc/sparc32/fpu/s_fdimf.S: New file.
30481         * sysdeps/sparc/sparc64/fpu/s_fdim.S: New file.
30482         * sysdeps/sparc/sparc64/fpu/s_fdimf.S: New file.
30483
30484 2013-01-14  Siddhesh Poyarekar  <siddhesh@redhat.com>
30485
30486         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Add a local variable
30487         to optimize copies.
30488
30489         * sysdeps/ieee754/dbl-64/mpa.c: Fix formatting.
30490         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
30491         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30492
30493         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__inv): Remove
30494         local variable MPTWO.
30495         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__inv):
30496         Likewise.
30497
30498 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30499
30500         * manual/pattern.texi (Flags for Globbing): Move GLOB_NOSORT after
30501         GLOB_NOESCAPE.
30502
30503 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30504
30505         * manual/pattern.texi (Flags for Globbing): Highlight GNU extensions.
30506
30507 2013-01-13  Mike Frysinger  <vapier@gentoo.org>
30508
30509         * manual/pattern.texi (glob_t): Document gl_flags.
30510         (glob64_t): Likewise.
30511
30512 2013-01-11  David S. Miller  <davem@davemloft.net>
30513
30514         * math/Makefile (gmp-objs): Use $(gmp-sysdep_routines).
30515         * sysdeps/sparc/sparc64/multiarch/Makefile [$(subdir) = math]
30516         (gmp-sysdep_routines): New variable.  Add VIS3 optimized GMP routines.
30517         * sysdeps/sparc/sparc64/multiarch/add_n-vis3.S: New file.
30518         * sysdeps/sparc/sparc64/multiarch/add_n.S: New file.
30519         * sysdeps/sparc/sparc64/multiarch/addmul_1-vis3.S: New file.
30520         * sysdeps/sparc/sparc64/multiarch/addmul_1.S: New file.
30521         * sysdeps/sparc/sparc64/multiarch/mul_1-vis3.S: New file.
30522         * sysdeps/sparc/sparc64/multiarch/mul_1.S: New file.
30523         * sysdeps/sparc/sparc64/multiarch/sub_n-vis3.S: New file.
30524         * sysdeps/sparc/sparc64/multiarch/sub_n.S: New file.
30525         * sysdeps/sparc/sparc64/multiarch/submul_1-vis3.S: New file.
30526         * sysdeps/sparc/sparc64/multiarch/submul_1.S: New file.
30527
30528         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
30529         sparc V9 rather than using V8 code.
30530         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30531         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30532
30533         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
30534         Move to...
30535         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/multiarch/Implies:
30536         Here.
30537
30538 2013-01-11  Roland McGrath  <roland@hack.frob.com>
30539
30540         * configure.in (sysnames): Use $multi_arch_d in setting up $mach list,
30541         not in the main loop.
30542         * configure: Regenerated.
30543
30544 2013-01-11  Joseph Myers  <joseph@codesourcery.com>
30545
30546         * include/features.h (__GLIBC_HAVE_LONG_LONG): Remove.
30547         * bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change #elif condition
30548         to just #else.
30549         * bits/types.h [__GLIBC_HAVE_LONG_LONG]: Likewise.  Remove
30550         [!__GLIBC_HAVE_LONG_LONG] case.
30551         * posix/sys/types.h [__GLIBC_HAVE_LONG_LONG]: Change #elif
30552         condition to just #else.
30553         * stdlib/stdlib.h [__USE_ISOC99 || (__GLIBC_HAVE_LONG_LONG &&
30554         __USE_MISC)]: Change all uses to [__USE_ISOC99 || __USE_MISC].
30555         [__GLIBC_HAVE_LONG_LONG && __USE_BSD]: Change to [__USE_BSD].
30556         * string/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Make code
30557         unconditional.
30558         * string/endian.h [__GLIBC_HAVE_LONG_LONG]: Likewise.
30559         * sysdeps/s390/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
30560         #elif condition to just #else.
30561         * sysdeps/unix/sysv/linux/sys/sysmacros.h
30562         [__GLIBC_HAVE_LONG_LONG]: Make code unconditional.
30563         * sysdeps/x86/bits/byteswap.h [__GLIBC_HAVE_LONG_LONG]: Change
30564         #elif condition to just #else.
30565
30566 2013-01-11  Steve Ellcey  <sellcey@mips.com>
30567
30568         * elf/elf.h (EF_MIPS_ARCH_32): Fix value.
30569         (EF_MIPS_ARCH_64): Fix value.
30570         (EF_MIPS_ARCH_32R2): New.
30571         (EF_MIPS_ARCH_64R2): New.
30572
30573 2013-01-11  H.J. Lu  <hongjiu.lu@intel.com>
30574
30575         * Makeconfig (+link-pie-before-libc): New.
30576         (+link-pie-after-libc): Likewise.
30577         (+link-pie-tests): Likewise.
30578         (+link-pie): Rewritten.
30579         (link-before-libc): Remove $(config-LDFLAGS).
30580         (+link): Add $(rtld-LDFLAGS) after $(+link-before-libc).
30581         (+link-tests): Add $(rtld-tests-LDFLAGS) after $(+link-before-libc).
30582         (config-LDFLAGS): Renamed to ...
30583         (rtld-LDFLAGS): This.
30584         (rtld-tests-LDFLAGS): New macro.
30585         (link-libc-rpath-link): Likewise.
30586         (link-libc-tests-rpath-link): Likewise.
30587         (link-libc-before-gnulib): Remove -Wl,-rpath-link=$(rpath-link).
30588         (link-libc): Prepand $(link-libc-rpath-link).
30589         (link-libc-tests): Prepand $(link-libc-tests-rpath-link).
30590         (test-program-prefix): New macro.
30591         (test-via-rtld-prefix): Likewise.
30592         (test-program-cmd): Likewise.
30593         (host-test-program-cmd): Likewise.
30594         * Makefile ($(common-objpfx)testrun.sh): Replace
30595         $(run-program-prefix) with $(test-program-prefix).
30596         * Makerules ($(LINK.o)): Replace $(config-LDFLAGS) with
30597         $(rtld-LDFLAGS).
30598         ($(common-objpfx)shlib.lds): Likewise.
30599         (build-module-helper): Likewise.
30600         ($(common-objpfx)format.lds): Likewise.
30601         * Rules (binaries-pie-tests): New.
30602         (binaries-pie-notests): Likewise.
30603         (binaries-pie): Rewritten.
30604         ($(addprefix $(objpfx),$(binaries-pie))): Renamed to ...
30605         ($(addprefix $(objpfx),$(binaries-pie-notests))): This.
30606         ($(addprefix $(objpfx),$(binaries-pie-tests))): New.
30607         (make-test-out): Replace $(host-built-program-cmd) with
30608         $(host-test-program-cmd).
30609         * config.make.in (build-hardcoded-path-in-tests): New variable.
30610         * configure.in (--enable-hardcoded-path-in-tests): New configure
30611         option.
30612         (hardcoded_path_in_tests): New AC_SUBST.
30613         * configure: Regenerated.
30614         * catgets/Makefile ($(objpfx)test-gencat.out): Replace
30615         $(built-program-cmd) with $(test-program-cmd).
30616         * catgets/test-gencat.sh (run_program_cmd): Renamed to ...
30617         (test_program_cmd): This.
30618         * elf/Makefile ($(objpfx)order.out): Run test with
30619         $(test-program-prefix).
30620         ($(objpfx)order2.out): Likewise.
30621         ($(objpfx)tst-initorder.out): Likewise.
30622         ($(objpfx)tst-initorder2.out): Likewise.
30623         ($(objpfx)tst-array1.out): Replace $(built-program-cmd) with
30624         $(test-program-cmd).
30625         ($(objpfx)tst-array1-static.out): Likewise.
30626         ($(objpfx)tst-array2.out): Likewise.
30627         ($(objpfx)tst-array3.out): Likewise.
30628         ($(objpfx)tst-array4.out): Likewise.
30629         ($(objpfx)tst-array5.out): Likewise.
30630         ($(objpfx)tst-array5-static.out): Likewise.
30631         (tst-stackguard1-ARGS): Replace $(built-program-cmd) with
30632         $(test-program-cmd).
30633         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Replace
30634         $(run-program-prefix) with $(test-program-prefix).
30635         * grp/tst_fgetgrent.sh (run_program_prefix): Renamed to ...
30636         (test_program_prefix): This.
30637         * iconvdata/Makefile ($(objpfx)tst-tables.out): Replace
30638         $(run-program-prefix) with $(test-program-prefix).
30639         * iconvdata/tst-table.sh (run_program_prefix): Renamed to ...
30640         (test_program_prefix): This.
30641         * iconvdata/tst-tables.sh: Likewise.
30642         * intl/Makefile ($(objpfx)tst-gettext.out): Replace
30643         $(run-program-prefix) with $(test-program-prefix).
30644         ($(objpfx)tst-translit.out): Likewise.
30645         ($(objpfx)tst-gettext2.out): Likewise.
30646         ($(objpfx)tst-gettext4.out): Likewise.
30647         ($(objpfx)tst-gettext6.out): Likewise.
30648         * intl/tst-gettext.sh (run_program_prefix): Renamed to ...
30649         (test_program_prefix): This.
30650         * intl/tst-gettext2.sh: Likewise.
30651         * intl/tst-gettext4.sh  Likewise.
30652         * intl/tst-gettext6.sh: Likewise.
30653         * intl/tst-translit.sh: Likewise.
30654         * io/Makefile ($(objpfx)ftwtest.out): Replace $(run-program-cmd)
30655         with $(test-program-cmd).
30656         * libio/Makefile ($(objpfx)test-freopen.out): Replace
30657         $(run-program-prefix) with $(test-program-prefix).
30658         * libio/test-freopen.sh (run_program_prefix): Renamed to ...
30659         (test_program_prefix): This.
30660         * malloc/Makefile ($(objpfx)tst-mtrace.out): Replace
30661         $(run-program-prefix) with $(test-program-prefix).
30662         * malloc/tst-mtrace.sh (run_program_prefix): Renamed to ...
30663         (test_program_prefix): This.
30664         * manual/install.texi: Document --enable-hardcoded-path-in-tests.
30665         * posix/Makefile ($(objpfx)globtest.out): Replace
30666         $(run-via-rtld-prefix) and $(test-wrapper) with
30667         $(test-program-prefix) and $(test-via-rtld-prefix).
30668         ($(objpfx)wordexp-tst.out): Replace $(run-program-prefix) with
30669         $(test-program-prefix).
30670         (tst-exec-ARGS): Replace $(host-built-program-cmd) with
30671         $(host-test-program-cmd).
30672         (tst-spawn-ARGS): Likewise.
30673         ($(objpfx)tst-rxspencer-mem): Replace $(run-program-prefix) with
30674         $(test-program-prefix).
30675         * posix/globtest.sh (un_via_rtld_prefix): Renamed to ...
30676         (test_via_rtld_prefix): This.
30677         (test_wrapper): Renamed to ...
30678         (test_program_prefix): This.
30679         (run_program_prefix): Replaced by test_program_prefix.
30680         * posix/wordexp-tst.sh (run_program_prefix): Renamed to ...
30681         (test_program_prefix): This.
30682         * rt/Makefile (tst-mqueue7-ARGS): Replace $(host-built-program-cmd)
30683         with $(host-test-program-cmd).
30684         * stdio-common/Makefile ($(objpfx)tst-unbputc.out): Replace
30685         $(run-program-prefix) with $(test-program-prefix).
30686         ($(objpfx)tst-printf.out): Likewise.
30687         ($(objpfx)tst-setvbuf1.out): Replace $(built-program-cmd) with
30688         $(test-program-cmd).
30689         * stdio-common/tst-printf.sh (run_program_prefix): Renamed to ...
30690         (test_program_prefix): This.
30691         * stdio-common/tst-unbputc.sh: Likewise.
30692         * stdlib/Makefile ($(objpfx)tst-fmtmsg.out): Replace
30693         $(run-program-prefix) with $(test-program-prefix).
30694         * stdlib/tst-fmtmsg.sh (run_program_prefix): Renamed to ...
30695         (test_program_prefix): This.
30696         * string/Makefile ($(objpfx)tst-svc.out):  Replace
30697         $(built-program-cmd) with $(test-program-cmd).
30698
30699 2013-01-11  Andreas Jaeger  <aj@suse.de>
30700
30701         [BZ #15003]
30702         * sysdeps/unix/sysv/linux/bits/socket.h (MSG_FASTOPEN): New
30703         value. Sync with Linux 3.7.
30704
30705 2013-01-10  David S. Miller  <davem@davemloft.net>
30706
30707         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Revert previous changes.
30708         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30709         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30710
30711 2013-01-10  Roland McGrath  <roland@hack.frob.com>
30712
30713         * configure.in (sysnames): Drop use of $m0sub and $msub, which are
30714         never set.
30715         * configure: Regenerated.
30716
30717 2013-01-10  David S. Miller  <davem@davemloft.net>
30718
30719         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: Properly optimize for 32-bit
30720         sparc V9 rather than using V8 code.
30721         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: Likewise.
30722         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: Likewise.
30723
30724 2013-01-10  Roland McGrath  <roland@hack.frob.com>
30725
30726         * elf/elf.h (DT_SPARC_REGISTER, DT_SPARC_NUM): Fix whitespace.
30727         (EF_MIPS_NOREORDER, EF_MIPS_PIC, EF_MIPS_CPIC, EF_MIPS_XGOT): Likewise.
30728         (EF_MIPS_64BIT_WHIRL, EF_MIPS_ABI2, EF_MIPS_ABI_ON32): Likewise.
30729         (EF_MIPS_ARCH, EF_MIPS_ARCH_1, EF_MIPS_ARCH_2): Likewise.
30730         (EF_MIPS_ARCH_3, EF_MIPS_ARCH_4, EF_MIPS_ARCH_5): Likewise.
30731         (EF_MIPS_ARCH_32, EF_MIPS_ARCH_64): Likewise.
30732         (E_MIPS_ARCH_1): Define in terms of EF_MIPS_ARCH_* counterpart.
30733         (E_MIPS_ARCH_2, E_MIPS_ARCH_3, E_MIPS_ARCH_4, E_MIPS_ARCH_5): Likewise.
30734         (E_MIPS_ARCH_32, E_MIPS_ARCH_64): Likewise.
30735         (SHN_MIPS_ACOMMON, SHN_MIPS_TEXT, SHN_MIPS_DATA): Fix whitespace.
30736         (SHN_MIPS_SCOMMON, SHN_MIPS_SUNDEFINED): Likewise.
30737         (SHT_MIPS_LIBLIST, SHT_MIPS_MSYM, SHT_MIPS_CONFLICT): Likewise.
30738         (SHT_MIPS_GPTAB, SHT_MIPS_UCODE, SHT_MIPS_DEBUG): Likewise.
30739         (SHT_MIPS_REGINFO, SHT_MIPS_PACKAGE, SHT_MIPS_PACKSYM): Likewise.
30740         (SHT_MIPS_RELD, SHT_MIPS_IFACE, SHT_MIPS_CONTENT): Likewise.
30741         (SHT_MIPS_OPTIONS, SHT_MIPS_SHDR, SHT_MIPS_FDESC): Likewise.
30742         (SHT_MIPS_EXTSYM, SHT_MIPS_DENSE, SHT_MIPS_PDESC): Likewise.
30743         (SHT_MIPS_LOCSYM, SHT_MIPS_AUXSYM, SHT_MIPS_OPTSYM): Likewise.
30744         (SHT_MIPS_LOCSTR, SHT_MIPS_LINE, SHT_MIPS_RFDESC): Likewise.
30745         (SHT_MIPS_DELTASYM, SHT_MIPS_DELTAINST, SHT_MIPS_DELTACLASS): Likewise.
30746         (SHT_MIPS_DELTADECL, SHT_MIPS_SYMBOL_LIB, SHT_MIPS_EVENTS): Likewise.
30747         (SHT_MIPS_TRANSLATE, SHT_MIPS_PIXIE, SHT_MIPS_XLATE): Likewise.
30748         (SHT_MIPS_XLATE_DEBUG, SHT_MIPS_WHIRL, SHT_MIPS_EH_REGION): Likewise.
30749         (SHT_MIPS_XLATE_OLD, SHT_MIPS_PDR_EXCEPTION): Likewise.
30750         (SHF_MIPS_GPREL, SHF_MIPS_MERGE, SHF_MIPS_ADDR): Likewise.
30751         (SHF_MIPS_STRINGS, SHF_MIPS_NOSTRIP, SHF_MIPS_LOCAL): Likewise.
30752         (SHF_MIPS_NAMES, SHF_MIPS_NODUPE): Likewise.
30753
30754 2013-01-10  David S. Miller  <davem@davemloft.net>
30755
30756         * sysdeps/sparc/fpu/libm-test-ulps: Update.
30757
30758 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
30759
30760         * posix/Makefile (tests-static): New variable.
30761         (tests): Add $(tests-static).
30762         (tst-exec-static-ARGS): New variable.
30763         (tst-spawn-static-ARGS): Likewise.
30764         * posix/tst-exec-static.c: New file.
30765         * posix/tst-spawn-static.c: Likewise.
30766         * posix/tst-exec.c: Support run directly.
30767         * posix/tst-spawn.c: Likewise.
30768
30769 2013-01-10  Joseph Myers  <joseph@codesourcery.com>
30770
30771         * elf/link.h (struct dl_phdr_info): Use __extension__ with long
30772         long.
30773         * math/bits/mathcalls.h (llrint): Likewise.
30774         (llround): Likewise.
30775         * stdlib/stdlib.h (struct drand48_data): Likewise.
30776         * sysdeps/generic/inttypes.h (imaxdiv_t): Likewise.
30777         * sysdeps/s390/bits/byteswap.h (__bswap_64): Likewise.
30778         * sysdeps/unix/sysv/linux/sparc/bits/ipc.h (struct ipc_perm):
30779         Likewise.
30780         * sysdeps/unix/sysv/linux/sparc/sys/ucontext.h (struct fpu):
30781         Likewise.
30782         * sysdeps/unix/sysv/linux/x86/sys/procfs.h [__x86_64__]
30783         (elf_greg_t): Likewise.
30784         * sysdeps/x86/bits/setjmp.h [__x86_64__ && __WORDSIZE != 64]
30785         (__jmp_buf): Likewise.
30786         * sysdeps/x86/fpu/bits/mathinline.h (llrintf): Likewise, for all
30787         definitions.
30788         (llrint): Likewise, for all definitions.
30789         (llrintl): Likewise.
30790
30791         * string/string.h [__USE_BSD && __USE_GNU && __GNUC__] (ffsll):
30792         Remove [__GNUC__] condition.
30793         * wcsmbs/wchar.h [__USE_ISOC99 || (__GNUC__ && __USE_GNU)]: Change
30794         condition to just [__USE_ISOC99].
30795         [__GNUC__ && __USE_GNU]: Change condition to just [__USE_GNU].
30796
30797 2013-01-10  H.J. Lu  <hongjiu.lu@intel.com>
30798
30799         [BZ #14200]
30800         * sysdeps/unix/sysv/linux/x86/bits/environments.h
30801         (_POSIX_V7_ILP32_OFF32): Defined as 1 only if __x86_64__ isn't
30802         defined.
30803         (_POSIX_V6_ILP32_OFF32): Likewise.
30804         (_XBS5_ILP32_OFF32): Likewise.
30805         (__ILP32_OFFBIG_CFLAGS): Defined as "-mx32" for x32.
30806         (__ILP32_OFFBIG_LDFLAGS): Likewise.
30807
30808 2013-01-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
30809
30810         * sysdeps/ieee754/dbl-64/mpexp.c: Fix formatting.
30811
30812         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): New array of
30813         doubles __mpexp_twomm1.  Adjust usage.
30814         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1):
30815         Remove.
30816
30817 2013-01-10  Andreas Schwab  <schwab@suse.de>
30818
30819         [BZ #14964]
30820         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (FALLOC_FL_KEEP_SIZE)
30821         (FALLOC_FL_PUNCH_HOLE) [__USE_GNU]: New macros.
30822
30823 2013-01-09  David S. Miller  <davem@davemloft.net>
30824
30825         [BZ #15003]
30826         * sysdeps/gnu/netinet/tcp.h (TCP_COOKIE_TRANSACTIONS)
30827         (TCP_THIN_LINEAR_TIMEOUTS, TCP_THIN_DUPACK, TCP_USER_TIMEOUT)
30828         (TCP_REPAIR, TCP_REPAIR_QUEUE, TCP_QUEUE_SEQ, TCP_REPAIR_OPTIONS)
30829         (TCP_FASTOPEN): Define.
30830         (tcp_repair_opt): New structure.
30831         (TCP_NO_QUEUE, TCP_RECV_QUEUE, TCP_SEND_QUEUE, TCP_QUEUES_NR): New
30832         enum values.
30833         (TCP_COOKIE_MIN, TCP_COOKIE_MAX, TCP_COOKIE_PAIR_SIZE)
30834         (TCP_COOKIE_IN_ALWAYS, TCP_COOKIE_OUT_NEVER, TCP_S_DATA_IN)
30835         (TCP_S_DATA_OUT, TCP_MSS_DEFAULT, TCP_MSS_DESIRED): Define.
30836         (tcp_cookie_transactions): New structure.
30837
30838 2013-01-09  Anton Blanchard  <anton@samba.org>
30839
30840         * sysdeps/unix/sysv/linux/powerpc/sched_getcpu.c: New file.
30841         * sysdeps/unix/sysv/linux/powerpc/Versions: Add __vdso_getcpu.
30842         * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h: Likewise.
30843         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Likewise.
30844
30845 2013-01-09  Joseph Myers  <joseph@codesourcery.com>
30846
30847         * include/features.h (__USE_ANSI): Remove.
30848
30849 2013-01-09  Roland McGrath  <roland@hack.frob.com>
30850
30851         * posix/Makefile (others): Depend on $(objpfx)getconf.speclist.
30852
30853         * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro.
30854
30855 2013-01-09  Siddhesh Poyarekar  <siddhesh@redhat.com>
30856
30857         * sysdeps/s390/fpu/libm-test-ulps: Update.
30858
30859         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
30860
30861         * sysdeps/ieee754/dbl-64/mpa.c (mcr): Reword comment.
30862         (__acr): Likewise.
30863         (__cpy): Likewise.
30864         (norm): Likewise.
30865         (denorm): Likewise.
30866         (__mp_dbl): Likewise.
30867         (__dbl_mp): Likewise.
30868         (add_magnitudes): Likewise.
30869         (sub_magnitudes): Likewise.
30870         (__add): Likewise.
30871         (__sub): Likewise.
30872         (__mul): Likewise.
30873         (__inv): Likewise.
30874         (__dvd): Likewise.
30875         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mcr): Likewise.
30876         (__acr): Likewise.
30877         (__cpy): Likewise.
30878         (norm): Likewise.
30879         (denorm): Likewise.
30880         (__mp_dbl): Likewise.
30881         (__dbl_mp): Likewise.
30882         (add_magnitudes): Likewise.
30883         (sub_magnitudes): Likewise.
30884         (__add): Likewise.
30885         (__sub): Likewise.
30886         (__mul): Likewise.
30887         (__inv): Likewise.
30888         (__dvd): Likewise.
30889         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mcr): Likewise.
30890         (__acr): Likewise.
30891         (__cpy): Likewise.
30892         (norm): Likewise.
30893         (denorm): Likewise.
30894         (__mp_dbl): Likewise.
30895         (__dbl_mp): Likewise.
30896         (add_magnitudes): Likewise.
30897         (sub_magnitudes): Likewise.
30898         (__add): Likewise.
30899         (__sub): Likewise.
30900         (__mul): Likewise.
30901         (__inv): Likewise.
30902         (__dvd): Likewise.
30903
30904 2013-01-08  Joseph Myers  <joseph@codesourcery.com>
30905
30906         * io/sys/stat.h [__GNUC__ && __GNUC__ >= 2 &&
30907         __USE_EXTERN_INLINES]: Change condition to [__USE_EXTERN_INLINES].
30908         * sysdeps/unix/sysv/linux/sys/sysmacros.h [__GNUC__ && __GNUC__ >=
30909         2 && __USE_EXTERN_INLINES]: Likewise.
30910
30911 2013-01-08  Andreas Jaeger  <aj@suse.de>
30912
30913         [BZ# 14985]
30914         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h (EPOLL_NONBLOCK):
30915         Remove.
30916         * sysdeps/unix/sysv/linux/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
30917         * sysdeps/unix/sysv/linux/x86/bits/epoll.h (EPOLL_NONBLOCK): Likewise.
30918
30919 2013-01-07  Anton Blanchard  <anton@samba.org>
30920
30921         * sysdeps/powerpc/fpu/feholdexcpt.c: Fixed spelling errors.
30922         * sysdeps/powerpc/fpu/feupdateenv.c: Likewise.
30923         * sysdeps/powerpc/fpu/math_ldbl.h: Likewise.
30924         * sysdeps/powerpc/powerpc32/bits/atomic.h: Likewise.
30925         * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise.
30926         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
30927         * sysdeps/powerpc/powerpc32/dl-start.S: Likewise.
30928         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
30929         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
30930         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
30931         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
30932         * sysdeps/powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
30933         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
30934         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise.
30935         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Likewise.
30936         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
30937         * sysdeps/powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
30938         * sysdeps/powerpc/powerpc32/power6/memcpy.S: Likewise.
30939         * sysdeps/powerpc/powerpc32/power7/memchr.S: Likewise.
30940         * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise.
30941         * sysdeps/powerpc/powerpc32/power7/memrchr.S: Likewise.
30942         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: Likewise.
30943         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
30944         * sysdeps/powerpc/powerpc32/strncmp.S: Likewise.
30945         * sysdeps/powerpc/powerpc64/bits/atomic.h: Likewise.
30946         * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise.
30947         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
30948         * sysdeps/powerpc/powerpc64/fpu/s_ceill.S: Likewise.
30949         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintl.S: Likewise.
30950         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
30951         * sysdeps/powerpc/powerpc64/memcpy.S: Likewise.
30952         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
30953         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
30954         * sysdeps/powerpc/powerpc64/power4/memcmp.S: Likewise.
30955         * sysdeps/powerpc/powerpc64/power4/memcpy.S: Likewise.
30956         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
30957         * sysdeps/powerpc/powerpc64/power6/memcpy.S: Likewise.
30958         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
30959         * sysdeps/powerpc/powerpc64/power7/memcmp.S: Likewise.
30960         * sysdeps/powerpc/powerpc64/power7/memrchr.S: Likewise.
30961         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: Likewise.
30962         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
30963         * sysdeps/powerpc/powerpc64/strncmp.S: Likewise.
30964
30965 2013-01-07  Joseph Myers  <joseph@codesourcery.com>
30966
30967         * malloc/malloc.h (__MALLOC_P): Remove all definitions.
30968         (__MALLOC_PMT): Likewise.
30969         [__GNUC__] (__MALLOC_HOOK_VOLATILE): Make not conditional on
30970         [__GNUC__], only on [_LIBC].
30971         [__GNUC__] (__MALLOC_DEPRECATED): Likewise.
30972         [!__GNUC__] (__MALLOC_HOOK_VOLATILE): Remove definition.
30973         [!__GNUC__] (__MALLOC_DEPRECATED): Likewise.
30974         * malloc/malloc.c (malloc_hook_ini): Do not use __MALLOC_P in
30975         forward declaration.
30976         (realloc_hook_ini): Likewise.
30977         (memalign_hook_ini): Likewise.
30978         (__libc_memalign): Do not use __MALLOC_PMT in variable
30979         declaration.
30980         (__libc_valloc): Likewise.
30981         (__libc_pvalloc): Likewise.
30982         (__libc_calloc): Likewise.
30983         (__posix_memalign): Likewise.
30984
30985         [BZ #14996]
30986         * math/s_casinh.c: Include <float.h>.
30987         (__casinh): Do not do computation with squaring and square root
30988         for large arguments.
30989         * math/s_casinhf.c: Include <float.h>.
30990         (__casinhf): Do not do computation with squaring and square root
30991         for large arguments.
30992         * math/s_casinhl.c: Include <float.h>.
30993         [LDBL_MANT_DIG == 106] (LDBL_EPSILON): Undefine and redefine.
30994         (__casinhl): Do not do computation with squaring and square root
30995         for large arguments.
30996         * math/libm-test.inc (casin_test): Add more tests.
30997         (casinh_test): Likewise.
30998         * sysdeps/i386/fpu/libm-test-ulps: Update.
30999         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31000
31001 2013-01-04  H.J. Lu  <hongjiu.lu@intel.com>
31002
31003         * sysdeps/i386/i686/cacheinfo.c (__x86_64_data_cache_size): Removed.
31004         (__x86_64_raw_data_cache_size): Likewise.
31005         (__x86_64_data_cache_size_half): Likewise.
31006         (__x86_64_raw_data_cache_size_half): Likewise.
31007         (__x86_64_shared_cache_size): Likewise.
31008         (__x86_64_raw_shared_cache_size): Likewise.
31009         (__x86_64_shared_cache_size_half): Likewise.
31010         (__x86_64_raw_shared_cache_size_half): Likewise.
31011         * sysdeps/x86_64/cacheinfo.c (__x86_64_data_cache_size): Renamed
31012         to ...
31013         (__x86_data_cache_size): This.
31014         (__x86_64_raw_data_cache_size): Renamed to ...
31015         (__x86_raw_data_cache_size): This.
31016         (__x86_64_data_cache_size_half): Renamed to ...
31017         (__x86_data_cache_size_half): This.
31018         (__x86_64_raw_data_cache_size_half): Renamed to ...
31019         (__x86_raw_data_cache_size_half): This.
31020         (__x86_64_shared_cache_size): Renamed to ...
31021         (__x86_shared_cache_size): This.
31022         (__x86_64_raw_shared_cache_size): Renamed to ...
31023         (__x86_raw_shared_cache_size): This.
31024         (__x86_64_shared_cache_size_half): Renamed to ...
31025         (__x86_shared_cache_size_half): This.
31026         (__x86_64_raw_shared_cache_size_half): Renamed to ...
31027         (__x86_raw_shared_cache_size_half): This.
31028         * sysdeps/x86_64/memcpy.S: Updated.
31029         * sysdeps/x86_64/memset.S: Likewise.
31030         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Likewise.
31031         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
31032         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
31033
31034 2013-01-04  David S. Miller  <davem@davemloft.net>
31035
31036         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31037
31038 2013-01-04  Andreas Schwab  <schwab@linux-m68k.org>
31039
31040         * sysdeps/powerpc/fpu/test-powerpc-snan.c (_GNU_SOURCE): Define as
31041         1 to avoid redefinition warning.
31042         (__USE_GNU): Don't define.
31043         (init_signaling_nan): Protoize.
31044
31045         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
31046
31047 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
31048
31049         * sysdeps/ieee754/dbl-64/mpa.c: Remove commented code.
31050         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (__cr): Remove.
31051         (__cpymn): Likewise.
31052         (norm): Remove commented code.
31053         (denorm): Likewise.
31054         (__mp_dbl): Likewise.
31055         (__inv): Likewise.
31056         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (__cr): Remove.
31057         (__cpymn): Likewise.
31058         (norm): Remove commented code.
31059         (denorm): Likewise.
31060         (__mp_dbl): Likewise.
31061         (__inv): Likewise.
31062
31063         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c (mpone): Define
31064         mp_no value for 1.0 and 2.0.
31065         (norm): Use RADIXI instead of radixi.d.
31066         (denorm): Likewise.
31067         (__mul): Use 0.0 instead of zero.d.
31068         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c (mpone): Define
31069         mp_no value for 1.0 and 2.0.
31070         (norm): Use RADIXI instead of radixi.d.
31071         (denorm): Likewise.
31072         (__mul): Use 0.0 instead of zero.d.
31073
31074 2013-01-04  Joseph Myers  <joseph@codesourcery.com>
31075
31076         [BZ #14994]
31077         * math/s_casinh.c (__casinh): Reduce finite argument to first
31078         quadrant then set signs of results at the end.
31079         * math/s_casinhf.c (__casinhf): Likewise.
31080         * math/s_casinhl.c (__casinhl): Likewise.
31081         * math/libm-test.inc (casin_test): Add more tests.
31082         (casinh_test): Likewise.
31083         * sysdeps/i386/fpu/libm-test-ulps: Update.
31084         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31085
31086 2013-01-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
31087
31088         * sysdeps/ieee754/dbl-64/mpa.h: Fix code formatting.
31089
31090         * sysdeps/ieee754/dbl-64/mpa.h: Clean up comment for MP_NO.
31091
31092         * sysdeps/ieee754/dbl-64/mpa.c(norm): Remove commented
31093         declarations.
31094         (denorm): Likewise.
31095         (__mp_dbl): Likewise.
31096         (__inv): Likewise.
31097
31098         * sysdeps/ieee754/dbl-64/mpa.h: Remove commented declarations
31099         and adjust the header comment.
31100
31101         * sysdeps/ieee754/dbl-64/mpa.h (__mpexp): Remove unnecessary
31102         variable name from declaration.
31103
31104 2013-01-03  H.J. Lu  <hongjiu.lu@intel.com>
31105
31106         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
31107         Initialize COMMON_CPUID_INDEX_7 element.
31108         * sysdeps/x86_64/multiarch/init-arch.h (bit_RTM): New macro.
31109         (CPUID_RTM): Likewise.
31110         (HAS_RTM): Likewise.
31111         (COMMON_CPUID_INDEX_7): New enum.
31112
31113 2013-01-03  Andreas Schwab  <schwab@linux-m68k.org>
31114
31115         [BZ #14981]
31116         * malloc/mtrace.c (tr_reallochook): If realloc returns NULL when
31117         size is zero, record memory as freed.
31118
31119 2013-01-03  Andreas Jaeger  <aj@suse.de>
31120
31121         * po/ia.po: Add new Interlingua translation.
31122
31123 2012-01-03  Allan McRae  <allan@archlinux.org>
31124
31125         * locale/programs/localedef.c: Fix description of '--posix' flag.
31126
31127 2013-01-02  Joseph Myers  <joseph@codesourcery.com>
31128
31129         * NEWS: Update dates in second copyright notice.
31130         * README: Update copyright dates in example.
31131         * manual/libc.texinfo: Update copyright dates.
31132         * scripts/test-installation.pl: Update copyright date in --version
31133         output.
31134
31135         * hurd/ctty-input.c: Fix copyright notice formatting.
31136         * hurd/ctty-output.c: Likewise.
31137         * hurd/dtable.c: Likewise.
31138         * hurd/hurd-raise.c: Likewise.
31139         * hurd/hurdprio.c: Likewise.
31140         * hurd/msgportdemux.c: Likewise.
31141         * misc/sys/file.h: Likewise.
31142         * misc/sys/ioctl.h: Likewise.
31143         * sysdeps/gnu/netinet/ip_icmp.h: Likewise.
31144         * sysdeps/mach/hurd/chdir.c: Likewise.
31145         * sysdeps/mach/hurd/fchdir.c: Likewise.
31146         * sysdeps/mach/hurd/rename.c: Likewise.
31147         * sysdeps/mach/hurd/rmdir.c: Likewise.
31148         * sysdeps/mach/hurd/seekdir.c: Likewise.
31149         * sysdeps/mach/hurd/setsid.c: Likewise.
31150         * sysdeps/posix/wait3.c: Likewise.
31151
31152         * All files with FSF copyright notices: Update copyright dates
31153         using scripts/update-copyrights.
31154         * intl/plural.c: Regenerated.
31155         * locale/programs/charmap-kw.h: Likewise.
31156         * locale/programs/locfile-kw.h: Likewise.
31157
31158 2013-01-02  Siddhesh Poyarekar  <siddhesh@redhat.com>
31159
31160         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_twomm1): Fix first
31161         four values.
31162
31163         * sysdeps/ieee754/dbl-64/mpa.c (__mul): Split mantissa
31164         calculation loop and add branch prediction.
31165
31166         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Add assert to
31167         check access beyond bounds of m1np.
31168
31169         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
31170         MPTWO.
31171         (__inv): Remove local variable MPTWO to use the global
31172         constant.
31173         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPTWO.
31174         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
31175         variable MPTWO.
31176         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Make MPHALF and
31177         MP3HALFS static const.
31178
31179 2013-01-01  David S. Miller  <davem@davemloft.net>
31180
31181         * po/ca.po: Update from translation team.
31182
31183 2013-01-01  Joseph Myers  <joseph@codesourcery.com>
31184
31185         * scripts/update-copyrights: New file.
31186         * Makeconfig: Reformat copyright notice.
31187         * ctype/ctype.h: Likewise.
31188         * debug/swprintf_chk.c: Likewise.
31189         * elf/dl-cache.c: Likewise.
31190         * elf/dl-debug.c: Likewise.
31191         * elf/dl-object.c: Likewise.
31192         * grp/initgroups.c: Likewise.
31193         * hurd/Makefile: Likewise.
31194         * hurd/hurd/signal.h: Likewise.
31195         * hurd/hurdfault.c: Likewise.
31196         * hurd/hurdioctl.c: Likewise.
31197         * hurd/hurdlookup.c: Likewise.
31198         * hurd/intr-msg.c: Likewise.
31199         * iconv/gconv_open.c: Likewise.
31200         * libio/swprintf.c: Likewise.
31201         * locale/lc-ctype.c: Likewise.
31202         * locale/nl_langinfo.c: Likewise.
31203         * mach/Machrules: Likewise.
31204         * mach/Makefile: Likewise.
31205         * malloc/obstack.h: Likewise.
31206         * manual/Makefile: Likewise.
31207         * manual/tsort.awk: Likewise.
31208         * misc/bits/stab.def: Likewise.
31209         * nis/nis_print_group_entry.c: Likewise.
31210         * nis/nis_table.c: Likewise.
31211         * nis/nss_compat/compat-pwd.c: Likewise.
31212         * nis/nss_compat/compat-spwd.c: Likewise.
31213         * po/Makefile: Likewise.
31214         * posix/fnmatch.c: Likewise.
31215         * posix/regex.h: Likewise.
31216         * resolv/Makefile: Likewise.
31217         * resolv/nss_dns/dns-network.c: Likewise.
31218         * resolv/res_hconf.c: Likewise.
31219         * scripts/gen-sorted.awk: Likewise.
31220         * soft-fp/soft-fp.h: Likewise.
31221         * stdio-common/printf.h: Likewise.
31222         * stdlib/monetary.h: Likewise.
31223         * stdlib/random.c: Likewise.
31224         * stdlib/random_r.c: Likewise.
31225         * sysdeps/generic/Makefile: Likewise.
31226         * sysdeps/gnu/Makefile: Likewise.
31227         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
31228         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
31229         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
31230         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
31231         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
31232         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
31233         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
31234         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
31235         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
31236         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
31237         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
31238         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
31239         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
31240         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
31241         * sysdeps/ieee754/dbl-64/mplog.c: Likewise.
31242         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
31243         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
31244         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
31245         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
31246         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
31247         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
31248         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
31249         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
31250         * sysdeps/ieee754/ldbl-128/ldbl2mpn.c: Likewise.
31251         * sysdeps/ieee754/ldbl-128/mpn2ldbl.c: Likewise.
31252         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
31253         * sysdeps/ieee754/ldbl-128ibm/mpn2ldbl.c: Likewise.
31254         * sysdeps/ieee754/ldbl-128ibm/printf_fphex.c: Likewise.
31255         * sysdeps/mach/hurd/errnos.awk: Likewise.
31256         * sysdeps/mach/hurd/fork.c: Likewise.
31257         * sysdeps/mach/hurd/getcwd.c: Likewise.
31258         * sysdeps/mach/hurd/i386/trampoline.c: Likewise.
31259         * sysdeps/mach/hurd/mmap.c: Likewise.
31260         * sysdeps/mach/hurd/utimes.c: Likewise.
31261         * sysdeps/mach/hurd/xmknod.c: Likewise.
31262         * sysdeps/posix/profil.c: Likewise.
31263         * sysdeps/posix/readdir_r.c: Likewise.
31264         * sysdeps/powerpc/bits/mathdef.h: Likewise.
31265         * sysdeps/powerpc/bits/setjmp.h: Likewise.
31266         * sysdeps/powerpc/powerpc32/__longjmp-common.S: Likewise.
31267         * sysdeps/powerpc/powerpc32/memset.S: Likewise.
31268         * sysdeps/powerpc/powerpc32/power4/fpu/mpa.c: Likewise.
31269         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
31270         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
31271         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
31272         * sysdeps/powerpc/powerpc64/power4/fpu/mpa.c: Likewise.
31273         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
31274         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
31275         * sysdeps/pthread/lio_listio.c: Likewise.
31276         * sysdeps/sparc/dl-procinfo.h: Likewise.
31277         * sysdeps/unix/i386/sysdep.S: Likewise.
31278         * sysdeps/unix/sysv/linux/aio_sigqueue.c: Likewise.
31279         * sysdeps/unix/sysv/linux/fstatvfs64.c: Likewise.
31280         * sysdeps/unix/sysv/linux/getdents.c: Likewise.
31281         * sysdeps/unix/sysv/linux/msgctl.c: Likewise.
31282         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
31283         * sysdeps/unix/sysv/linux/semctl.c: Likewise.
31284         * sysdeps/unix/sysv/linux/shmctl.c: Likewise.
31285         * sysdeps/unix/sysv/linux/speed.c: Likewise.
31286         * sysdeps/unix/sysv/linux/xstatconv.h: Likewise.
31287         * sysdeps/wordsize-32/divdi3.c: Likewise.
31288         * time/sys/time.h: Likewise.
31289         * wcsmbs/Makefile: Likewise.
31290
31291 2013-01-01  David S. Miller  <davem@davemloft.net>
31292
31293         * po/fr.po: Update from translation team.
31294
31295         * catgets/gencat.c: Update copyright year.
31296         * csu/version.c: Likewise.
31297         * debug/catchsegv.sh: Likewise.
31298         * debug/pcprofiledump.c: Likewise.
31299         * debug/xtrace.sh: Likewise.
31300         * elf/ldconfig.c: Likewise.
31301         * elf/ldd.bash.in: Likewise.
31302         * elf/pldd.c: Likewise.
31303         * elf/sotruss.ksh: Likewise.
31304         * elf/sprof.c: Likewise.
31305         * iconv/iconv_prog.c: Likewise.
31306         * iconv/iconvconfig.c: Likewise.
31307         * locale/programs/locale.c: Likewise.
31308         * locale/programs/localedef.c: Likewise.
31309         * login/programs/pt_chown.c: Likewise.
31310         * malloc/memusage.sh: Likewise.
31311         * malloc/memusagestat.c: Likewise.
31312         * malloc/mtrace.pl: Likewise.
31313         * nscd/nscd.c: Likewise.
31314         * nss/getent.c: Likewise.
31315         * nss/makedb.c: Likewise.
31316         * posix/getconf.c: Likewise.
31317
31318 2012-12-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
31319
31320         * sysdeps/ieee754/dbl-64/mpa.c (__mp_dbl): Favour normal
31321         numbers.
31322
31323 2012-12-30  Mike Frysinger  <vapier@gentoo.org>
31324
31325         * math/bits/mathcalls.h (modf): Use __nonnull.
31326
31327 2012-12-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
31328
31329         * sysdeps/ieee754/dbl-64/branred.h: Include dla.h.
31330         (split): Use macro CN instead of the bare value.
31331         * sysdeps/ieee754/dbl-64/dla.h: Add comment to explain why CN
31332         could be used.
31333         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use CN
31334         instead of the bare value.
31335         (power1): Likewise.
31336
31337 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31338
31339         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove
31340         __ATAN_TWOM.
31341         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
31342
31343         * sysdeps/ieee754/dbl-64/atnat.h: Replaced constants with
31344         their values.
31345         * sysdeps/ieee754/dbl-64/atnat2.h: Likewise.
31346         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Likewise.
31347         * sysdeps/ieee754/dbl-64/ulog.h: Likewise.
31348         * sysdeps/ieee754/dbl-64/utan.h: Likewise.
31349
31350 2012-12-28  Andreas Jaeger  <aj@suse.de>
31351
31352         * elf/elf.h (NT_S390_TDB, NT_FILE, NT_SIGINFO): Define.  New
31353         values are from Linux 3.7.
31354
31355         * sysdeps/gnu/netinet/tcp.h (TCPI_OPT_SYN_DATA)
31356         (TCPI_OPT_ECN_SEEN): Define.  Sync with Linux 3.7.
31357
31358 2012-12-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31359
31360         * misc/sys/cdefs.h (__glibc_likely): Wrap __builtin_expect for
31361         TRUE case.
31362
31363         * sysdeps/ieee754/dbl-64/mpa.c (norm): Define R as RADIXI.
31364         (norm): Likewise.
31365         * sysdeps/ieee754/dbl-64/mpa2.h: Remove all static const
31366         variables with preprocessor constants.
31367         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
31368         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
31369         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
31370
31371 2012-12-27  Bruno Haible  <bruno@clisp.org>
31372
31373         [BZ #14317]
31374         * string/xpg-strerror.c (__xpg_strerror_r): Optimize, call strlen
31375         only if needed.
31376
31377 2012-12-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
31378
31379         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Eliminate __mpexp_nn
31380         and use variable directly.
31381         * sysdeps/ieee754/dbl-64/mpexp.h (__mpexp_nn): Remove.
31382
31383         * sysdeps/ieee754/dbl-64/mpa.c [! NO__CONST]: New constant
31384         MPONE.
31385         * sysdeps/ieee754/dbl-64/mpa.h: Declare MPONE.
31386         * sysdeps/ieee754/dbl-64/mpatan.c (__mpatan): Remove local
31387         variable MPONE.
31388         * sysdeps/ieee754/dbl-64/mpatan2.c (__mpatan2): Likewise.
31389         * sysdeps/ieee754/dbl-64/mpexp.c (__mpexp): Likewise.
31390         * sysdeps/ieee754/dbl-64/mplog.c (__mplog): Remove mplog.h
31391         include directive.  Remove local variable MPONE.
31392         * sysdeps/ieee754/dbl-64/mplog.h: Remove.
31393         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: Define NO__CONST.
31394         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
31395
31396 2012-12-25  David S. Miller  <davem@davemloft.net>
31397
31398         * version.h (RELEASE): Set to "development".
31399         (VERSION): Set to "2.17.90".
31400         * NEWS: Add 2.18 section.
31401
31402 2012-12-21  David S. Miller  <davem@davemloft.net>
31403
31404         * po/hr.po: Update from translation team.
31405
31406 2012-12-21  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
31407
31408         * sysdeps/s390/fpu/libm-test-ulps: Refreshed.
31409
31410 2012-12-19  Steve Ellcey  <sellcey@mips.com>
31411
31412         * NEWS:  Mention new memcpy for MIPS.
31413
31414 2012-12-18  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
31415
31416         * manual/contrib.texi (Contributors): Spelling correction.
31417
31418 2012-12-15  David S. Miller  <davem@davemloft.net>
31419
31420         * po/ru.po: Update from translation team.
31421
31422 2012-12-13  David S. Miller  <davem@davemloft.net>
31423
31424         * NEWS: Mention IFUNC testsuite enhancements.
31425
31426         * po/pl.po: Update from translation team.
31427         * po/bg.po: Likewise.
31428
31429         * manual/contrib.texi (Contributors): Update entries for Hongjiu
31430         Lu and Joseph S. Myers.  Add entry for Marcus Shawcroft.
31431
31432 2012-12-11  David S. Miller  <davem@davemloft.net>
31433
31434         * po/sv.po: Update from translation team.
31435
31436         * po/vi.po: Update from translation team.
31437
31438         * po/cs.po: Update from translation team.
31439
31440         * po/de.po: Update from translation team.
31441         * po/eo.po: Likewise.
31442         * po/nl.po: Likewise.
31443
31444 2012-12-11  Siddhesh Poyarekar  <siddhesh@redhat.com>
31445
31446         [BZ #14246]
31447         * manual/argp.texi (Argp Helper Functions): Move node to follow
31448         Argp Parsing State.
31449
31450         [BZ #14872]
31451         * manual/conf.texi (Limits on File System Capacity): Mention if
31452         terminating null is included in the max size.
31453
31454 2012-12-10  Andreas Jaeger  <aj@suse.de>
31455
31456         * po/cs.po: Update from translation team.
31457
31458 2012-12-08  Siddhesh Poyarekar  <siddhesh@redhat.com>
31459
31460         * sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
31461         void pointer and cast to uintptr_t.
31462         * sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
31463         path.
31464         * sysdeps/s390/s390-64/memcpy.S: Likewise.
31465         * sysdeps/s390/s390-64/memset.S: Likewise.
31466
31467 2012-12-08  Benno Schulenberg  <bensberg@justemail.net>
31468
31469         [BZ #14833]
31470         * menual/message.texi (Message Translation): Fix typos.
31471         (Helper programs for gettext): Likewise.
31472
31473 2012-12-07  Andreas Schwab  <schwab@linux-m68k.org>
31474
31475         [BZ #14898]
31476         * include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
31477         Change to -1.
31478
31479 2012-12-07  David S. Miller  <davem@davemloft.net>
31480
31481         * po/libc.pot: Update.
31482
31483 2012-12-07  Richard Henderson  <rth@redhat.com>
31484
31485         [BZ #10114]
31486         * soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
31487         normal/normal case to before the switch.
31488         (_FP_DIV): Likewise.
31489
31490 2012-12-06  Carlos O'Donell  <carlos@systemhalted.org>
31491             Mike Frysinger  <vapier@gentoo.org>
31492
31493         * sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
31494         check for __NR_fadvise64_64.
31495
31496 2012-12-06  Chris Metcalf  <cmetcalf@tilera.com>
31497
31498         * sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
31499         0, not just to plain "0" as a statement.
31500         (_FPU_SETCW): Define to (void) (cw), rather than doing nothing
31501         with cw.
31502
31503 2012-12-06  Joseph Myers  <joseph@codesourcery.com>
31504
31505         * NEWS: Use sourceware.org in Bugzilla URL.
31506
31507 2012-12-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
31508
31509         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
31510         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
31511
31512         * stdio-common/tst-put-error.c (do_test): Add newline to the
31513         padded test to ensure flush.
31514
31515 2012-12-05  Jeff Law  <law@redhat.com>
31516
31517         * sunrpc/etc.rpc (fedfs_admin): Add entry.
31518
31519 2012-12-05  Joseph Myers  <joseph@codesourcery.com>
31520
31521         * README: Don't refer to ports add-on as distributed separately.
31522         Mention AArch64 in list of systems supported in the ports add-on.
31523
31524         * LICENSES: Add more non-FSF copyright and license notices.
31525
31526         * soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
31527         ((unused)).
31528
31529         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
31530
31531         * stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
31532         10000 as width of padded output.
31533
31534 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
31535
31536         * sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
31537
31538         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
31539         variable LX with __attribute__ ((unused)).
31540         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
31541         Likewise.
31542         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
31543         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
31544         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
31545         with __attribute__ ((unused)).
31546
31547 2012-12-04  David S. Miller  <davem@abraco.davemloft.net>
31548
31549         * sysdeps/generic/memcopy.h: Add multiple inclusion protection.
31550
31551 2012-12-04  Joseph Myers  <joseph@codesourcery.com>
31552
31553         * sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
31554         (CFLAGS-nldbl-acos.c): New variable.
31555         [$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
31556         [$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
31557         [$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
31558         [$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
31559         [$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
31560         [$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
31561         [$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
31562         [$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
31563         [$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
31564         [$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
31565         [$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
31566         [$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
31567         [$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
31568         [$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
31569         [$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
31570         [$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
31571         [$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
31572         [$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
31573         [$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
31574         [$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
31575         [$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
31576         [$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
31577         [$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
31578         [$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
31579         [$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
31580         [$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
31581         [$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
31582         [$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
31583         [$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
31584         [$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
31585         [$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
31586         [$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
31587         [$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
31588         [$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
31589         [$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
31590         [$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
31591         [$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
31592         [$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
31593         [$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
31594         [$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
31595         [$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
31596         [$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
31597         [$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
31598         [$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
31599         [$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
31600         [$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
31601         [$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
31602         [$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
31603         [$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
31604         [$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
31605         [$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
31606         [$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
31607         [$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
31608         [$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
31609         [$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
31610         [$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
31611         [$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
31612         [$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
31613         [$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
31614         [$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
31615         [$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
31616         [$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
31617         [$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
31618         [$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
31619         [$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
31620         [$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
31621         [$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
31622         [$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
31623         [$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
31624         [$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
31625         [$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
31626         [$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
31627         [$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
31628         [$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
31629         [$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
31630         [$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
31631         [$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
31632         [$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
31633         [$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
31634         [$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
31635         [$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
31636         [$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
31637         [$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
31638         [$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
31639         [$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
31640         [$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
31641         [$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
31642         [$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
31643         [$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
31644         [$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
31645         [$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
31646         [$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
31647         [$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
31648         [$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
31649         [$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
31650         [$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
31651         [$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
31652
31653         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
31654         (INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
31655
31656         [BZ #14914]
31657         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
31658         whole low double instead of just low 47 bits when splitting values
31659         into two parts.
31660
31661 2012-12-03  Allan McRae  <allan@archlinux.org>
31662
31663         * manual/stdio.texi (Predefined Printf Handlers): Remove
31664         @hsep and @vsep usage.
31665
31666 2012-12-03  Mike Frysinger  <vapier@gentoo.org>
31667
31668         * bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
31669         * sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
31670
31671 2012-12-03  Jeff Law  <law@redhat.com>
31672
31673         * time/sys/time.h (settimeofday): Do not mark TV argument
31674         as __nonnull.
31675
31676 2012-12-01  Mike Frysinger  <vapier@gentoo.org>
31677
31678         * libio/fileops.c (_IO_new_file_close_it): Do not always flush
31679         when currently writing and seek to current position when not.
31680         * libio/Makefile (tests): Remove bug-fclose1.
31681         * libio/bug-fclose1.c: Delete.
31682
31683 2012-12-01  Joseph Myers  <joseph@codesourcery.com>
31684
31685         * manual/arith.texi (feenableexcept): Fix typo.
31686         (fedisableexcept): Likewise.
31687
31688 2012-11-30  Roland McGrath  <roland@hack.frob.com>
31689
31690         * sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
31691         second, differently-typed declaration, rather than a cast.
31692
31693 2012-11-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
31694
31695         * sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
31696         * include/rpc/svc.h: ... here.
31697
31698 2012-11-30  Aurelien Jarno  <aurel32@debian.org>
31699
31700         [BZ #13013]
31701         * resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
31702         depending n and resplen2 to catch cases where answer
31703         equals answerp2.
31704
31705 2012-11-29  Carlos O'Donell  <carlos@systemhalted.org>
31706
31707         * elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
31708         for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
31709
31710 2012-11-29  Mike Frysinger  <vapier@gentoo.org>
31711
31712         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
31713
31714 2012-11-29  Roland McGrath  <roland@hack.frob.com>
31715
31716         * inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
31717
31718 2012-11-28  Jeff Law  <law@redhat.com>
31719
31720         [BZ #13761]
31721         * nscd/grpcache.c (cache_addgr): Rename alloca_used to
31722         dataset_temporary.  Track alloca usage into alloca_used.
31723         If dataset is large allocate and release it via malloc/free.
31724
31725 2012-06-04  Florian Weimer  <fweimer@redhat.com>
31726
31727         [BZ #14197]
31728         * debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
31729
31730 2012-11-28  David S. Miller  <davem@davemloft.net>
31731
31732         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31733
31734 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
31735
31736         [BZ #14803]
31737         * sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
31738         of pi/2 rounded to nearest to 64 bits.
31739         (pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
31740         nearest to 64 bits.
31741         (pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
31742         bits.
31743
31744 2012-11-28  Jeff Law <law@redhat.com>
31745             Martin Osvald <mosvald@redhat.com>
31746
31747         [BZ #14889]
31748         * sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
31749         * sunrpc/svc.c: Include time.h.
31750         (__svc_accept_failed): New function.
31751         * sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
31752         any reason other than EINTR, call __svc_accept_failed.
31753         * sunrpc/svc_udp.c (svcudp_recv): Similarly.
31754         * sunrpc/svc_unix.c (rendezvous_request): Similarly.
31755
31756 2012-11-28  Andreas Schwab  <schwab@suse.de>
31757
31758         * scripts/abilist.awk: Also handle indirect functions in .opd
31759         section.
31760
31761 2012-11-28  Joseph Myers  <joseph@codesourcery.com>
31762
31763         [BZ #13881]
31764         * sysdeps/x86/fpu/powl_helper.c: New file.
31765         * sysdeps/x86/fpu/Makefile: Likewise.
31766         * sysdeps/i386/fpu/e_powl.S (limit): Remove object.
31767         (p3): New object.
31768         (__ieee754_powl): Use __powl_helper for finite arguments except
31769         integer exponents below 8.
31770         * sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
31771         (p3): New object.
31772         (__ieee754_powl): Use __powl_helper for finite arguments except
31773         integer exponents below 8.
31774         * math/libm-test.inc (pow_test): Add more tests and enable some
31775         previously disabled tests.
31776         * sysdeps/i386/fpu/libm-test-ulps: Update.
31777         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
31778
31779 2012-11-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
31780             Carlos O'Donell  <carlos_odonell@mentor.com>
31781
31782         * nss/makedb.c (is_prime): Assert that input is odd and greater
31783         than 4.  Note that fact in a comment too.
31784         (next_prime): Add 4 to input.
31785
31786 2012-11-27  Siddhesh Poyarekar  <siddhesh@redhat.com>
31787
31788         [BZ #11741]
31789         * libio/Makefile (tests): Add test case tst-fwrite-error.
31790         * libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
31791         * libio/iofwrite_u.c (fwrite_unlocked): Likewise.
31792         * libio/tst-fwrite-error.c: New test case.
31793
31794 2012-11-26  H.J. Lu  <hongjiu.lu@intel.com>
31795
31796         * elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
31797         before casting to void *.
31798         * include/libc-internal.h (__pointer_type): New macro.
31799         (__integer_if_pointer_type_sub): Likewise.
31800         (__integer_if_pointer_type): Likewise.
31801         (cast_to_integer): Likewise.
31802         * sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
31803         (__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
31804         before casting to atomic64_t.
31805         (atomic_exchange_acq): Likewise.
31806         (__arch_exchange_and_add_body): Likewise.
31807         (__arch_add_body): Likewise.
31808         (atomic_add_negative): Likewise.
31809         (atomic_add_zero): Likewise.
31810
31811 2012-11-26  Joseph Myers  <joseph@codesourcery.com>
31812
31813         * sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
31814         (fde_unencoded_compare): Use get_pc_begin instead of type-punning.
31815         (add_fdes): Likewise.
31816         (linear_search_fdes): Likewise.
31817         (binary_search_unencoded_fdes): Likewise.
31818
31819 2012-11-26  Andreas Schwab  <schwab@linux-m68k.org>
31820
31821         * elf/sotruss.ksh: Correctly locate argument of -F and -T options.
31822
31823 2012-11-24  Adam Conrad  <adconrad@0c3.net>
31824
31825         * configure.in: Autodetect C++ header directories.
31826         * configure: Regenerated.
31827
31828 2012-11-23  Mike Frysinger  <vapier@gentoo.org>
31829
31830         * elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
31831
31832 2012-11-23  Andreas Schwab  <schwab@linux-m68k.org>
31833
31834         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
31835
31836 2012-11-22  Joseph Myers  <joseph@codesourcery.com>
31837
31838         * math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
31839         LDBL_MANT_DIG == 106]: Disable some tests.
31840         (fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
31841         Likewise.
31842         (fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
31843         Likewise.
31844
31845         [BZ #14871]
31846         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
31847         input for small inputs.  Return +/- pi/2 for large inputs.
31848         * math/libm-test.inc (atan_test): Add more tests.
31849
31850         * sysdeps/generic/unwind-dw2-fde-glibc.c
31851         (_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
31852         __attribute__ ((unused)).
31853
31854         [BZ #14645]
31855         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
31856         x * y if x and y are nonzero and z is zero.
31857
31858         [BZ #14811]
31859         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
31860         nonzero exponents with absolute value below 0x1p-117 to +/-
31861         0x1p-117.
31862
31863         [BZ #14869]
31864         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
31865         up arguments below 2**-450, not just those below 2**-500.
31866         * math/libm-test.inc (hypot_test): Add another test.
31867
31868         [BZ #14868]
31869         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
31870         Return a+b for ratio over 2**120, not 2**60.
31871         * math/libm-test.inc (hypot_test): Add another test.
31872
31873         * math/libm-test.inc (clog_test): Use
31874         UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
31875         (clog10_test): Likewise.
31876
31877         [BZ #6778]
31878         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
31879
31880 2012-11-22  Andreas Schwab  <schwab@suse.de>
31881
31882         * sysdeps/i386/fpu/libm-test-ulps: Update.
31883
31884 2012-11-22  Pino Toscano  <toscano.pino@tiscali.it>
31885
31886         * sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
31887         printf output with newline.
31888
31889 2012-11-21  H.J. Lu  <hongjiu.lu@intel.com>
31890
31891         [BZ #14865]
31892         * aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
31893         * configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
31894         -z nodlopen, -z initfirst and -z execstack support.
31895         * configure: Regenerated.
31896
31897         * elf/elf.h (DF_1_NODIRECT): New macro.
31898         (DF_1_IGNMULDEF): Likewise.
31899         (DF_1_NOKSYMS): Likewise.
31900         (DF_1_NOHDR): Likewise.
31901         (DF_1_EDITED): Likewise.
31902         (DF_1_NORELOC): Likewise.
31903         (DF_1_SYMINTPOSE): Likewise.
31904         (DF_1_GLOBAUDIT): Likewise.
31905         (DF_1_SINGLETON): Likewise.
31906         * elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
31907         DT_1_SUPPORTED_MASK bits.
31908         * include/elf.h (DT_1_SUPPORTED_MASK): New macro.
31909
31910 2012-11-20  Carlos O'Donell  <carlos_odonell@mentor.com>
31911
31912         * sysdeps/unix/make-syscalls.sh: Document prefixes.
31913
31914 2012-11-20  Thomas Schwinge  <thomas@codesourcery.com>
31915
31916         * sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
31917         macro.
31918
31919         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
31920         (sendmmsg): Move declarations...
31921         * socket/sys/socket.h: ... here.
31922         * sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
31923         !defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
31924         include it from...
31925         * socket/recvmmsg.c: ... this new file.
31926         * sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
31927         (sendmmsg): Rename to __sendmmsg, create weak alias and make
31928         definition of __sendmmsg hidden.
31929         * sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
31930         [!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
31931         Move ENOSYS stub into and include it from...
31932         * socket/sendmmsg.c: ... this new file.
31933         * sysdeps/unix/sysv/linux/Makefile [subdir=socket]
31934         (sysdep_routines): Move recvmmsg and sendmmsg...
31935         * socket/Makefile (routines): ... here.
31936         * socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
31937         (GLIBC_PRIVATE): Add __sendmmsg.
31938         * include/sys/socket.h (__sendmmsg): Add declarations.
31939         * resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
31940         sendmmsg.
31941
31942 2012-11-20  Joseph Myers  <joseph@codesourcery.com>
31943
31944         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
31945         variable I1 with __attribute__ ((unused)).
31946         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
31947
31948 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
31949
31950         * stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
31951         DUMMY variables with __attribute__ ((unused)).
31952
31953         * bits/byteswap.h: Include <bits/types.h>.
31954         (__bswap_64): Use __uint64_t instead of unsigned long long int.
31955
31956 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
31957
31958         * sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
31959         string_t.  Do not manually set errno.
31960         (__ptsname_r): Change the type of PEERNAME to string_t, and check its
31961         length with __strnlen.  Make sure to both set errno and return it on
31962         failure.
31963
31964 2012-11-19  David S. Miller  <davem@davemloft.net>
31965
31966         With help from Joseph Myers.
31967         * sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
31968         very large arguments properly.
31969         * math/libm-test.inc (atan_test): New tests.
31970         (atan2_test): New tests.
31971         * sysdeps/sparc/fpu/libm-test-ulps: Update.
31972         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
31973
31974 2012-11-19  Joseph Myers  <joseph@codesourcery.com>
31975
31976         [BZ #14856]
31977         * posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
31978         Define to 3.
31979
31980         * conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
31981         [POSIX] (EADDRNOTAVAIL): Likewise.
31982         [POSIX] (EAFNOSUPPORT): Likewise.
31983         [POSIX] (EALREADY): Likewise.
31984         [POSIX] (ECONNABORTED): Likewise.
31985         [POSIX] (ECONNREFUSED): Likewise.
31986         [POSIX] (ECONNRESET): Likewise.
31987         [POSIX] (EDESTADDRREQ): Likewise.
31988         [POSIX] (EDQUOT): Likewise.
31989         [POSIX] (EHOSTUNREACH): Likewise.
31990         [POSIX] (EIDRM): Likewise.
31991         [POSIX] (EISCONN): Likewise.
31992         [POSIX] (ELOOP): Likewise.
31993         [POSIX] (EMULTIHOP): Likewise.
31994         [POSIX] (ENETDOWN): Likewise.
31995         [POSIX] (ENETUNREACH): Likewise.
31996         [POSIX] (ENOBUFS): Likewise.
31997         [POSIX] (ENODATA): Likewise.
31998         [POSIX] (ENOLINK): Likewise.
31999         [POSIX] (ENOMSG): Likewise.
32000         [POSIX] (ENOPROTOOPT): Likewise.
32001         [POSIX] (ENOSR): Likewise.
32002         [POSIX] (ENOSTR): Likewise.
32003         [POSIX] (ENOTCONN): Likewise.
32004         [POSIX] (ENOTSOCK): Likewise.
32005         [POSIX] (EOPNOTSUPP): Likewise.
32006         [POSIX] (EOVERFLOW): Likewise.
32007         [POSIX] (EPROTO): Likewise.
32008         [POSIX] (EPROTONOSUPPORT): Likewise.
32009         [POSIX] (EPROTOTYPE): Likewise.
32010         [POSIX] (ESTALE): Likewise.
32011         [POSIX] (ETIME): Likewise.
32012         [POSIX] (ETXTBSY): Likewise.
32013         [POSIX] (EWOULDBLOCK): Likewise.
32014         [!ISO && !ISO99 && !ISO11] (E*): Do not allow.
32015         * conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
32016         [POSIX] (SEEK_CUR): Likewise.
32017         [POSIX] (SEEK_END): Likewise.
32018         [POSIX || UNIX98] (mode_t): Do not require.
32019         [POSIX] (off_t): Likewise.
32020         [POSIX] (pid_t): Likewise.
32021         [POSIX] (sys/stat.h): Do not allow header.
32022         [POSIX] (unistd.h): Likewise.
32023         [!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
32024         [!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
32025         [!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
32026         * conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
32027         require.
32028         * conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
32029         sigevent): Specify elements.
32030         [XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
32031         entry.
32032         [!ISO && !ISO99 && !ISO11] (mq_*): Allow.
32033         [!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
32034
32035         * conform/data/cpio.h-data [POSIX]: Disable whole file.
32036         * conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
32037         * conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
32038         (AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
32039         [!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
32040         [!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
32041         [POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
32042         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
32043         [!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
32044         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
32045         [POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
32046         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
32047         [POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
32048         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
32049         Likewise.
32050         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
32051         Likewise.
32052         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
32053         Likewise.
32054         [POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
32055         Likewise.
32056         [POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
32057         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
32058         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
32059         [POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
32060         [!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
32061         Specify lower bound on value.
32062         [!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
32063         [!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
32064         [!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
32065         [!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
32066         [!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
32067         [!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
32068         [POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
32069         [!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
32070         value.
32071         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
32072         as optional.
32073         [!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
32074         [!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
32075         [!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
32076         [!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
32077         [!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
32078         [!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
32079         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
32080         [!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
32081         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
32082         [!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
32083         [!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
32084         [!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
32085         [!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
32086         [!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
32087         [!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
32088         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
32089         entry.
32090         [!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
32091         optional.
32092         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
32093         [!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
32094         [!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
32095         [!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
32096         [!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
32097         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
32098         Likewise.
32099         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
32100         [!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
32101         [!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
32102         [!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
32103         [!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise.  Give
32104         value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
32105         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
32106         as optional.
32107         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
32108         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
32109         [!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
32110         [!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
32111         Likewise.  Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
32112         [!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
32113         specify as optional.
32114         [!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
32115         [!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
32116         [!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
32117         [POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
32118         [POSIX || XPG3] (NL_ARGMAX): Do not allow.
32119         [XPG3] (NL_LANGMAX): Likewise.
32120         [POSIX || XPG3] (NL_MSGMAX): Likewise.
32121         [POSIX || XPG3] (NL_NMAX): Likewise.
32122         [POSIX || XPG3] (NL_SETMAX): Likewise.
32123         [POSIX || XPG3] (NL_TEXTMAX): Likewise.
32124         [XPG3] (NZERO): Likewise.
32125         [XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
32126         [POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
32127         [!ISO && !ISO99 && !ISO11] (*_t): Allow.
32128         * conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
32129         (REG_ERANGE): Expect.
32130         * conform/data/stdio.h-data [POSIX] (L_cuserid): Use
32131         optional-constant.
32132         [POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
32133         Use (void) in prototype.
32134         [POSIX] (*_t): Allow.
32135         * conform/data/sys/times.h-data [POSIX]: Enable whole file.
32136         * conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
32137         (WRDE_BADVAL): Expect.
32138
32139         * conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
32140         expect.
32141         [XPG3 || XPG4] (O_RSYNC): Likewise.
32142         * conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
32143         Likewise.
32144         [XPG3 || XPG4] (pthread_sigmask): Likewise.
32145         [XPG3 || XPG4] (sigqueue): Likewise.
32146         [XPG3 || XPG4] (sigtimedwait): Likewise.
32147         [XPG3 || XPG4] (sigwaitinfo): Likewise.
32148         * conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
32149         [XPG3 || XPG4] (vsnprintf): Likewise.
32150         * conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
32151         Likewise.
32152         [XPG3 || XPG4] (blksize_t): Likewise.
32153         * conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
32154         Likewise.
32155         [XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
32156         [XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
32157         [XPG3 || XPG4] (struct itimerspec): Likewise.
32158         [XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
32159         [XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
32160         [XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
32161         [XPG3 || XPG4] (clockid_t): Likewise.
32162         [XPG3 || XPG4] (timer_t): Likewise.
32163         [XPG3 || XPG4] (clock_getres): Likewise.
32164         [XPG3 || XPG4] (clock_gettime): Likewise.
32165         [XPG3 || XPG4] (clock_settime): Likewise.
32166         [XPG3 || XPG4] (nanosleep): Likewise.
32167         [XPG3 || XPG4] (timer_create): Likewise.
32168         [XPG3 || XPG4] (timer_delete): Likewise.
32169         [XPG3 || XPG4] (timer_gettime): Likewise.
32170         [XPG3 || XPG4] (timer_getoverrun): Likewise.
32171         [XPG3 || XPG4] (timer_settime): Likewise.
32172         * conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
32173         [XPG3 || XPG4] (getlogin_r): Likewise.
32174         [XPG3 || XPG4] (pread): Likewise.
32175         [XPG3 || XPG4] (pthread_atfork): Likewise.
32176         [XPG3 || XPG4] (pwrite): Likewise.
32177
32178         [BZ #14835]
32179         * signal/signal.h [__USE_XOPEN_EXTENDED]: Include
32180         <bits/siginfo.h>.
32181
32182 2012-11-19  Pino Toscano  <toscano.pino@tiscali.it>
32183
32184         * malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
32185         finalizing MALLSTREAM.
32186
32187         * sysdeps/mach/hurd/syncfs.c: New file.
32188
32189 2012-11-19  Siddhesh Poyarekar  <siddhesh@redhat.com>
32190
32191         [BZ #14719]
32192         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
32193         NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
32194         * resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
32195         h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
32196         (_nss_dns_gethostbyname4_r): Likewise.
32197         * sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
32198         EAI_SYSTEM if NSS_STATUS_UNAVAIL.
32199
32200 2012-11-19  Peng Haitao  <penght@cn.fujitsu.com>
32201
32202         [BZ #13763]
32203         * sunrpc/bindrsvprt.c: Add lock to protect static variable.
32204
32205 2012-11-19  Steve McIntyre  <steve.mcintyre@linaro.org>
32206
32207         * sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
32208         * elf/cache.c (print_entry): Print ",AArch64" for
32209         FLAG_AARCH64_LIB64
32210
32211         * sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
32212         * elf/cache.c (print_entry): Print ",hard-float" for
32213         FLAG_ARM_LIBHF.
32214
32215 2012-11-18  David S. Miller  <davem@davemloft.net>
32216
32217         With help from Joseph Myers.
32218         * sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
32219         cutoff to 2**-13.
32220         * sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
32221         cutoff to 2**-25.
32222         * sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
32223         ( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
32224         small.
32225         * sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
32226         * math/libm-test.inc (y0_test): New tests.
32227         (y1_test): New tests.
32228         * sysdeps/i386/fpu/libm-test-ulps: Update.
32229         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
32230         * sysdeps/sparc/fpu/libm-test-ulps: Update.
32231
32232 2012-11-18  Andreas Schwab  <schwab@linux-m68k.org>
32233
32234         * configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
32235         64-bit targets.
32236         * configure: Regenerated.
32237
32238 2012-11-17  David S. Miller  <davem@davemloft.net>
32239
32240         [BZ #14811]
32241         * sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
32242         nonzero exponents with absolute value below 0x1p-128 to +/-
32243         0x1p-128.
32244
32245 2012-11-17  Joseph Myers  <joseph@codesourcery.com>
32246
32247         * sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
32248
32249         * elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
32250
32251         * posix/getconf-speclist.c: New file.
32252         * posix/posix-envs.def: Likewise.
32253         * posix/confstr.c (START_ENV_GROUP): New macro.
32254         (END_ENV_GROUP): Likewise.
32255         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
32256         (KNOWN_PRESENT_ENV_STRING): Likewise.
32257         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
32258         (UNKNOWN_ENVIRONMENT): Likewise.
32259         (confstr): Include posix-envs.def instead of handling
32260         _CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
32261         _CS_V5_WIDTH_RESTRICTED_ENVS directly here.
32262         * sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
32263         (END_ENV_GROUP): Likewise.
32264         (KNOWN_ABSENT_ENVIRONMENT): Likewise.
32265         (KNOWN_PRESENT_ENVIRONMENT): Likewise.
32266         (UNKNOWN_ENVIRONMENT): Likewise.
32267         (__sysconf): Include posix-envs.def instead of handling associated
32268         cases directly here.
32269         * posix/Makefile ($(objpfx)getconf.speclist): Generate by
32270         preprocessing getconf-speclist.c rather than running getconf or
32271         generating empty file.
32272
32273 2012-11-16  Pino Toscano  <toscano.pino@tiscali.it>
32274
32275         * scripts/check-local-headers.sh: Ignore 'mach' headers.
32276
32277 2012-11-16  Andrej Lajovic  <natrij@gmail.com>
32278
32279         [BZ #14672]
32280         * iconv/iconv_prog.c (main): Fix -c handling of '/'.
32281
32282 2012-11-16  David S. Miller  <davem@davemloft.net>
32283
32284         * sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
32285         smaller than LDBL_EPSILON/2.0L, just return xm1.
32286
32287 2012-11-16  H.J. Lu  <hongjiu.lu@intel.com>
32288
32289         * elf/tst-array1.c (init): Set constructor priority to 1000.
32290         (fini): Set destructor priority to 1000.
32291         * elf/tst-array2dep.c: Likewise.
32292
32293 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
32294
32295         [BZ #11741]
32296         * libio/fileops.c (_IO_new_file_write): Correctly return error.
32297         (_IO_new_file_xsputn): Also return EOF if none of the input
32298         data was written when overflow failed.
32299         * libio/iopadn.c (_IO_padn): Likewise.
32300         * libio/iowpadn.c (_IO_wpadn): Likewise.
32301         * stdio-common/tst-put-error.c: Add copyright notice.
32302         (do_test): Add case for printing padded string.
32303         * stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
32304         _IO_padn returned error.
32305         [COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
32306         * libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
32307         return EOF.
32308
32309 2012-11-16  Siddhesh Poyarekar  <siddhesh@redhat.com>
32310
32311         * libio/libioP.h: Add comment note that the references to C++
32312         bits are now obsolete.
32313
32314 2012-11-15  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32315
32316         * math/libm-test.inc (check_complex): Use asprintf.
32317
32318 2012-11-14  Joseph Myers  <joseph@codesourcery.com>
32319
32320         * debug/pcprofiledump.c (print_version): Update copyright year.
32321         * malloc/memusagestat.c (print_version): Likewise.
32322
32323 2012-11-14  H.J. Lu  <hongjiu.lu@intel.com>
32324
32325         [BZ #14831]
32326         * elf/Makefile (tests): Add tst-audit8.
32327         ($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
32328         ($(objpfx)tst-audit8.out): New target.
32329         (tst-audit8-ENV): New variable.
32330         * elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
32331         audit if l_reloc_result is NULL.
32332         (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
32333         defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
32334         * elf/tst-audit8.c: New file.
32335
32336 2012-11-14  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32337
32338         * io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
32339         * misc/Makefile (CFLAGS-select.c): Define.
32340         * posix/Makefile (CFLAGS-pause.c): Define.
32341
32342 2012-11-13  David S. Miller  <davem@davemloft.net>
32343
32344         * crypt/Makefile: Move test targets after toplevel Rules
32345         inclusion.  Grab any necessary sysdep routines when linking.
32346         * crypt/md5.c (md5_process_block): Remove define, we will always
32347         name it __md5_process_block.
32348         (md5_finish_ctx): Update md5_process_block call.
32349         (md5_stream): Likewise.
32350         (md5_process_bytes): Likewise.
32351         (md5_process_block): Rename to __md5_process_block and move to ...
32352         * crypt/md5-block.c: ... here.
32353         * crypt/sha256.c (sha256_process_block): Move to ...
32354         * crypt/sha256-block.c: ... here.
32355         * crypt/sha512.c (sha512_process_block): Move to ...
32356         * crypt/sha512-block.c: ... here.
32357         * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
32358         path.
32359         * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
32360         * sysdeps/sparc/sparc64/multiarch/Makefile
32361         (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
32362         crypt subdir.
32363         (localedef-aux): Add md5 crypto assembler when in locale subdir.
32364         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
32365         multiarch changes.
32366         * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
32367         * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
32368         * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
32369         * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
32370         * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
32371         * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
32372         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
32373         * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
32374         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
32375         file.
32376         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
32377         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
32378         file.
32379         * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
32380
32381 2012-11-13  Joseph Myers  <joseph@codesourcery.com>
32382
32383         * timezone/tzselect.ksh: Update from tzcode git revision
32384         a435f9f0ecafa56d9e0263835836bd0c64cd7307.
32385         * timezone/zdump.c: Likewise.
32386         * timezone/zic.c: Likewise.
32387         * timezone/Makefile ($(objpfx)version.h): Only include $(version)
32388         in TZVERSION setting, not $(PKGVERSION).
32389         ($(objpfx)tzselect): Likewise.  Also substitute PKGVERSION and
32390         REPORT_BUGS_TO settings.
32391
32392         [BZ #14838]
32393         * resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
32394         macro.
32395
32396 2012-11-13  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32397
32398         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
32399         detection to immediately after _FP_ROUND().
32400         * soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
32401         bits are 0.
32402
32403 2012-11-11  David S. Miller  <davem@davemloft.net>
32404
32405         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Include
32406         inttypes.h
32407         (__get_clockfreq_via_proc_openprom): Use __open, __read, and
32408         __close rather than their public counterparts.
32409
32410 2012-11-10  Joseph Myers  <joseph@codesourcery.com>
32411
32412         * conform/data/semaphore.h-data [XPG3 || XPG4]: Disable whole
32413         file.
32414         [UNIX98] (sem_timedwait): Do not expect.
32415         * conform/data/sys/socket.h-data [XPG3]: Disable whole file.
32416         [XPG4 || UNIX98] (sockatmark): Do not expect.
32417         * conform/data/time.h-data [XPG3 || XPG4 || UNIX98]
32418         (clock_getcpuclockid): Do not expect.
32419         [XPG3 || XPG4 || UNIX98] (clock_nanosleep): Do not expect.
32420         * conform/data/unistd.h-data [XPG3 || XPG4 || UNIX98] (setegid):
32421         Do not expect.
32422         [XPG3 || XPG4 || UNIX98] (seteuid): Likewise.
32423         * conform/data/wchar.h-data [UNIX98] (vfwscanf): Do not expect.
32424         [UNIX98] (vwscanf): Likewise.
32425         [UNIX98] (vswscanf): Likewise.
32426
32427 2012-11-09  Joseph Myers  <joseph@codesourcery.com>
32428
32429         * timezone/version.h: Remove file.
32430         * timezone/README: Do not refer to version.h.
32431         * timezone/Makefile ($(objpfx)zic.o): New dependency on
32432         $(objpfx)version.h.
32433         ($(objpfx)zdump.o): Likewise.
32434         ($(objpfx)version.h): New target.
32435
32436         * timezone/tzselect.ksh: Change to verbatim copy from tzcode
32437         2012i.
32438         * timezone/README: Don't mention modification to tzselect.ksh.
32439         * timezone/Makefile ($(objpfx)tzselect): Update substitutions to
32440         work on unmodified tzselect.ksh.  Substitute version numbers in
32441         tzselect.ksh.
32442
32443         * Makefile (format-me): Remove.
32444         (INSTALL): Adjust indentation.  Use commands directly instead of
32445         using $(format-me).
32446
32447         * aclocal.m4 (ACX_PKGVERSION): New macro.
32448         (ACX_BUGURL): Likewise.
32449         * configure.in: Use ACX_PKGVERSION and ACX_BUGURL.
32450         (PKGVERSION): New AC_DEFINE_UNQUOTED.
32451         (REPORT_BUGS_TO): Likewise.
32452         * configure: Regenerated.
32453         * config.h.in (PKGVERSION): New macro.
32454         (REPORT_BUGS_TO): Likewise.
32455         * config.make.in (PKGVERSION): New variable.
32456         (PKGVERSION_TEXI): Likewise.
32457         (REPORT_BUGS_TO): Likewise.
32458         (REPORT_BUGS_TEXI): Likewise.
32459         * Makefile (format-me): Use -I$(common-objpfx)manual.
32460         (INSTALL): Depend on $(common-objpfx)manual/pkgvers.texi.
32461         ($(common-objpfx)manual/%): New target.
32462         (manual/%): Remove target.
32463         * catgets/gencat.c (more_help): Use REPORT_BUGS_TO.
32464         (print_version): Use PKGVERSION.
32465         * csu/version.c (banner): Use PKGVERSION and REPORT_BUGS_TO.
32466         * debug/Makefile ($(objpfx)catchsegv): Also substitute PKGVERSION
32467         and REPORT_BUGS_TO.
32468         ($(objpfx)xtrace): Likewise.
32469         * debug/catchsegv.sh: Use PKGVERSION and REPORT_BUGS_TO.
32470         * debug/pcprofiledump.c (more_help): Use REPORT_BUGS_TO.
32471         (print_version): Use PKGVERSION.
32472         * debug/xtrace.sh (do_help): Use REPORT_BUGS_TO.
32473         (do_version): Use PKGVERSION.
32474         * elf/Makefile ($(objpfx)sotruss): Also substitute PKGVERSION and
32475         REPORT_BUGS_TO.
32476         (common-ldd-rewrite): Likewise.
32477         * elf/dl-close.c (_dl_close_worker): Use REPORT_BUGS_TO.
32478         * elf/ldconfig.c (more_help): Use REPORT_BUGS_TO.
32479         (print_version): Use PKGVERSION.
32480         * elf/ldd.bash.in: Use PKGVERSION and REPORT_BUGS_TO.
32481         * elf/pldd.c (argp_program_bug_address): Remove variable.
32482         (more_help): New function.
32483         (argp): Use more_help.
32484         (print_version): Use PKGVERSION.
32485         * elf/sln.c (main): Use PKGVERSION.
32486         (usage): Use REPORT_BUGS_TO.
32487         * elf/sotruss.ksh (do_help): Use REPORT_BUGS_TO.
32488         (top level): Use PKGVERSION.
32489         * elf/sprof.c (more_help): Use REPORT_BUGS_TO.
32490         (print_version): Use PKGVERSION.
32491         * iconv/iconv_prog.c (more_help): Use REPORT_BUGS_TO.
32492         (print_version): Use PKGVERSION.
32493         * iconv/iconvconfig.c (more_help): Use REPORT_BUGS_TO.
32494         (print_version): Use PKGVERSION.
32495         * locale/programs/locale.c (more_help): Use REPORT_BUGS_TO.
32496         (print_version): Use PKGVERSION.
32497         * locale/programs/localedef.c (more_help): Use REPORT_BUGS_TO.
32498         (print_version): Use PKGVERSION.
32499         * login/programs/pt_chown.c (more_help): Use REPORT_BUGS_TO.
32500         (print_version): Use PKGVERSION.
32501         * malloc/Makefile ($(objpfx)mtrace): Also substitute PKGVERSION
32502         and BUGURL.
32503         ($(objpfx)memusage): Likewise.
32504         * malloc/memusage.sh (do_help): Use REPORT_BUGS_TO.
32505         (do_version): Use PKGVERSION.
32506         * malloc/memusagestat.c (more_help): Use REPORT_BUGS_TO.
32507         (print_version): Use PKGVERSION.
32508         * malloc/mtrace.pl ($PACKAGE): Remove variable.
32509         ($PKGVERSION): New variable.
32510         ($REPORT_BUGS_TO): Likewise.
32511         (usage): Use $REPORT_BUGS_TO.
32512         (top level): Use $PKGVERSION.
32513         * manual/Makefile (libc-texi-generated): Add pkgvers.texi.
32514         ($(objpfx)pkgvers.texi): New rule.
32515         ($(objpfx)stamp-pkgvers): Likewise.
32516         * manual/install.texi: Include pkgvers.texi.
32517         (--with-pkgversion): Document new configure option.
32518         (--with-bugurl): Likewise.
32519         (Reporting Bugs): Describe Bugzilla as upstream tracker rather
32520         than necessarily for this particular distribution.  Use
32521         REPORT_BUGS_TO for where to report bugs.
32522         * INSTALL: Regenerated.
32523         * manual/libc.texinfo: Include pkgvers.texi.
32524         [!PKGVERSION_DEFAULT]: Include PKGVERSION in version information.
32525         * nscd/nscd.c (more_help): Use REPORT_BUGS_TO.
32526         (print_version): Use PKGVERSION.
32527         * nss/getent.c (more_help): Use REPORT_BUGS_TO.
32528         (print_version): Use PKGVERSION.
32529         * nss/makedb.c (more_help): Use REPORT_BUGS_TO.
32530         (print_version): Use PKGVERSION.
32531         * posix/getconf.c (main): Use PKGVERSION and REPORT_BUGS_TO.
32532         * sunrpc/proto.h [IS_IN_build] (_libc_intl_domainname): Remove
32533         macro.
32534         * sunrpc/rpc_main.c (options_usage): Use REPORT_BUGS_TO.
32535         (print_version): Use PKGVERSION.
32536         * sunrpc/rpcinfo.c (usage): Use REPORT_BUGS_TO.
32537         (print_version): Use PKGVERSION.
32538         * sysdeps/unix/sysv/linux/lddlibc4.c (main): Use REPORT_BUGS_TO
32539         and PKGVERSION.
32540
32541         * timezone/checktab.awk: Update from tzcode 2012i.
32542         * timezone/ialloc.c: Likewise.
32543         * timezone/private.h: Likewise.
32544         * timezone/scheck.c: Likewise.
32545         * timezone/tzfile.h: Likewise.
32546         * timezone/tzselect.ksh: Merge in changes from tzcode 2012i.
32547         (TZVERSION): Hardcode tzcode version number.
32548         * timezone/zdump.c: Update from tzcode 2012i.
32549         * timezone/zic.c: Likewise.
32550         * timezone/version.h: New file.
32551         * timezone/README: Describe version.h.  Update upstream location.
32552
32553         [BZ #14824]
32554         * stdlib/stdlib.h [__USE_XOPEN_EXTENDED && __USE_XOPEN2K]
32555         (mktemp): Enable declaration.
32556         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (ecvt): Likewise.
32557         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (fcvt): Likewise.
32558         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K] (gcvt): Likewise.
32559         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qecvt):
32560         Likewise.
32561         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qfcvt):
32562         Likewise.
32563         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (qgcvt):
32564         Likewise.
32565         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (ecvt_r):
32566         Likewise.
32567         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (fcvt_r):
32568         Likewise.
32569         [__USE_XOPEN_EXTENDED && __USE_XOPEN2K && __USE_MISC] (gcvt_r):
32570         Likewise.
32571
32572         [BZ #14821]
32573         * sunrpc/clnt_tcp.c (clnttcp_control): Access values at fixed
32574         offset in buffer as u_int32_t not u_long.  Consistently use memcpy
32575         for copies of such integer values.
32576         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
32577         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
32578
32579 2012-11-09  Andreas Jaeger  <aj@suse.de>
32580
32581         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Remove all
32582         definitions and declarations that are provided by
32583         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
32584
32585 2012-11-08  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
32586
32587         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Add "te".
32588         * sysdeps/s390/dl-procinfo.h (HWCAP_S390_TE): Add enum value.
32589         * sysdeps/unix/sysv/linux/s390/hwcap.h (HWCAP_S390_TE): Add macro
32590         definition.
32591
32592 2012-11-08  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32593
32594         * elf/elf.h: Update comment before AArch64 relocations.
32595
32596 2012-11-07  David S. Miller  <davem@davemloft.net>
32597
32598         * sysdeps/unix/sysv/linux/sparc/sparc64/__start_context.S: New file.
32599         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
32600         (__start_context): Declare.
32601         (__makecontext_ret): Delete.
32602         (__makecontext): Hook up __start_context instead of
32603         __makecontext_ret.
32604         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile
32605         (sysdep_routines): Add __start_context when in stdlib.
32606
32607 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32608
32609         * sysdeps/x86/Makefile ($(objpfx)tst-xmmymm.out): Pass $(NM),
32610         $(OBJDUMP) and $(READELF) to tst-xmmymm.sh.
32611         * sysdeps/x86/tst-xmmymm.sh (NM): New variable.  Use it instead of
32612         hardcoded "nm".
32613         (OBJDUMP): New variable.  Use it instead of hardcoded "objdump".
32614         (READELF): New variable.  Use it instead of hardcoded "readelf".
32615
32616 2012-11-07  H.J. Lu  <hongjiu.lu@intel.com>
32617
32618         * sysdeps/x86_64/Makefile ($(objpfx)tst-xmmymm.out): Moved to ...
32619         * sysdeps/x86/Makefile: Here.
32620         * sysdeps/x86_64/tst-xmmymm.sh: Renamed to ...
32621         * sysdeps/x86/tst-xmmymm.sh: This.
32622
32623 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32624
32625         * conform/data/pthread.h-data [XPG3 || XPG4]: Disable all
32626         expectations.
32627         [UNIX98] (pthread_barrier_t): Do not expect.
32628         [UNIX98] (pthread_barrierattr_t): Likewise.
32629         [UNIX98] (pthread_spinlock_t): Likewise.
32630         [UNIX98] (pthread_barrier_destroy): Likewise.
32631         [UNIX98] (pthread_barrier_init): Likewise.
32632         [UNIX98] (pthread_barrier_wait): Likewise.
32633         [UNIX98] (pthread_barrierattr_destroy): Likewise.
32634         [UNIX98] (pthread_barrierattr_getpshared): Likewise.
32635         [UNIX98] (pthread_barrierattr_init): Likewise.
32636         [UNIX98] (pthread_barrierattr_setpshared): Likewise.
32637         [UNIX98] (pthread_getcpuclockid): Likewise.
32638         [UNIX98] (pthread_mutex_timedlock): Likewise.
32639         [UNIX98] (pthread_rwlock_timedrdlock): Likewise.
32640         [UNIX98] (pthread_rwlock_timedwrlock): Likewise.
32641         [UNIX98] (pthread_sigmask): Likewise.
32642         [UNIX98] (pthread_spin_destroy): Likewise.
32643         [UNIX98] (pthread_spin_init): Likewise.
32644         [UNIX98] (pthread_spin_lock): Likewise.
32645         [UNIX98] (pthread_spin_trylock): Likewise.
32646         [UNIX98] (pthread_spin_unlock): Likewise.
32647         * conform/data/sys/types.h-data [XPG3 || XPG4] (pthread_attr_t):
32648         Do not expect.
32649         [XPG3 || XPG4 || UNIX98] (pthread_barrier_t): Likewise.
32650         [XPG3 || XPG4 || UNIX98] (pthread_barrierattr_t): Likewise.
32651         [XPG3 || XPG4] (pthread_cond_t): Likewise.
32652         [XPG3 || XPG4] (pthread_condattr_t): Likewise.
32653         [XPG3 || XPG4] (pthread_key_t): Likewise.
32654         [XPG3 || XPG4] (pthread_mutex_t): Likewise.
32655         [XPG3 || XPG4] (pthread_mutexattr_t): Likewise.
32656         [XPG3 || XPG4] (pthread_once_t): Likewise.
32657         [XPG3 || XPG4] (pthread_rwlock_t): Likewise.
32658         [XPG3 || XPG4] (pthread_rwlockattr_t): Likewise.
32659         [XPG3 || XPG4 || UNIX98] (pthread_spinlock_t): Likewise.
32660         [XPG3 || XPG4] (pthread_t): Likewise.
32661
32662         * conform/data/stdlib.h-data [XPG3 || XPG4 || UNIX98] (setenv): Do
32663         not expect.
32664         [XPG3 || XPG4 || UNIX98] (unsetenv): Likewise.
32665
32666         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (isnan):
32667         Change function return type to int.
32668
32669         * conform/data/sys/mman.h-data [!POSIX] (POSIX_MADV_NORMAL):
32670         Change condition to [!POSIX && !XPG3 && !XPG4 && !UNIX98].
32671         [!POSIX] (POSIX_MADV_SEQUENTIAL): Likewise.
32672         [!POSIX] (POSIX_MADV_RANDOM): Likewise.
32673         [!POSIX] (POSIX_MADV_WILLNEED): Likewise.
32674         [!POSIX] (POSIX_MADV_DONTNEED): Likewise.
32675         [!POSIX] (posix_madvise): Likewise.
32676         (POSIX_TYPED_MEM_ALLOCATE): Condition on [!POSIX && !XPG3 && !XPG4
32677         && !UNIX98].
32678         (POSIX_TYPED_MEM_ALLOCATE_CONTIG): Likewise.
32679         (POSIX_TYPED_MEM_MAP_ALLOCATABLE): Likewise.
32680         (mode_t): Likewise.
32681         (posix_mem_offset): Likewise.
32682         (posix_typed_mem_get_info): Likewise.
32683         (posix_typed_mem_open): Likewise.
32684
32685         * conform/data/sys/stat.h-data [!POSIX && !POSIX2008] (mknodat):
32686         Change condition to [XOPEN2K8].
32687
32688         * conform/conformtest.pl: Preprocess allow-header data with -x c
32689         instead of from stdin.
32690         (@headers): Add stdalign.h, stdbool.h and stdnoreturn.h.
32691         * conform/data/complex.h-data [C99-based standards] (cerf): Allow.
32692         [C99-based standards] (cerfc): Likewise.
32693         [C99-based standards] (cexp2): Likewise.
32694         [C99-based standards] (cexpm1): Likewise.
32695         [C99-based standards] (clog10): Likewise.
32696         [C99-based standards] (clog1p): Likewise.
32697         [C99-based standards] (clog2): Likewise.
32698         [C99-based standards] (clgamma): Likewise.
32699         [C99-based standards] (ctgamma): Likewise.
32700         [C99-based standards] (cerff): Likewise.
32701         [C99-based standards] (cerfcf): Likewise.
32702         [C99-based standards] (cexp2f): Likewise.
32703         [C99-based standards] (cexpm1f): Likewise.
32704         [C99-based standards] (clog10f): Likewise.
32705         [C99-based standards] (clog1pf): Likewise.
32706         [C99-based standards] (clog2f): Likewise.
32707         [C99-based standards] (clgammaf): Likewise.
32708         [C99-based standards] (ctgammaf): Likewise.
32709         [C99-based standards] (cerfl): Likewise.
32710         [C99-based standards] (cerfcl): Likewise.
32711         [C99-based standards] (cexp2l): Likewise.
32712         [C99-based standards] (cexpm1l): Likewise.
32713         [C99-based standards] (clog10l): Likewise.
32714         [C99-based standards] (clog1pl): Likewise.
32715         [C99-based standards] (clog2l): Likewise.
32716         [C99-based standards] (clgammal): Likewise.
32717         [C99-based standards] (ctgammal): Likewise.
32718         * conform/data/inttypes.h-data [C99-based standards]: Include
32719         stdint.h-data.  Remove all expectations for stdint.h contents.
32720         [C99-based standards] (PRI*): Do not allow.
32721         [C99-based standards] (SCN*): Likewise.
32722         [C99-based standards] (*_t): Likewise.
32723         [C99-based-standards] (PRId8): Expect macro.
32724         [C99-based-standards] (PRIi8): Likewise.
32725         [C99-based-standards] (PRIo8): Likewise.
32726         [C99-based-standards] (PRIu8): Likewise.
32727         [C99-based-standards] (PRIx8): Likewise.
32728         [C99-based-standards] (PRIX8): Likewise.
32729         [C99-based-standards] (SCNd8): Likewise.
32730         [C99-based-standards] (SCNi8): Likewise.
32731         [C99-based-standards] (SCNo8): Likewise.
32732         [C99-based-standards] (SCNu8): Likewise.
32733         [C99-based-standards] (SCNx8): Likewise.
32734         [C99-based-standards] (PRIdLEAST8): Likewise.
32735         [C99-based-standards] (PRIiLEAST8): Likewise.
32736         [C99-based-standards] (PRIoLEAST8): Likewise.
32737         [C99-based-standards] (PRIuLEAST8): Likewise.
32738         [C99-based-standards] (PRIxLEAST8): Likewise.
32739         [C99-based-standards] (PRIXLEAST8): Likewise.
32740         [C99-based-standards] (SCNdLEAST8): Likewise.
32741         [C99-based-standards] (SCNiLEAST8): Likewise.
32742         [C99-based-standards] (SCNoLEAST8): Likewise.
32743         [C99-based-standards] (SCNuLEAST8): Likewise.
32744         [C99-based-standards] (SCNxLEAST8): Likewise.
32745         [C99-based-standards] (PRIdFAST8): Likewise.
32746         [C99-based-standards] (PRIiFAST8): Likewise.
32747         [C99-based-standards] (PRIoFAST8): Likewise.
32748         [C99-based-standards] (PRIuFAST8): Likewise.
32749         [C99-based-standards] (PRIxFAST8): Likewise.
32750         [C99-based-standards] (PRIXFAST8): Likewise.
32751         [C99-based-standards] (SCNdFAST8): Likewise.
32752         [C99-based-standards] (SCNiFAST8): Likewise.
32753         [C99-based-standards] (SCNoFAST8): Likewise.
32754         [C99-based-standards] (SCNuFAST8): Likewise.
32755         [C99-based-standards] (SCNxFAST8): Likewise.
32756         [C99-based-standards] (PRId16): Likewise.
32757         [C99-based-standards] (PRIi16): Likewise.
32758         [C99-based-standards] (PRIo16): Likewise.
32759         [C99-based-standards] (PRIu16): Likewise.
32760         [C99-based-standards] (PRIx16): Likewise.
32761         [C99-based-standards] (PRIX16): Likewise.
32762         [C99-based-standards] (SCNd16): Likewise.
32763         [C99-based-standards] (SCNi16): Likewise.
32764         [C99-based-standards] (SCNo16): Likewise.
32765         [C99-based-standards] (SCNu16): Likewise.
32766         [C99-based-standards] (SCNx16): Likewise.
32767         [C99-based-standards] (PRIdLEAST16): Likewise.
32768         [C99-based-standards] (PRIiLEAST16): Likewise.
32769         [C99-based-standards] (PRIoLEAST16): Likewise.
32770         [C99-based-standards] (PRIuLEAST16): Likewise.
32771         [C99-based-standards] (PRIxLEAST16): Likewise.
32772         [C99-based-standards] (PRIXLEAST16): Likewise.
32773         [C99-based-standards] (SCNdLEAST16): Likewise.
32774         [C99-based-standards] (SCNiLEAST16): Likewise.
32775         [C99-based-standards] (SCNoLEAST16): Likewise.
32776         [C99-based-standards] (SCNuLEAST16): Likewise.
32777         [C99-based-standards] (SCNxLEAST16): Likewise.
32778         [C99-based-standards] (PRIdFAST16): Likewise.
32779         [C99-based-standards] (PRIiFAST16): Likewise.
32780         [C99-based-standards] (PRIoFAST16): Likewise.
32781         [C99-based-standards] (PRIuFAST16): Likewise.
32782         [C99-based-standards] (PRIxFAST16): Likewise.
32783         [C99-based-standards] (PRIXFAST16): Likewise.
32784         [C99-based-standards] (SCNdFAST16): Likewise.
32785         [C99-based-standards] (SCNiFAST16): Likewise.
32786         [C99-based-standards] (SCNoFAST16): Likewise.
32787         [C99-based-standards] (SCNuFAST16): Likewise.
32788         [C99-based-standards] (SCNxFAST16): Likewise.
32789         [C99-based-standards] (PRId32): Likewise.
32790         [C99-based-standards] (PRIi32): Likewise.
32791         [C99-based-standards] (PRIo32): Likewise.
32792         [C99-based-standards] (PRIu32): Likewise.
32793         [C99-based-standards] (PRIx32): Likewise.
32794         [C99-based-standards] (PRIX32): Likewise.
32795         [C99-based-standards] (SCNd32): Likewise.
32796         [C99-based-standards] (SCNi32): Likewise.
32797         [C99-based-standards] (SCNo32): Likewise.
32798         [C99-based-standards] (SCNu32): Likewise.
32799         [C99-based-standards] (SCNx32): Likewise.
32800         [C99-based-standards] (PRIdLEAST32): Likewise.
32801         [C99-based-standards] (PRIiLEAST32): Likewise.
32802         [C99-based-standards] (PRIoLEAST32): Likewise.
32803         [C99-based-standards] (PRIuLEAST32): Likewise.
32804         [C99-based-standards] (PRIxLEAST32): Likewise.
32805         [C99-based-standards] (PRIXLEAST32): Likewise.
32806         [C99-based-standards] (SCNdLEAST32): Likewise.
32807         [C99-based-standards] (SCNiLEAST32): Likewise.
32808         [C99-based-standards] (SCNoLEAST32): Likewise.
32809         [C99-based-standards] (SCNuLEAST32): Likewise.
32810         [C99-based-standards] (SCNxLEAST32): Likewise.
32811         [C99-based-standards] (PRIdFAST32): Likewise.
32812         [C99-based-standards] (PRIiFAST32): Likewise.
32813         [C99-based-standards] (PRIoFAST32): Likewise.
32814         [C99-based-standards] (PRIuFAST32): Likewise.
32815         [C99-based-standards] (PRIxFAST32): Likewise.
32816         [C99-based-standards] (PRIXFAST32): Likewise.
32817         [C99-based-standards] (SCNdFAST32): Likewise.
32818         [C99-based-standards] (SCNiFAST32): Likewise.
32819         [C99-based-standards] (SCNoFAST32): Likewise.
32820         [C99-based-standards] (SCNuFAST32): Likewise.
32821         [C99-based-standards] (SCNxFAST32): Likewise.
32822         [C99-based-standards] (PRId64): Likewise.
32823         [C99-based-standards] (PRIi64): Likewise.
32824         [C99-based-standards] (PRIo64): Likewise.
32825         [C99-based-standards] (PRIu64): Likewise.
32826         [C99-based-standards] (PRIx64): Likewise.
32827         [C99-based-standards] (PRIX64): Likewise.
32828         [C99-based-standards] (SCNd64): Likewise.
32829         [C99-based-standards] (SCNi64): Likewise.
32830         [C99-based-standards] (SCNo64): Likewise.
32831         [C99-based-standards] (SCNu64): Likewise.
32832         [C99-based-standards] (SCNx64): Likewise.
32833         [C99-based-standards] (PRIdLEAST64): Likewise.
32834         [C99-based-standards] (PRIiLEAST64): Likewise.
32835         [C99-based-standards] (PRIoLEAST64): Likewise.
32836         [C99-based-standards] (PRIuLEAST64): Likewise.
32837         [C99-based-standards] (PRIxLEAST64): Likewise.
32838         [C99-based-standards] (PRIXLEAST64): Likewise.
32839         [C99-based-standards] (SCNdLEAST64): Likewise.
32840         [C99-based-standards] (SCNiLEAST64): Likewise.
32841         [C99-based-standards] (SCNoLEAST64): Likewise.
32842         [C99-based-standards] (SCNuLEAST64): Likewise.
32843         [C99-based-standards] (SCNxLEAST64): Likewise.
32844         [C99-based-standards] (PRIdFAST64): Likewise.
32845         [C99-based-standards] (PRIiFAST64): Likewise.
32846         [C99-based-standards] (PRIoFAST64): Likewise.
32847         [C99-based-standards] (PRIuFAST64): Likewise.
32848         [C99-based-standards] (PRIxFAST64): Likewise.
32849         [C99-based-standards] (PRIXFAST64): Likewise.
32850         [C99-based-standards] (SCNdFAST64): Likewise.
32851         [C99-based-standards] (SCNiFAST64): Likewise.
32852         [C99-based-standards] (SCNoFAST64): Likewise.
32853         [C99-based-standards] (SCNuFAST64): Likewise.
32854         [C99-based-standards] (SCNxFAST64): Likewise.
32855         [C99-based-standards] (PRIdMAX): Likewise.
32856         [C99-based-standards] (PRIiMAX): Likewise.
32857         [C99-based-standards] (PRIoMAX): Likewise.
32858         [C99-based-standards] (PRIuMAX): Likewise.
32859         [C99-based-standards] (PRIxMAX): Likewise.
32860         [C99-based-standards] (PRIXMAX): Likewise.
32861         [C99-based-standards] (SCNdMAX): Likewise.
32862         [C99-based-standards] (SCNiMAX): Likewise.
32863         [C99-based-standards] (SCNoMAX): Likewise.
32864         [C99-based-standards] (SCNuMAX): Likewise.
32865         [C99-based-standards] (SCNxMAX): Likewise.
32866         [C99-based-standards] (PRIdPTR): Likewise.
32867         [C99-based-standards] (PRIiPTR): Likewise.
32868         [C99-based-standards] (PRIoPTR): Likewise.
32869         [C99-based-standards] (PRIuPTR): Likewise.
32870         [C99-based-standards] (PRIxPTR): Likewise.
32871         [C99-based-standards] (PRIXPTR): Likewise.
32872         [C99-based-standards] (SCNdPTR): Likewise.
32873         [C99-based-standards] (SCNiPTR): Likewise.
32874         [C99-based-standards] (SCNoPTR): Likewise.
32875         [C99-based-standards] (SCNuPTR): Likewise.
32876         [C99-based-standards] (SCNxPTR): Likewise.
32877         * conform/data/iso646.h-data [ISO C standards] (*_t): Do not
32878         allow.
32879         * conform/data/stdint.h-data: Update comments to clarify
32880         requirements.
32881         [C99-based standards] (INT8_MIN): Use macro-int-constant.  Specify
32882         type.
32883         [C99-based standards] (INT8_MAX): Likewise.
32884         [C99-based standards] (INT16_MIN): Likewise.
32885         [C99-based standards] (INT16_MAX): Likewise.
32886         [C99-based standards] (INT32_MIN): Likewise.
32887         [C99-based standards] (INT32_MAX): Likewise.
32888         [C99-based standards] (INT64_MIN): Likewise.
32889         [C99-based standards] (INT64_MAX): Likewise.
32890         [C99-based standards] (UINT8_MAX): Likewise.
32891         [C99-based standards] (UINT16_MAX): Likewise.
32892         [C99-based standards] (UINT32_MAX): Likewise.
32893         [C99-based standards] (UINT64_MAX): Likewise.
32894         [C99-based standards] (INT_LEAST8_MIN): Likewise.
32895         [C99-based standards] (INT_LEAST8_MAX): Likewise.
32896         [C99-based standards] (INT_LEAST16_MIN): Likewise.
32897         [C99-based standards] (INT_LEAST16_MAX): Likewise.
32898         [C99-based standards] (INT_LEAST32_MIN): Likewise.
32899         [C99-based standards] (INT_LEAST32_MAX): Likewise.
32900         [C99-based standards] (INT_LEAST64_MIN): Likewise.
32901         [C99-based standards] (INT_LEAST64_MAX): Likewise.
32902         [C99-based standards] (UINT_LEAST8_MAX): Likewise.
32903         [C99-based standards] (UINT_LEAST16_MAX): Likewise.
32904         [C99-based standards] (UINT_LEAST32_MAX): Likewise.
32905         [C99-based standards] (UINT_LEAST64_MAX): Likewise.
32906         [C99-based standards] (INT_FAST8_MIN): Likewise.
32907         [C99-based standards] (INT_FAST8_MAX): Likewise.
32908         [C99-based standards] (INT_FAST16_MIN): Likewise.
32909         [C99-based standards] (INT_FAST16_MAX): Likewise.
32910         [C99-based standards] (INT_FAST32_MIN): Likewise.
32911         [C99-based standards] (INT_FAST32_MAX): Likewise.
32912         [C99-based standards] (INT_FAST64_MIN): Likewise.
32913         [C99-based standards] (INT_FAST64_MAX): Likewise.
32914         [C99-based standards] (UINT_FAST8_MAX): Likewise.
32915         [C99-based standards] (UINT_FAST16_MAX): Likewise.
32916         [C99-based standards] (UINT_FAST32_MAX): Likewise.
32917         [C99-based standards] (UINT_FAST64_MAX): Likewise.
32918         [C99-based standards] (INTPTR_MIN): Likewise.
32919         [C99-based standards] (INTPTR_MAX): Likewise.
32920         [C99-based standards] (UINTPTR_MAX): Likewise.
32921         [C99-based standards] (INTMAX_MIN): Likewise.
32922         [C99-based standards] (INTMAX_MAX): Likewise.
32923         [C99-based standards] (UINTMAX_MAX): Likewise.
32924         [C99-based standards] (PTRDIFF_MIN): Likewise.
32925         [C99-based standards] (PTRDIFF_MAX): Likewise.
32926         [C99-based standards] (SIG_ATOMIC_MAX): Likewise.
32927         [C99-based standards] (SIZE_MAX): Likewise.
32928         [C99-based standards] (WCHAR_MAX): Likewise.
32929         [C99-based standards] (WINT_MAX): Likewise.
32930         [C99-based standards] (SIG_ATOMIC_MIN): Likewise.  Do not specify
32931         constraint on value.
32932         [C99-based standards] (WCHAR_MIN): Likewise.
32933         [C99-based standards] (WINT_MIN): Likewise.
32934         [C99-based standards] (*_t): Allow.
32935         * conform/data/tgmath.h-data [XOPEN2K || POSIX2008]: Change
32936         condition to [!ISO && !POSIX && !XPG3 && !XPG4 && !UNIX98].
32937         Include math.h-data and complex.h-data.  Remove all expectations
32938         of math.h and complex.h contents.
32939         * conform/data/uchar.h-data [ISO11] (c16rtomb): Remove stray "16"
32940         at end of line.
32941         * conform/data/wchar.h-data [!ISO && !POSIX && !XPG3 && !XPG4]
32942         (struct tm): Expect tag.
32943         [C99-based-standards] (wcstof): Expect function.
32944         [C99-based-standards] (wcstold): Likewise.
32945         [C99-based-standards] (wcstoll): Likewise.
32946         [C99-based-standards] (wcstoull): Likewise.
32947         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MIN): Use
32948         macro-int-constant.  Specify type.
32949         [!ISO && !POSIX && !XPG3 && !XPG4] (WCHAR_MAX): Likewise.  Specify
32950         constraint on value.
32951         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
32952         Specify type.
32953         [!ISO && !POSIX && !XPG3 && !XPG4] (NULL): Use macro-constant.
32954         Specify value.
32955         [ISO C standards]: Do not allow headers.
32956         [!ISO && !POSIX && !XPG3 && !XPG4] (wcs*): Change to
32957         wcs[abcdefghijklmnopqrstuvwxyz]*.
32958         [ISO C standards] (*_t): Do not allow.
32959         * conform/data/wctype.h-data [C99-based standards] (iswblank):
32960         Expect function.
32961         [XOPEN2K8 || POSIX2008] (iswblank_l): Likewise.
32962         [!ISO && !POSIX && !XPG3 && !XPG4] (WEOF): Use macro-constant.
32963         Specify type.
32964         [ISO C standards]: Do not allow headers.
32965         [!ISO && !POSIX && !XPG3 && !XPG4] (is*): Change to
32966         is[abcdefghijklmnopqrstuvwxyz]*.
32967         [!ISO && !POSIX && !XPG3 && !XPG4] (to*): Change to
32968         to[abcdefghijklmnopqrstuvwxyz]*.
32969         [ISO C standards] (*_t): Do not allow.
32970         * conform/data/stdalign.h-data: New file.
32971         * conform/data/stdbool.h-data: Likewise.
32972         * conform/data/stdnoreturn.h-data: Likewise.
32973
32974 2012-11-07  Roland McGrath  <roland@hack.frob.com>
32975
32976         [BZ #14815]
32977         * manual/filesys.texi (Directory Entries): Typo fix.
32978         Reported by <h-iwamoto@kit.hi-ho.ne.jp>.
32979
32980 2012-11-07  Marcus Shawcroft  <marcus.shawcroft@linaro.org>
32981
32982         * elf/elf.h (EM_AARCH64): New macro.
32983         (R_AARCH64_NONE, R_AARCH64_ABS64, R_AARCH64_ABS32): Likewise.
32984         (R_AARCH64_COPY, R_AARCH64_GLOB_DAT, R_AARCH64_JUMP_SLOT): Likewise.
32985         (R_AARCH64_RELATIVE, R_AARCH64_TLS_DTPMOD64): Likewise.
32986         (R_AARCH64_TLS_DTPREL64, R_AARCH64_TLS_TPREL64): Likewise.
32987         (R_AARCH64_TLSDESC): Likewise.
32988         (NT_ARM_TLS): Likewise.
32989         (NT_ARM_HW_BREAK): Likewise.
32990         (NT_ARM_HW_WATCH): Likewise.
32991
32992 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
32993
32994         [BZ #14811]
32995         * sysdeps/i386/fpu/e_powl.S (pm79): New object.
32996         (__ieee754_powl): Saturate nonzero exponents with absolute value
32997         below 0x1p-79 to +/- 0x1p-79.
32998         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Saturate nonzero
32999         exponents with absolute value below 0x1p-64 to +/- 0x1p-64.
33000         * sysdeps/ieee754/flt-32/e_powf.c (__ieee754_powf): Saturate
33001         nonzero exponents with absolute value below 0x1p-32 to +/-
33002         0x1p-32.
33003         * sysdeps/x86_64/fpu/e_powl.S (pm79): New object.
33004         (__ieee754_powl): Saturate nonzero exponents with absolute value
33005         below 0x1p-79 to +/- 0x1p-79.
33006         * math/libm-test.inc (pow_test): Add more tests.
33007
33008 2012-11-07  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
33009
33010         * sysdeps/s390/dl-procinfo.c (_dl_s390_cap_flags): Sync
33011         _dl_s390_cap_flags with kernel. Increase string length.
33012         (_dl_s390_platforms): Add z196 and zEC12.
33013
33014 2012-11-07  Joseph Myers  <joseph@codesourcery.com>
33015
33016         * conform/data/time.h-data [!XOPEN21K && !XOPEN2K8 && !POSIX2008]:
33017         Change XOPEN21K to XOPEN2K.
33018
33019 2012-11-06  Maxim Kuvyrkov  <maxim@codesourcery.com>
33020
33021         * string/memmove.c: Use memcpy when possible.
33022
33023 2012-11-06  Andreas Jaeger  <aj@suse.de>
33024
33025         * po/eo.po: Update from translation team.
33026
33027 2012-11-06  Joseph Myers  <joseph@codesourcery.com>
33028
33029         [BZ #14793]
33030         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): In case of large z
33031         exponent and small x and y exponents, scale x or y up.  Increase
33032         by 2 the exponent used in scaling up.
33033         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33034         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33035         * math/libm-test.inc (fma_test): Add more tests.
33036         (fma_test_towardzero): Likewise.
33037         (fma_test_downward): Likewise.
33038         (fma_test_upward): Likewise.
33039
33040 2012-11-05  Joseph Myers  <joseph@codesourcery.com>
33041
33042         [BZ #14805]
33043         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_DFL_ENV): Use cast to const
33044         fenv_t *.
33045
33046         [BZ #14801]
33047         * sysdeps/s390/fpu/bits/fenv.h (fenv_t): Use implementation
33048         namespace for names of struct fields.
33049         * sysdeps/s390/fpu/fegetenv.c (fegetenv): Update references to
33050         fenv_t fields.
33051         * sysdeps/s390/fpu/feholdexcpt.c (feholdexcept): Likewise.
33052         * sysdeps/s390/fpu/fesetenv.c (fesetenv): Likewise.
33053
33054 2012-11-04  Samuel Thibault  <samuel.thibault@ens-lyon.org>
33055
33056         [BZ #3665]
33057         * sysdeps/mach/hurd/bits/errno.h: Regenerated.
33058
33059 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
33060
33061         * csu/libc-start.c (LIBC_START_MAIN): Conditionalize use of
33062         PTR_DEMANGLE.
33063
33064         [BZ #5246]
33065         * sysdeps/mach/hurd/i386/____longjmp_chk.S: Conditionalize use of
33066         PTR_DEMANGLE.
33067
33068 2012-11-04  Joseph Myers  <joseph@codesourcery.com>
33069
33070         [BZ #14797]
33071         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute cases that
33072         definitely overflow as x * y not x * y + z.
33073         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33074         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33075         * math/libm-test.inc (fma_test): Add more tests.
33076         (fma_test_towardzero): Likewise.
33077         (fma_test_downward): Likewise.
33078         (fma_test_upward): Likewise.
33079
33080 2012-11-04  Thomas Schwinge  <thomas@codesourcery.com>
33081
33082         [BZ #157]
33083
33084         * include/stub-tag.h: Remove file.
33085         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Don't emit
33086         '#include' of it.
33087         * manual/maint.texi (Porting): Don't reference it.
33088         * Makerules ($(objpfx)stubs): Likewise.
33089         * dirent/closedir.c: Don't include <stub-tag.h>.
33090         * dirent/dirfd.c: Likewise.
33091         * dirent/fdopendir.c: Likewise.
33092         * dirent/getdents.c: Likewise.
33093         * dirent/getdents64.c: Likewise.
33094         * dirent/opendir.c: Likewise.
33095         * dirent/readdir.c: Likewise.
33096         * dirent/readdir64.c: Likewise.
33097         * dirent/readdir64_r.c: Likewise.
33098         * dirent/readdir_r.c: Likewise.
33099         * dirent/rewinddir.c: Likewise.
33100         * dirent/seekdir.c: Likewise.
33101         * dirent/telldir.c: Likewise.
33102         * gmon/profil.c: Likewise.
33103         * grp/setgroups.c: Likewise.
33104         * inet/if_index.c: Likewise.
33105         * io/access.c: Likewise.
33106         * io/chdir.c: Likewise.
33107         * io/chmod.c: Likewise.
33108         * io/chown.c: Likewise.
33109         * io/close.c: Likewise.
33110         * io/dup.c: Likewise.
33111         * io/dup2.c: Likewise.
33112         * io/dup3.c: Likewise.
33113         * io/euidaccess.c: Likewise.
33114         * io/faccessat.c: Likewise.
33115         * io/fchdir.c: Likewise.
33116         * io/fchmod.c: Likewise.
33117         * io/fchmodat.c: Likewise.
33118         * io/fchown.c: Likewise.
33119         * io/fchownat.c: Likewise.
33120         * io/fcntl.c: Likewise.
33121         * io/flock.c: Likewise.
33122         * io/fstatfs.c: Likewise.
33123         * io/fstatfs64.c: Likewise.
33124         * io/fstatvfs.c: Likewise.
33125         * io/fstatvfs64.c: Likewise.
33126         * io/futimens.c: Likewise.
33127         * io/fxstat.c: Likewise.
33128         * io/fxstat64.c: Likewise.
33129         * io/fxstatat.c: Likewise.
33130         * io/fxstatat64.c: Likewise.
33131         * io/getcwd.c: Likewise.
33132         * io/isatty.c: Likewise.
33133         * io/lchmod.c: Likewise.
33134         * io/lchown.c: Likewise.
33135         * io/link.c: Likewise.
33136         * io/linkat.c: Likewise.
33137         * io/lseek.c: Likewise.
33138         * io/lseek64.c: Likewise.
33139         * io/lxstat64.c: Likewise.
33140         * io/mkdir.c: Likewise.
33141         * io/mkdirat.c: Likewise.
33142         * io/mkfifo.c: Likewise.
33143         * io/mkfifoat.c: Likewise.
33144         * io/open.c: Likewise.
33145         * io/open64.c: Likewise.
33146         * io/openat.c: Likewise.
33147         * io/openat64.c: Likewise.
33148         * io/pipe.c: Likewise.
33149         * io/pipe2.c: Likewise.
33150         * io/poll.c: Likewise.
33151         * io/posix_fadvise.c: Likewise.
33152         * io/posix_fadvise64.c: Likewise.
33153         * io/posix_fallocate.c: Likewise.
33154         * io/posix_fallocate64.c: Likewise.
33155         * io/read.c: Likewise.
33156         * io/readlink.c: Likewise.
33157         * io/readlinkat.c: Likewise.
33158         * io/rmdir.c: Likewise.
33159         * io/sendfile.c: Likewise.
33160         * io/sendfile64.c: Likewise.
33161         * io/statfs.c: Likewise.
33162         * io/statfs64.c: Likewise.
33163         * io/statvfs.c: Likewise.
33164         * io/statvfs64.c: Likewise.
33165         * io/symlink.c: Likewise.
33166         * io/symlinkat.c: Likewise.
33167         * io/ttyname.c: Likewise.
33168         * io/ttyname_r.c: Likewise.
33169         * io/umask.c: Likewise.
33170         * io/unlink.c: Likewise.
33171         * io/unlinkat.c: Likewise.
33172         * io/utime.c: Likewise.
33173         * io/utimensat.c: Likewise.
33174         * io/write.c: Likewise.
33175         * io/xmknod.c: Likewise.
33176         * io/xmknodat.c: Likewise.
33177         * io/xstat.c: Likewise.
33178         * io/xstat64.c: Likewise.
33179         * login/getpt.c: Likewise.
33180         * login/grantpt.c: Likewise.
33181         * login/unlockpt.c: Likewise.
33182         * math/e_acoshl.c: Likewise.
33183         * math/e_acosl.c: Likewise.
33184         * math/e_asinl.c: Likewise.
33185         * math/e_atan2l.c: Likewise.
33186         * math/e_atanhl.c: Likewise.
33187         * math/e_coshl.c: Likewise.
33188         * math/e_expl.c: Likewise.
33189         * math/e_fmodl.c: Likewise.
33190         * math/e_gammal_r.c: Likewise.
33191         * math/e_hypotl.c: Likewise.
33192         * math/e_j0l.c: Likewise.
33193         * math/e_j1l.c: Likewise.
33194         * math/e_jnl.c: Likewise.
33195         * math/e_lgammal_r.c: Likewise.
33196         * math/e_log10l.c: Likewise.
33197         * math/e_log2l.c: Likewise.
33198         * math/e_logl.c: Likewise.
33199         * math/e_powl.c: Likewise.
33200         * math/e_rem_pio2l.c: Likewise.
33201         * math/e_sinhl.c: Likewise.
33202         * math/e_sqrtl.c: Likewise.
33203         * math/fclrexcpt.c: Likewise.
33204         * math/fedisblxcpt.c: Likewise.
33205         * math/feenablxcpt.c: Likewise.
33206         * math/fegetenv.c: Likewise.
33207         * math/fegetexcept.c: Likewise.
33208         * math/fegetround.c: Likewise.
33209         * math/feholdexcpt.c: Likewise.
33210         * math/fesetenv.c: Likewise.
33211         * math/fesetround.c: Likewise.
33212         * math/feupdateenv.c: Likewise.
33213         * math/fgetexcptflg.c: Likewise.
33214         * math/fraiseexcpt.c: Likewise.
33215         * math/fsetexcptflg.c: Likewise.
33216         * math/ftestexcept.c: Likewise.
33217         * math/k_cosl.c: Likewise.
33218         * math/k_rem_pio2l.c: Likewise.
33219         * math/k_sinl.c: Likewise.
33220         * math/k_tanl.c: Likewise.
33221         * math/s_asinhl.c: Likewise.
33222         * math/s_atanl.c: Likewise.
33223         * math/s_cbrtl.c: Likewise.
33224         * math/s_erfl.c: Likewise.
33225         * math/s_expm1l.c: Likewise.
33226         * math/s_log1pl.c: Likewise.
33227         * math/s_tanhl.c: Likewise.
33228         * misc/acct.c: Likewise.
33229         * misc/brk.c: Likewise.
33230         * misc/chflags.c: Likewise.
33231         * misc/chroot.c: Likewise.
33232         * misc/fchflags.c: Likewise.
33233         * misc/fgetxattr.c: Likewise.
33234         * misc/flistxattr.c: Likewise.
33235         * misc/fremovexattr.c: Likewise.
33236         * misc/fsetxattr.c: Likewise.
33237         * misc/fsync.c: Likewise.
33238         * misc/ftruncate.c: Likewise.
33239         * misc/futimes.c: Likewise.
33240         * misc/futimesat.c: Likewise.
33241         * misc/getdomain.c: Likewise.
33242         * misc/getdtsz.c: Likewise.
33243         * misc/gethostid.c: Likewise.
33244         * misc/gethostname.c: Likewise.
33245         * misc/getloadavg.c: Likewise.
33246         * misc/getpagesize.c: Likewise.
33247         * misc/getsysstats.c: Likewise.
33248         * misc/getxattr.c: Likewise.
33249         * misc/gtty.c: Likewise.
33250         * misc/ioctl.c: Likewise.
33251         * misc/lgetxattr.c: Likewise.
33252         * misc/listxattr.c: Likewise.
33253         * misc/llistxattr.c: Likewise.
33254         * misc/lremovexattr.c: Likewise.
33255         * misc/lsetxattr.c: Likewise.
33256         * misc/lutimes.c: Likewise.
33257         * misc/madvise.c: Likewise.
33258         * misc/mincore.c: Likewise.
33259         * misc/mlock.c: Likewise.
33260         * misc/mlockall.c: Likewise.
33261         * misc/mmap.c: Likewise.
33262         * misc/mprotect.c: Likewise.
33263         * misc/msync.c: Likewise.
33264         * misc/munlock.c: Likewise.
33265         * misc/munlockall.c: Likewise.
33266         * misc/munmap.c: Likewise.
33267         * misc/preadv.c: Likewise.
33268         * misc/preadv64.c: Likewise.
33269         * misc/ptrace.c: Likewise.
33270         * misc/pwritev.c: Likewise.
33271         * misc/pwritev64.c: Likewise.
33272         * misc/readv.c: Likewise.
33273         * misc/reboot.c: Likewise.
33274         * misc/remap_file_pages.c: Likewise.
33275         * misc/removexattr.c: Likewise.
33276         * misc/revoke.c: Likewise.
33277         * misc/select.c: Likewise.
33278         * misc/setdomain.c: Likewise.
33279         * misc/setegid.c: Likewise.
33280         * misc/seteuid.c: Likewise.
33281         * misc/sethostid.c: Likewise.
33282         * misc/sethostname.c: Likewise.
33283         * misc/setregid.c: Likewise.
33284         * misc/setreuid.c: Likewise.
33285         * misc/setxattr.c: Likewise.
33286         * misc/sstk.c: Likewise.
33287         * misc/stty.c: Likewise.
33288         * misc/swapoff.c: Likewise.
33289         * misc/swapon.c: Likewise.
33290         * misc/sync.c: Likewise.
33291         * misc/syncfs.c: Likewise.
33292         * misc/syscall.c: Likewise.
33293         * misc/truncate.c: Likewise.
33294         * misc/ualarm.c: Likewise.
33295         * misc/usleep.c: Likewise.
33296         * misc/ustat.c: Likewise.
33297         * misc/utimes.c: Likewise.
33298         * misc/vhangup.c: Likewise.
33299         * misc/writev.c: Likewise.
33300         * posix/_exit.c: Likewise.
33301         * posix/alarm.c: Likewise.
33302         * posix/execve.c: Likewise.
33303         * posix/fexecve.c: Likewise.
33304         * posix/fork.c: Likewise.
33305         * posix/fpathconf.c: Likewise.
33306         * posix/getaddrinfo.c: Likewise.
33307         * posix/getegid.c: Likewise.
33308         * posix/geteuid.c: Likewise.
33309         * posix/getgid.c: Likewise.
33310         * posix/getgroups.c: Likewise.
33311         * posix/getlogin.c: Likewise.
33312         * posix/getlogin_r.c: Likewise.
33313         * posix/getpgid.c: Likewise.
33314         * posix/getpid.c: Likewise.
33315         * posix/getppid.c: Likewise.
33316         * posix/getresgid.c: Likewise.
33317         * posix/getresuid.c: Likewise.
33318         * posix/getsid.c: Likewise.
33319         * posix/getuid.c: Likewise.
33320         * posix/glob64.c: Likewise.
33321         * posix/nanosleep.c: Likewise.
33322         * posix/pathconf.c: Likewise.
33323         * posix/pause.c: Likewise.
33324         * posix/posix_madvise.c: Likewise.
33325         * posix/pread.c: Likewise.
33326         * posix/pread64.c: Likewise.
33327         * posix/pwrite.c: Likewise.
33328         * posix/pwrite64.c: Likewise.
33329         * posix/sched_getaffinity.c: Likewise.
33330         * posix/sched_getp.c: Likewise.
33331         * posix/sched_gets.c: Likewise.
33332         * posix/sched_primax.c: Likewise.
33333         * posix/sched_primin.c: Likewise.
33334         * posix/sched_rr_gi.c: Likewise.
33335         * posix/sched_setaffinity.c: Likewise.
33336         * posix/sched_setp.c: Likewise.
33337         * posix/sched_sets.c: Likewise.
33338         * posix/sched_yield.c: Likewise.
33339         * posix/setgid.c: Likewise.
33340         * posix/setlogin.c: Likewise.
33341         * posix/setpgid.c: Likewise.
33342         * posix/setresgid.c: Likewise.
33343         * posix/setresuid.c: Likewise.
33344         * posix/setsid.c: Likewise.
33345         * posix/setuid.c: Likewise.
33346         * posix/sleep.c: Likewise.
33347         * posix/spawni.c: Likewise.
33348         * posix/sysconf.c: Likewise.
33349         * posix/times.c: Likewise.
33350         * posix/wait.c: Likewise.
33351         * posix/wait3.c: Likewise.
33352         * posix/wait4.c: Likewise.
33353         * posix/waitpid.c: Likewise.
33354         * resolv/gai_sigqueue.c: Likewise.
33355         * resource/getpriority.c: Likewise.
33356         * resource/getrlimit.c: Likewise.
33357         * resource/getrusage.c: Likewise.
33358         * resource/nice.c: Likewise.
33359         * resource/setpriority.c: Likewise.
33360         * resource/setrlimit.c: Likewise.
33361         * resource/ulimit.c: Likewise.
33362         * rt/aio_cancel.c: Likewise.
33363         * rt/aio_fsync.c: Likewise.
33364         * rt/aio_read.c: Likewise.
33365         * rt/aio_sigqueue.c: Likewise.
33366         * rt/aio_suspend.c: Likewise.
33367         * rt/aio_write.c: Likewise.
33368         * rt/clock_getres.c: Likewise.
33369         * rt/clock_gettime.c: Likewise.
33370         * rt/clock_nanosleep.c: Likewise.
33371         * rt/clock_settime.c: Likewise.
33372         * rt/lio_listio.c: Likewise.
33373         * rt/mq_close.c: Likewise.
33374         * rt/mq_getattr.c: Likewise.
33375         * rt/mq_notify.c: Likewise.
33376         * rt/mq_open.c: Likewise.
33377         * rt/mq_receive.c: Likewise.
33378         * rt/mq_send.c: Likewise.
33379         * rt/mq_setattr.c: Likewise.
33380         * rt/mq_timedreceive.c: Likewise.
33381         * rt/mq_timedsend.c: Likewise.
33382         * rt/mq_unlink.c: Likewise.
33383         * rt/shm_open.c: Likewise.
33384         * rt/shm_unlink.c: Likewise.
33385         * rt/timer_create.c: Likewise.
33386         * rt/timer_delete.c: Likewise.
33387         * rt/timer_getoverr.c: Likewise.
33388         * rt/timer_gettime.c: Likewise.
33389         * rt/timer_settime.c: Likewise.
33390         * setjmp/__longjmp.c: Likewise.
33391         * setjmp/setjmp.c: Likewise.
33392         * signal/kill.c: Likewise.
33393         * signal/killpg.c: Likewise.
33394         * signal/raise.c: Likewise.
33395         * signal/sigaction.c: Likewise.
33396         * signal/sigaltstack.c: Likewise.
33397         * signal/sigblock.c: Likewise.
33398         * signal/sigignore.c: Likewise.
33399         * signal/sigintr.c: Likewise.
33400         * signal/signal.c: Likewise.
33401         * signal/sigpause.c: Likewise.
33402         * signal/sigpending.c: Likewise.
33403         * signal/sigqueue.c: Likewise.
33404         * signal/sigreturn.c: Likewise.
33405         * signal/sigset.c: Likewise.
33406         * signal/sigsetmask.c: Likewise.
33407         * signal/sigstack.c: Likewise.
33408         * signal/sigsuspend.c: Likewise.
33409         * signal/sigtimedwait.c: Likewise.
33410         * signal/sigvec.c: Likewise.
33411         * signal/sigwait.c: Likewise.
33412         * signal/sigwaitinfo.c: Likewise.
33413         * signal/sysv_signal.c: Likewise.
33414         * socket/accept.c: Likewise.
33415         * socket/accept4.c: Likewise.
33416         * socket/bind.c: Likewise.
33417         * socket/connect.c: Likewise.
33418         * socket/getpeername.c: Likewise.
33419         * socket/getsockname.c: Likewise.
33420         * socket/getsockopt.c: Likewise.
33421         * socket/isfdtype.c: Likewise.
33422         * socket/listen.c: Likewise.
33423         * socket/recv.c: Likewise.
33424         * socket/recvfrom.c: Likewise.
33425         * socket/recvmsg.c: Likewise.
33426         * socket/send.c: Likewise.
33427         * socket/sendmsg.c: Likewise.
33428         * socket/sendto.c: Likewise.
33429         * socket/setsockopt.c: Likewise.
33430         * socket/shutdown.c: Likewise.
33431         * socket/sockatmark.c: Likewise.
33432         * socket/socket.c: Likewise.
33433         * socket/socketpair.c: Likewise.
33434         * stdio-common/ctermid.c: Likewise.
33435         * stdio-common/cuserid.c: Likewise.
33436         * stdio-common/remove.c: Likewise.
33437         * stdio-common/rename.c: Likewise.
33438         * stdio-common/renameat.c: Likewise.
33439         * stdio-common/tempname.c: Likewise.
33440         * stdlib/getcontext.c: Likewise.
33441         * stdlib/makecontext.c: Likewise.
33442         * stdlib/setcontext.c: Likewise.
33443         * stdlib/swapcontext.c: Likewise.
33444         * stdlib/system.c: Likewise.
33445         * streams/fattach.c: Likewise.
33446         * streams/fdetach.c: Likewise.
33447         * streams/getmsg.c: Likewise.
33448         * streams/getpmsg.c: Likewise.
33449         * streams/putmsg.c: Likewise.
33450         * streams/putpmsg.c: Likewise.
33451         * sysdeps/unix/bsd/getpt.c: Likewise.
33452         * sysdeps/unix/sysv/linux/epoll_pwait.c: Likewise.
33453         * sysdeps/unix/sysv/linux/futimens.c: Likewise.
33454         * sysdeps/unix/sysv/linux/lutimes.c: Likewise.
33455         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
33456         Likewise.
33457         * sysdeps/unix/sysv/linux/readahead.c: Likewise.
33458         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
33459         * sysdeps/unix/sysv/linux/utimensat.c: Likewise.
33460         * sysvipc/msgctl.c: Likewise.
33461         * sysvipc/msgget.c: Likewise.
33462         * sysvipc/msgrcv.c: Likewise.
33463         * sysvipc/msgsnd.c: Likewise.
33464         * sysvipc/semctl.c: Likewise.
33465         * sysvipc/semget.c: Likewise.
33466         * sysvipc/semop.c: Likewise.
33467         * sysvipc/semtimedop.c: Likewise.
33468         * sysvipc/shmat.c: Likewise.
33469         * sysvipc/shmctl.c: Likewise.
33470         * sysvipc/shmdt.c: Likewise.
33471         * sysvipc/shmget.c: Likewise.
33472         * termios/tcdrain.c: Likewise.
33473         * termios/tcflow.c: Likewise.
33474         * termios/tcflush.c: Likewise.
33475         * termios/tcgetattr.c: Likewise.
33476         * termios/tcgetpgrp.c: Likewise.
33477         * termios/tcsendbrk.c: Likewise.
33478         * termios/tcsetattr.c: Likewise.
33479         * termios/tcsetpgrp.c: Likewise.
33480         * time/adjtime.c: Likewise.
33481         * time/clock.c: Likewise.
33482         * time/getitimer.c: Likewise.
33483         * time/gettimeofday.c: Likewise.
33484         * time/setitimer.c: Likewise.
33485         * time/settimeofday.c: Likewise.
33486         * time/stime.c: Likewise.
33487         * time/time.c: Likewise.
33488
33489 2012-11-04  Pino Toscano  <toscano.pino@tiscali.it>
33490
33491         * sysdeps/generic/paths.h (_PATH_STDPATH): Remove /usr/contrib/bin and
33492         /usr/old/bin.
33493
33494         * sysdeps/generic/paths.h (_PATH_MNTTAB, _PATH_MOUNTED): Use tabs
33495         instead of spaces.
33496         * sysdeps/unix/sysv/linux/paths.h (_PATH_UTMP, _PATH_WTMP): Likewise.
33497
33498 2012-11-03  Joseph Myers  <joseph@codesourcery.com>
33499
33500         [BZ #14796]
33501         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Set rounding mode to
33502         FE_TONEAREST before applying Dekker multiplication and Knuth
33503         addition.  Clear inexact exceptions and check for exact zero
33504         results afterwards.
33505         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33506         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
33507         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33508         * math/libm-test.inc (fma_test): Add more tests.
33509         (fma_test_towardzero): Likewise.
33510         (fma_test_downward): Likewise.
33511         (fma_test_upward): Likewise.
33512         * sysdeps/generic/math_private.h (default_libc_fesetround): New
33513         function.
33514         (libc_fesetround): New macro.
33515         (libc_fesetroundf): Likewise.
33516         (libc_fesetroundl): Likewise.
33517         * sysdeps/i386/fpu/fenv_private.h (libc_fesetround_sse): New
33518         function.
33519         (libc_fesetround_387): Likewise.
33520         (libc_fesetroundf): New macro.
33521         (libc_fesetround): Likewise.
33522         (libc_fesetroundl): Likewise.
33523         * sysdeps/sparc/fpu/fenv_private.h (libc_fesetround): New
33524         function.
33525         (libc_fesetroundf): New macro.
33526         (libc_fesetround): Likewise.
33527         (libc_fesetroundl): Likewise.
33528         * include/fenv.h (feclearexcept): Add libm_hidden_proto.
33529         * math/fclrexcpt.c (feclearexcept): Add libm_hidden_ver.
33530         * sysdeps/i386/fpu/fclrexcpt.c (feclearexcept): Add
33531         libm_hidden_ver.
33532         * sysdeps/powerpc/fpu/fclrexcpt.c (feclearexcept): Likewise.
33533         * sysdeps/s390/fpu/fclrexcpt.c (feclearexcept): Add
33534         libm_hidden_def.
33535         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Likewise.
33536         * sysdeps/sparc/fpu/fclrexcpt.c (feclearexcept): Add
33537         libm_hidden_ver.
33538         * sysdeps/x86_64/fpu/fclrexcpt.c (feclearexcept): Add
33539         libm_hidden_def.
33540
33541         [BZ #3439]
33542         * sysdeps/powerpc/bits/fenv.h (FE_INEXACT): Define macro to
33543         integer constant usable in #if and use that to give value to enum
33544         constant.
33545         (FE_DIVBYZERO): Likewise.
33546         (FE_UNDERFLOW): Likewise.
33547         (FE_OVERFLOW): Likewise.
33548         (FE_INVALID): Likewise.
33549         (FE_INVALID_SNAN): Likewise.
33550         (FE_INVALID_ISI): Likewise.
33551         (FE_INVALID_IDI): Likewise.
33552         (FE_INVALID_ZDZ): Likewise.
33553         (FE_INVALID_IMZ): Likewise.
33554         (FE_INVALID_COMPARE): Likewise.
33555         (FE_INVALID_SOFTWARE): Likewise.
33556         (FE_INVALID_SQRT): Likewise.
33557         (FE_INVALID_INTEGER_CONVERSION): Likewise.
33558         (FE_TONEAREST): Likewise.
33559         (FE_TOWARDZERO): Likewise.
33560         (FE_UPWARD): Likewise.
33561         (FE_DOWNWARD): Likewise.
33562         * sysdeps/s390/fpu/bits/fenv.h (FE_INVALID): Likewise.
33563         (FE_DIVBYZERO): Likewise.
33564         (FE_OVERFLOW): Likewise.
33565         (FE_UNDERFLOW): Likewise.
33566         (FE_INEXACT): Likewise.
33567         (FE_TONEAREST): Likewise.
33568         (FE_DOWNWARD): Likewise.
33569         (FE_UPWARD): Likewise.
33570         (FE_TOWARDZERO): Likewise.
33571         * sysdeps/sh/sh4/fpu/bits/fenv.h (FE_INEXACT): Likewise.
33572         (FE_UNDERFLOW): Likewise.
33573         (FE_OVERFLOW): Likewise.
33574         (FE_DIVBYZERO): Likewise.
33575         (FE_INVALID): Likewise.
33576         (FE_TONEAREST): Likewise.
33577         (FE_TOWARDZERO): Likewise.
33578         * sysdeps/sparc/fpu/bits/fenv.h (FE_INVALID): Likewise.
33579         (FE_OVERFLOW): Likewise.
33580         (FE_UNDERFLOW): Likewise.
33581         (FE_DIVBYZERO): Likewise.
33582         (FE_INEXACT): Likewise.
33583         (FE_TONEAREST): Likewise.
33584         (FE_TOWARDZERO): Likewise.
33585         (FE_UPWARD): Likewise.
33586         (FE_DOWNWARD): Likewise.
33587         * sysdeps/x86/fpu/bits/fenv.h (FE_INVALID): Likewise.
33588         (FE_DIVBYZERO): Likewise.
33589         (FE_OVERFLOW): Likewise.
33590         (FE_UNDERFLOW): Likewise.
33591         (FE_INEXACT): Likewise.
33592         (FE_TONEAREST): Likewise.
33593         (FE_DOWNWARD): Likewise.
33594         (FE_UPWARD): Likewise.
33595         (FE_TOWARDZERO): Likewise.
33596
33597 2012-11-02  Chris Metcalf  <cmetcalf@tilera.com>
33598
33599         * elf/elf.h (R_TILEGX_IMM16_X[01]_HW[012]_(|LAST_)PLT_PCREL): Add.
33600
33601 2012-11-03  Andreas Schwab  <schwab@linux-m68k.org>
33602
33603         * scripts/cross-test-ssh.sh (command): Use newlines to separate
33604         commands.  Quote $PWD.
33605         (blacklist_exports): Don't use remove_newlines.  Replace "declare
33606         -x" by "export".
33607         (remove_newlines): Remove.
33608
33609 2012-11-02  H.J. Lu  <hongjiu.lu@intel.com>
33610
33611         * stdlib/Makefile (headers): Add bits/stdlib-float.h.
33612         * stdlib/stdlib.h (atof): Moved to ...
33613         * include/bits/stdlib-float.h: Here.  New file.
33614         * stdlib/stdlib.h: Include <bits/stdlib-float.h>.
33615         * stdlib/bits/stdlib-float.h: New file.
33616         * sysdeps/x86/Makefile (CFLAGS-.os): Compile rtld routines with
33617         -mno-sse -mno-mmx.
33618         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: Include
33619         <xmmintrin.h>.
33620
33621 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
33622
33623         * conform/conformtest.pl (@headers): Add fenv.h.
33624         * conform/data/fenv.h-data: New file.
33625         * include/fenv.h [_ISOMAC]: Disable all contents of file except
33626         include of <math/fenv.h>.
33627
33628         * conform/data/complex.h-data [ISO99 || ISO11 || XOPEN2K ||
33629         POSIX2008]: Change condition to [!ISO && !POSIX && !XPG3 && !XPG4
33630         && !UNIX98].  Enables tests for XOPEN2K8.
33631         * conform/data/inttypes.h-data [ISO99 || ISO11 || XOPEN2K ||
33632         POSIX2008]: Likewise.
33633
33634         * conform/data/sys/wait.h-data [XPG3 || XOPEN2K8 || POSIX2008]
33635         (struct rusage): Do not expect type or its members.
33636
33637         [BZ #3439]
33638         * math/math.h (FP_NAN): Define macro to integer constant usable in
33639         #if and use that to give value to enum constant.
33640         (FP_INFINITE): Likewise.
33641         (FP_ZERO): Likewise.
33642         (FP_SUBNORMAL): Likewise.
33643         (FP_NORMAL): Likewise.
33644
33645 2012-11-02  Andreas Schwab  <schwab@linux-m68k.org>
33646
33647         * iconvdata/bug-iconv8.c (do_test): Use %z for size_t arguments.
33648         * iconvdata/bug-iconv9.c (do_test): Use %t for ptrdiff_t
33649         arguments.
33650
33651 2012-11-02  Roland McGrath  <roland@hack.frob.com>
33652
33653         * aclocal.m4 (GLIBC_AUTOCONF_VERSION): New macro.
33654         Check that AC_AUTOCONF_VERSION matches it and m4_fatal at
33655         autoconf-time if not.
33656         * configure.in: Remove AC_PREREQ.
33657
33658 2012-11-02  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33659
33660         * sysdeps/powerpc/sys/platform/ppc.h (__ppc_get_timebase): Use
33661         __builtin_ppc_get_timebase when building with GCC >= 4.8 instead
33662         of the internal implementation.
33663
33664 2012-11-02  Joseph Myers  <joseph@codesourcery.com>
33665
33666         * include/sys/syslog.h [_ISOMAC]: Disable all contents of file
33667         except include of <misc/sys/syslog.h>.
33668
33669 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
33670
33671         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S: If the
33672         function returns with a NULL context exit with zero.
33673
33674 2012-11-01  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33675
33676         * sysdeps/powerpc/Makefile (cflags): Remove -mnew-mnemonics.
33677
33678 2012-11-01  H.J. Lu  <hongjiu.lu@intel.com>
33679
33680         * catgets/test-gencat.sh (run_program_prefix): Renamed to ...
33681         (run_program_cmd): This.
33682         * localedata/tst-langinfo.sh (run_program_prefix): Removed.
33683         (tst_langinfo): New variable.  Use it.
33684
33685 2012-11-01  Sebastan Andrzej Siewior  <bigeasy@linutronix.de>
33686
33687         * sysdeps/powerpc/powerpc32/dl-trampoline.S: Put __NO_FPRS__ around
33688         floating point opcodes.
33689
33690 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33691
33692         * sysdeps/mach/hurd/Makefile (link-libc-static-tests): New
33693         variable.
33694
33695         * elf/dl-support.c: Unconditionally include "setup-vdso.h".
33696
33697         * sysdeps/mach/hurd/powerpc: Remove directory.
33698         * sysdeps/mach/powerpc: Likewise.
33699
33700 2012-11-01  Andreas Schwab  <schwab@linux-m68k.org>
33701
33702         * scripts/check-local-headers.sh: Ignore c++ headers.
33703
33704 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33705
33706         * libio/genops.c (_IO_flush_all_lockp): Use NULL rather than 0 for
33707         __libc_cleanup_region_start argument.
33708
33709 2012-11-01  Joseph Myers  <joseph@codesourcery.com>
33710
33711         [BZ #14784]
33712         [BZ #14785]
33713         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle cases with small
33714         x * y using scaling, not as x * y + z.
33715         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33716         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33717         * math/libm-test.inc (fma_test): Add more tests.
33718         (fma_test_towardzero): Likewise.
33719         (fma_test_downward): Likewise.
33720         (fma_test_upward): Likewise.
33721
33722 2012-11-01  Thomas Schwinge  <thomas@codesourcery.com>
33723
33724         * sysdeps/mach/hurd/bits/param.h: Remove stray #endif.
33725
33726 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
33727
33728         * sysdeps/sh/Makefile [$(subdir) = debug] (CFLAGS-backtrace.c):
33729         New variable.
33730
33731 2012-10-31  Thomas Schwinge  <thomas@codesourcery.com>
33732
33733         * rt/tst-shm.c (worker): Correct checking for mmap failure.
33734
33735 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
33736
33737         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
33738         Fix sort order.
33739         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
33740         Likewise.
33741
33742 2012-10-31  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
33743
33744         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
33745         Fix the order of the list for glibc 2.17.
33746         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
33747         Likewise.
33748
33749 2012-10-31  Andreas Schwab  <schwab@linux-m68k.org>
33750
33751         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
33752
33753 2012-10-31  Joseph Myers  <joseph@codesourcery.com>
33754
33755         [BZ #14610]
33756         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c (__ieee754_atan2l): Check
33757         for low part of x being zero before using __atanl (y).
33758         * math/libm-test.inc (atan2_test): Add another test.
33759
33760         * manual/install.texi (Configuring and compiling): Document
33761         general use of test-wrapper and test-wrapper-env.
33762         * INSTALL: Regenerated.
33763
33764         * sysdeps/ieee754/dbl-64/s_fma.c: Include <tininess.h>.
33765         (__fma): Do not extract and scale down low bits on after-rounding
33766         systems when result rounded to normal precision would have normal
33767         exponent.
33768         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <tininess.h>.
33769         (__fmal): Do not extract and scale down low bits on after-rounding
33770         systems when result rounded to normal precision would have normal
33771         exponent.
33772         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <tininess.h>.
33773         (__fmal): Do not extract and scale down low bits on after-rounding
33774         systems when result rounded to normal precision would have normal
33775         exponent.
33776         * math/libm-test.inc (UNDERFLOW_EXCEPTION_BEFORE_ROUNDING): New
33777         macro.
33778         (fma_test): Add more tests.
33779         (fma_test_towardzero): Likewise.
33780         (fma_test_downward): Likewise.
33781         (fma_test_upward): Likewise.
33782
33783 2012-10-30  H.J. Lu  <hongjiu.lu@intel.com>
33784
33785         * sysdeps/i386/tininess.h: Renamed to ...
33786         * sysdeps/x86/tininess.h: This.
33787         * sysdeps/x86_64/tininess.h: Removed.
33788
33789 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
33790
33791         * elf/Makefile ($(objpfx)tst-array1.out): Depend on comparison
33792         input.  Use $(build-program-cmd).
33793         ($(objpfx)tst-array1-static.out): Likewise.
33794         ($(objpfx)tst-array2.out): Likewise.
33795         ($(objpfx)tst-array3.out): Likewise.
33796         ($(objpfx)tst-array4.out): Likewise.
33797         ($(objpfx)tst-array5.out): Likewise.
33798         ($(objpfx)tst-array5-static.out): Likewise.
33799
33800 2012-10-30  Chris Metcalf  <cmetcalf@tilera.com>
33801
33802         * elf/dl-load.c (_dl_map_object_from_fd): Call DL_AFTER_LOAD
33803         if defined.
33804
33805         * nss/nsswitch.h (nss_interface_function): Provide new
33806         macro for use with NSS functions.
33807         * grp/initgroups.c: Use new macro.
33808         * nss/getXXbyYY.c: Likewise.
33809         * nss/getXXbyYY_r.c: Likewise.
33810         * nss/getXXent.c: Likewise.
33811         * nss/getXXent_r.c: Likewise.
33812         * sysdeps/posix/getaddrinfo.c: Likewise.
33813
33814 2012-10-30  Andreas Jaeger  <aj@suse.de>
33815
33816         * po/ru.po: Update Russion translation from translation project.
33817
33818 2012-10-30  Joseph Myers  <joseph@codesourcery.com>
33819
33820         [BZ #14152]
33821         [BZ #14783]
33822         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Extract low bits of
33823         result and shift together with sticky bit instead of replicating
33824         round-to-nearest rounding.
33825         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
33826         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
33827         * math/libm-test.inc (fma_test): Add more tests.  Do not permit
33828         missing underflow exceptions.
33829         (fma_test_towardzero): Add more tests.
33830         (fma_test_downward): Likewise.
33831         (fma_test_upward): Likewise.
33832
33833         [BZ #14047]
33834         * sysdeps/generic/tininess.h: New file.
33835         * sysdeps/i386/tininess.h: Likewise.
33836         * sysdeps/sh/tininess.h: Likewise.
33837         * sysdeps/x86_64/tininess.h: Likewise.
33838         * stdlib/tst-strtod-underflow.c: Likewise.
33839         * stdlib/tst-tininess.c: Likewise.
33840         * stdlib/strtod_l.c: Include <tininess.h>.
33841         (round_and_return): Do not set errno for exact underflow cases.
33842         Force an underflow exception when setting errno for underflow.
33843         Determine underflow based on rounding to normal precision if
33844         TININESS_AFTER_ROUNDING.
33845         * stdlib/tst-strtod.c (tests): Do not expect errno to be set to
33846         ERANGE for exact underflow cases.
33847         * stdlib/Makefile (tests): Add tst-tininess and
33848         tst-strtod-underflow.
33849         ($(objpfx)tst-tininess): Use $(link-libm).
33850         ($(objpfx)tst-strtod-underflow): Likewise.
33851
33852 2012-10-30  Andreas Jaeger  <aj@suse.de>
33853
33854         [BZ#14767]
33855         * elf/Makefile (tests): Remove conditional for have-initfini-array
33856         since this is now always required and the variable does not exist
33857         anymore.
33858         (tests-static): Likewise.
33859         (modules-names): Likewise.
33860
33861         * po/eo.po: Add Esperanto translation from translation project.
33862
33863         * elf/tst-array1.c (fini_array): Make writeable so that it can be
33864         merged with constructor/destructor.
33865         (init_array): Likewise.
33866         * elf/tst-array2dep.c (fini_array): Likewise.
33867         (init_array): Likewise.
33868
33869 2012-10-29  Mike Frysinger  <vapier@gentoo.org>
33870
33871         * manual/message.texi: Delete @cartouche tags.
33872
33873 2012-10-29  Pino Toscano  <toscano.pino@tiscali.it>
33874
33875         * sysdeps/mach/hurd/fdatasync.c: Turn ERR into EINVAL if it is
33876         EOPNOTSUPP.
33877         * sysdeps/mach/hurd/fsync.c: Likewise.
33878
33879         * sysdeps/pthread/aio_notify.c (__aio_notify_only)
33880         [_POSIX_REALTIME_SIGNALS]: Change condition to
33881         [_POSIX_REALTIME_SIGNALS > 0].
33882
33883 2012-10-27  Andreas Jaeger  <aj@suse.de>
33884
33885         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (__O_LARGEFILE)
33886         [!__x86_64]: Do not define, take value from <bits/fcntl-linux.h>.
33887         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE):
33888         [__WORDSIZE != 64]: Likewise.
33889
33890 2012-10-26  H.J. Lu  <hongjiu.lu@intel.com>
33891
33892         *  iconvdata/tst-table.sh: Remove ${SHELL}.
33893         *  iconvdata/tst-tables.sh: Likewise.
33894
33895 2012-10-25  David S. Miller  <davem@davemloft.net>
33896
33897         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
33898         (__get_clockfreq_via_proc_openprom): Use strtoumax instead
33899         of strtoull.
33900
33901         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add comments for
33902         ifunc-impl-list.c
33903         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
33904         * sysdeps/sparc/sparc64/multiarch/ifunc-impl-list.c: New file.
33905         * sysdeps/sparc/sparc32/sparcv9/multiarch/ifunc-impl-list.c: New
33906         file.
33907
33908 2012-10-25  Roland McGrath  <roland@hack.frob.com>
33909
33910         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
33911         (__get_clockfreq_via_proc_openprom): Use __getdents instead of
33912         __getdirentries.
33913
33914 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
33915             Jim Blandy  <jimb@codesourcery.com>
33916
33917         * scripts/cross-test-ssh.sh: New file.
33918         * manual/install.texi (Configuring and compiling): Document use of
33919         cross-test-ssh.sh.
33920         * INSTALL: Regenerated.
33921
33922 2012-10-25  Pino Toscano  <toscano.pino@tiscali.it>
33923
33924         * sysdeps/mach/hurd/ptrace.c (ptrace): Use __hurd_fail to return
33925         EOPNOTSUPP.
33926
33927 2012-10-25  Joseph Myers  <joseph@codesourcery.com>
33928
33929         * Makeconfig (run-program-prefix): Fix comment.
33930
33931 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
33932             Jim Blandy  <jimb@codesourcery.com>
33933
33934         * Makeconfig (test-wrapper): New variable,
33935         (test-wrapper-env): Likewise.
33936         [$(cross-compiling) = yes && $(test-wrapper) != ""]
33937         (run-built-tests): Define to yes.
33938         (run-program-prefix): Use $(test-wrapper).
33939         (built-program-cmd): Likewise.
33940         * Rules (make-test-out): Use $(test-wrapper-env) and
33941         $(host-built-program-cmd).
33942         * elf/Makefile ($(objpfx)order.out): Use $(test-wrapper).
33943         ($(objpfx)tst-pathopt.out): Pass $(test-wrapper-env) to
33944         tst-pathopt.sh.
33945         ($(objpfx)tst-rtld-load-self.out): Pass $(test-wrapper) and
33946         $(test-wrapper-env) to tst-rtld-load-self.sh.
33947         ($(objpfx)order2.out): Use $(test-wrapper).
33948         ($(objpfx)tst-initorder.out): Likewise.
33949         ($(objpfx)tst-initorder2.out): Likewise.
33950         ($(objpfx)tst-unused-dep.out): Use $(test-wrapper-env).
33951         * elf/tst-pathopt.sh (run_program_prefix): Remove unused variable.
33952         (test_wrapper_env): New variable.  Use it to run ld.so.
33953         * elf/tst-rtld-load-self.sh (test_wrapper): New variable.
33954         Use it to run ld.so.
33955         (test_wrapper_env): Likewise.
33956         * iconvdata/Makefile ($(objpfx)iconv-test.out): Pass
33957         $(test-wrapper) to run-iconv-test.sh.
33958         * iconvdata/run-iconv-test.sh (test_wrapper): New variable.
33959         (ICONV): Use $test_wrapper.
33960         * posix/Makefile ($(objpfx)globtest.out): Pass
33961         $(run-via-rtld-prefix), $(test-wrapper) and $(test-wrapper-env) to
33962         globtest.sh, not $(run-program-prefix).
33963         * posix/globtest.sh (run_via_rtld_prefix): New variable.
33964         (test_wrapper): Likewise.
33965         (test_wrapper_env): Likewise.  Use it to run globtest with HOME
33966         set together with run_via_rtld_prefix.
33967         (run_program_prefix): Define in terms of test_wrapper and
33968         run_via_rtld_prefix.
33969
33970 2012-10-24  Roland McGrath  <roland@hack.frob.com>
33971
33972         * nscd/Makefile ($(objpfx)nscd): Remove librt dependency.
33973         * posix/Makefile ($(objpfx)tst-regex, $(objpfx)tst-regex2):
33974         Targets removed.
33975
33976         [BZ #14743]
33977         * include/time.h: Remove librt_hidden_proto (clock_gettime).
33978         Declare __clock_getres, __clock_gettime, __clock_settime,
33979         __clock_nanosleep, and __clock_getcpuclockid.
33980         * rt/clock_gettime.c: Define __clock_gettime as an alias.
33981         Remove librt_hidden_def (clock_gettime).
33982         * sysdeps/unix/clock_gettime.c: Likewise.
33983         * rt/clock_getcpuclockid.c: Define __clock_getcpuclockid as an alias.
33984         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c: Likewise.
33985         * rt/clock_getres.c: Define __clock_getres as an alias.
33986         * sysdeps/posix/clock_getres.c: Likewise.
33987         * rt/clock_settime.c: Define __clock_settime as an alias.
33988         * sysdeps/unix/clock_settime.c: Likewise.
33989         * rt/clock_nanosleep.c: Define __clock_nanosleep as an alias.
33990         * sysdeps/unix/clock_nanosleep.c: Likewise.
33991         * sysdeps/unix/sysv/linux/clock_nanosleep.c: Likewise.
33992         * rt/clock-compat.c: New file.
33993         * rt/Makefile (librt-routines): Add clock-compat and move
33994         $(clock-routines) to ...
33995         (routines): ... here, new variable.
33996         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_routines):
33997         Don't add get_clockfreq here.
33998         * rt/Versions (libc: GLIBC_2.17): New version set.
33999         Add clock_* symbols here.
34000         (libc: GLIBC_PRIVATE): New version set.  Add __clock_* symbols here.
34001         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist
34002         (GLIBC_2.17): Add clock_* symbols.
34003         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
34004         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
34005         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
34006         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
34007         Likewise.
34008         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
34009         Likewise.
34010         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
34011         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
34012         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
34013         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
34014         * NEWS: Mention the move.
34015
34016         * sysdeps/unix/sysv/linux/i386/get_clockfreq.c (__get_clockfreq):
34017         Use __open, __read, __close rather than their public counterparts.
34018         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
34019         (__get_clockfreq_via_cpuinfo): Likewise.
34020         (__get_clockfreq_via_proc_openprom): Likewise, and __getdirentries.
34021         (__get_clockfreq_via_dev_openprom): Likewise, and __ioctl.
34022
34023         * config.h.in (HAVE_IFUNC): New #undef.
34024         * configure.in: Define it if libc_cv_ld_gnu_indirect_function
34025         was successful.
34026         * configure: Regenerated.
34027
34028 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
34029
34030         * configure.in: Move READELF check to start of file.
34031         (libc_cv_ld_gnu_indirect_function): Change to a link test. Rename from
34032         libc_cv_asm_gnu_indirect_function in the process.
34033         * configure: Regenerated.
34034
34035 2012-10-24  Mike Frysinger  <vapier@gentoo.org>
34036
34037         * configure.in (libc_cv_gcc_static_libgcc): Drop -q flag to grep and
34038         send the output to /dev/null.
34039         (libc_cv_cc_with_libunwind): Likewise.
34040         (libc_cv_as_noexecstack): Likewise.
34041         * configure: Regenerate.
34042
34043 2012-10-24  Joseph Myers  <joseph@codesourcery.com>
34044
34045         * io/ftwtest-sh (tmp): Define to ${objpfx}io, not using `pwd`.
34046
34047         * posix/globtest.sh (TMPDIR): Do not set.
34048         (testdir): Define using ${common_objpfx}posix not $TMPDIR.
34049         (testout): Likewise.
34050
34051 2012-10-24  Andreas Jaeger  <aj@suse.de>
34052
34053         * io/fcntl.h: Always define mode_t, off_t, pid_t and use these
34054         types for creat, creat64, lockf, posix_fadvise, posix_fallocate.
34055         [__USE_LARGEFILE64 && !__off64_t_defined]: Define off64_t.
34056         [__USE_LARGEFILE64]: Use off64_t in declaration of lock64,
34057         posix_fadvise64, posix_fallocate64.
34058
34059         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h (F_GETLK, F_SETLK)
34060         (F_SETLKW) [__x86_64]: Remove, provided by <bits/fcntl-linux.h>.
34061         (F_GETLK, F_SETLK, F_SETLKW) [!__USE_FILE_OFFSET64 && !__x86_64__]:
34062         Likewise.
34063         (F_GETLK, F_SETLK, F_SETLKW) [__USE_FILE_OFFSET64 && ! __x86_64__]:
34064         Likewise.
34065         (F_GETLK64, F_SETLK64, F_SETLKW64) [!__x86_64__]: Likewise.
34066
34067         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (F_GETLK, F_SETLK)
34068         (F_SETLKW) [__USE_FILE_OFFSET64]: Remove, provided by
34069         <bits/fcntl-linux.h>.
34070         (F_GETLK64, F_SETLK64, F_SETLKW64) [__WORDSIZE == 64]: Likewise.
34071
34072         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (F_DUPFD, F_GETFD)
34073         (F_SETFD, F_GETFL, F_SETFL): Remove, provided by <bits/fcntl-linux.h>.
34074         (F_GETLK, F_SETLK, F_SETLKW) [__WORDSIZE == 64]: Likewise.
34075         (F_GETLK, F_SETLK, F_SETLKW, F_GETLK64, F_SETLK64, F_SETLKW64)
34076         [__WORDSIZE != 64]: Likewise.
34077
34078 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
34079
34080         * Makeconfig (run-built-tests): New variable.
34081         * Rules [$(cross-compiling) = yes]: Change condition to
34082         [$(run-built-tests) = no].
34083         * catgets/Makefile [$(cross-compiling) != yes]: Change condition
34084         to [$(run-built-tests) = yes].
34085         * elf/Makefile [$(cross-compiling) = no]: Likewise
34086         * grp/Makefile [$(cross-compiling) = no]: Likewise.
34087         * iconv/Makefile [$(cross-compiling) != yes]: Likewise.
34088         * iconvdata/Makefile [$(cross-compiling) = no]: Likewise.
34089         * intl/Makefile [$(cross-compiling) = no]: Likewise.
34090         * io/Makefile [$(cross-compiling) = no]: Likewise.
34091         * libio/Makefile [$(cross-compiling) = no]: Likewise.
34092         * malloc/Makefile [$(cross-compiling) = no]: Likewise.
34093         * misc/Makefile [$(cross-compiling) = no]: Likewise.
34094         * posix/Makefile [$(cross-compiling) = no]: Likewise.
34095         * resolv/Makefile [$(cross-compiling) = no]: Likewise.
34096         * stdio-common/Makefile [$(cross-compiling) = no]: Likewise.
34097         * stdlib/Makefile [$(cross-compiling) = no]: Likewise.
34098         * string/Makefile [$(cross-compiling) = no]: Likewise.
34099
34100         * posix/Makefile ($(objpfx)globtest.out): Pass
34101         $(run-program-prefix) to globtest.sh, not $(elf-objpfx) and
34102         $(rtld-installed-name).
34103         * posix/globtest.sh (elf_objpfx): Remove variable.
34104         (rtld_installed_name): Likewise.
34105         (library_path): Likewise.
34106         (run_program_prefix): New variable.  Use for running globtest
34107         binary.
34108
34109 2012-10-23  Jim Blandy  <jimb@codesourcery.com>
34110             Joseph Myers  <joseph@codesourcery.com>
34111
34112         * Makeconfig (host-built-program-cmd): New variable.
34113         * elf/Makefile (tst-stackguard1-ARGS): Use
34114         $(host-built-program-cmd).
34115         * posix/Makefile (tst-exec-ARGS): Use $(host-built-program-cmd).
34116         (tst-spawn-ARGS): Likewise.
34117         * rt/Makefile (tst-mqueue7-ARGS): Use $(host-built-program-cmd).
34118
34119 2012-10-23  Joseph Myers  <joseph@codesourcery.com>
34120             Jim Blandy  <jimb@codesourcery.com>
34121
34122         * Makeconfig (run-via-rtld-prefix): New variable.
34123         (run-program-prefix): Define in terms of $(run-via-rtld-prefix).
34124         (built-program-cmd): Likewise.
34125
34126 2012-10-22  Andreas Jaeger  <aj@suse.de>
34127
34128         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (O_RSYNC): Define to
34129         __O_RSYNC if it exists, otherwise to O_SYNC.
34130
34131 2012-10-22  Jim Blandy  <jimb@codesourcery.com>
34132             Joseph Myers  <joseph@codesourcery.com>
34133
34134         * iconvdata/run-iconv-test.sh: Redirect iconv stdin in loops from
34135         /dev/null.
34136         * iconvdata/tst-tables.sh: Redirect tst-table.sh stdin in loop
34137         from /dev/null
34138         * posix/tst-getconf.sh: Redirect getconf stdin in loop from
34139         /dev/null.
34140
34141 2012-10-22  Andreas Jaeger  <aj@suse.de>
34142
34143         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (__O_LARGEFILE):
34144         Define always.
34145         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (__O_LARGEFILE): Likewise.
34146
34147         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
34148         bits/fcntl-linux.h.
34149
34150         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h (F_GETLK, F_SETLK)
34151         (F_SETLKW) [!F_GETLK]: Define values for [!__USE_FILE_OFFSET64].
34152
34153         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (O_LARGEFILE): Rename
34154         to __O_LARGEFILE.
34155         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_LARGEFILE): Rename
34156         to __O_LARGEFILE.
34157
34158 2012-10-21  Jim Blandy  <jimb@codesourcery.com>
34159             Joseph Myers  <joseph@codesourcery.com>
34160
34161         * config.make.in (NM): New variable.
34162
34163 2012-10-21  Andreas Jaeger  <aj@suse.de>
34164
34165         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Remove all
34166         definitions and declarations that are provided by
34167         <bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
34168
34169 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
34170
34171         [BZ #14683]
34172         * elf/Makefile (tests-static): Add tst-leaks1-static.
34173         (tests): Also depend on $(objpfx)tst-leaks1-static-mem.
34174         ($(objpfx)tst-leaks1-static): New rule.
34175         ($(objpfx)tst-leaks1-static-mem): Likewise.
34176         (tst-leaks1-static-ENV): New macro.
34177         * elf/dl-open.c (dl_open_worker): Check the main application
34178         only if SHARED is defined.
34179         * elf/tst-leaks1-static.c: New file.
34180
34181 2012-10-20  Andreas Jaeger  <aj@suse.de>
34182
34183         * sysdeps/unix/sysv/linux/bits/fcntl-linux.h: New file, contains
34184         generic values for Linux.
34185         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: Remove all definitions
34186         and declarations that are provided by <bits/fcntl-linux.h> and
34187         include <bits/fcntl-linux.h>.
34188         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
34189         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
34190
34191 2012-10-20  Roland McGrath  <roland@hack.frob.com>
34192
34193         * io/fcntl.h: Move include of <bits/types.h> to the top and
34194         include it unconditionally.
34195
34196 2012-10-20  H.J. Lu  <hongjiu.lu@intel.com>
34197
34198         * wcsmbs/Makefile (tests-ifunc): New variable.
34199         (tests): Add $(tests-ifunc).
34200         * wcsmbs/test-wcschr-ifunc.c: New file.
34201         * wcsmbs/test-wcscmp-ifunc.c: Likewise.
34202         * wcsmbs/test-wcscpy-ifunc.c: Likewise.
34203         * wcsmbs/test-wcslen-ifunc.c: Likewise.
34204         * wcsmbs/test-wcsrchr-ifunc.c: Likewise.
34205         * wcsmbs/test-wmemcmp-ifunc.c: Likewise.
34206
34207         * string/Makefile (tests-ifunc): New variable.
34208         (tests): Add $(tests-ifunc).
34209         * string/test-memccpy.c (TEST_NAME): New macro.
34210         * string/test-memchr.c (TEST_NAME): Likewise.
34211         * string/test-memcmp.c (TEST_NAME): Likewise.
34212         * string/test-memcpy.c (TEST_NAME): Likewise.
34213         * string/test-memmem.c (TEST_NAME): Likewise.
34214         * string/test-memmove.c (TEST_NAME): Likewise.
34215         * string/test-memset.c (TEST_NAME): Likewise.
34216         * string/test-rawmemchr.c (TEST_NAME): Likewise.
34217         * string/test-stpcpy.c (TEST_NAME): Likewise.
34218         * string/test-stpncpy.c (TEST_NAME): Likewise.
34219         * string/test-strcasecmp.c (TEST_NAME): Likewise.
34220         * string/test-strcasestr.c (TEST_NAME): Likewise.
34221         * string/test-strcat.c (TEST_NAME): Likewise.
34222         * string/test-strchr.c (TEST_NAME): Likewise.
34223         * string/test-strcmp.c(TEST_NAME): Likewise.
34224         * string/test-strcpy.c (TEST_NAME): Likewise.
34225         * string/test-strcspn.c (TEST_NAME): Likewise.
34226         * string/test-strlen.c (TEST_NAME): Likewise.
34227         * string/test-strncasecmp.c (TEST_NAME): Likewise.
34228         * string/test-strncmp.c (TEST_NAME): Likewise.
34229         * string/test-strncpy.c (TEST_NAME): Likewise.
34230         * string/test-strnlen.c (TEST_NAME): Likewise.
34231         * string/test-strpbrk.c (TEST_NAME): Likewise.
34232         * string/test-strrchr.c (TEST_NAME): Likewise.
34233         * string/test-strspn.c (TEST_NAME): Likewise.
34234         * string/test-strstr.c (TEST_NAME): Likewise.
34235         * string/test-bcopy-ifunc.c: New file.
34236         * string/test-bzero-ifunc.c: Likewise.
34237         * string/test-memccpy-ifunc.c: Likewise.
34238         * string/test-memchr-ifunc.c: Likewise.
34239         * string/test-memcmp-ifunc.c: Likewise.
34240         * string/test-memcpy-ifunc.c: Likewise.
34241         * string/test-memmem-ifunc.c: Likewise.
34242         * string/test-memmove-ifunc.c: Likewise.
34243         * string/test-mempcpy-ifunc.c: Likewise.
34244         * string/test-memset-ifunc.c: Likewise.
34245         * string/test-rawmemchr-ifunc.c: Likewise.
34246         * string/test-stpcpy-ifunc.c: Likewise.
34247         * string/test-stpncpy-ifunc.c: Likewise.
34248         * string/test-strcasecmp-ifunc.c: Likewise.
34249         * string/test-strcasestr-ifunc.c: Likewise.
34250         * string/test-strcat-ifunc.c: Likewise.
34251         * string/test-strchr-ifunc.c: Likewise.
34252         * string/test-strchrnul-ifunc.c: Likewise.
34253         * string/test-strcmp-ifunc.c: Likewise.
34254         * string/test-strcpy-ifunc.c: Likewise.
34255         * string/test-strcspn-ifunc.c: Likewise.
34256         * string/test-strlen-ifunc.c: Likewise.
34257         * string/test-strncasecmp-ifunc.c: Likewise.
34258         * string/test-strncat-ifunc.c: Likewise.
34259         * string/test-strncmp-ifunc.c: Likewise.
34260         * string/test-strncpy-ifunc.c: Likewise.
34261         * string/test-strnlen-ifunc.c: Likewise.
34262         * string/test-strpbrk-ifunc.c: Likewise.
34263         * string/test-strrchr-ifunc.c: Likewise.
34264         * string/test-strspn-ifunc.c: Likewise.
34265         * string/test-strstr-ifunc.c: Likewise.
34266
34267         * debug/Makefile (tests-ifunc): New variable.
34268         (tests): Add $(tests-ifunc).
34269         * debug/test-stpcpy_chk.c (TEST_NAME): New macro.
34270         * debug/test-strcpy_chk.c (TEST_NAME): Likewise.
34271         * debug/test-stpcpy_chk-ifunc.c: New file.
34272         * debug/test-strcpy_chk-ifunc.c: Likewise.
34273
34274 2012-10-20  Siddhesh Poyarekar  <siddhesh@redhat.com>
34275
34276         [BZ #13601]
34277         * elf/dl-load.c (open_verify): Retry read if the entire ELF
34278         header is not read in.
34279
34280 2012-10-19  Joseph Myers  <joseph@codesourcery.com>
34281
34282         * io/Makefile ($(objpfx)ftwtest.out): Depend on ftwtest-sh.  Pass
34283         script to $(SHELL) as $<.  Pass $(common-objpfx) to script
34284         directly.  Pass built executable to script as
34285         $(built-program-cmd).
34286         * io/ftwtest-sh (ldso): Remove variable.  Run ftwtest directly as
34287         $testprogram without using LD_LIBRARY_PATH and $ldso.
34288
34289         * grp/Makefile ($(objpfx)tst_fgetgrent.out): Pass
34290         $(run-program-prefix) to tst_fgetgrent.sh, not $(elf-objpfx) and
34291         $(rtld-installed-name).
34292         * grp/tst_fgetgrent.sh (elf_objpfx): Remove variable.
34293         (rtld_installed_name): Likewise.
34294         (library_path): Likewise.
34295         (run_program_prefix): New variable.  Use it to run tst_fgetgrent.
34296         * iconvdata/Makefile ($(objpfx)tst-tables.out): Pass
34297         $(run-program-prefix) to tst-tables.sh.
34298         * iconvdata/tst-table.sh (run_program_prefix): New variable.  Use
34299         it to run tst-table-from and tst-table-to.
34300         * iconvdata/tst-tables.sh (run_program_prefix): New variable.
34301         Pass it to tst-table.sh.
34302         * intl/Makefile ($(objpfx)tst-gettext.out): Pass
34303         $(run-program-prefix) to tst-gettext.sh.
34304         ($(objpfx)tst-translit.out): Pass $(run-program-prefix) to
34305         tst-translit.sh.
34306         ($(objpfx)tst-gettext2.out): Pass $(run-program-prefix) to
34307         tst-gettext2.sh.
34308         * intl/tst-gettext.sh (run_program_prefix): New variable.  Use it
34309         to run tst-gettext.
34310         * intl/tst-gettext2.sh (run_program_prefix): New variable.  Use it
34311         to run tst-gettext2.
34312         * intl/tst-translit.sh (run_program_prefix): New variable.  Use it
34313         to run tst-translit.
34314         * malloc/Makefile ($(objpfx)tst-mtrace.out): Pass
34315         $(run-program-prefix) to tst-mtrace.sh.
34316         * malloc/tst-mtrace.sh (run_program_prefix): New variable.  Use it
34317         to run tst-mtrace.
34318         * posix/Makefile ($(objpfx)wordexp-tst.out): Pass
34319         $(run-program-prefix) to wordexp-tst.sh, not $(elf-objpfx) and
34320         $(rtld-installed-name).
34321         * posix/wordexp-tst.sh (elf_objpfx): Remove variable.
34322         (rtld_installed_name): Likewise.
34323         (run_program_prefix): New variable.  Use it to run wordexp-test.
34324
34325         * Makeconfig (ARCH): Remove all definitions.
34326         (machine): Likewise.
34327         [ARCH]: Remove conditional code.
34328         [!objdir]: Give error.
34329         [!objdir] (objpfx): Remove.
34330         [!objdir] (common-objpfx): Likewise.
34331         [!objdir] (common-objdir): Likewise.
34332         * configure.in (config_makefile): Remove.  Hardcode Makefile in
34333         AC_CONFIG_FILES call.
34334         * configure: Regenerated.
34335
34336         [BZ #13888]
34337         * io/ftwtest-sh (tmp): Set to use the working directory, not /tmp
34338         or TMPDIR.
34339         (testout): Likewise.
34340
34341         * posix/Makefile ($(objpfx)tst-getconf.out): Pass
34342         $(built-program-cmd) to tst-getconf.sh, not $(elf-objpfx) and
34343         $(rtld-installed-name).
34344         * posix/tst-getconf.sh (elf_objpfx): Remove variable.
34345         (rtld_installed_name): Likwise.
34346         (runit): Remove function.
34347         (run_getconf): New variable,  Use it for running getconf binary.
34348
34349 2012-10-18  H.J. Lu  <hongjiu.lu@intel.com>
34350
34351         [BZ #14716]
34352         * string/test-memmem.c (check_result): New function.
34353         (do_one_test): Use it.
34354         (check1): New function.
34355         (test_main): Use it.
34356
34357 2012-10-18  Markus Trippelsdorf  <markus@trippelsdorf.de>
34358
34359         * math/Makefile: Comment on slow compilation of test-tgmath2.c.
34360
34361 2012-10-18  Joseph Myers  <joseph@codesourcery.com>
34362
34363         * sysdeps/generic/_G_config.h (_G_OPEN64): Remove.
34364         (_G_LSEEK64): Likewise.
34365         (_G_MMAP64): Likewise.
34366         (_G_FSTAT64): Likewise.
34367         * sysdeps/unix/sysv/linux/_G_config.h (_G_OPEN64): Remove.
34368         (_G_LSEEK64): Likewise.
34369         (_G_MMAP64): Likewise.
34370         (_G_FSTAT64): Likewise.
34371         * libio/fileops.c (mmap_remap_check) [_G_MMAP64]: Make code
34372         unconditional.  Call __mmap64 directly.
34373         (mmap_remap_check) [!_G_MMAP64]: Remove conditional code.
34374         (mmap_remap_check) [_G_LSEEK64]: Make code unconditional.  Call
34375         __lseek64 directly.
34376         (mmap_remap_check) [!_G_LSEEK64]: Remove conditional code.
34377         (decide_maybe_mmap) [_G_MMAP64]: Make code unconditional.  Call
34378         __mmap64 directly.
34379         (decide_maybe_mmap) [!_G_MMAP64]: Remove conditional code.
34380         (decide_maybe_mmap) [_G_LSEEK64]: Make code unconditional.  Call
34381         __lseek64 directly.
34382         (decide_maybe_mmap) [!_G_LSEEK64]: Remove conditional code.
34383         (_IO_file_sync_mmap) [_G_LSEEK64]: Make code unconditional.  Call
34384         __lseek64 directly.
34385         (_IO_file_sync_mmap) [!_G_LSEEK64]: Remove conditional code.
34386         (_IO_file_seek) [_G_LSEEK64]: Make code unconditional.  Call
34387         __lseek64 directly.
34388         (_IO_file_seek) [!_G_LSEEK64]: Remove conditional code.
34389         (_IO_file_stat) [_G_FSTAT64]: Make code unconditional.  Call
34390         __fxstat64 directly.
34391         (_IO_file_stat) [!_G_FSTAT64]: Remove conditional code.
34392         * libio/freopen64.c (freopen64) [_G_OPEN64]: Make code
34393         unconditional.
34394         (freopen64) [!_G_OPEN64]: Remove conditional code.
34395         * libio/fseeko64.c (fseeko64) [_G_LSEEK64]: Make code
34396         unconditional.
34397         (fseeko64) [!_G_LSEEK64]: Remove conditional code.
34398         * libio/ftello64.c (ftello64) [_G_LSEEK64]: Make code
34399         unconditional.
34400         (ftello64) [!_G_LSEEK64]: Remove conditional code.
34401         * libio/iofgetpos64.c (_IO_new_fgetpos64) [_G_LSEEK64]: Make code
34402         unconditional.
34403         (_IO_new_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
34404         * libio/iofopen64.c (_IO_fopen64) [_G_OPEN64]: Make code
34405         unconditional.
34406         (_IO_fopen64) [!_G_OPEN64]: Remove conditional code.
34407         * libio/iofsetpos64.c (_IO_new_fsetpos64) [_G_LSEEK64]: Make code
34408         unconditional.
34409         (_IO_new_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
34410         * libio/oldiofgetpos64.c (_IO_old_fgetpos64) [_G_LSEEK64]: Make code
34411         unconditional.
34412         (_IO_old_fgetpos64) [!_G_LSEEK64]: Remove conditional code.
34413         * libio/oldiofsetpos64.c (_IO_old_fsetpos64) [_G_LSEEK64]: Make code
34414         unconditional.
34415         (_IO_old_fsetpos64) [!_G_LSEEK64]: Remove conditional code.
34416
34417 2012-10-18  Siddhesh Poyarekar  <siddhesh@redhat.com>
34418
34419         [BZ #12140]
34420         * manual/memory.texi (Malloc Tunable Parameters): Add note
34421         about free list pointers overwriting some perturb bytes.
34422         Wording suggested by Roland McGrath.
34423
34424 2012-10-17  Joseph Myers  <joseph@codesourcery.com>
34425
34426         * math/libm-test.inc (gamma_test): Do not call feclearexcept.
34427         (lgamma_test): Likewise.
34428         (tgamma_test): Likewise.
34429
34430 2012-10-16  Florian Weimer  <fweimer@redhat.com>
34431
34432         [BZ #14700]
34433         * sysdeps/posix/opendir.c (MAX_DIR_BUFFER_SIZE): New constant.
34434         (__alloc_dir): Limit buffer to MAX_DIR_BUFFER_SIZE.
34435
34436 2012-10-16  Maxim Kuvyrkov  <maxim@codesourcery.com>
34437
34438         * NEWS: Mention BZ #14716.
34439         * string/str-two-way.h (two_way_short_needle): Fix thinko introduced
34440         when removing AVAILABLE1_USES_J macro.
34441
34442 2012-10-12  H.J. Lu  <hongjiu.lu@intel.com>
34443
34444         * sysdeps/x86/bits/byteswap.h: Include <bits/types.h>.
34445         (__bswap_64): __uint64_t for unsigned 64-bit int.
34446
34447 2012-10-12  Andreas Schwab  <schwab@linux-m68k.org>
34448
34449         * include/string.h (memmem): Declare libc hidden alias.
34450         * string/memmem.c (memmem): Define libc hidden alias.
34451         * sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c: Use __open,
34452         __read, __close instead of open, read, close.
34453
34454 2012-10-11  H.J. Lu  <hongjiu.lu@intel.com>
34455
34456         * sysdeps/x86_64/multiarch/ifunc-impl-list.c: New file.
34457         * sysdeps/x86_64/multiarch/memcmp.S (__memcmp_sse2): Make it
34458         global and hidden.
34459         * sysdeps/x86_64/multiarch/memcpy.S (__memcpy_sse2): Likewise.
34460         * sysdeps/x86_64/multiarch/mempcpy.S (__mempcpy_sse2): Likewise.
34461         * sysdeps/x86_64/multiarch/rawmemchr.S (__rawmemchr_sse42):
34462         Likewise.
34463         (__rawmemchr_sse2): Likewise.
34464         * sysdeps/x86_64/multiarch/strcat.S (STRCAT_SSE2): Likewise.
34465         * sysdeps/x86_64/multiarch/strchr.S (__strchr_sse42): Likewise.
34466         (__strchr_sse2): Likewise.
34467         * sysdeps/x86_64/multiarch/strcmp-sse42.S (STRCMP_SSE42): Likewise.
34468         * sysdeps/x86_64/multiarch/strcmp.S (STRCMP_SSE2): Likewise.
34469         (__strcasecmp_sse2): Likewise.
34470         (__strncasecmp_sse2): Likewise.
34471         * sysdeps/x86_64/multiarch/strcpy.S (STRCPY_SSE2): Likewise.
34472         * sysdeps/x86_64/multiarch/strlen.S (__strlen_sse2): Likewise.
34473         * sysdeps/x86_64/multiarch/strnlen.S (__strnlen_sse2): Likewise.
34474         * sysdeps/x86_64/multiarch/strrchr.S (__strrchr_sse42): Likewise.
34475         (__strrchr_sse2): Likewise.
34476         * sysdeps/x86_64/multiarch/memcmp.S: Add comments for
34477         ifunc-impl-list.c.
34478         * sysdeps/x86_64/multiarch/memcpy.S: Likewise.
34479         * sysdeps/x86_64/multiarch/memcpy_chk.S: Likewise.
34480         * sysdeps/x86_64/multiarch/memmove.c: Likewise.
34481         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
34482         * sysdeps/x86_64/multiarch/mempcpy.S: Likewise.
34483         * sysdeps/x86_64/multiarch/mempcpy_chk.S: Likewise.
34484         * sysdeps/x86_64/multiarch/memset.S: Likewise.
34485         * sysdeps/x86_64/multiarch/memset_chk.S: Likewise.
34486         * sysdeps/x86_64/multiarch/rawmemchr.S: Likewise.
34487         * sysdeps/x86_64/multiarch/stpcpy.S: Likewise.
34488         * sysdeps/x86_64/multiarch/stpncpy.S: Likewise.
34489         * sysdeps/x86_64/multiarch/strcasecmp_l.S: Likewise.
34490         * sysdeps/x86_64/multiarch/strcasestr-c.c: Likewise.
34491         * sysdeps/x86_64/multiarch/strcat.S: Likewise.
34492         * sysdeps/x86_64/multiarch/strchr.S: Likewise.
34493         * sysdeps/x86_64/multiarch/strcmp.S: Likewise.
34494         * sysdeps/x86_64/multiarch/strcpy.S: Likewise.
34495         * sysdeps/x86_64/multiarch/strcspn.S: Likewise.
34496         * sysdeps/x86_64/multiarch/strlen.S: Likewise.
34497         * sysdeps/x86_64/multiarch/strncase_l.S: Likewise.
34498         * sysdeps/x86_64/multiarch/strncat.S: Likewise.
34499         * sysdeps/x86_64/multiarch/strncmp.S: Likewise.
34500         * sysdeps/x86_64/multiarch/strncpy.S: Likewise.
34501         * sysdeps/x86_64/multiarch/strnlen.S: Likewise.
34502         * sysdeps/x86_64/multiarch/strpbrk.S: Likewise.
34503         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
34504         * sysdeps/x86_64/multiarch/strspn.S: Likewise.
34505         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
34506         * sysdeps/x86_64/multiarch/wcscpy.S: Likewise.
34507         * sysdeps/x86_64/multiarch/wmemcmp.S: Likewise.
34508
34509         * sysdeps/i386/i686/multiarch/bcopy.S (__bcopy_ia32): Make it
34510         global and hidden.
34511         * sysdeps/i386/i686/multiarch/bzero.S (__bzero_ia32): Likewise.
34512         * sysdeps/i386/i686/multiarch/memcmp.S (__memcmp_ia32): Likewise.
34513         * sysdeps/i386/i686/multiarch/memcpy.S (__memcpy_ia32): Likewise.
34514         * sysdeps/i386/i686/multiarch/memmove.S (__memmove_ia32):
34515         Likewise.
34516         * sysdeps/i386/i686/multiarch/mempcpy.S (__mempcpy_ia32):
34517         Likewise.
34518         * sysdeps/i386/i686/multiarch/strcat.S (STRCAT_IA32): Likewise.
34519         * sysdeps/i386/i686/multiarch/strcmp.S (__STRCMP_IA32): Likewise.
34520         * sysdeps/i386/i686/multiarch/strcpy.S (STRCPY_IA32): Likewise.
34521         * sysdeps/i386/i686/multiarch/bcopy.S: Add comments for
34522         ifunc-impl-list.c.
34523         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
34524         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
34525         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
34526         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
34527         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
34528         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
34529         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
34530         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
34531         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
34532         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
34533         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
34534         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
34535         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
34536         * sysdeps/i386/i686/multiarch/stpcpy.S: Likewise.
34537         * sysdeps/i386/i686/multiarch/stpncpy.S: Likewise.
34538         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
34539         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: Likewise.
34540         * sysdeps/i386/i686/multiarch/strcasestr-c.c: Likewise.
34541         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
34542         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
34543         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
34544         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
34545         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
34546         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
34547         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
34548         * sysdeps/i386/i686/multiarch/strncase_l.S: Likewise.
34549         * sysdeps/i386/i686/multiarch/strncat.S: Likewise.
34550         * sysdeps/i386/i686/multiarch/strncmp.S: Likewise.
34551         * sysdeps/i386/i686/multiarch/strncpy.S: Likewise.
34552         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
34553         * sysdeps/i386/i686/multiarch/strpbrk.S: Likewise.
34554         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
34555         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
34556         * sysdeps/i386/i686/multiarch/strstr-c.c: Likewise.
34557         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
34558         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
34559         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
34560         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
34561         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
34562         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
34563         * sysdeps/i386/i686/multiarch/ifunc-impl-list.c: New file.
34564
34565         * Rules [$(multi-arch) = no] (tests): Filter out $(tests-ifunc).
34566         [$(multi-arch) = no] (xtests): Filter out $(xtests-ifunc).
34567         * include/ifunc-impl-list.h: New file.
34568         * misc/ifunc-impl-list.c: Likewise.
34569         * misc/Makefile (routines): Add ifunc-impl-list.
34570         * misc/Versions (GLIBC_PRIVATE): Add __libc_ifunc_impl_list.
34571         * string/test-string.h: Include <ifunc-impl-list.h>.
34572         (func_list, func_count, impl_count, impl_array) [TEST_IFUNC &&
34573         TEST_NAME]: New variables.
34574         (FOR_EACH_IMPL): Support func_list if TEST_IFUNC and TEST_NAME
34575         are defined.
34576         (test_init): Call __libc_ifunc_impl_list to initialize
34577         func_list if TEST_IFUNC and TEST_NAME are defined.
34578
34579         * string/Makefile (strop-tests): Add bcopy and bzero.
34580         * string/test-bcopy.c: New file.
34581         * string/test-bzero.c: Likewise.
34582         * string/test-memmove.c: Support bcopy test if TEST_BCOPY is
34583         defined.
34584         * string/test-memset.c: Support bzero test if TEST_BZERO is
34585         defined.
34586         * sysdeps/x86_64/multiarch/bcopy.S (bcopy): Jump to
34587         __libc_memmove.
34588         * sysdeps/x86_64/multiarch/bzero.S (__bzero): Jump to
34589         __libc_memset.
34590         * sysdeps/x86_64/multiarch/memset.S (__libc_memset): New alias
34591         of memset.
34592
34593 2012-10-10  Joseph Myers  <joseph@codesourcery.com>
34594
34595         * configure.in: Run $CXX, not cc1plus, to locate C++ headers.
34596         * configure: Regenerated.
34597
34598         * Makeconfig (+link-static-before-libc): Don't include
34599         $(link-static-libc).
34600
34601         * libio/libio.h (_IO_pos_t): Remove.
34602
34603 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34604
34605         * NEWS: Add note about FIPS mode.  Wording suggested by Roland
34606         McGrath.
34607
34608 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34609
34610         * crypt/crypt-entry.c: Include fips-private.h.
34611         (__crypt_r, __crypt): Disable MD5 and DES if FIPS is enabled.
34612         * crypt/md5c-test.c (main): Tolerate disabled MD5.
34613         * sysdeps/unix/sysv/linux/fips-private.h: New file.
34614         * sysdeps/generic/fips-private.h: New file, dummy fallback.
34615
34616 2012-10-10  Alexandre Oliva <aoliva@redhat.com>
34617
34618         * crypt/crypt-private.h: Include stdbool.h.
34619         (_ufc_setup_salt_r): Return bool.
34620         * crypt/crypt-entry.c: Include errno.h.
34621         (__crypt_r): Return NULL with EINVAL for bad salt.
34622         * crypt/crypt_util.c (bad_for_salt): New.
34623         (_ufc_setup_salt_r): Check that salt is long enough and within
34624         the specified alphabet.
34625         * crypt/badsalttest.c: New file.
34626         * crypt/Makefile (tests): Add it.
34627         ($(objpfx)badsalttest): New.
34628
34629 2012-10-09  Maxim Kuvyrkov  <maxim@codesourcery.com>
34630
34631         * NEWS: Add entry for BZ #14602.
34632
34633 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
34634
34635         * math/gen-libm-test.pl (parse_args): Handle comparison macros as
34636         type-generic.
34637         * math/libm-test.inc: Update comment listing what functions and
34638         macros are tested.
34639         (isgreater_test): New function.
34640         (isgreaterequal_test): Likewise.
34641         (isless_test): Likewise.
34642         (islessequal_test): Likewise.
34643         (islessgreater_test): Likewise.
34644         (isunordered_test): Likewise.
34645         (main): Call the new functions.
34646
34647 2012-10-09  Roland McGrath  <roland@hack.frob.com>
34648
34649         * aclocal.m4 (GLIBC_PROVIDES): Provide _AS_BASENAME_PREPARE,
34650         _AS_ME_PREPARE, _AS_VAR_ARITH_PREPARE, AS_SHELL_FN_as_fn_set_status,
34651         AS_SHELL_FN_as_fn_exit, AS_SHELL_FN_ac_fn_c_try_compile.
34652         * sysdeps/i386/configure: Regenerated.
34653         * sysdeps/ieee754/ldbl-opt/configure: Regenerated.
34654         * sysdeps/mach/configure: Regenerated.
34655         * sysdeps/mach/hurd/configure: Regenerated.
34656         * sysdeps/powerpc/configure: Regenerated.
34657         * sysdeps/powerpc/powerpc32/configure: Regenerated.
34658         * sysdeps/powerpc/powerpc64/configure: Regenerated.
34659         * sysdeps/s390/s390-32/configure: Regenerated.
34660         * sysdeps/s390/s390-64/configure: Regenerated.
34661         * sysdeps/sh/configure: Regenerated.
34662         * sysdeps/sparc/configure: Regenerated.
34663         * sysdeps/unix/sysv/linux/configure: Regenerated.
34664         * sysdeps/unix/sysv/linux/powerpc/configure: Regenerated.
34665         * sysdeps/x86_64/configure: Regenerated.
34666
34667         * dlfcn/dlerror.c (check_free): Call _dl_addr only if SHARED is
34668         defined.  Don't check if MAP is NULL.
34669
34670 2012-10-09  Joseph Myers  <joseph@codesourcery.com>
34671
34672         * sysdeps/generic/_G_config.h (_G_off64_t): Remove.
34673         (_G_stat64): Likewise.
34674         * sysdeps/unix/sysv/linux/_G_config.h (_G_off64_t): Remove.
34675         (_G_stat64): Likewise.
34676         * libio/filedoalloc.c (_IO_file_doallocate): Use struct stat64
34677         instead of struct _G_stat64.
34678         * libio/fileops.c (mmap_remap_check): Likewise.
34679         (decide_maybe_mmap): Likewise.
34680         (_IO_new_file_seekoff): Likewise.
34681         (_IO_file_stat): Likewise.
34682         * libio/libio.h (_IO_off64_t): Define to __off64_t, not
34683         _G_off64_t.
34684         * libio/oldfileops.c (_IO_old_file_seekoff): Use struct stat64
34685         instead of struct _G_stat64.
34686         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
34687
34688 2012-10-08  Maxim Kuvyrkov  <maxim@codesourcery.com>
34689
34690         [BZ #14602]
34691         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34692         Replace with ...
34693         (CHECK_EOL): New macro.
34694         (two_way_short_needle): Check beginning of haystack for EOL.  Use
34695         CHECK_EOL.
34696         * string/strcasestr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34697         Replace with CHECK_EOL.
34698         * string/strstr.c (AVAILABLE1, AVAILABLE2, AVAILABLE1_USES_J):
34699         Replace with CHECK_EOL.
34700
34701 2012-10-08  Joseph Myers  <joseph@codesourcery.com>
34702
34703         * math/gen-libm-test.pl (parse_args): Handle isinf and isnan as
34704         type-generic.
34705         * math/libm-test.inc: Update comment listing what functions and
34706         macros are tested.
34707         (finite_test): New function.
34708         (isinf_test): Likewise.
34709         (isnan_test): Likewise.
34710         (fpclassify_test): Test subnormal input.
34711         (isfinite_test): Likewise.
34712         (isnormal_test): Likewise.
34713         (main): Call the new functions.
34714
34715 2012-10-08  Jonathan Nieder  <jrnieder@gmail.com>
34716
34717         [BZ #14660]
34718         * Makerules (%.dynsym): Force C locale when running
34719         $(OBJDUMP) --dynamic-syms.
34720
34721 2012-10-08  Andreas Schwab  <schwab@linux-m68k.org>
34722
34723         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Include
34724         <stdint.h>.
34725
34726 2012-10-06  David S. Miller  <davem@davemloft.net>
34727
34728         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: On 32-bit, clear
34729         upper 32-bits of the length value in %o2 since we use branch-on-register
34730         tests which consider the entire 64-bit register.
34731
34732 2012-10-06  H.J. Lu  <hongjiu.lu@intel.com>
34733
34734         * string/test-strstr.c (check2): Add a test for page boundary.
34735
34736 2012-10-05  David S. Miller  <davem@davemloft.net>
34737
34738         * sysdeps/sparc/sparc64/multiarch/memset-niagara4.S: New file.
34739         * sysdeps/sparc/sparc32/sparcv9/multiarch/memset-niagara4.S: New
34740         file.
34741         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
34742         sysdep_routines.
34743         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
34744         * sysdeps/sparc/sparc64/multiarch/memset.S: Use Niagara-4 memset
34745         and bzero when HWCAP_SPARC_CRYPTO is present.
34746
34747 2012-10-05  H.J. Lu  <hongjiu.lu@intel.com>
34748
34749         [BZ #14602]
34750         * string/test-strstr.c (check2): New function.
34751         (test_main): Call check2.
34752
34753         * string/Makefile (tests): Remove bug-strstr1, bug-strcasestr1
34754         and bug-strchr1.
34755         * string/bug-strcasestr1.c (do_test): Moved to ...
34756         * string/test-strcasestr.c (check1): Here.  New function.
34757         (do_one_test): Break out result checking code into ...
34758         (check_result): This.  New function.
34759         (do_one_test): Call check_result.
34760         (test_main): Call check1.
34761         * string/bug-strchr1.c (do_test): Moved to ...
34762         * string/test-strchr.c (check1): Here.  New function.
34763         (do_one_test): Break out result checking code into ...
34764         (check_result): This.  New function.
34765         (do_one_test): Call check_result.
34766         (test_main): Call check1.
34767         * string/bug-strstr1.c (main): Moved to ...
34768         * string/test-strstr.c (check1): Here.  New function.
34769         (do_one_test): Break out result checking code into ...
34770         (check_result): This.  New function.
34771         (do_one_test): Call check_result.
34772         (test_main): Call check1.
34773         * string/bug-strcasestr1.c: Removed.
34774         * string/bug-strchr1.c: Likewise.
34775         * string/bug-strstr1.c: Likewise.
34776
34777         * elf/Makefile (dl-routines): Add hwcaps.
34778         * elf/dl-support.c (_dl_important_hwcaps): Removed.
34779         * elf/dl-sysdep.c (_DL_FIRST_EXTRA): Likewise.
34780         (_dl_important_hwcaps): Moved to ...
34781         * elf/dl-hwcaps.c: Here.  New file.
34782         * sysdeps/mach/hurd/dl-sysdep.c (_dl_important_hwcaps): Removed.
34783
34784         [BZ #14557]
34785         * elf/setup-vdso.h (setup_vdso): Set GL(dl_nns) to 1 for vDSO
34786         if IS_IN_rtld isn't defined.
34787
34788         * elf/dl-support.c (_dl_sysinfo_map): New.
34789         Include "get-dynamic-info.h" and "setup-vdso.h".
34790         (_dl_non_dynamic_init): Call setup_vdso.
34791         * elf/dynamic-link.h: Don't include <assert.h>.
34792         (elf_get_dynamic_info): Moved to ...
34793         * elf/get-dynamic-info.h: Here.  New file.
34794         * elf/dynamic-link.h: Include "get-dynamic-info.h".
34795         * elf/rtld.c (dl_main): Break out vDSO setup code into ...
34796         * elf/setup-vdso.h: Here.  New file.
34797         * elf/rtld.c: Include "setup-vdso.h".
34798         (dl_main): Call setup_vdso.
34799
34800 2012-10-05  Joseph Myers  <joseph@codesourcery.com>
34801
34802         * math/libm-test.inc: List nexttoward, cimag, clog10, conf and
34803         creal in comment listing functions tested.  List finite, isinf,
34804         isnan, isless, islessequal, isgreater, isgreaterequal,
34805         islessgreater, isunordered, lgamma_r and pow10 as functions and
34806         macros not tested.  Mention which functions not tested are aliases
34807         for other functions.  Fix typo.  Note that signs of NaNs are not
34808         tested.
34809
34810         * scripts/config.guess: Update from config.git.
34811         * scripts/config.sub: Likewise.
34812
34813 2012-10-04  Roland McGrath  <roland@hack.frob.com>
34814
34815         * misc/Versions (GLIBC_PRIVATE): New set, add __madvise.
34816         * misc/madvise.c (madvise): Renamed to __madvise.
34817         Make madvise a weak alias.
34818         * include/sys/mman.h: Declare __madvise.
34819         Replace libc_hidden_proto (madvise) with libc_hidden_proto (__madvise).
34820         * sysdeps/unix/syscalls.list
34821         (madvise): Make __madvise the strong name, and madvise a weak alias.
34822         * sysdeps/unix/sysv/linux/syscalls.list
34823         (madvise, mmap): Remove redundant entries.
34824         * malloc/arena.c (shrink_heap): Use __madvise, not madvise.
34825         * malloc/malloc.c (mtrim): Likewise.
34826         * sysdeps/mach/hurd/malloc-machine.h (madvise): Renamed to __madvise.
34827
34828 2012-10-03  Roland McGrath  <roland@hack.frob.com>
34829
34830         * sysdeps/mach/hurd/dl-cache.c: File removed.
34831         * config.h.in (USE_LDCONFIG): New #undef.
34832         * configure.in (use_ldconfig): If set, define USE_LDCONFIG.
34833         * configure: Regenerated.
34834         * elf/Makefile (dl-routines): Add dl-cache only under
34835         [$(use-ldconfig) = yes].
34836         * elf/dl-load.c (_dl_map_object): Conditionalize code consulting the
34837         cache on [USE_LDCONFIG].
34838         * elf/dl-open.c (_dl_open): Call _dl_unload_cache only under
34839         [USE_LDCONFIG].
34840         * elf/rtld.c (dl_main): Likewise.
34841
34842 2012-10-03  Pino Toscano  <toscano.pino@tiscali.it>
34843
34844         * sysdeps/posix/sysconf.c (__sysconf): Return 0 also for
34845         _SC_LEVEL4_CACHE_LINESIZE.
34846
34847 2012-10-03  Roland McGrath  <roland@hack.frob.com>
34848
34849         * sysdeps/unix/bsd/confstr.h: File removed.
34850
34851 2012-10-02  Alexandre Oliva <aoliva@redhat.com>
34852
34853         * scripts/check-local-headers.sh: Exclude sys/sdt.h and
34854         sys/sdt-config.h.
34855
34856 2012-10-02  Roland McGrath  <roland@hack.frob.com>
34857
34858         * elf/dl-load.c (_dl_map_object_from_fd: struct loadcmd):
34859         Make 'mapoff' field ElfW(Off) rather than off_t.
34860
34861 2012-10-02  Dmitry V. Levin  <ldv@altlinux.org>
34862
34863         * nscd/Makefile: Remove nscd-cflags and all its users.
34864         (CPPFLAGS-nonlib): Add preprocessor flags for nscd modules.
34865         (CFLAGS-nonlib): Add compiler flags for nscd modules.
34866
34867         [BZ #10631]
34868         * malloc.c (malloc_printerr): Clarify error message.
34869
34870 2012-10-02  H.J. Lu  <hongjiu.lu@intel.com>
34871
34872         [BZ #14648]
34873         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
34874         Set bit_FMA_Usable if FMA is supported.
34875         * sysdeps/x86_64/multiarch/init-arch.h (bit_FMA_Usable): New
34876         macro.
34877         (bit_FMA4_Usable): Updated.
34878         (index_FMA_Usable): New macro.
34879         (CPUID_FMA): Likewise
34880         (HAS_FMA): Defined with bit_FMA_Usable.
34881
34882 2012-10-01  Roland McGrath  <roland@hack.frob.com>
34883
34884         * bits/types.h (__swblk_t): Type removed.
34885         * bits/typesizes.h (__SWBLK_T_TYPE): Macro removed.
34886         * sysdeps/mach/hurd/bits/typesizes.h (__SWBLK_T_TYPE): Likewise.
34887         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
34888         (__SWBLK_T_TYPE): Likewise.
34889         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
34890         (__SWBLK_T_TYPE): Likewise.
34891         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
34892         (__SWBLK_T_TYPE): Likewise.
34893         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
34894         (__SWBLK_T_TYPE): Likewise.
34895
34896 2012-10-01  Patsy Franklin <pfrankli@redhat.com>
34897             Honza Horak <hhorak@redhat.com>
34898
34899         * nis/yp_xdr.c (xdr_domainname): Use YPMAXDOMAIN as maxsize.
34900         (xdr_mapname): Use YPMAXMAP as maxsize.
34901         (xdr_peername): Use YPMAXPEER as maxsize.
34902         (xdr_keydat): Use YPAXRECORD as maxsize.
34903         (xdr_valdat): Use YPMAXRECORD as maxsize.
34904
34905 2012-10-01  Roland McGrath  <roland@hack.frob.com>
34906
34907         * io/openat.c [!__ASSUME_ATFCTS] (__have_atfcts): New global variable.
34908
34909         * sysdeps/unix/sysv/linux/init-first.c: Moved to ...
34910         * csu/init-first.c: ... here.
34911         * sysdeps/unix/sysv/linux/powerpc/init-first.c: Update #include.
34912         * sysdeps/unix/sysv/linux/s390/init-first.c: Likewise.
34913         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Likewise.
34914         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: Likewise.
34915         * sysdeps/i386/init-first.c: File removed.
34916         * sysdeps/sh/init-first.c: File removed.
34917
34918 2012-10-01  Joseph Myers  <joseph@codesourcery.com>
34919
34920         [BZ #14645]
34921         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Compute result as x * y
34922         if x * y might underflow to zero and z is zero.
34923         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Likewise.
34924         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34925         * math/libm-test.inc (min_subnorm_value): New variable.
34926         (fma_test): Add more tests.
34927         (fma_test_towardzero): Likewise.
34928         (fma_test_downward): Likewise
34929         (fma_test_upward): Likewise.
34930         (initialize): Set min_subnorm_value.
34931
34932 2012-09-29  Joseph Myers  <joseph@codesourcery.com>
34933
34934         [BZ #14638]
34935         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use x * y + z for exact
34936         0 + 0.
34937         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Use original rounding
34938         mode for addition resulting in exact zero.
34939         * sysdeps/ieee754/ldbl-128/s_fma.c (__fma): Likewise.
34940         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Use x * y + z for
34941         exact 0 + 0.
34942         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Likewise.
34943         * sysdeps/ieee754/ldbl-96/s_fmal.c (__fmal): Likewise.
34944         * math/libm-test.inc (fma_test): Add more tests.
34945         (fma_test_towardzero): New function.
34946         (fma_test_downward): Likewise.
34947         (fma_test_upward): Likewise.
34948         (main): Call the new functions.
34949
34950 2012-09-28  David S. Miller  <davem@davemloft.net>
34951
34952         * sysdeps/sparc/fpu/libm-test-ulps: Fix garbage in file.
34953
34954 2012-09-28  Roland McGrath  <roland@hack.frob.com>
34955
34956         * sysdeps/posix/sleep.c (__sleep): Rewritten using __nanosleep
34957         instead of SIGALRM.
34958
34959         * sysdeps/gnu/_G_config.h: Moved to ...
34960         * sysdeps/unix/sysv/linux/_G_config.h: ... here.
34961         * sysdeps/mach/hurd/_G_config.h: Moved to ...
34962         * sysdeps/generic/_G_config.h: ... here.
34963
34964         * io/open.c (__open): Renamed to __libc_open.  Make __open an alias.
34965
34966         * posix/Makefile ($(objpfx)config-name.h): Do $(make-target-directory).
34967
34968         * nss/Makefile ($(objpfx)/libnss_test1.so$(libnss_test1.so-version)):
34969         Conditionalize target on [libnss_test1.so-version].
34970
34971         * elf/dl-sysdep.c: Conditionalize whole contents on [SHARED].
34972
34973         * Makeconfig (nssobjdir, resolvobjdir): Remove variables.
34974         (elfobjdir): Move out of conditionals.
34975
34976         * nss/nsswitch.c (nss_new_service): Conditionalize definition and
34977         declaration on [!DO_STATIC_NSS || SHARED], matching its only caller.
34978         (__nss_lookup_function): Conditionalize label remove_from_tree on
34979         [!DO_STATIC_NSS || SHARED], matching its only use.
34980
34981 2012-09-28  David S. Miller  <davem@davemloft.net>
34982
34983         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara4.S: New file.
34984         * sysdeps/sparc/sparc32/sparcv9/multiarch/memcpy-niagara4.S: New
34985         file.
34986         * sysdeps/sparc/sparc64/multiarch/Makefile: Add to
34987         sysdep_routines.
34988         * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Likewise.
34989         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use Niagara-4 memcpy
34990         when HWCAP_SPARC_CRYPTO is present.
34991
34992 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
34993
34994         * io/tst-mknodat.c: Create a FIFO instead of a socket.
34995
34996 2012-09-28  Andreas Schwab  <schwab@linux-m68k.org>
34997
34998         [BZ #6530]
34999         * stdio-common/vfprintf.c (process_string_arg): Revert
35000         2000-07-22 change.
35001
35002 2011-09-28  Jonathan Nieder  <jrnieder@gmail.com>
35003
35004         * stdio-common/Makefile (tst-sprintf-ENV): Set environment
35005         for testcase.
35006         * stdio-common/tst-sprintf.c: Include <locale.h>
35007         (main): Test sprintf's handling of incomplete multibyte
35008         characters.
35009
35010 2012-09-28  H.J. Lu  <hongjiu.lu@intel.com>
35011
35012         * elf/dl-runtime.c (VERSYMIDX): Removed.
35013         * elf/dl-version.c (VERSYMIDX): Likewise.
35014         * elf/do-rel.h (VERSYMIDX): Likewise.
35015         (VALIDX): Likewise.
35016         * elf/dynamic-link.h (VERSYMIDX): Likewise.
35017         * elf/rtld.c (VALIDX): Likewise.
35018         (ADDRIDX): Likewise.
35019         * sysdeps/sparc/sparc32/dl-machine.h (VALIDX): Likewise.
35020         * sysdeps/sparc/sparc64/dl-machine.h (VALIDX): Likewise.
35021         * sysdeps/x86_64/dl-tlsdesc.h (ADDRIDX): Likewise.
35022         * sysdeps/generic/ldsodefs.h (VERSYMIDX): New macro.
35023         (VALIDX): Likewise.
35024         (ADDRIDX): Likewise.
35025
35026 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
35027
35028         * sysdeps/pthread/aio_fsync.c: Fix the file mode checking.
35029
35030 2012-09-28  Dmitry V. Levin  <ldv@altlinux.org>
35031
35032         [BZ #11438]
35033         * sysdeps/posix/getaddrinfo.c (default_scopes): Map RFC 1918 addresses
35034         to global scope.
35035         * posix/tst-rfc3484.c: Verify 10/8, 172.16/12 and 196.128/16
35036         addresses are in the same scope as 192.0.2/24.
35037         * posix/gai.conf: Document new scope table defaults.
35038
35039 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35040
35041         [BZ #5298]
35042         * libio/fileops.c (_IO_new_file_seekoff): Don't flush buffer
35043         for ftell.  Compute offsets from write pointers instead.
35044         * libio/wfileops.c (_IO_wfile_seekoff): Likewise.
35045
35046 2012-09-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
35047
35048         [BZ #14543]
35049         * libio/Makefile (tests): New test case tst-fseek.
35050         * libio/tst-fseek.c: New test case to verify that fseek/ftell
35051         combination works in wide mode.
35052         * libio/wfileops.c (_IO_wfile_seekoff): Adjust internal buffer
35053         state when the external buffer state changes.
35054
35055 2012-09-27  David S. Miller  <davem@davemloft.net>
35056
35057         [BZ #14376]
35058         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Do not
35059         pass reloc->r_addend in as the 'high' argument to
35060         sparc64_fixup_plt when handling R_SPARC_JMP_IREL relocations.
35061
35062         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35063
35064 2012-09-28  Pino Toscano  <toscano.pino@tiscali.it>
35065
35066         * rt/tst-aio2.c: Include <pthread.h>.
35067         * rt/tst-aio3.c: Likewise.
35068
35069 2012-09-27  Steve Ellcey  <sellcey@mips.com>
35070
35071         * sysdeps/ieee754/ldbl-128/bits/huge_vall.h: Remove.
35072
35073 2012-09-27  H.J. Lu  <hongjiu.lu@intel.com>
35074
35075         * sysdeps/x86_64/multiarch/strncmp-ssse3.S: Conditionalize
35076         contents on [SHARED].
35077
35078 2012-09-26  Marek Polacek  <polacek@redhat.com>
35079
35080         [BZ #14530]
35081         [BZ #13741]
35082         * misc/sys/cdefs.h: Define __extern_inline and __extern_always_inline
35083         for C++ and GCC <4.3 as well as for non GCC compilers.
35084
35085 2012-09-26  Markus Trippelsdorf  <markus@trippelsdorf.de>
35086
35087         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35088
35089 2012-09-25  Roland McGrath  <roland@hack.frob.com>
35090
35091         * Makefile.in (all, install): Declare with .PHONY.
35092         Reported by Michael Hope <michael.hope@linaro.org>.
35093
35094 2012-09-25  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
35095
35096         * manual/platform.texi (PowerPC): Document __ppc_get_timebase_freq.
35097         * sysdeps/powerpc/sys/platform/ppc.h: Include the operating
35098         system header.
35099         * sysdeps/unix/sysv/linux/powerpc/Makefile (sysdep_headers):
35100         Likewise.
35101         (sydep_routines): Add the new and the internal functions.
35102         * sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: New file.
35103         * sysdeps/unix/sysv/linux/powerpc/get_timebase_freq.c: Likewise.
35104         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Versions
35105         (GLIBC_2.17): Add the new function.
35106         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
35107         (GLIBC_2.17): Likewise.
35108         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Versions
35109         (GLIBC_2.17): Likewise.
35110         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist
35111         (GLIBC_2.17): Likewise.
35112         * sysdeps/unix/sysv/linux/powerpc/test-gettimebasefreq.c: New file.
35113
35114 2012-09-25  Alan Modra  <amodra@gmail.com>
35115
35116         * sysdeps/unix/sysv/linux/powerpc/pthread_once.c (__pthread_once):
35117         Add release barrier before setting once_control to say
35118         initialisation is done.  Add hints on lwarx.  Use macro in
35119         place of isync.
35120         (clear_once_control): Add release barrier.
35121
35122 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
35123
35124         [BZ #13629]
35125         * math/s_clog.c (__clog): Handle more values close to |z| = 1
35126         specially.
35127         * math/s_clog10.c (__clog10): Likewise.
35128         * math/s_clog10f.c (__clog10f): Likewise.
35129         * math/s_clog10l.c (__clog10l): Likewise.
35130         * math/s_clogf.c (__clogf): Likewise.
35131         * math/s_clogl.c (__clogl): Likewise.
35132         * math/Makefile (libm-calls): Add x2y2m1.
35133         * sysdeps/generic/math_private.h (__x2y2m1f): Declare.
35134         (__x2y2m1): Likewise.
35135         (__x2y2m1l): Likewise.
35136         * sysdeps/ieee754/dbl-64/x2y2m1.c: New file.
35137         * sysdeps/ieee754/dbl-64/x2y2m1f.c: Likewise.
35138         * sysdeps/ieee754/ldbl-128/x2y2m1l.c: Likewise.
35139         * sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Likewise.
35140         * sysdeps/ieee754/ldbl-96/x2y2m1.c: Likewise.
35141         * sysdeps/ieee754/ldbl-96/x2y2m1l.c: Likewise.
35142         * math/libm-test.inc (clog_test, clog10_test): Add more tests.
35143         * sysdeps/i386/fpu/libm-test-ulps: Update.
35144         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
35145
35146         [BZ #14621]
35147         * posix/glob.c (next_brace_sub): Use size_t instead of unsigned
35148         int as type of variable DEPTH.
35149         (glob): Use size_t instead of int as type of variables NEWCOUNT
35150         and OLD_PATHC.
35151
35152 2012-09-25  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35153
35154         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
35155         Add s_sincosf-sse2.
35156         * sysdeps/i386/i686/fpu/multiarch/s_sincosf.c: New file.
35157         * sysdeps/i386/i686/fpu/multiarch/s_sincosf-sse2.S: New file.
35158         * sysdeps/ieee754/flt-32/s_sincosf.c (SINCOSF, SINCOSF_FUNC): Add
35159         macros for using routine as __sincosf_ia32.
35160         Use macro for function declaration and weak_alias.
35161         * sysdeps/i386/fpu/libm-test-ulps: Update.
35162
35163         * sysdeps/x86_64/fpu/s_sincosf.S: New file.
35164         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35165
35166         * math/s_ccoshf.c (__ccoshf): Fix wrong usage of sincos for
35167         subnormal argument.
35168         * math/s_cexpf.c (__cexpf): Likewise.
35169         * math/s_csinf.c (__csinf): Likewise.
35170         * math/s_csinhf.c (__csinhf): Likewise.
35171         * math/s_ctanf.c (__ctanf): Likewise.
35172         * math/s_ctanhf.c (__ctanhf): Likewise.
35173         * math/s_ccosh.c (__ccoshf): Likewise.
35174         * math/s_cexp.c (__cexpl): Likewise.
35175         * math/s_csin.c (__csin): Likewise.
35176         * math/s_csinh.c (__csinh): Likewise.
35177         * math/s_ctan.c (__ctan): Likewise.
35178         * math/s_ctanh.c (ctanh): Likewise.
35179         * math/s_ccoshl.c (__ccoshl): Likewise.
35180         * math/s_cexpl.c (__cexpl): Likewise.
35181         * math/s_csinl.c (__csinl): Likewise.
35182         * math/s_csinhl.c (__csinhl): Likewise.
35183         * math/s_ctanl.c (__ctanl): Likewise.
35184         * math/s_ctanhl.c (__ctanhl): Likewise.
35185
35186 2012-09-25  Joseph Myers  <joseph@codesourcery.com>
35187
35188         * libio/libio.h (_IO_size_t): Define to size_t, not _G_size_t.
35189         (_IO_ssize_t): Define to __ssize_t, not _G_ssize_t.
35190         (_IO_off_t): Define to __off_t, not _G_off_t.
35191         (_IO_pid_t): Define to __pid_t, not _G_pid_t.
35192         (_IO_uid_t): Define to __uid_t, not _G_uid_t.
35193         (_IO_wint_t): Define to wint_t, not _G_wint_t.
35194         * libio/libioP.h (struct _IO_jump_t): Use size_t not _G_size_t as
35195         type of __dummy and __dummy2 fields.
35196         * sysdeps/generic/_G_config.h (_G_size_t): Remove.
35197         (_G_ssize_t): Likewise.
35198         (_G_off_t): Likewise.
35199         (_G_pid_t): Likewise.
35200         (_G_uid_t): Likewise.
35201         (_G_wchar_t): Likewise.
35202         (_G_wint_t): Likewise.
35203         * sysdeps/gnu/_G_config.h (_G_size_t): Remove.
35204         (_G_ssize_t): Likewise.
35205         (_G_off_t): Likewise.
35206         (_G_pid_t): Likewise.
35207         (_G_uid_t): Likewise.
35208         (_G_wchar_t): Likewise.
35209         (_G_wint_t): Likewise.
35210         * sysdeps/mach/hurd/_G_config.h (_G_size_t): Remove.
35211         (_G_ssize_t): Likewise.
35212         (_G_off_t): Likewise.
35213         (_G_pid_t): Likewise.
35214         (_G_uid_t): Likewise.
35215         (_G_wchar_t): Likewise.
35216         (_G_wint_t): Likewise.
35217
35218 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
35219
35220         * malloc/arena.c: Include malloc-sysdep.h.
35221         (shrink_heap): Use check_may_shrink_heap to decide if madvise
35222         is sufficient to shrink the heap or an unmap is needed.
35223         * sysdeps/generic/malloc-sysdep.h: New file.  Define
35224         new function check_may_shrink_heap.
35225         * sysdeps/unix/sysv/linux/malloc-sysdep.h: New file.  Define
35226         new function check_may_shrink_heap.
35227
35228 2012-09-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
35229
35230         * libio/fileops.c (_IO_new_file_seekoff): Fix typos in
35231         comments.
35232
35233 2012-09-24  Dmitry V. Levin  <ldv@altlinux.org>
35234
35235         * catgets/test-gencat.sh: Add "set -e".
35236         * elf/tst-pathopt.sh: Likewise.
35237         * grp/tst_fgetgrent.sh: Likewise.
35238         * iconvdata/run-iconv-test.sh: Likewise.
35239         * intl/tst-gettext.sh: Likewise.
35240         * intl/tst-gettext2.sh: Likewise.
35241         * intl/tst-gettext4.sh: Likewise.
35242         * intl/tst-gettext6.sh: Likewise.
35243         * intl/tst-translit.sh: Likewise.
35244         * io/ftwtest-sh: Likewise.
35245         * libio/test-freopen.sh: Likewise.
35246         * malloc/tst-mtrace.sh: Likewise.
35247         * posix/globtest.sh: Likewise.
35248         * posix/tst-getconf.sh: Likewise.
35249         * posix/wordexp-tst.sh: Likewise.
35250         * stdio-common/tst-printf.sh: Likewise.
35251         * stdio-common/tst-unbputc.sh: Likewise.
35252         * stdlib/tst-fmtmsg.sh: Likewise.
35253         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
35254         * catgets/Makefile: Do not specify -e option when running
35255         testsuite shell scripts.
35256         * elf/Makefile: Likewise.
35257         * grp/Makefile: Likewise.
35258         * iconvdata/Makefile: Likewise.
35259         * intl/Makefile: Likewise.
35260         * io/Makefile: Likewise.
35261         * libio/Makefile: Likewise.
35262         * malloc/Makefile: Likewise.
35263         * posix/Makefile: Likewise.
35264         * stdio-common/Makefile: Likewise.
35265         * stdlib/Makefile: Likewise.
35266         * sysdeps/x86_64/Makefile: Likewise.
35267
35268         * io/ftwtest-sh: Add copyright header.
35269         * posix/globtest.sh: Likewise.
35270         * posix/tst-getconf.sh: Likewise.
35271         * posix/wordexp-tst.sh: Likewise.
35272         * sysdeps/x86_64/tst-xmmymm.sh: Likewise.
35273
35274 2012-09-24  H.J. Lu  <hongjiu.lu@intel.com>
35275
35276         [BZ #13679]
35277         * Makeconfig (+link): Defined as $(+link-static) if
35278         $(build-shared) isn't yes.
35279         (link-tests): Defined as $(+link-static-tests) if $(build-shared)
35280         isn't yes.
35281         (static-gnulib): Add -lgcc_eh if $(build-shared) isn't yes.
35282
35283         * Makeconfig (+postctorT): Replace crtendS.o with crtend.o.
35284
35285         [BZ #14562]
35286         * malloc/arena.c (heap_trim): Properly get fencepost and adjust
35287         new chunk size with MALLOC_ALIGN_MASK.
35288
35289 2012-09-24  Joseph Myers  <joseph@codesourcery.com>
35290
35291         [BZ #5044]
35292         * stdio-common/printf_fphex.c: Include <stdbool.h> and
35293         <rounding-mode.h>.
35294         (__printf_fphex): Determine rounding using get_rounding_mode and
35295         round_away.
35296         * stdio-common/tst-printf-round.c (struct hex_test): New
35297         structure.
35298         (hex_tests): New variable.
35299         (test_hex_in_one_mode): New function.
35300         (do_test): Also run tests for hex float output.
35301
35302 2012-09-21  Joseph Myers  <joseph@codesourcery.com>
35303
35304         * libio/iopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
35305         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
35306         * libio/libio.h (_IO_HAVE_SYS_WAIT): Remove.
35307         * libio/oldiopopen.c [_IO_HAVE_SYS_WAIT]: Make code unconditional.
35308         [!_IO_HAVE_SYS_WAIT]: Remove conditional code.
35309         * sysdeps/generic/_G_config.h (_G_HAVE_SYS_WAIT): Remove.
35310         * sysdeps/gnu/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
35311         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_SYS_WAIT): Likewise.
35312
35313 2012-09-20  Joseph Myers  <joseph@codesourcery.com>
35314
35315         * libio/libio.h [_G_NEED_STDARG_H]: Make code unconditional.
35316         * sysdeps/generic/_G_config.h (_G_NEED_STDARG_H): Remove.
35317         * sysdeps/gnu/_G_config.h (_G_NEED_STDARG_H): Remove.
35318         * sysdeps/mach/hurd/_G_config.h (_G_NEED_STDARG_H): Remove.
35319
35320 2012-09-19  Dmitry V. Levin  <ldv@altlinux.org>
35321
35322         [BZ #14579]
35323         * elf/rtld.c (dl_main): Limit the check for self loading to normal
35324         mode only.
35325         * elf/tst-rtld-load-self.sh: New test.
35326         * elf/Makefile: Run it.
35327
35328 2012-09-18  Joseph Myers  <joseph@codesourcery.com>
35329
35330         * sysdeps/wordsize-64/Makefile [$(subdir) = misc]
35331         (tst-writev-ENV): Remove.
35332         * sysdeps/wordsize-64/tst-writev.c (TIMEOUT): Define.
35333
35334 2012-09-17  Chris Metcalf  <cmetcalf@tilera.com>
35335
35336         * crypt/md5test-giant.c (TIMEOUT): Increase to 8 minutes for tilegx.
35337
35338 2012-09-17  Joseph Myers  <joseph@codesourcery.com>
35339
35340         * libio/iogetline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]: Make code
35341         unconditional.
35342         * libio/iogetwline.c [_LIBC || !_G_HAVE_IO_GETLINE_INFO]:
35343         Likewise.
35344         * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Remove.
35345         * sysdeps/gnu/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise.
35346         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_IO_GETLINE_INFO):
35347         Likewise.
35348
35349 2012-09-14  H.J. Lu  <hongjiu.lu@intel.com>
35350
35351         [BZ #14587]
35352         * Makeconfig (ASFLAGS): Remove $(have-cpp-asm-debuginfo) check.
35353         * config.make.in (have-cpp-asm-debuginfo): Removed.
35354         * configure.in: Don't substitute libc_cv_cpp_asm_debuginfo.
35355         * configure: Regenerated.
35356
35357 2012-09-14  Joseph Myers  <joseph@codesourcery.com>
35358
35359         [BZ #5044]
35360         * stdio-common/printf_fp.c: Include <stdbool.h> and
35361         <rounding-mode.h>.
35362         (___printf_fp): Determine rounding using get_rounding_mode and
35363         round_away.
35364         * stdio-common/tst-printf-round.c: New file.
35365         * stdio-common/Makefile (tests): Add tst-printf-round.
35366         (link-libm): New variable.
35367         ($(objpfx)tst-printf-round): Depend in $(link-libm).
35368
35369 2012-09-13  H.J. Lu  <hongjiu.lu@intel.com>
35370
35371         [BZ #14576]
35372         * bits/libc-lock.h (__rtld_lock_init_recursive): Removed.
35373         * sysdeps/mach/bits/libc-lock.h (__rtld_lock_init_recursive):
35374         Likewise.
35375         * sysdeps/mach/hurd/bits/libc-lock.h (__rtld_lock_init_recursive):
35376         Likewise.
35377
35378 2012-09-13  Joseph Myers  <joseph@codesourcery.com>
35379
35380         * libio/libio.h [!_G_HAVE_PRINTF_FP] (_IO_USE_DTOA): Remove.
35381         * sysdeps/generic/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35382         * sysdeps/gnu/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35383         * sysdeps/mach/hurd/_G_config.h (_G_HAVE_PRINTF_FP): Likewise.
35384
35385 2012-09-12  Joseph Myers  <joseph@codesourcery.com>
35386
35387         [BZ #14518]
35388         * include/rounding-mode.h: New file.
35389         * sysdeps/generic/get-rounding-mode.h: Likewise.
35390         * sysdeps/s390/fpu/get-rounding-mode.h: Likewise.
35391         * stdlib/strtod_l.c: Include <rounding-mode.h>.
35392         (MAX_VALUE): New macro.
35393         (MIN_VALUE): Likewise.
35394         (overflow_value): New function.
35395         (underflow_value): Likewise.
35396         (round_and_return): Use overflow_value and underflow_value to
35397         determine return values in overflow and underflow cases.  Use
35398         round_away to determine rounding depending on rounding mode.
35399         (____STRTOF_INTERNAL): Use overflow_value and underflow_value to
35400         determine return values in overflow and underflow cases.
35401         * stdlib/tst-strtod-round.c: Include <fenv.h>.
35402         (struct test_results): New structure.
35403         (struct test): Use struct test_results to store expected results
35404         for all rounding modes.
35405         (TEST): Include expected results for all rounding modes.
35406         (test_in_one_mode): New function.
35407         (do_test): Use test_in_one_mode to compute and check results.
35408         Check results for all rounding modes.
35409         * stdlib/Makefile ($(objpfx)tst-strtod-round): Depend on
35410         $(link-libm).
35411
35412 2012-12-09  Allan McRae  <allan@archlinux.org>
35413
35414         * sysdeps/i386/fpu/libm-test-ulps: Update
35415
35416 2012-09-11  Joseph Myers  <joseph@codesourcery.com>
35417
35418         * sysdeps/generic/_G_config.h (_G_int16_t): Remove.
35419         (_G_int32_t): Likewise.
35420         (_G_uint16_t): Likewise.
35421         (_G_uint32_t): Likewise.
35422         (_G_HAVE_BOOL): Likewise.
35423         (_G_HAVE_ATEXIT): Likewise.
35424         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35425         (_G_HAVE_IO_FILE_OPEN): Likewise.
35426         * sysdeps/gnu/_G_config.h (_G_int16_t): Remove.
35427         (_G_int32_t): Likewise.
35428         (_G_uint16_t): Likewise.
35429         (_G_uint32_t): Likewise.
35430         (_G_HAVE_BOOL): Likewise.
35431         (_G_HAVE_ATEXIT): Likewise.
35432         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35433         (_G_HAVE_IO_FILE_OPEN): Likewise.
35434         * sysdeps/mach/hurd/_G_config.h (_G_int16_t): Remove.
35435         (_G_int32_t): Likewise.
35436         (_G_uint16_t): Likewise.
35437         (_G_uint32_t): Likewise.
35438         (_G_HAVE_BOOL): Likewise.
35439         (_G_HAVE_ATEXIT): Likewise.
35440         (_G_HAVE_LONG_DOUBLE_IO): Likewise.
35441         (_G_HAVE_IO_FILE_OPEN): Likewise.
35442
35443 2012-09-11  H.J. Lu  <hongjiu.lu@intel.com>
35444
35445         * csu/libc-tls.c: Update copyright years.
35446
35447 2012-09-10  Joseph Myers  <joseph@codesourcery.com>
35448
35449         * libioP.h [_G_USING_THUNKS]: Make code unconditional.
35450         [!_G_USING_THUNKS]: Remove conditional code.
35451         * sysdeps/gnu/_G_config.h (_G_USING_THUNKS): Remove.
35452         * sysdeps/mach/hurd/_G_config.h (_G_USING_THUNKS): Likewise.
35453
35454         * libio/libioP.h [__GNUC__] (VTABLE_LABEL): Remove.
35455         [!builtinbuf_vtable && __cplusplus] (builtinbuf_vtable): Likewise.
35456         * sysdeps/generic/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35457         (_G_VTABLE_LABEL_PREFIX): Likewise.
35458         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35459         * sysdeps/gnu/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35460         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35461         (_G_VTABLE_LABEL_PREFIX): Likewise.
35462         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
35463         * sysdeps/mach/hurd/_G_config.h (_G_NAMES_HAVE_UNDERSCORE): Remove.
35464         (_G_VTABLE_LABEL_HAS_LENGTH): Likewise.
35465         (_G_VTABLE_LABEL_PREFIX): Likewise.
35466         (_G_VTABLE_LABEL_PREFIX_ID): Likewise.
35467
35468 2012-09-10  H.J. Lu  <hongjiu.lu@intel.com>
35469
35470         * libio/Makefile: Include ../Makeconfig before tests.
35471         (tests): Add tst-fopenloc and depend on $(objpfx)tst-fopenloc.check
35472         only if $(build-shared) is yes.
35473
35474         * iconv/gconv_db.c: Update copyright years.
35475
35476 2012-09-10  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35477
35478         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: Fix
35479         unwind info if defined PIC. Fix special cases description.
35480         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: Likewise.
35481
35482         * sysdeps/x86_64/fpu/s_sinf.S: Fix special cases description, fix
35483         DP_HI_MASK entry.
35484         * sysdeps/x86_64/fpu/s_cosf.S: Likewise.
35485
35486 2012-09-07  H.J. Lu  <hongjiu.lu@intel.com>
35487
35488         * scripts/check-local-headers.sh: Add "shopt -s nullglob".
35489
35490         * iconv/gconv_db.c (free_derivation): Check if deriv->steps
35491         is NULL.
35492
35493         * debug/Makefile (LDFLAGS-tst-chk4): Renamed to ...
35494         (LDLIBS-tst-chk4): This.
35495         (LDFLAGS-tst-chk5): Renamed to ...
35496         (LDLIBS-tst-chk5): This.
35497         (LDFLAGS-tst-chk6): Renamed to ...
35498         (LDLIBS-tst-chk6): This.
35499         (LDFLAGS-tst-lfschk4): Renamed to ...
35500         (LDLIBS-tst-lfschk4): This.
35501         (LDFLAGS-tst-lfschk5): Renamed to ...
35502         (LDLIBS-tst-lfschk5): This.
35503         (LDFLAGS-tst-lfschk6): Renamed to ...
35504         (LDLIBS-tst-lfschk6): This.
35505
35506         * Makefile ($(inst_includedir)/gnu/stubs.h): Remove dependency
35507         on $(common-objpfx)soversions.mk.
35508
35509 2012-09-07  Joseph Myers  <joseph@codesourcery.com>
35510
35511         [BZ #10014]
35512         * manual/examples/inetcli.c (SERVERHOST): Use www.gnu.org as
35513         example host name.
35514
35515 2012-09-07  Siddhesh Poyarekar  <siddhesh@redhat.com>
35516
35517         * malloc/arena.c (arena_get_retry): New function that gets
35518         another arena for the caller to try its request on.
35519         * malloc/malloc.c (__libc_malloc): Use get_another_arena if the
35520         current arena cannot fulfill the request.
35521         (__libc_memalign): Likewise.
35522         (__libc_memalign): Likewise.
35523         (__libc_pvalloc): Likewise.
35524         (__libc_calloc): Likewise.
35525
35526 2012-09-05  John Tobey  <john.tobey@gmail.com>
35527
35528         [BZ #13542]
35529         * manual/arith.texi (Operations on Complex): Fix description
35530         of carg branch cut.
35531
35532 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
35533
35534         [BZ #10014]
35535         * manual/socket.texi (Host Addresses): Use www.gnu.org as example
35536         host name.
35537
35538         [BZ #10038]
35539         * manual/memory.texi (Memory): Make order of menu items match
35540         order of sections.
35541
35542 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35543
35544         * elf/dl-tls.c (DL_INITIAL_DTV): Removed.
35545         (_dl_initial_dtv): New.  Defined if SHARED isn't defined.
35546         (_dl_deallocate_tls): Restore GL(dl_initial_dtv).
35547
35548 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35549
35550         * csu/libc-tls.c (static_dtv): Renamed to ...
35551         (_dl_static_dtv): This.  Make it global.
35552         (_dl_initial_dtv): Removed.
35553         (__libc_setup_tls): Updated.
35554         * elf/dl-tls.c (DL_INITIAL_DTV): New macro.
35555         (_dl_deallocate_tls): Replace GL(dl_initial_dtv) with
35556         DL_INITIAL_DTV.
35557
35558 2012-09-06  Petr Machata  <pmachata@redhat.com>
35559
35560         * elf/elf.h (NT_S390_HIGH_GPRS): New macro.
35561         (NT_S390_TIMER, NT_S390_TODCMP, NT_S390_TODPREG): Likewise.
35562         (NT_S390_CTRS, NT_S390_PREFIX, NT_S390_LAST_BREAK): Likewise.
35563         (NT_S390_SYSTEM_CALL, NT_ARM_VFP): Likewise.
35564
35565 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35566
35567         [BZ #14545]
35568         * csu/libc-tls.c (_dl_initial_dtv): New variable.
35569         * elf/dl-tls.c (_dl_deallocate_tls): Always check dtv before
35570         freeing dtv[-1].
35571
35572 2012-09-06  H.J. Lu  <hongjiu.lu@intel.com>
35573
35574         [BZ #14544]
35575         * Makeconfig (link-static-before-libc): Replace $(+prector)
35576         with $(+prectorT).
35577         (link-static-after-libc): Replace $(+postctor) with
35578         $(+postctorT).
35579         (link-bounded): Replace $(+prector)/$(+postctor) with
35580         $(+prectorT)/$(+postctorT).
35581         (+prectorT): New macro.
35582         (+postctorT): Likewise.
35583
35584 2012-09-06  Joseph Myers  <joseph@codesourcery.com>
35585
35586         * stdlib/gen-tst-strtod-round.c: Include <assert.h>.
35587         (round_str): Handle values above the maximum for IBM long double
35588         as inexact.
35589         * stdlib/tst-strtod-round.c (tests): Regenerated.
35590
35591 2012-09-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
35592
35593         * sysdeps/s390/s390-32/multiarch/Makefile: Remove -mzarch
35594         assembler flag.
35595         * sysdeps/s390/s390-32/multiarch/memcmp.S: Use .machinemode
35596         zarch_nohighgprs around the zarch optimized routines.
35597         * sysdeps/s390/s390-32/multiarch/memcpy.S: Likewise.
35598         * sysdeps/s390/s390-32/multiarch/memset.S: Likewise.
35599         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: Explicitly check
35600         for zarch.
35601
35602 2012-09-05  David S. Miller  <davem@davemloft.net>
35603
35604         * sysdeps/sparc/fpu/libm-test-ulps: Update.
35605
35606         * sysdeps/sparc/bits/hwcap.h (HWCAP_SPARC_PAUSE)
35607         (HWCAP_SPARC_CBCOND, HWCAP_SPARC_CRYPTO): Define.
35608         * sysdeps/sparc/dl-procinfo.h (_DL_HWCAP_COUNT): Increase to 27.
35609         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
35610         entries.
35611
35612 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35613
35614         * malloc/arena.c: Fold copyright years.
35615         * malloc/mcheck.c, malloc/memusage.c: Likewise.
35616
35617 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35618
35619         * malloc/malloc.c (__libc_mallopt) <M_MMAP_MAX>: Fix indentation.
35620
35621 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35622
35623         * manual/contrib.texi (Contributors): Fix typo.  Complete entry.
35624
35625 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35626
35627         * malloc/malloc.c (__libc_mallopt) <M_MMAP_THRESHOLD>: Do not
35628         change internal state upon failure.
35629
35630 2012-09-05  Alexandre Oliva  <aoliva@redhat.com>
35631
35632         * malloc/mcheck.c (mcheck_check_all): Fix typo.
35633         * malloc/memusage.c (mmap): Likewise.
35634         (mmap64, mremap): Likewise.  Adjust name in comment.
35635
35636 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
35637
35638         * libio/fileops.c: Fix typos in comments.
35639         * libio/oldfileops.c: Likewise.
35640         * libio/wfileops.c: Likewise.
35641
35642 2012-09-05  Siddhesh Poyarekar  <siddhesh@redhat.com>
35643
35644         [BZ #1349]
35645         * malloc/Makefile (tests): Add tst-malloc-usable test case.
35646         (tst-malloc-usable-ENV): Set environment for test case.
35647         * malloc/hooks.c (malloc_check_get_size): New function to get
35648         requested size.
35649         * malloc/malloc.c (musable): Use malloc_check_get_size.
35650         * malloc/tst-malloc-usable.c: New test case.
35651
35652 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
35653
35654         * stdlib/tst-strtod-overflow.c (TIMEOUT): Define.
35655
35656 2012-09-05  Allan McRae  <allan@archlinux.org>
35657
35658         [BZ #13966]
35659         * configure.in (CXX_SYSINCLUDES): Use compiler output to
35660         determine header location.
35661         * configure: Regenerated.
35662
35663 2012-09-05  Andreas Schwab  <schwab@linux-m68k.org>
35664
35665         * stdlib/gen-tst-strtod-round.c (formats): Add Motorola extended
35666         float format.
35667         * stdlib/tst-strtod-round.c (TEST) [LDBL_MANT_DIG == 64 &&
35668         LDBL_MAX_EXP == 16384]: Add case for Motorola extended float
35669         format.
35670         (test): Regenerate.
35671
35672 2012-09-04  David S. Miller  <davem@davemloft.net>
35673
35674         * sysdeps/sparc/sparc32/sparcv9/addmul_1.S: New file.
35675         * sysdeps/sparc/sparc32/sparcv9/submul_1.S: New file.
35676         * sysdeps/sparc/sparc32/sparcv9/mul_1.S: New file.
35677
35678 2012-09-04  Florian Weimer  <fweimer@redhat.com>
35679
35680         * stdlib/tst-secure-getenv.c (alternative_main): Only warn on SGID
35681         failures.
35682
35683         * stdlib/tst-secure-getenv.c: Fix whitespace in comments.
35684
35685 2012-09-04  Joseph Myers  <joseph@codesourcery.com>
35686
35687         [BZ #9914]
35688         * libio/iogetdelim.c: Include <limits.h>.
35689         (_IO_getdelim): Avoid integer overflow in testing whether cur_len
35690         + len + 1 would overflow.
35691
35692 2012-09-03  Andreas Jaeger  <aj@suse.de>
35693
35694         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35695         * sysdeps/i386/fpu/libm-test-ulps: Update.
35696
35697 2012-09-03  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
35698
35699         * sysdeps/i386/i686/fpu/multiarch/Makefile (sysdep_routines):
35700         Add s_sinf-sse2, s_conf-sse2.
35701
35702         * sysdeps/i386/i686/fpu/multiarch/s_sinf-sse2.S: New file.
35703         * sysdeps/i386/i686/fpu/multiarch/s_cosf-sse2.S: New file.
35704         * sysdeps/i386/i686/fpu/multiarch/s_sinf.c: New file.
35705         * sysdeps/i386/i686/fpu/multiarch/s_cosf.c: New file.
35706
35707         * sysdeps/ieee754/flt-32/s_sinf.c (SINF, SINF_FUNC): Add macros
35708         for using routine as __sinf_ia32.
35709         Use macro for function declaration and weak_alias.
35710         * sysdeps/ieee754/flt-32/s_cosf.c (COSF, COSF_FUNC): Add macros
35711         for using routine as __cosf_ia32.
35712         Use macro for function declaration and weak_alias.
35713
35714         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Fix Copyright.
35715         * sysdeps/i386/i686/fpu/multiarch/e_expf.c: Fix Copyright.
35716
35717         * sysdeps/x86_64/fpu/s_sinf.S: New file.
35718         * sysdeps/x86_64/fpu/s_cosf.S: New file.
35719         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
35720
35721         * math/libm-test.inc (cos_test): Add more test cases.
35722         (sin_test): Likewise.
35723         (sincos_test): Likewise.
35724
35725 2012-09-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
35726
35727         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c
35728         (IFUNC_RESOLVE): Make pointers to the specialized implementations
35729         hidden.
35730         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: Likewise.
35731
35732 2012-09-02  H.J. Lu  <hongjiu.lu@intel.com>
35733
35734         [BZ #14538]
35735         * sysdeps/x86_64/dl-machine.h (elf_machine_dynamic): Use the
35736         first element of the GOT.
35737         (elf_machine_load_address): Return the difference between
35738         the runtime address of _DYNAMIC and elf_machine_dynamic ().
35739
35740 2012-09-01  Allan McRae  <allan@archlinux.org>
35741
35742         [BZ #13412]
35743         * configure.in (AWK): Require gawk version 3.0 or later.
35744         * configure: Regenerated.
35745
35746 2012-09-01  Joseph Myers  <joseph@codesourcery.com>
35747
35748         * sysdeps/unix/sysv/linux/kernel-features.h
35749         (__ASSUME_POSIX_CPU_TIMERS): Remove.
35750         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
35751         [__NR_clock_getres]: Make code unconditional.
35752         [!__ASSUME_POSIX_CPU_TIMERS]: Remoce conditional code.
35753         (clock_getcpuclockid): Remove code left unreachable by removal of
35754         conditionals.
35755         * sysdeps/unix/sysv/linux/clock_getres.c [__NR_clock_getres]: Make
35756         code unconditional.
35757         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
35758         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35759         * sysdeps/unix/sysv/linux/clock_gettime.c [__NR_clock_gettime]:
35760         Make code unconditional.
35761         [__ASSUME_POSIX_CPU_TIMERS]: Likewise.
35762         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35763         * sysdeps/unix/sysv/linux/clock_settime.c
35764         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]: Remove
35765         conditional code.
35766         [__ASSUME_POSIX_CPU_TIMERS]: Make code unconditional.
35767         [!__ASSUME_POSIX_CPU_TIMERS]: Remove conditional code.
35768
35769 2012-08-29  H.J. Lu  <hongjiu.lu@intel.com>
35770
35771         [BZ #14476]
35772         * Makefile (install): Also pass LD_SO=$(ld.so-version) to
35773         scripts/test-installation.pl.
35774
35775         * scripts/test-installation.pl: Use LD_SO to get $ld_so_name
35776         and $ld_so_version if it is set.
35777
35778 2012-08-29  Siddhesh Poyarekar  <siddhesh@redhat.com>
35779
35780         [BZ #14516]
35781         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Don't return
35782         failure if reading from procfs failed.
35783         * sysdeps/unix/sysv/linux/ttyname_r.c (ttyname_r): Likewise.
35784
35785 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
35786
35787         * sysdeps/unix/sysv/linux/kernel-features.h
35788         (__ASSUME_STAT64_SYSCALL): Remove all definitions.
35789         * sysdeps/unix/sysv/linux/fxstat64.c [!__ASSUME_STAT64_SYSCALL]:
35790         Remove conditional code.
35791         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35792         * sysdeps/unix/sysv/linux/fxstatat64.c [!__ASSUME_STAT64_SYSCALL]:
35793         Remove conditional code.
35794         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35795         * sysdeps/unix/sysv/linux/i386/fxstat.c
35796         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35797         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35798         * sysdeps/unix/sysv/linux/i386/fxstatat.c
35799         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35800         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35801         * sysdeps/unix/sysv/linux/i386/lxstat.c
35802         [!__ASSUME_STAT64_SYSCALL]: Remove conditional code.
35803         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35804         * sysdeps/unix/sysv/linux/i386/xstat.c [!__ASSUME_STAT64_SYSCALL]:
35805         Remove conditional code.
35806         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35807         * sysdeps/unix/sysv/linux/lxstat64.c [!__ASSUME_STAT64_SYSCALL]:
35808         Remove conditional code.
35809         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35810         * sysdeps/unix/sysv/linux/sparc/sparc64/xstat.c: Do not include
35811         <kernel-features.h>.
35812         [__NR_stat64 && !__ASSUME_STAT64_SYSCALL] (__have_no_stat64):
35813         Remove.
35814         * sysdeps/unix/sysv/linux/xstat64.c [!__ASSUME_STAT64_SYSCALL]:
35815         Remove conditional code.
35816         [__ASSUME_STAT64_SYSCALL]: Make code unconditional.
35817         * sysdeps/unix/sysv/linux/xstatconv.c [!__ASSUME_STAT64_SYSCALL]:
35818         Remove conditional.
35819
35820 2012-08-27  Mike Frysinger  <vapier@gentoo.org>
35821
35822         [BZ #5400]
35823         * NEWS: Add fixed bug number.
35824
35825 2012-08-27  Joseph Myers  <joseph@codesourcery.com>
35826
35827         [BZ #14519]
35828         * stdlib/strtod_l.c (round_and_return): Return -0.0 for
35829         underflowing exponent in case of negative sign.
35830         * stdlib/tst-strtod-round-data: Add more tests.
35831         * stdlib/tst-strtod-round.c (tests): Regenerated.
35832
35833         [BZ #3479]
35834         * stdlib/strtod_l.c (NDIG): Remove.
35835         (HEXNDIG): Likewise.
35836         (MPNSIZE): Increase to represent 10^n where 2^-n is 1/4 ulp of the
35837         smallest representable value.
35838         (____STRTOF_INTERNAL): Use all fractional decimal digits that may
35839         lie within an exact representation of 1/2 ulp of the result.
35840         * stdlib/fpioconst.c (__tens): Include 10^2^9 and 10^2^10
35841         unconditionally.
35842         (TENS_P9_IDX): Define unconditionally.
35843         (TENS_P9_SIZE): Likewise.
35844         (TENS_P10_IDX): Likewise.
35845         (TENS_P10_SIZE): Likewise.
35846         [BITS_PER_MP_LIMB == 32]: Change condition for larger powers of 10
35847         to !defined __NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024.
35848         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024] (__tens): Add
35849         entries for 10^2^13 and 10^2^14.
35850         [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ > 1024]
35851         (TENS_P13_IDX): Define.
35852         (TENS_P13_SIZE): Likewise.
35853         (TENS_P14_IDX): Likewise.
35854         (TENS_P14_SIZE): Likewise.
35855         (_fpioconst_pow10): Change array size to
35856         FPIOCONST_POW10_ARRAY_SIZE.  Make entries for 10^2^9 and 10^2^10
35857         unconditional.
35858         (_fpioconst_pow10) [!__NO_LONG_DOUBLE_MATH && __LDBL_MAX_EXP__ >
35859         1024]: Add entries for 10^2^13 and 10^2^14.
35860         [LAST_POW10 > _LAST_POW10]: Remove #error.
35861         * stdlib/fpioconst.h (FPIOCONST_POW10_ARRAY_SIZE): Define.
35862         (_fpioconst_pow10): Change array size to
35863         FPIOCONST_POW10_ARRAY_SIZE.
35864         * stdlib/gen-fpioconst.c: New file.
35865         * stdlib/gen-tst-strtod-round.c: Likewise.
35866         * stdlib/tst-strtod-round-data: Likewise.
35867         * stdlib/tst-strtod-round.c: Likewise.
35868         * stdlib/Makefile (tests): Add tst-strtod-round.
35869
35870         [BZ #14459]
35871         * stdlib/strtod_l.c: Include <stdint.h>.
35872         (NDEBUG): Do not define.
35873         (round_and_return): Change EXPONENT parameter to type intmax_t.
35874         Rearrange calculations to avoid internal overflow possibilities.
35875         (str_to_mpn): Change EXPONENT parameter to type intmax_t *.
35876         Rearrange calculations to avoid internal overflow possibilities.
35877         Assert that number fits inside MPNSIZE limbs.
35878         (____STRTOF_INTERNAL): Change EXPONENT variable to type intmax_t.
35879         Change DIG_NO, INT_NO and LEAD_ZERO to type size_t.  Rearrange
35880         calculations and add assertions to avoid internal overflow
35881         possibilities.  Add casts to avoid signed/unsigned operations.
35882         * stdlib/tst-strtod-overflow.c: New file.
35883         * stdlib/Makefile (tests): Add tst-strtod-overflow.
35884
35885 2012-08-25  Marek Polacek  <polacek@redhat.com>
35886
35887         * time/time.h: Fix some typos in comments.
35888
35889 2012-08-23  Roland McGrath  <roland@hack.frob.com>
35890
35891         * posix/tst-rfc3484.c: #undef USE_NSCD before including getaddrinfo.c.
35892         * posix/tst-rfc3484-2.c: Likewise.
35893         * posix/tst-rfc3484-3.c: Likewise.
35894
35895 2012-08-23  Steve McIntyre  <steve.mcintyre@linaro.org>
35896
35897         * elf/elf.h (EF_ARM_ABI_FLOAT_SOFT): New macro.
35898         (EF_ARM_ABI_FLOAT_HARD): Likewise.
35899
35900 2012-08-23  Joseph Myers  <joseph@codesourcery.com>
35901
35902         * sysdeps/unix/sysv/linux/dl-fxstatat64.c: Use <> instead of "" in
35903         #include of fxstatat64.c.
35904
35905 2012-08-22  Roland McGrath  <roland@hack.frob.com>
35906
35907         * shadow/getspent.c: #undef USE_NSCD before #include that gets the code.
35908         * shadow/getspent_r.c: Likewise.
35909         * shadow/getspnam.c: Likewise.
35910         * shadow/getspnam_r.c: Likewise.
35911         * gshadow/getsgent.c: Likewise.
35912         * gshadow/getsgent_r.c: Likewise.
35913         * gshadow/getsgnam.c: Likewise.
35914         * gshadow/getsgnam_r.c: Likewise.
35915         * inet/getnetbyad.c: Likewise.
35916         * inet/getnetbyad_r.c: Likewise.
35917         * inet/getnetbynm.c: Likewise.
35918         * inet/getnetbynm_r.c: Likewise.
35919         * inet/getnetent.c: Likewise.
35920         * inet/getnetent_r.c: Likewise.
35921         * inet/getproto.c: Likewise.
35922         * inet/getproto_r.c: Likewise.
35923         * inet/getprtent.c: Likewise.
35924         * inet/getprtent_r.c: Likewise.
35925         * inet/getprtname.c: Likewise.
35926         * inet/getprtname_r.c: Likewise.
35927         * inet/getrpcbyname.c: Likewise.
35928         * inet/getrpcbyname_r.c: Likewise.
35929         * inet/getrpcbynumber.c: Likewise.
35930         * inet/getrpcbynumber_r.c: Likewise.
35931         * inet/getrpcent.c: Likewise.
35932         * inet/getrpcent_r.c: Likewise.
35933         * inet/getaliasent.c: Likewise.
35934         * inet/getaliasent_r.c: Likewise.
35935         * inet/getaliasname.c: Likewise.
35936         * inet/getaliasname_r.c: Likewise.
35937         * nscd/getgrgid_r.c: Likewise.
35938         * nscd/getgrnam_r.c: Likewise.
35939         * nscd/gethstbyad_r.c: Likewise.
35940         * nscd/gethstbynm3_r.c: Likewise.
35941         * nscd/getpwnam_r.c: Likewise.
35942         * nscd/getpwuid_r.c: Likewise.
35943         * nscd/getsrvbynm_r.c: Likewise.
35944         * nscd/getsrvbypt_r.c: Likewise.
35945         * nscd/gai.c: Likewise.
35946
35947         * configure.in (build_nscd): New substituted variable, set
35948         by --disable-build-nscd and defaults to $use_nscd.
35949         * configure: Regenerated.
35950         * config.make.in (build-nscd): New substituted variable.
35951         * nscd/Makefile (others, others-pie, install-sbin, extra-objs):
35952         Change conditional to require [$(build-nscd) = yes] as well.
35953         * NEWS: Mention --disable-build-nscd in the --disable-nscd item.
35954
35955         [BZ# 13696]
35956         * configure.in (use_nscd): New substituted variable, set by
35957         --disable-nscd.  If enabled, define USE_NSCD.
35958         * configure: Regenerated.
35959         * config.h.in: Add USE_NSCD.
35960         * config.make.in (use-nscd): New substituted variable.
35961         * inet/Makefile (CFLAGS-gethstbyad_r.c): Likewise.
35962         (CFLAGS-gethstbynm_r.c, CFLAGS-gethstbynm2_r.c): Likewise.
35963         (CFLAGS-getsrvbynm_r.c, CFLAGS-getsrvbypt_r.c): Variables removed.
35964         * grp/Makefile (CFLAGS-getgrgid_r.c): Remove -DUSE_NSCD.
35965         (CFLAGS-getgrnam_r.c): Likewise.
35966         (CFLAGS-initgroups.c): Likewise.
35967         * posix/Makefile (CFLAGS-getaddrinfo.c): Remove -DUSE_NSCD.
35968         * pwd/Makefile (CFLAGS-getpwuid_r.c, CFLAGS-getpwnam_r.c):
35969         Variables removed.
35970         * inet/getnetgrent_r.c
35971         (nscd_setnetgrent): New function, broken out of ...
35972         (setnetgrent): ... here.  Call it.
35973         (innetgr): Conditionalize nscd bits on [USE_NSCD].
35974         (nscd_getnetgrent): Conditionalize on [USE_NSCD].
35975         (__internal_getnetgrent_r): Conditionalize its use on [USE_NSCD].
35976         * nscd/Makefile (routines, aux): Move definitions after include of
35977         Makeconfig.  Conditionalize on [$(use-nscd) != no].
35978         * nss/nsswitch.c (nss_load_all_libraries, __nss_disable_nscd):
35979         Conditionalize on [USE_NSCD].
35980         (is_nscd, nscd_init_cb): Likewise.
35981         (nss_load_library): Conditionalize init callback on [USE_NSCD].
35982         * nss/nss_files/files-init.c: Conditionalize body on [USE_NSCD].
35983         * nss/nss_db/db-init.c: Likewise.
35984         * nscd/nscd.c (main): Conditionalize __nss_disable_nscd call on
35985         [USE_NSCD].
35986         * sysdeps/unix/sysv/linux/check_pf.c (get_nl_timestamp): New function.
35987         (make_request): Use it.
35988         (cache_valid_p): New function.
35989         (__check_pf): Use it.
35990         * NEWS: Add item for --disable-nscd.
35991
35992 2012-08-22  Dmitry V. Levin  <ldv@altlinux.org>
35993
35994         * configure.in (SED): Update AC_CHECK_PROG_VER's version extract regexp
35995         to support sed >= 4.2.1-20-ga9bf076.
35996         * configure: Regenerated.
35997
35998 2012-08-22  Roland McGrath  <roland@hack.frob.com>
35999
36000         * csu/libc-start.c (apply_irel): Move extern declarations inside here.
36001         Conditionalize whole body on [IREL].
36002
36003 2012-08-22  Jeff Law <law@redhat.com>
36004
36005         [BZ #14505]
36006         * sysdeps/posix/getaddrinfo.c (gaih_inet): Only use gethostbyname4_r
36007         if the family is PF_UNSPEC.
36008
36009 2012-08-22  Mike Frysinger  <vapier@gentoo.org>
36010
36011         * Makerules (lib-version): Rename from V.
36012         (install-lib-nosubdir): Change V to lib-version.
36013
36014 2012-08-22  Will Schmidt  <will_schmidt@vnet.ibm.com>
36015
36016         [BZ #14252]
36017         * powerpc32/power6/wcschr.c: New file.
36018         * powerpc32/power6/wcscpy.c: New file.
36019         * powerpc32/power6/wcsrchr.c: New file.
36020         * powerpc64/power6/wcschr.c: New file.
36021         * powerpc64/power6/wcscpy.c: New file.
36022         * powerpc64/power6/wcsrchr.c: New file.
36023
36024 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
36025
36026         * string/str-two-way.h (AVAILABLE1_USES_J): New macro, define default.
36027         (two_way_short_needle): Use it.
36028         * string/strstr.c (AVAILABLE1_USES_J): Define.
36029         * string/strcasestr.c: Likewise.
36030
36031         * string/str-two-way.h (two_way_short_needle): Use pointers instead of
36032         array references.
36033         * string/strcasestr.c (TOLOWER): Make side-effect safe.
36034
36035         [BZ #11607]
36036         * NEWS: Add an entry.
36037         * string/str-two-way.h (AVAILABLE1, AVAILABLE2, RET0_IF_0): New macros,
36038         define their defaults.
36039         (two_way_short_needle): Detect end-of-string on-the-fly.
36040         * string/strcasestr.c, string/strstr.c (AVAILABLE): Update.
36041         (AVAILABLE1, AVAILABLE2, RET0_IF_0, AVAILABLE_USES_J): Define.
36042         * string/bug-strcasestr1.c: New test.
36043         * string/Makefile: Run it.
36044
36045 2012-08-21  Maxim Kuvyrkov  <maxim@codesourcery.com>
36046
36047         [BZ #11607]
36048         * string/str-two-way.h (two_way_short_needle): Optimize matching of
36049         the first character.
36050
36051 2012-08-21  Roland McGrath  <roland@hack.frob.com>
36052
36053         * csu/elf-init.c (__libc_csu_irel): Function removed.
36054         * csu/libc-start.c (apply_irel): New function.
36055         (LIBC_START_MAIN): Call it instead of __libc_csu_irel.
36056
36057 2012-08-21  Joseph Myers  <joseph@codesourcery.com>
36058
36059         * sysdeps/unix/sysv/linux/kernel-features.h
36060         (__ASSUME_FADVISE64_64_SYSCALL): Remove.
36061         * sysdeps/unix/sysv/linux/i386/posix_fadvise64.S: Do not include
36062         <kernel-features.h>.
36063         [__NR_fadvise64_64]: Make code unconditional.
36064         [!__ASSUME_FADVISE64_64_SYSCALL]: Remove conditional code.
36065         [__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
36066         !__NR_fadvise64_64)]: Likewise.
36067         [!(__NR_fadvise64 && (!__ASSUME_FADVISE64_64_SYSCALL ||
36068         !__NR_fadvise64_64))]: Likewise.
36069         [__NR_fadvise64]: Make code unconditional.
36070         [!__NR_fadvise64]: Remove conditional code.
36071         * sysdeps/unix/sysv/linux/posix_fadvise64.c: Do not include
36072         <kernel-features.h>.
36073         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36074         unconditional.
36075         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36076         conditional code.
36077         * sysdeps/unix/sysv/linux/powerpc/powerpc32/posix_fadvise64.c: Do
36078         not include <kernel-features.h>.
36079         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36080         unconditional.
36081         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36082         conditional code.
36083         * sysdeps/unix/sysv/linux/s390/s390-32/posix_fadvise64.c: Do not
36084         include <kernel-features.h>.
36085         (__posix_fadvise64_l64) [__NR_fadvise64_64]: Make code
36086         unconditional.
36087         (_posix_fadvise64_l64) [!__ASSUME_FADVISE64_64_SYSCALL]: Remove
36088         conditional code.
36089
36090 2012-08-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
36091
36092         * sysdeps/powerpc/powerpc64/power7/memchr.S: Unrolled short loop and
36093         slight instruction rearrangements per scrollpipe analysis.
36094         * sysdeps/powerpc/powerpc64/power7/memchr.S: Likewise.
36095
36096 2012-08-20  Roland McGrath  <roland@hack.frob.com>
36097
36098         * manual/syslog.texi (syslog; vsyslog, closelog):
36099         Fix typo repeated twice: @file{dev/log} -> @file{/dev/log}.
36100         Reported by Ricardo Catalinas Jiménez <jimenezrick@gmail.com>.
36101
36102         * elf/dl-sysdep.c (_dl_important_hwcaps): Fix conditional on using
36103         DSOCAPS to match condition on defining it.
36104
36105 2012-08-20  Joseph Myers  <joseph@codesourcery.com>
36106
36107         * sysdeps/unix/sysv/linux/kernel-features.h
36108         (__ASSUME_SWAPCONTEXT_SYSCALL): Remove.
36109         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S
36110         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36111         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36112         * sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S
36113         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36114         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36115         * sysdeps/unix/sysv/linux/powerpc/powerpc32/swapcontext.S
36116         [__ASSUME_SWAPCONTEXT_SYSCALL]: Make code unconditional.
36117         [!__ASSUME_SWAPCONTEXT_SYSCALL]: Remove conditional code.
36118
36119         * sysdeps/unix/sysv/linux/kernel-features.h [__s390__ &&
36120         __LINUX_KERNEL_VERSION >= 0x020616] (__ASSUME_UTIMES): Define.
36121
36122         * sysdeps/unix/sysv/linux/kernel-features.h
36123         (__ASSUME_MMAP2_SYSCALL): Remove all definitions.
36124         * sysdeps/unix/sysv/linux/mmap64.c [__NR_mmap2]: Make code
36125         unconditional.
36126         [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36127         * sysdeps/unix/sysv/linux/i386/mmap.S (__mmap)
36128         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
36129         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36130         * sysdeps/unix/sysv/linux/i386/mmap64.S (__mmap64) [__NR_mmap2]:
36131         Make code unconditional.
36132         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36133         (__mmap64) [!__NR_mmap2]: Likewise.
36134         * sysdeps/unix/sysv/linux/s390/s390-32/mmap.S (__mmap)
36135         [__ASSUME_MMAP2_SYSCALL]: Make code unconditional.
36136         (__mmap) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36137         * sysdeps/unix/sysv/linux/s390/s390-32/mmap64.S (__mmap64)
36138         [__NR_mmap2]: Make code unconditional.
36139         (__mmap64) [!__ASSUME_MMAP2_SYSCALL]: Remove conditional code.
36140         (__mmap64) [!__NR_mmap2]: Likewise.
36141
36142 2012-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
36143
36144         * sysdeps/unix/sysv/linux/s390/s390-32/getrlimit.c: Remove.
36145
36146 2012-08-18  Andreas Jaeger  <aj@suse.de>
36147
36148         * stdio-common/_itoa.c (_itoa): Add missing DUMMY variable.
36149
36150 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
36151
36152         * include/sys/socket.h (__have_sock_cloexec): Add attribute_hidden.
36153         * include/unistd.h (__have_sock_cloexec): Likewise.
36154         (__have_pipe2): Likewise.
36155         (__have_dup3): Likewise.
36156
36157 2012-08-18  Mike Frysinger  <vapier@gentoo.org>
36158
36159         [BZ #9685]
36160         * include/unistd.h (__have_pipe2): Change define into an extern int.
36161         (__have_dup3): Likewise.
36162         * socket/have_sock_cloexec.c: Include fcntl.h.
36163         (__have_pipe2): New variable.
36164         (__have_dup3): Likewise.
36165
36166 2012-08-17  Mike Frysinger  <vapier@gentoo.org>
36167
36168         * sysdeps/unix/sysv/linux/nice.c: Adjust #include.
36169
36170 2012-08-17  Marek Polacek  <polacek@redhat.com>
36171
36172         * sysdeps/ieee754/ldbl-96/s_sincosl.c (__sincosl): Use __attribute__
36173         ((unused)) on I1, which is set by GET_LDOUBLE_WORDS but never used.
36174
36175 2012-08-17  Roland McGrath  <roland@hack.frob.com>
36176
36177         * configure.in: Add AC_SUBST for sysheaders.
36178         * configure: Regenerated.
36179         * config.make.in (sysheaders): New substituted variable.
36180
36181         * sysdeps/unix/mkfifo.c: Moved ...
36182         * sysdeps/posix/mkfifo.c: ... here.
36183         * sysdeps/unix/mkfifoat.c: Moved ...
36184         * sysdeps/posix/mkfifoat.c: ... here.
36185
36186         * sysdeps/unix/utime.c: Moved ...
36187         * sysdeps/posix/utime.c: ... here.
36188
36189         * sysdeps/unix/time.c: Moved ...
36190         * sysdeps/posix/time.c: ... here.
36191         * sysdeps/unix/sysv/linux/time.c: Adjust #include.
36192         * sysdeps/unix/sysv/linux/sparc/sparc64/time.c: Likewise.
36193
36194         * sysdeps/unix/nice.c: Moved ...
36195         * sysdeps/posix/nice.c: ... here.
36196
36197         * sysdeps/unix/alarm.c: Moved ...
36198         * sysdeps/posix/alarm.c: ... here.
36199
36200         * intl/Makefile ($(codeset_mo)): Depend on the input file.
36201
36202 2012-08-17  Jeff Law <law@redhat.com>
36203
36204         * intl/Makefile (codeset_mo): New variable.
36205         ($(codeset_mo)): New target.
36206         (tst-codeset.out): Depend on that.  Remove explicit rule.
36207         (tst-gettext3.out, tst-gettext5.out): Likewise.
36208         (LOCPATH-ENV, tst-codeset-ENV): New variables.
36209         (tst-gettext3-ENV, tst-gettext5-ENV): Likewise.
36210         * intl/tst-codeset.sh: Remove.
36211         * intl/tst-gettext3.sh: Likewise.
36212         * intl/tst-gettext5.sh: Likewise.
36213
36214 2012-08-17  Roland McGrath  <roland@hack.frob.com>
36215
36216         * sysdeps/unix/inet/syscalls.list: File removed.  Move contents into ...
36217         * sysdeps/unix/syscalls.list: ... here.
36218
36219         * sysdeps/posix/getaddrinfo.c
36220         (save_gaiconf_mtime, check_gaiconf_mtime): New functions.
36221         (gaiconf_init, gaiconf_reload): Use them.
36222         [!_STATBUF_ST_NSEC]
36223         (gaiconf_mtime, save_gaiconf_mtime, check_gaiconf_mtime):
36224         Define using time_t rather than struct timespec.
36225
36226         * sysdeps/generic/malloc-machine.h (MUTEX_INITIALIZER): New macro.
36227         (atomic_full_barrier, atomic_read_barrier, atomic_write_barrier):
36228         Macros removed.
36229         * malloc/arena.c (save_malloc_hook, save_free_hook): Conditionalize on
36230         [!NO_THREADS].
36231         (malloc_atfork, free_atfork, atfork_recursive_cntr): Likewise.
36232         (ptmalloc_lock_all, ptmalloc_unlock_all, ptmalloc_unlock_all2):
36233         Likewise.
36234
36235         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Use NULL rather than 0 for
36236         __libc_cleanup_push argument.
36237
36238         * bits/param.h: New file.
36239         * misc/sys/param.h: New file.
36240         * include/sys/param.h: New file.
36241         * misc/Makefile (headers): Add bits/param.h.
36242         * sysdeps/generic/sys/param.h: File removed.
36243         * sysdeps/unix/sysv/linux/bits/param.h: New file.
36244         * sysdeps/unix/sysv/linux/sys/param.h: File removed.
36245         * sysdeps/mach/hurd/bits/param.h: New file.
36246         * sysdeps/mach/hurd/sys/param.h: File removed.
36247
36248         * elf/dl-close.c (_dl_close_worker): Add a cast and a comment to the
36249         last change.
36250
36251         * libio/genops.c (_IO_unbuffer_write): Conditionalize locking code on
36252         [_IO_MTSAFE_IO].
36253         * libio/libioP.h [!_IO_MTSAFE_IO && !NOT_IN_libc]
36254         (_IO_acquire_lock, _IO_acquire_lock_clear_flags2, _IO_release_lock):
36255         New macros.
36256
36257         * Makeconfig [$(libc-reentrant) = yes] (libio-mtsafe): New variable.
36258         * libio/Makefile (CPPFLAGS): Append $(libio-mtsafe) unconditionally
36259         rather than -D_IO_MTSAFE_IO conditionally.
36260         * stdio-common/Makefile (CPPFLAGS): Likewise.
36261         * wcsmbs/Makefile (CPPFLAGS): Likewise.
36262         * stdlib/Makefile (CFLAGS-strfmon.c, CFLAGS-strfmon_l.c):
36263         Use $(libio-mtsafe).
36264         * debug/Makefile (CFLAGS-sprintf_chk.c): Use $(libio-mtsafe) instead
36265         of -D_IO_MTSAFE_IO.
36266         (CFLAGS-snprintf_chk.c, CFLAGS-vsprintf_chk.c): Likewise.
36267         (CFLAGS-vsnprintf_chk.c, CFLAGS-asprintf_chk.c): Likewise.
36268         (CFLAGS-vasprintf_chk.c, CFLAGS-obprintf_chk.c): Likewise.
36269         (CFLAGS-dprintf_chk.c, CFLAGS-vdprintf_chk.c): Likewise.
36270         (CFLAGS-printf_chk.c, CFLAGS-fprintf_chk.c): Likewise.
36271         (CFLAGS-vprintf_chk.c, CFLAGS-vfprintf_chk.c): Likewise.
36272         (CFLAGS-gets_chk.c, CFLAGS-fgets_chk.c): Likewise.
36273         (CFLAGS-fgets_u_chk.c, CFLAGS-fread_chk.c): Likewise.
36274         (CFLAGS-fread_u_chk.c): Likewise.
36275         (CFLAGS-swprintf_chk.c, CFLAGS-vswprintf_chk.c): Likewise.
36276         (CFLAGS-wprintf_chk.c, CFLAGS-fwprintf_chk.c): Likewise.
36277         (CFLAGS-vwprintf_chk.c, CFLAGS-vfwprintf_chk.c): Likewise.
36278         (CFLAGS-fgetws_chk.c, CFLAGS-fgetws_u_chk.c): Likewise.
36279         * grp/Makefile (CFLAGS-fgetgrent_r.c, CFLAGS-putgrent.c): Likewise.
36280         * gshadow/Makefile (CFLAGS-fgetsgent_r.c, CFLAGS-putsgent.c): Likewise.
36281         * misc/Makefile (CFLAGS-mntent_r.c): Likewise.
36282         * pwd/Makefile (CFLAGS-fgetpwent_r.c): Likewise.
36283         * shadow/Makefile (CFLAGS-fgetspent_r.c, CFLAGS-putspent.c): Likewise.
36284
36285         * libio/Makefile: Test [$(libc-reentrant) = yes]
36286         instead of [$(filter %REENTRANT, $(defines)) nonempty].
36287
36288         * Makeconfig
36289         [$(libc-reentrant) = yes] (defines): Append -D_LIBC_REENTRANT.
36290         * sysdeps/pthread/configure: File removed.
36291         * sysdeps/pthread/Makeconfig: New file.
36292         * sysdeps/mach/hurd/Makeconfig (libc-reentrant): New variable.
36293         * sysdeps/mach/hurd/configure.in: Don't touch DEFINES here.
36294
36295 2012-08-16  Gary Benson  <gbenson@redhat.com>
36296
36297         * elf/dl-close.c (_dl_close_worker): Also set r->r_map when
36298         unmapping the first object in a namespace.
36299
36300 2012-08-16  Roland McGrath  <roland@hack.frob.com>
36301
36302         * inet/getnetgrent_r.c (internal_setnetgrent): Renamed to ...
36303         (__internal_setnetgrent): ... this.  Add internal_function to
36304         definition.  Add libc_hidden_def.
36305         (setnetgrent): Update caller.
36306         (internal_endnetgrent): Renamed to ...
36307         (__internal_endnetgrent): ... this.  Add internal_function to
36308         definition.  Add libc_hidden_def.
36309         (endnetgrent): Update caller.
36310         (internal_getnetgrent_r): Renamed to ...
36311         (__internal_getnetgrent_r): ... this.  Add internal_function to
36312         definition.  Add libc_hidden_def.
36313         (__getnetgrent_r): Update caller.
36314         * inet/netgroup.h: Update declarations.  Add libc_hidden_proto uses.
36315
36316 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
36317
36318         * stdlib/longlong.h: Update from GCC.
36319
36320 2012-08-16  Roland McGrath  <roland@hack.frob.com>
36321
36322         * stdlib/gmp-impl.h (udiv_qrnnd_preinv): Use __attribute__ ((unused))
36323         on _QL, which is set by umul_ppmm but never used.
36324         * stdio-common/_itoa.c (_itoa): Use __attribute__ ((unused)) on DUMMY
36325         variables, which are set by GMP macros but never used.
36326         * stdio-common/_itowa.c (_itowa): Likewise.
36327         * stdlib/divmod_1.c (mpn_divmod_1): Likewise.
36328         * stdlib/mod_1.c (mpn_mod_1): Likewise.
36329
36330 2012-08-16  Carlos O'Donell  <carlos_odonell@mentor.com>
36331
36332         * sysdeps/sh/ldsodefs.h (ARCH_PLTENTER_MEMBERS) <sh_gnu_pltenter>:
36333         struct La_sh_regs is not constant.
36334         * sysdeps/sparc/ldsodefs.h (ARCH_PLTENTER_MEMBERS)
36335         <sparc32_gnu_pltenter, sparc64_gnu_pltenter>: struct La_sparc32_regs
36336         and struct La_sparc64_regs are not constant.
36337
36338 2012-08-16  Joseph Myers  <joseph@codesourcery.com>
36339
36340         * sysdeps/unix/sysv/linux/kernel-features.h
36341         (__ASSUME_POSIX_TIMERS): Remove.
36342         * sysdeps/unix/sysv/linux/clock_getcpuclockid.c
36343         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36344         * sysdeps/unix/sysv/linux/clock_getres.c [__ASSUME_POSIX_TIMERS]:
36345         Make code unconditional.
36346         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36347         * sysdeps/unix/sysv/linux/clock_gettime.c [__ASSUME_POSIX_TIMERS]:
36348         Make code unconditional.
36349         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36350         * sysdeps/unix/sysv/linux/clock_nanosleep.c
36351         [__ASSUME_POSIX_TIMERS]: Make code unconditional.
36352         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36353         * sysdeps/unix/sysv/linux/clock_settime.c [__ASSUME_POSIX_TIMERS]:
36354         Make code unconditional.
36355         [!__ASSUME_POSIX_TIMERS]: Remove conditional code.
36356         [__ASSUME_POSIX_CPU_TIMERS <= 0 && __NR_clock_settime]
36357         (__libc_missing_posix_timers): Remove.
36358
36359 2012-08-15  Roland McGrath  <roland@hack.frob.com>
36360
36361         * elf/dl-load.c (_dl_map_object_from_fd) [SHARED]: Conditionalize
36362         check of GL(dl_error_catch_tsd) on [_LIBC_REENTRANT].
36363
36364         * bits/libc-lock.h (__rtld_lock_initialize): New macro.
36365
36366         * elf/dl-sym.c: Include <stdlib.h>.
36367
36368         * posix/regcomp.c (init_word_char): Use temporaries to hold the 64-bit
36369         constants, which avoids warnings in 32-bit builds.
36370
36371         * bits/fcntl.h [__USE_POSIX199309 || __USE_UNIX98]:
36372         (O_DSYNC, O_RSYNC): New macros (with NetBSD values).
36373
36374         * misc/lseek.c: File moved to ...
36375         * io/lseek.c: ... here.
36376
36377         * rt/clock_nanosleep.c: Include <time.h>, not <sys/time.h>.
36378
36379         * crypt/sha512.c (sha512_process_block) [!USE_TOTAL128]: Avoid
36380         shifting LEN more than 31 bits at once.
36381
36382 2012-08-15  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
36383
36384         [BZ #14195]
36385         * sysdeps/i386/i686/multiarch/strcmp-sssse3.S: Fix
36386         segmentation fault for a case of two empty input strings.
36387         * string/test-strncasecmp.c (check1): Renamed to...
36388         (bz12205): ...this.
36389         (bz14195): Add new testcase for two empty input strings and N > 0.
36390         (test_main): Call new testcase, adapt for renamed function.
36391
36392 2012-08-15  Andreas Jaeger  <aj@suse.de>
36393
36394         [BZ #14090]
36395         * crypt/md5test2.c: New test, based on test supplied by Serge
36396         Belyshev <belyshev@depni.sinp.msu.ru>.
36397         * crypt/Makefile (xtests): Add md5test-giant..
36398         * crypt/Makefile ($(objpfx)md5test-giant): Add.
36399
36400 2012-08-15  Paul Eggert  <eggert@cs.ucla.edu>
36401
36402         [BZ #14090]
36403         * crypt/md5.c (md5_process_block): Don't assume the buffer
36404         length is less than 2**32.
36405         * crypt/sha512.c (sha512_process_block): Don't assume the buffer
36406         length is less than 2**64.
36407
36408 2012-08-15  Roland McGrath  <roland@hack.frob.com>
36409
36410         * string/str-two-way.h: Include <sys/param.h>.
36411         (MAX): Macro removed.
36412
36413         * sysdeps/x86_64/multiarch/strstr-c.c: Add copyright header.
36414         Move #define and #undef of memmove to just before and after
36415         including <string.h>.
36416
36417         * sysdeps/x86_64/multiarch/memmove.c: Don't include <stddef.h>.
36418         [!NOT_IN_libc]: Move #define and #undef of memmove to just before
36419         and after including <string.h>.  Move declarations of
36420         __memmove_sse2, __memmove_ssse3, and __memmove_ssse3_back
36421         to before #include "string/memmove.c".
36422
36423         * include/dirent.h: Declare __getdirentries.
36424
36425         * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not
36426         using its value, to avoid warnings in the [!_LIBC_REENTRANT] case.
36427
36428 2012-08-14  Mike Frysinger  <vapier@gentoo.org>
36429
36430         * config.h.in (HAVE_CPP_ASM_DEBUGINFO): Delete.
36431         * sysdeps/i386/configure.in: Remove assembler-with-cpp debug check.
36432         * sysdeps/i386/configure: Regenerated.
36433         * sysdeps/i386/sysdep.h (ENTRY): Remove calls to STABS_CURRENT_FILE1,
36434         STABS_CURRENT_FILE, and STABS_FUN.
36435         (END): Remove call to STABS_FUN_END.
36436         (STABS_CURRENT_FILE1): Delete.
36437         (STABS_CURRENT_FILE): Likewise.
36438         (STABS_FUN): Likewise.
36439         (STABS_FUN_END): Likewise.
36440         (STABS_FUN2): Likewise.
36441         * sysdeps/x86_64/configure.in: Remove assembler-with-cpp debug check.
36442         * sysdeps/x86_64/configure: Regenerated.
36443
36444 2012-08-14  Roland McGrath  <roland@hack.frob.com>
36445
36446         * elf/dl-open.c: Include <atomic.h>.
36447         * elf/dl-lookup.c: Likewise.
36448
36449 2012-08-14  Joseph Myers  <joseph@codesourcery.com>
36450
36451         * sysdeps/unix/sysv/linux/kernel-features.h
36452         (__ASSUME_CLONE_THREAD_FLAGS): Remove.
36453         * sysdeps/unix/sysv/linux/s390/system.c (FORK): Define
36454         unconditionally.
36455         * sysdeps/unix/sysv/linux/sparc/system.c (FORK): Define
36456         unconditionally.
36457         * sysdeps/unix/sysv/linux/system.c [!FORK] (FORK): Do not
36458         condition on __ASSUME_CLONE_THREAD_FLAGS.
36459
36460 2012-08-14  Andreas Jaeger  <aj@suse.de>
36461
36462         * sysdeps/i386/fpu/libm-test-ulps: Update.
36463
36464 2012-08-13  Maxim Kuvyrkov  <maxim@codesourcery.com>
36465
36466         * include/atomic.h (atomic_exchange_and_add): Split into ...
36467         (atomic_exchange_and_add_acq, atomic_exchange_and_add_rel): ... these.
36468         New atomic macros.
36469
36470 2012-08-13  Markus Trippelsdorf  <markus@trippelsdorf.de>
36471
36472         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
36473
36474 2012-08-13  Jeff Law <law@redhat.com>
36475
36476         * manual/stdio.texi (snprintf): Clarify handling of the trailing
36477         null byte in the output string.
36478
36479 2012-08-10  Joseph Myers  <joseph@codesourcery.com>
36480
36481         * sysdeps/unix/sysv/linux/kernel-features.h
36482         (__LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL): Define.
36483         [__LINUX_KERNEL_VERSION >= __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL]
36484         (__ASSUME_ARG_MAX_STACK_BASED): Define.
36485         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf)
36486         [__LINUX_KERNEL_VERSION < 0x020617]: Change condition to
36487         !__ASSUME_ARG_MAX_STACK_BASED.  Compare version with
36488         __LINUX_ARG_MAX_STACK_BASED_MIN_KERNEL.
36489
36490 2012-08-09  Jeff Law <law@redhat.com>
36491
36492         [BZ #13939]
36493         * malloc.c/arena.c (reused_arena): New parameter, avoid_arena.
36494         When avoid_arena is set, don't retry in the that arena.  Pick the
36495         next one, whatever it might be.
36496         (arena_get2): New parameter avoid_arena, pass through to reused_arena.
36497         (arena_lock): Pass in new parameter to arena_get2.
36498         * malloc/malloc.c (__libc_memalign): Pass in new parameter to
36499         arena_get2.
36500         (__libc_malloc): Unify retrying after main arena failure with
36501         __libc_memalign version.
36502         (__libc_valloc, __libc_pvalloc, __libc_calloc): Likewise.
36503
36504 2012-08-09  H.J. Lu  <hongjiu.lu@intel.com>
36505
36506         [BZ #14166]
36507         * sysdeps/i386/i686/multiarch/strstr-c.c (strstr): Redefined
36508         to __redirect_strstr.
36509         (__strstr_sse42): Use typeof __redirect_strstr.
36510         (__strstr_ia32): Likewise.
36511         (__libc_strstr): New prototype.
36512         (strstr): Renamed to ...
36513         (__libc_strstr): This.
36514         (strstr): New strong alias of __libc_strstr.
36515         * sysdeps/x86_64/multiarch/strstr-c.c: Likewise.
36516         * sysdeps/unix/sysv/linux/x86_64/time.c (time): Redefined to
36517         __redirect_time.
36518         Include <time.h>.
36519         (__libc_time): New prototype.
36520         (time_ifunc): Replace time with __libc_time.
36521         (time): New strong alias and hidden definition of __libc_time.
36522         (__GI_time): Remove strong alias.
36523         * sysdeps/x86_64/multiarch/memmove.c: Don't include <string.h>.
36524         Include <stddef.h>.
36525         (memmove): Redefined to __redirect_memmove.
36526         (__memmove_sse2): Use typeof __redirect_memmove.
36527         (__memmove_ssse3): Likewise.
36528         (__memmove_ssse3_back): Likewise.
36529         (__libc_memmove): New prototype.
36530         (memmove): Renamed to ...
36531         (__libc_memmove): This.
36532         (memmove): New strong alias of __libc_memmove.
36533
36534 2012-08-08  Mark Salter  <msalter@redhat.com>
36535
36536         * elf/elf.h
36537         (R_MN10300_TLS_GD): Define.
36538         (R_MN10300_TLS_LD): Likewise.
36539         (R_MN10300_TLS_LDO): Likewise.
36540         (R_MN10300_TLS_GOTIE): Likewise.
36541         (R_MN10300_TLS_IE): Likewise.
36542         (R_MN10300_TLS_LE): Likewise.
36543         (R_MN10300_TLS_DTPMOD): Likewise.
36544         (R_MN10300_TLS_DTPOFF): Likewise.
36545         (R_MN10300_TLS_TPOFF): Likewise.
36546         (R_MN10300_SYM_DIFF): Likewise.
36547         (R_MN10300_ALIGN): Likewise.
36548         (R_MN10300_NUM): Update.
36549
36550 2012-08-08  Joseph Myers  <joseph@codesourcery.com>
36551
36552         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_TGKILL):
36553         Remove.
36554
36555 2012-08-08  Roland McGrath  <roland@hack.frob.com>
36556
36557         * sysdeps/posix/fdopendir.c: Include <stddef.h>.
36558
36559         * sysdeps/unix/sysv/linux/readdir64_r.c: Update #include for
36560         sysdeps/unix -> sysdeps/posix move.
36561         * sysdeps/unix/sysv/linux/i386/readdir64_r.c: Likewise.
36562
36563 2012-08-07      Allan McRae     <allan@archlinux.org>
36564
36565         [BZ #14303]
36566         * sunrpc/rpc_main.c (SVR4_CPP): Remove.
36567         (SUNOS_CPP): Likewise.
36568         (find_cpp): Fall back to selecting system cpp when /lib/cpp is
36569         not found.
36570         (open_input): Call CPP using execvp.
36571
36572 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
36573
36574         * sysdeps/unix/sysv/linux/kernel-features.h
36575         (__ASSUME_PROT_GROWSUPDOWN): Remove.
36576         (__ASSUME_NO_CLONE_DETACHED): Likewise.
36577         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
36578         (__ASSUME_WAITID_SYSCALL): Likewise.
36579         * sysdeps/unix/sysv/linux/dl-execstack.c
36580         (_dl_make_stack_executable) [PROT_GROWSDOWN || PROT_GROWSUP]: Make
36581         code unconditional.
36582         (_dl_make_stack_executable) [!__ASSUME_PROT_GROWSUPDOWN]: Remove
36583         conditional code.
36584         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS)
36585         [__ASSUME_GETDENTS32_D_TYPE]: Make code unconditional.
36586         (__GETDENTS) [!__ASSUME_GETDENTS32_D_TYPE]: Remove conditional
36587         code.
36588         * sysdeps/unix/sysv/linux/waitid.c [__NR_waitid]: Make code
36589         unconditional.
36590         [__ASSUME_WAITID_SYSCALL]: Likewise.
36591         [!__ASSUME_WAITID_SYSCALL]: Remove conditional code.
36592
36593 2012-08-07  Roland McGrath  <roland@hack.frob.com>
36594
36595         * sysdeps/unix/closedir.c: Renamed to ...
36596         * sysdeps/posix/closedir.c: ... here.
36597         * sysdeps/unix/dirfd.c: Renamed to ...
36598         * sysdeps/posix/dirfd.c: ... here.
36599         * sysdeps/unix/dirstream.h: Renamed to ...
36600         * sysdeps/posix/dirstream.h: ... here.
36601         * sysdeps/unix/fdopendir.c: Renamed to ...
36602         * sysdeps/posix/fdopendir.c: ... here.
36603         * sysdeps/unix/opendir.c: Renamed to ...
36604         * sysdeps/posix/opendir.c: ... here.
36605         * sysdeps/unix/readdir.c: Renamed to ...
36606         * sysdeps/posix/readdir.c: ... here.
36607         * sysdeps/unix/readdir_r.c: Renamed to ...
36608         * sysdeps/posix/readdir_r.c: ... here.
36609         * sysdeps/unix/rewinddir.c: Renamed to ...
36610         * sysdeps/posix/rewinddir.c: ... here.
36611         * sysdeps/unix/seekdir.c: Renamed to ...
36612         * sysdeps/posix/seekdir.c: ... here.
36613         * sysdeps/unix/telldir.c: Renamed to ...
36614         * sysdeps/posix/telldir.c: ... here.
36615         * sysdeps/unix/sysv/linux/opendir.c: Update #include.
36616         * sysdeps/unix/sysv/linux/readdir64.c: Likewise.
36617         * sysdeps/unix/sysv/linux/i386/readdir64.c: Likewise.
36618         * sysdeps/unix/sysv/linux/wordsize-64/readdir.c: Likewise.
36619
36620         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h: Renamed to ...
36621         * bits/fcntl.h: ... here.
36622
36623         * sysdeps/unix/bsd/bsd4.4/bits/fcntl.h (O_NOCTTY): Define to 0x8000,
36624         not 0.
36625         (O_ASYNC, O_FSYNC, O_SYNC): Move outside [__USE_MISC].
36626         [__USE_XOPEN2K8] (O_DIRECTORY, O_NOFOLLOW, O_CLOEXEC): New macros.
36627         (FCREAT, FEXCL, FTRUNC, FNOCTTY, FNONBLOCK): Macros removed.
36628         (struct flock): Move l_start, l_len to the beginning.
36629         Use __pid_t for l_pid.
36630         [__USE_XOPEN2K] (POSIX_FADV_NORMAL, POSIX_FADV_RANDOM): New macros.
36631         [__USE_XOPEN2K] (POSIX_FADV_SEQUENTIAL, POSIX_FADV_WILLNEED): Likewise.
36632         [__USE_XOPEN2K] (POSIX_FADV_DONTNEED, POSIX_FADV_NOREUSE): Likewise.
36633         (F_GETLK64, F_SETLK64, F_SETLKW64): New macros.
36634         [__USE_XOPEN2K8] (F_DUPFD_CLOEXEC): New macro.
36635         [__USE_LARGEFILE64] (struct flock64): New type.
36636         (F_GETOWN, F_SETOWN): Also define for [__USE_XOPEN2K8].
36637
36638         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h: Renamed to ...
36639         * bits/dirent.h: ... here.
36640
36641         * sysdeps/unix/bsd/bsd4.4/bits/dirent.h
36642         [__INO_T_MATCHES_INO64_T] (_DIRENT_MATCHES_DIRENT64): New macro.
36643
36644 2012-08-07  Joseph Myers  <joseph@codesourcery.com>
36645
36646         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
36647         Change from 2.6.0 to 2.6.16.
36648         * sysdeps/unix/sysv/linux/configure: Regenerated.
36649         * sysdeps/unix/sysv/linux/kernel-features.h
36650         (__ASSUME_POSIX_CPU_TIMERS): Define unconditionally.
36651         (__ASSUME_TGKILL): Define conditional on architectures, not kernel
36652         version.
36653         (__ASSUME_UTIMES): Likewise.
36654         (__ASSUME_CLONE_STOPPED): Remove.
36655         (__ASSUME_FADVISE64_64_SYSCALL): Define conditional on
36656         architectures, not kernel version.
36657         (__ASSUME_PROT_GROWSUPDOWN): Define unconditionally.
36658         (__ASSUME_NO_CLONE_DETACHED): Likewise.
36659         (__ASSUME_GETDENTS32_D_TYPE): Likewise.
36660         (__ASSUME_WAITID_SYSCALL): Likewise.
36661         [__sparc__ && __arch64__] (__ASSUME_STAT64_SYSCALL): Do not
36662         condition definition on __LINUX_KERNEL_VERSION >= 0x02060c.
36663         * README: State 2.6.16 as minimum Linux kernel version.  Do not
36664         refer to older versions.
36665
36666 2012-08-06  Roland McGrath  <roland@hack.frob.com>
36667
36668         * dirent/alphasort.c [_DIRENT_MATCHES_DIRENT64]:
36669         Define alphasort64 as an alias.
36670         * dirent/versionsort.c [_DIRENT_MATCHES_DIRENT64]:
36671         Define versionsort64 as an alias.
36672         * dirent/scandir.c [_DIRENT_MATCHES_DIRENT64]:
36673         Define scandir64 as an alias.
36674         * dirent/scandirat.c [_DIRENT_MATCHES_DIRENT64]:
36675         Define scandirat64 as an alias.
36676         * dirent/alphasort64.c (alphasort64):
36677         Conditionalize on [!_DIRENT_MATCHES_DIRENT64].
36678         * dirent/versionsort64.c: Likewise.
36679         * dirent/scandir64.c: Likewise.
36680         * dirent/scandirat64.c: Likewise.
36681         * sysdeps/wordsize-64/alphasort.c: File removed.
36682         * sysdeps/wordsize-64/alphasort64.c: File removed.
36683         * sysdeps/wordsize-64/scandir.c: File removed.
36684         * sysdeps/wordsize-64/scandir64.c: File removed.
36685         * sysdeps/wordsize-64/scandirat.c: File removed.
36686         * sysdeps/wordsize-64/scandirat64.c: File removed.
36687         * sysdeps/wordsize-64/versionsort.c: File removed.
36688         * sysdeps/wordsize-64/versionsort64.c: File removed.
36689         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: File removed.
36690         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: File removed.
36691         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: File removed.
36692         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: File removed.
36693         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: File removed.
36694         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: File removed.
36695         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: File removed.
36696         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: File removed.
36697
36698         * bits/typesizes.h [__LP64__] (__INO_T_MATCHES_INO64_T): New macros.
36699         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
36700         [__s390x__] (__INO_T_MATCHES_INO64_T): New macro.
36701         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36702         [defined __arch64__ || defined __sparcv9]
36703         (__INO_T_MATCHES_INO64_T): New macro.
36704         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36705         [__x86_64__] (__INO_T_MATCHES_INO64_T): New macro.
36706         * bits/dirent.h (_DIRENT_MATCHES_DIRENT64): New macro.
36707         * sysdeps/unix/sysv/linux/bits/dirent.h
36708         [defined __OFF_T_MATCHES_OFF64_T && defined __INO_T_MATCHES_INO64_T]
36709         (_DIRENT_MATCHES_DIRENT64): New macro.
36710
36711         * io/lockf.c [__OFF_T_MATCHES_OFF64_T]:
36712         Define lockf64 as an alias.
36713         * libio/fseeko.c [__OFF_T_MATCHES_OFF64_T]:
36714         Define fseeko64 as an alias.
36715         * libio/ftello.c [__OFF_T_MATCHES_OFF64_T]:
36716         Define ftello64 as an alias.
36717         * libio/iofgetpos.c [__OFF_T_MATCHES_OFF64_T]:
36718         Define _IO_fgetpos64 and fgetpos64 as aliases.
36719         * libio/iofsetpos.c [__OFF_T_MATCHES_OFF64_T]:
36720         Define _IO_fsetpos64 and fsetpos64 as aliases.
36721         * io/lockf64.c [!__OFF_T_MATCHES_OFF64_T]:
36722         Conditionalize body on this.
36723         * libio/fseeko64.c: Likewise.
36724         * libio/ftello64.c: Likewise.
36725         * libio/iofgetpos64.c: Likewise.
36726         * libio/iofsetpos64.c: Likewise.
36727         * sysdeps/wordsize-64/lockf.c: File removed.
36728         * sysdeps/wordsize-64/lockf64.c: File removed.
36729         * sysdeps/wordsize-64/fseeko.c: File removed.
36730         * sysdeps/wordsize-64/fseeko64.c: File removed.
36731         * sysdeps/wordsize-64/ftello.c: File removed.
36732         * sysdeps/wordsize-64/ftello64.c: File removed.
36733         * sysdeps/wordsize-64/iofgetpos.c: File removed.
36734         * sysdeps/wordsize-64/iofgetpos64.c: File removed.
36735         * sysdeps/wordsize-64/iofsetpos.c: File removed.
36736         * sysdeps/wordsize-64/iofsetpos64.c: File removed.
36737         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: File removed.
36738         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: File removed.
36739         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: File removed.
36740         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: File removed.
36741         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: File removed.
36742         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: File removed.
36743         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: File removed.
36744         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: File removed.
36745         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: File removed.
36746         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: File removed.
36747
36748         * bits/typesizes.h [__LP64__] (__OFF_T_MATCHES_OFF64_T): New macro.
36749         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h:
36750         [__s390x__] (__OFF_T_MATCHES_OFF64_T): New macro.
36751         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
36752         [defined __arch64__ || defined __sparcv9]
36753         (__OFF_T_MATCHES_OFF64_T): New macro.
36754         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h
36755         [__x86_64__] (__OFF_T_MATCHES_OFF64_T): New macro.
36756         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
36757         (__OFF_T_MATCHES_OFF64_T): New macro.
36758
36759 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
36760
36761         * stdlib/secure-getenv.c (__secure_getenv): Replace
36762         GLIBC_2_16 with GLIBC_2_17.
36763
36764 2012-08-06  H.J. Lu  <hongjiu.lu@intel.com>
36765
36766         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Removed.
36767         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
36768
36769 2012-08-03  David S. Miller  <davem@davemloft.net>
36770
36771         * sysdeps/sparc/fpu/libm-test-ulps: Update.
36772
36773 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
36774
36775         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_AT_SECURE):
36776         Remove.
36777         (__ASSUME_CORRECT_SI_PID): Likewise.
36778         (__ASSUME_BRK_PAGE_ROUNDED): Likewise.
36779         (__ASSUME_TMPFS_NAME): Likewise.
36780         * sysdeps/unix/sysv/linux/dl-sysdep.c (frob_brk)
36781         [!__ASSUME_BRK_PAGE_ROUNDED]: Remove conditional code.
36782         * sysdeps/unix/sysv/linux/ldsodefs.h [__ASSUME_AT_SECURE]
36783         (HAVE_AUX_SECURE): Make definition unconditional.
36784         * sysdeps/unix/sysv/linux/shm_open.c (where_is_shmfs)
36785         [!__ASSUME_TMPFS_NAME]: Remove conditional code.
36786
36787 2012-08-03  Roland McGrath  <roland@hack.frob.com>
36788
36789         * sysdeps/mach/hurd/sys/param.h (MAXSYMLINKS): Macro removed.
36790         * sysdeps/mach/hurd/bits/local_lim.h (SYMLOOP_MAX): Macro removed.
36791         * sysdeps/mach/hurd/eloop-threshold.h: New file.
36792         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
36793         __eloop_threshold instead of SYMLOOP_MAX.
36794
36795         * sysdeps/generic/eloop-threshold.h: New file.
36796         * stdlib/canonicalize.c (__realpath): Use __eloop_threshold instead
36797         of MAXSYMLINKS.
36798         * elf/chroot_canon.c (chroot_canon): Likewise.
36799
36800 2012-08-03  Joseph Myers  <joseph@codesourcery.com>
36801
36802         [BZ #13717]
36803         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
36804         Change to 2.6.0 everywhere.
36805         * sysdeps/unix/sysv/linux/configure: Regenerated.
36806         * sysdeps/unix/sysv/linux/kernel-features.h
36807         (__ASSUME_SET_THREAD_AREA_SYSCALL): Remove.
36808         (__ASSUME_CLONE_THREAD_FLAGS): Condition on architectures, not
36809         kernel versions.
36810         (__ASSUME_POSIX_TIMERS): Define unconditionally.
36811         (__ASSUME_FUTEX_REQUEUE): Remove.
36812         (__ASSUME_STATFS64): Define unconditionally.
36813         (__ASSUME_AT_SECURE): Likewise.
36814         (__ASSUME_CORRECT_SI_PID): Likewise.
36815         (__ASSUME_TGKILL): Define without depending on kernel version for
36816         i386.
36817         (__ASSUME_UTIMES): Likewise.
36818         (__ASSUME_SWAPCONTEXT_SYSCALL): Condition on architecture, not
36819         kernel version.
36820         (__ASSUME_BRK_PAGE_ROUNDED): Define unconditionally.
36821         (__ASSUME_TMPFS_NAME): Likewise.
36822         * README: Update reference to Linux kernel versions.
36823
36824 2012-08-02  Marek Polacek  <polacek@redhat.com>
36825
36826         [BZ# 14150]
36827         * configure.in (libc_cv_asm_type_prefix): Remove test.  Replace
36828         libc_cv_asm_type_prefix with %.
36829         * configure: Regenerated.
36830         * include/libc-symbols.h: Remove comment about
36831         ASM_TYPE_DIRECTIVE_PREFIX.  Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
36832         (declare_symbol_alias_1_paste) [__ASSEMBLER__]: Do not define.
36833         (declare_symbol_alias_1_paste_1) [__ASSEMBLER__]: Likewise.
36834         (declare_symbol_alias_1_stringify) [!__ASSEMBLER__]: Likewise.
36835         (declare_symbol_alias_1_stringify_1) [!__ASSEMBLER__]: Likewise.
36836         * elf/tst-unique2mod2.c: Replace ASM_TYPE_DIRECTIVE_PREFIX with %.
36837         [HAVE_ASM_UNIQUE_OBJECT]: Do not define S.
36838         [HAVE_ASM_UNIQUE_OBJECT]: Do not define _S.
36839         * elf/tst-unique2mod1.c: Likewise.
36840         * elf/tst-unique1mod2.c: Likewise.
36841         * elf/tst-unique1mod1.c: Likewise.
36842         * config.h.in: Do not undef ASM_TYPE_DIRECTIVE_PREFIX.
36843         * sysdeps/s390/s390-32/sysdep.h: Do not define ASM_TYPE_DIRECTIVE.
36844         Replace ASM_TYPE_DIRECTIVE with .type.
36845         * sysdeps/s390/s390-64/sysdep.h: Likewise.
36846         * sysdeps/i386/sysdep.h: Likewise.
36847         * sysdeps/x86_64/sysdep.h: Likewise.
36848         * sysdeps/sh/sysdep.h: Likewise.
36849         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
36850         Do not define ASM_TYPE_DIRECTIVE.
36851         * sysdeps/powerpc/sysdep.h: Likewise.
36852         * sysdeps/powerpc/powerpc32/sysdep.h:
36853         Replace ASM_TYPE_DIRECTIVE with .type.
36854         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
36855         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
36856         * sysdeps/i386/fpu/e_powf.S: Likewise.
36857         * sysdeps/i386/fpu/e_expl.S: Likewise.
36858         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
36859         * sysdeps/i386/fpu/e_acosh.S: Likewise.
36860         * sysdeps/i386/fpu/e_pow.S: Likewise.
36861         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
36862         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
36863         * sysdeps/i386/fpu/s_expm1.S: Likewise.
36864         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
36865         * sysdeps/i386/fpu/e_log2.S: Likewise.
36866         * sysdeps/i386/fpu/e_log2l.S: Likewise.
36867         * sysdeps/i386/fpu/e_scalb.S: Likewise.
36868         * sysdeps/i386/fpu/e_powl.S: Likewise.
36869         * sysdeps/i386/fpu/e_log10f.S: Likewise.
36870         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
36871         * sysdeps/i386/fpu/e_logl.S: Likewise.
36872         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
36873         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
36874         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
36875         * sysdeps/i386/fpu/e_log2f.S: Likewise.
36876         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
36877         * sysdeps/i386/fpu/e_log.S: Likewise.
36878         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
36879         * sysdeps/i386/fpu/e_logf.S: Likewise.
36880         * sysdeps/i386/fpu/e_log10l.S: Likewise.
36881         * sysdeps/i386/fpu/e_atanh.S: Likewise.
36882         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
36883         * sysdeps/i386/fpu/e_log10.S: Likewise.
36884         * sysdeps/i386/fpu/s_frexp.S: Likewise.
36885         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
36886         * sysdeps/i386/fpu/s_asinh.S: Likewise.
36887         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
36888         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
36889         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: Likewise.
36890         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
36891         * sysdeps/i386/i686/strtok.S: Likewise.
36892         * sysdeps/i386/i386-mcount.S: Likewise.
36893         * sysdeps/i386/strtok.S: Likewise.
36894         * sysdeps/x86_64/fpu/e_expl.S: Likewise.
36895         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
36896         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
36897         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
36898         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
36899         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
36900         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
36901         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
36902         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
36903         * sysdeps/x86_64/_mcount.S: Likewise.
36904         * sysdeps/x86_64/strtok.S: Likewise.
36905         * sysdeps/sh/_mcount.S: Likewise.
36906
36907 2012-08-01  Roland McGrath  <roland@hack.frob.com>
36908
36909         * libio/iofopen.c: Include <fcntl.h>.
36910         [_LIBC] [!defined O_LARGEFILE || O_LARGEFILE == 0]
36911         (_IO_fopen64, fopen64): Define as aliases.
36912         * libio/iofopen64.c: Include <fcntl.h>.
36913         [!defined _LIBC || (defined O_LARGEFILE && O_LARGEFILE != 0)]:
36914         Conditionalize body on this.
36915         * sysdeps/wordsize-64/iofopen.c: File removed.
36916         * sysdeps/wordsize-64/iofopen64.c: File removed.
36917
36918 2012-08-01  Marek Polacek  <polacek@redhat.com>
36919
36920         * libc/Makeconfig: Use elf in place of binfmt-subdir.
36921         Use dlfcn directly instead of a variable.
36922         (binfmt-subdir): Do not define.
36923         (dlfcn): Likewise.
36924
36925 2012-08-01  Joseph Myers  <joseph@codesourcery.com>
36926
36927         * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FCNTL64):
36928         Remove all definitions.
36929         * sysdeps/unix/sysv/linux/i386/fcntl.c: Do not include
36930         <kernel-features.h>.
36931         [!__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
36932         (miss_F_GETOWN_EX): Remove all definitions.
36933         [NO_CANCELLATION && !__ASSUME_FCNTL64] (__fcntl_nocancel): Remove
36934         macro definition.
36935         [!__ASSUME_FCNTL64]: Remove conditional code.
36936         [__ASSUME_FCNTL64]: Make code unconditional.
36937         * sysdeps/unix/sysv/linux/i386/lockf64.c: Do not include
36938         <kernel-features.h>.
36939         [__NR_fcntl64 && !__ASSUME_FCNTL64] (__have_no_fcntl64): Remove.
36940         (lockf64) [!__ASSUME_FCNTL64]: Remove conditional code.
36941         (lockf64) [__NR_fcntl64]: Make code unconditional.
36942         (lockf64) [__ASSUME_FCNTL64]: Likewise.
36943
36944         * sysdeps/unix/sysv/linux/kernel-features.h
36945         (__ASSUME_VFORK_SYSCALL): Remove all definitions.
36946         * sysdeps/unix/sysv/linux/i386/vfork.S (__vfork) [__NR_vfork]:
36947         Make code unconditional.
36948         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36949         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36950         * sysdeps/unix/sysv/linux/powerpc/powerpc32/vfork.S (__vfork)
36951         [__NR_vfork]: Make code unconditional.
36952         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36953         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36954         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork)
36955         [__NR_vfork]: Make code unconditional.
36956         (__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
36957         (__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
36958
36959 2012-08-01  Roland McGrath  <roland@hack.frob.com>
36960
36961         * sysdeps/generic/sys/param.h (NGROUPS): Define only if [NGROUPS_MAX].
36962         (MAXSYMLINKS): Define only if [SYMLOOP_MAX].
36963
36964         * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36965         Define mkstemp64 as an alias.
36966         * misc/mkstemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36967         Define mkstemps64 as an alias.
36968         * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36969         Define mkostemp64 as an alias.
36970         * misc/mkostemps.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
36971         Define mkostemps64 as an alias.
36972         * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
36973         Conditionalize body on this.
36974         * misc/mkostemp64.c: Likewise.
36975         * misc/mkostemps64.c: Likewise.
36976         * misc/mkstemps64.c: Likewise.
36977         * sysdeps/wordsize-64/mkstemp64.c: File removed.
36978         * sysdeps/wordsize-64/mkostemp64.c: File removed.
36979         * sysdeps/wordsize-64/mkostemp.c: File removed.
36980         * sysdeps/wordsize-64/mkstemp.c: File removed.
36981         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
36982         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
36983         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
36984         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
36985
36986         [BZ #14138]
36987         * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
36988         * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
36989         * sysdeps/unix/sysv/linux/powerpc/getrlimit.c: File removed.
36990         * sysdeps/unix/sysv/linux/sh/getrlimit.c: File removed.
36991
36992         * sysdeps/unix/make-syscalls.sh: Emit uses of the versioned_symbol and
36993         compat_symbol macros from <shlib-compat.h> rather than the underlying
36994         default_symbol_version and symbol_version macros, so that DEFAULT
36995         lines in shlib-versions are respected.
36996         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Likewise.
36997
36998 2012-08-01  Florian Weimer  <fweimer@redhat.com>
36999
37000         * posix/unistd.h (setuid, setreuid, seteuid, setresuid):
37001         Declare with warn_unused_result.
37002         (setgid, setregid, setegid, setresgid): Likewise.
37003         * sysdeps/unix/sysv/linux/sys/fsuid.h (setfsuid, setfsgid):
37004         Likewise.
37005         * WUR-REPORT: Remove set*id functions.
37006
37007 2012-07-31  Pino Toscano  <toscano.pino@tiscali.it>
37008
37009         * sysdeps/mach/hurd/renameat.c: New file, mostly copied from rename.c.
37010
37011 2012-07-31  Roland McGrath  <roland@hack.frob.com>
37012
37013         [BZ #10191]
37014         * include/sys/socket.h (__libc_accept, __libc_accept4):
37015         Add attribute_hidden.
37016         * socket/accept4.c (__libc_accept4): Remove libc_hidden_def.
37017
37018         * nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Conditionalize
37019         use of PTR_MANGLE.
37020         * inet/getnetgrent_r.c (setup): Likewise.
37021
37022         * sysdeps/generic/siglist.h: Put SIGWINCH under #ifdef.
37023
37024 2012-07-31  David S. Miller  <davem@davemloft.net>
37025
37026         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37027
37028 2012-07-31  Joseph Myers  <joseph@codesourcery.com>
37029
37030         [BZ #13629]
37031         * math/s_clog.c (__clog): Use __log1p if larger part has absolute
37032         value between 1.0 and 2.0 and smaller part has absolute value less
37033         than 1.0.
37034         * math/s_clog10.c (__clog10): Likewise.
37035         * math/s_clog10f.c (__clog10f): Likewise.
37036         * math/s_clog10l.c (__clog10l): Likewise.
37037         * math/s_clogf.c (__clogf): Likewise.
37038         * math/s_clogl.c (__clogl): Likewise.
37039         * math/libm-test.inc (clog_test): Add more tests.
37040         (clog10_test): Likewise.
37041         * sysdeps/i386/fpu/libm-test-ulps: Update.
37042         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37043
37044 2012-07-31  Florian Weimer  <fweimer@redhat.com>
37045
37046         * stdlib/tst-secure-getenv.c: Use printf for error reporting.
37047         Exit with zero in case no suitable GID is found, and write a
37048         message to standard error.
37049
37050 2012-07-30  Roland McGrath  <roland@hack.frob.com>
37051
37052         * sysdeps/generic/sys/param.h (MAXSYMLINKS): Define to SYMLOOP_MAX
37053         rather than to 1.
37054         (NBBY, NGROUPS, CANBSIZ, NCARGS): New macros.
37055         (MAXPATHLEN): Removed.
37056         (NOGROUP, NODEV): New macros.
37057         (setbit, clrbit, isset, isclr): New macros.
37058         (howmany, roundup, powerof2): New macros.
37059         (DEV_BSIZE): New macro.
37060
37061         * include/unistd.h: Add attribute_hidden on __libc_pwrite64.
37062         * sysdeps/posix/pwrite64.c: Remove libc_hidden_def (__libc_pwrite64).
37063
37064         * sysdeps/ieee754/k_standard.c (__kernel_standard_l): Conditionalize
37065         definition on [!__NO_LONG_DOUBLE_MATH].
37066
37067         * nss/nsswitch.c (__nss_lookup_function): Conditionalize use of
37068         PTR_MANGLE and PTR_DEMANGLE.
37069
37070         * socket/accept4.c (accept4): Rename to __libc_accept4.
37071         Define accept4 as a weak alias.
37072
37073         * sysdeps/posix/getcwd.c (__getcwd): Conditionalize d_type field use
37074         on [_DIRENT_HAVE_D_TYPE].
37075         * io/ftw.c (ftw_dir): Likewise.
37076
37077         * io/xmknod.c (__xmknod): Don't check PATH for being null.
37078
37079         * libio/genops.c (flush_cleanup): Move inside [_IO_MTSAFE_IO].
37080
37081         * bits/signum.h (SIGSTOP, SIGCONT, SIGTSTP, SIGTTIN, SIGTTOU, SIGCHLD):
37082         Use the BSD numbers rather than the arbitrary ones we had.
37083         (SIGBUS, SIGIO, SIGPOLL, SIGPROF, SIGSYS): New macros.
37084         (SIGTRAP, SIGURG, SIGUSR1, SIGUSR2, SIGVTALRM): New macros.
37085         (SIGXCPU, SIGXFSZ): New macros.
37086         (_NSIG): Now 32.
37087
37088         * elf/rtld.c (_rtld_global): Conditionalize .dl_ns[LM_ID_BASE]
37089         initializer on [_LIBC_REENTRANT].
37090
37091         * iconv/iconv_charmap.c (charmap_conversion): Move ST, ADDR
37092         definitions inside [_POSIX_MAPPED_FILES].
37093
37094         * posix/regex.c: Include <sys/param.h> for MIN/MAX.
37095
37096         * dirent/opendir.c: Include <fcntl.h>.
37097
37098         * bits/libc-lock.h (__libc_setspecific): Evaluate arguments.
37099         (__libc_getspecific): Likewise.
37100         (__libc_key_create): Likewise.
37101
37102         * stdio-common/tmpfile64.c: Include <fcntl.h> first.
37103         [defined O_LARGEFILE && O_LARGEFILE != 0]: Conditionalize on this.
37104         * stdio-common/tmpfile.c [!defined O_LARGEFILE || O_LARGEFILE == 0]
37105         (tmpfile64): Define as alias.
37106         * sysdeps/wordsize-64/tmpfile.c: File removed.
37107         * sysdeps/wordsize-64/tmpfile64.c: File removed.
37108         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: File removed.
37109         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: File removed.
37110
37111         * stdio-common/vfscanf.c: Include <stdbool.h>.
37112         * nss/makedb.c: Likewise.
37113         * stdio-common/_i18n_number.h: Likewise.
37114         * argp/argp-help.c: Likewise.
37115         * posix/wordexp.c: Likewise.
37116         * sysdeps/posix/spawni.c: Likewise.
37117         * nss/nss_files/files-initgroups.c: Likewise.
37118         * stdio-common/reg-modifier.c: Include <stdlib.h>.
37119         * nss/nss_files/files-initgroups.c: Likewise.
37120         * nss/nss_db/db-netgrp.c: Likewise.
37121         * nss/nss_db/db-initgroups.c: Likewise.
37122         * io/fchmodat.c: Include <sys/stat.h>.
37123
37124         * sysdeps/generic/ldsodefs.h (struct rtld_global): Use
37125         __rtld_lock_define_recursive macro instead of __rtld_lock_recursive_t.
37126
37127         * intl/loadmsgcat.c (_nl_load_domain): Don't use MAP_FAILED outside of
37128         [HAVE_MMAP].
37129
37130         * bits/stat.h: Fix inclusion guard to accept _FCNTL_H too.
37131         Add multiple inclusion protection.
37132
37133 2012-07-27  David S. Miller  <davem@davemloft.net>
37134
37135         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37136
37137 2012-07-27  Gary Benson  <gbenson@redhat.com>
37138
37139         [BZ #14298]
37140         * elf/rtld.c: Include <stap-probe.h>.
37141         (dl_main): Added static probes "init_start" and "init_complete".
37142         * elf/dl-load.c: Include <stap-probe.h>.
37143         (lose): Take new parameter "nsid".
37144         Added static probe "map_failed".
37145         (_dl_map_object_from_fd): Pass namespace id to lose.
37146         Added static probe "map_start".
37147         (open_verify): Pass namespace id to lose.
37148         * elf/dl-open.c: Include <stap-probe.h>.
37149         (dl_open_worker) Added static probes "map_complete", "reloc_start"
37150         and "reloc_complete".
37151         * elf/dl-close.c: Include <stap-probe.h>.
37152         (_dl_close_worker): Added static probes "unmap_start" and
37153         "unmap_complete".
37154         * elf/rtld-debugger-interface.txt: New file documenting the above.
37155
37156 2012-07-26  Roland McGrath  <roland@hack.frob.com>
37157
37158         * sunrpc/rpc_hout.c (pdeclaration): Call f_print with a "%s" format
37159         rather than a string variable.
37160         * sunrpc/rpc_main.c (h_output): Likewise.
37161         * sunrpc/rpc_svcout.c (write_real_program): Likewise.
37162
37163 2012-07-26  Pino Toscano  <toscano.pino@tiscali.it>
37164
37165         * inet/check_native.c: New file.
37166
37167 2012-07-26  Joseph Myers  <joseph@codesourcery.com>
37168
37169         [BZ #13629]
37170         * math/s_clog.c (__clog): Use __log1p or direct log1p calculation
37171         if larger part has absolute value 1.0.
37172         * math/s_clog10.c (__clog10): Likewise.
37173         * math/s_clog10f.c (__clog10f): Likewise.
37174         * math/s_clog10l.c (__clog10l): Likewise.
37175         * math/s_clogf.c (__clogf): Likewise.
37176         * math/s_clogl.c (__clogl): Likewise.
37177         * math/libm-test.inc (clog_test): Add more tests.
37178         (clog10_test): Likewise.
37179         * sysdeps/i386/fpu/libm-test-ulps: Update.
37180         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37181
37182         * elf/tst-auditmod1.c (pltenter): Remove all definitions of macro.
37183         (pltexit): Likewise.
37184         (La_regs): Likewise.
37185         (La_retval): Likewise.
37186         (int_retval): Likewise.
37187         Update #error for removed macros to refer only to definitions in
37188         tst-audit.h.
37189         * elf/tst-auditmod3b.c (pltenter): Remove all definitions of
37190         macro.
37191         (pltexit): Likewise.
37192         (La_regs): Likewise.
37193         (La_retval): Likewise.
37194         (int_retval): Likewise.
37195         * elf/tst-auditmod4b.c (pltenter): Remove all definitions of
37196         macro.
37197         (pltexit): Likewise.
37198         (La_regs): Likewise.
37199         (La_retval): Likewise.
37200         (int_retval): Likewise.
37201         * elf/tst-auditmod5b.c (pltenter): Remove all definitions of
37202         macro.
37203         (pltexit): Likewise.
37204         (La_regs): Likewise.
37205         (La_retval): Likewise.
37206         (int_retval): Likewise.
37207         * elf/tst-auditmod6b.c (pltenter): Remove all definitions of
37208         macro.
37209         (pltexit): Likewise.
37210         (La_regs): Likewise.
37211         (La_retval): Likewise.
37212         (int_retval): Likewise.
37213         * elf/tst-auditmod6c.c (pltenter): Remove all definitions of
37214         macro.
37215         (pltexit): Likewise.
37216         (La_regs): Likewise.
37217         (La_retval): Likewise.
37218         (int_retval): Likewise.
37219         * elf/tst-auditmod7b.c (pltenter): Remove all definitions of
37220         macro.
37221         (pltexit): Likewise.
37222         (La_regs): Likewise.
37223         (La_retval): Likewise.
37224         (int_retval): Likewise.
37225         * sysdeps/generic/tst-audit.h: Update comment to refer only to
37226         macro definitions in tst-audit.h.
37227         * sysdeps/i386/tst-audit.h: New file.
37228         * sysdeps/powerpc/powerpc32/tst-audit.h: Likewise.
37229         * sysdeps/powerpc/powerpc64/tst-audit.h: Likewise.
37230         * sysdeps/s390/s390-32/tst-audit.h: Likewise.
37231         * sysdeps/s390/s390-64/tst-audit.h: Likewise.
37232         * sysdeps/sh/tst-audit.h: Likewise.
37233         * sysdeps/sparc/sparc32/tst-audit.h: Likewise.
37234         * sysdeps/sparc/sparc64/tst-audit.h: Likewise.
37235         * sysdeps/x86_64/tst-audit.h: Likewise.
37236
37237 2012-07-26  Andreas Jaeger  <aj@suse.de>
37238
37239         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Add __THROW for
37240         ptrace.
37241
37242         * sysdeps/unix/sysv/linux/sys/ptrace.h (__ptrace_eventcodes): Add
37243         new value PTRACE_EVENT_SECCOMP from Linux 3.5.
37244         (__ptrace_setoptions): Add new value PTRACE_O_TRACESECCOMP, adjust
37245         PTRACE_O_MASK.
37246         * sysdeps/unix/sysv/linux/s390/bits/ptrace.h: Likewise.
37247         * sysdeps/unix/sysv/linux/sparc/bits/ptrace.h: Likewise.
37248         * sysdeps/unix/sysv/linux/powerpc/bits/ptrace.h: Likewise.
37249
37250         * sysdeps/unix/sysv/linux/sys/epoll.h (EPOLLWAKEUP): Add new
37251         value.
37252
37253         * sysdeps/unix/sysv/linux/bits/siginfo.h (siginfo_t): Add
37254         _sigsys.
37255         (si_call_addr, si_syscall, si_arch): Define new macro.
37256         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h (siginfo_t): Add
37257         _sigsys.
37258         (si_call_addr, si_syscall, si_arch): Define new marcro.
37259         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (siginfo_t): Add
37260         _sigsys.
37261         (si_call_addr, si_syscall, si_arch): Define new macro.
37262         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h (struct): Add
37263         _sigsys.
37264         (si_call_addr, si_syscall, si_arch): Define new macro.
37265
37266 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
37267
37268         [BZ #13717]
37269         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
37270         Change to 2.4.21 where previously 2.4.1.
37271         * sysdeps/unix/sysv/linux/configure: Regenerated.
37272         * sysdeps/unix/sysv/linux/kernel-features.h [(__powerpc__ ||
37273         __sh__) && !__powerpc64__] (__ASSUME_FCNTL64): Do not condition on
37274         Linux kernel version.
37275         (__ASSUME_STD_AUXV): Remove.
37276         [__powerpc__] (__ASSUME_VFORK_SYSCALL): Do not condition on Linux
37277         kernel version.
37278         [__powerpc__ && !__powerpc64] (__ASSUME_MMAP2_SYSCALL): Likewise.
37279         (__ASSUME_NEW_PRCTL_SYSCALL): Remove.
37280         (__ASSUME_FIXED_CLONE_SYSCALL): Likewise.
37281         (__ASSUME_NEW_RT_SIGRETURN_SYSCALL): Likewise.
37282         (__ASSUME_NETLINK_SUPPORT): Likewise.
37283         * nscd/gai.c [NEED_NETLINK && __ASSUME_NETLINK_SUPPORT == 0]
37284         (__no_netlink_support): Remove conditional definition.
37285         * sysdeps/unix/sysv/linux/check_pf.c (__no_netlink_support):
37286         Remove.
37287         (__check_pf) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
37288         [__ASSUME_NETLINK_SUPPORT]: Make code unconditional.
37289         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_NETLINK_SUPPORT]
37290         (if_nameindex_ioctl): Remove.
37291         (if_nameindex_netlink): Do not handle __no_netlink_support.
37292         (if_nameindex) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
37293         code.
37294         * sysdeps/unix/sysv/linux/ifaddrs.c [!__ASSUME_NETLINK_SUPPORT]:
37295         Remove conditional code.
37296         (__netlink_open) [!__ASSUME_NETLINK_SUPPORT]: Remove conditional
37297         code.
37298         (getifaddrs_internal) [__ASSUME_NETLINK_SUPPORT]: Make code
37299         unconditional.
37300         [!__ASSUME_NETLINK_SUPPORT]: Remove conditional code.
37301         [__ASSUME_NETLINK_SUPPORT] (freeifaddrs): Make code unconditional.
37302         * sysdeps/unix/sysv/linux/netlinkaccess.h (__no_netlink_support):
37303         Remove.
37304         * sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
37305         [!__ASSUME_STD_AUXV]: Remove conditional code.
37306         * sysdeps/unix/sysv/linux/powerpc/powerpc32/clone.S (__clone)
37307         [!__ASSUME_FIXED_CLONE_SYSCALL]: Remove conditional code.
37308         [__ASSUME_FIXED_CLONE_SYSCALL]: Make code unconditional.
37309         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_mask.c
37310         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_mask_handler): Remove.
37311         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
37312         code.
37313         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
37314         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/fe_nomask.c
37315         [!__ASSUME_NEW_PRCTL_SYSCALL] (fe_nomask_handler): Remove.
37316         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
37317         conditional code.
37318         [__ASSUME_NEW_PRCTL_SYSCALL]: Make code unconditional.
37319         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_mask.c
37320         (__fe_mask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove conditional
37321         code.
37322         * sysdeps/unix/sysv/linux/powerpc/powerpc64/fpu/fe_nomask.c
37323         (__fe_nomask_env) [!__ASSUME_NEW_PRCTL_SYSCALL]: Remove
37324         conditional code.
37325         * sysdeps/unix/sysv/linux/powerpc/powerpc64/getcontext.S
37326         (__novec_getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37327         code unconditional.
37328         (__novec_getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37329         conditional code.
37330         (__getcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37331         unconditional.
37332         (__getcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37333         conditional code.
37334         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
37335         (__makecontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37336         unconditional.
37337         (__makecontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37338         conditional code.
37339         * sysdeps/unix/sysv/linux/powerpc/powerpc64/setcontext.S
37340         (__novec_setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37341         code unconditional.
37342         (__novec_setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37343         conditional code.
37344         (__setcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37345         unconditional.
37346         (__setcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37347         conditional code.
37348         * sysdeps/unix/sysv/linux/powerpc/powerpc64/swapcontext.S
37349         (__novec_swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make
37350         code unconditional.
37351         (__novec_swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37352         conditional code.
37353         (__swapcontext) [__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Make code
37354         unconditional.
37355         (__swapcontext) [!__ASSUME_NEW_RT_SIGRETURN_SYSCALL]: Remove
37356         conditional code.
37357
37358 2012-07-25  Andreas Schwab  <schwab@linux-m68k.org>
37359
37360         * sysdeps/unix/sysv/linux/i386/accept4.S: Remove pseudo_end label.
37361         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: Likewise.
37362         * sysdeps/unix/sysv/linux/i386/clone.S: Likewise.
37363         * sysdeps/unix/sysv/linux/i386/epoll_pwait.S: Likewise.
37364         * sysdeps/unix/sysv/linux/i386/getcontext.S: Likewise.
37365         * sysdeps/unix/sysv/linux/i386/mmap.S: Likewise.
37366         * sysdeps/unix/sysv/linux/i386/mmap64.S: Likewise.
37367         * sysdeps/unix/sysv/linux/i386/semtimedop.S: Likewise.
37368         * sysdeps/unix/sysv/linux/i386/setcontext.S: Likewise.
37369         * sysdeps/unix/sysv/linux/i386/socket.S: Likewise.
37370         * sysdeps/unix/sysv/linux/i386/swapcontext.S: Likewise.
37371         * sysdeps/unix/sysv/linux/i386/syscall.S: Likewise.
37372         * sysdeps/unix/sysv/linux/i386/sysdep.h (PSEUDO): Likewise.
37373         * sysdeps/unix/sysv/linux/i386/vfork.S: Likewise.
37374         * sysdeps/unix/sysv/linux/x86_64/clone.S: Likewise.
37375         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Likewise.
37376         * sysdeps/unix/sysv/linux/x86_64/setcontext.S: Likewise.
37377         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Likewise.
37378         * sysdeps/unix/sysv/linux/x86_64/syscall.S: Likewise.
37379         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PSEUDO): Likewise.
37380         * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: Likewise.
37381         * sysdeps/unix/sysv/linux/x86_64/vfork.S: Likewise.
37382         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
37383
37384 2012-07-25  Florian Weimer  <fweimer@redhat.com>
37385
37386         * Versions.def: Add GLIBC_2.17.
37387         * stdlib/stdlib.h: Rename __secure_getenv to secure_getenv.
37388         * include/stdlib.h: Rename __secure_getenv to secure_getenv.
37389         Introduce __libc_secure_getenv.
37390         * stdlib/Versions (2.17): Add secure_getenv
37391         (GLIBC_PRIVATE): Add __libc_secure_getenv.
37392         * stdlib/secure-getenv.c: Rename __secure_getenv to
37393         __libc_secure_getenv.  Add secure_getenv alias.  Add compatibility
37394         symbol __secure_getenv for GLIBC_2.0.
37395         * stdlib/tst-secure-getenv.c: New.
37396         * stdlib/Makefile (tests): Add testcase.
37397         * manual/startup.texi (Environment Access): Document
37398         secure_getenv.
37399         * hesiod/hesiod.c (hesiod_init): Rename __secure_getenv to
37400         __libc_secure_getenv.
37401         * inet/ruserpass.c (ruserpass): Likewise.
37402         * malloc/mtrace.c (mtrace): Likewise.
37403         * sysdeps/mach/hurd/tmpfile.c (__tmpfile): Likewise.
37404         * sysdeps/posix/libc_fatal.c (__libc_fatal): Likewise.
37405         * sysdeps/posix/sysconf.c (__sysconf__check_spec): Likewise.
37406         * sysdeps/posix/tempname.c: Likewise.  Evaluate
37407         HAVE_SECURE_GETENV.
37408         * sysdeps/unix/sysv/linux/libc_fatal.c (__libc_message): Rename
37409         __secure_getenv to __libc_secure_getenv.
37410         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Add secure_getenv.
37411         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
37412         Likewise.
37413         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
37414         Likewise.
37415         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Likewise.
37416         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Likewise.
37417         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Likewise.
37418         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Likewise.
37419         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Likewise.
37420         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Likewise.
37421         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist: Likewise.
37422
37423 2012-07-25  Joseph Myers  <joseph@codesourcery.com>
37424
37425         * sysdeps/generic/ldsodefs.h (struct La_i86_regs): Remove.
37426         (struct La_i86_retval): Likewise.
37427         (struct La_x86_64_regs): Likewise.
37428         (struct La_x86_64_retval): Likewise.
37429         (struct La_x32_regs): Likewise.
37430         (struct La_x32_retval): Likewise.
37431         (struct La_ppc32_regs): Likewise.
37432         (struct La_ppc32_retval): Likewise.
37433         (struct La_ppc64_regs): Likewise.
37434         (struct La_ppc64_retval): Likewise.
37435         (struct La_sh_regs): Likewise.
37436         (struct La_sh_retval): Likewise.
37437         (struct La_s390_32_regs): Likewise.
37438         (struct La_s390_32_retval): Likewise.
37439         (struct La_s390_64_regs): Likewise.
37440         (struct La_s390_64_retval): Likewise.
37441         (struct La_sparc32_regs): Likewise.
37442         (struct La_sparc32_retval): Likewise.
37443         (struct La_sparc64_regs): Likewise.
37444         (struct La_sparc64_retval): Likewise.
37445         (struct audit_ifaces): Remove architecture-specific pltenter and
37446         pltexit members.
37447         * sysdeps/i386/ldsodefs.h: New file.
37448         * sysdeps/powerpc/ldsodefs.h: Likewise.
37449         * sysdeps/s390/ldsodefs.h: Likewise.
37450         * sysdeps/sh/ldsodefs.h: Likewise.
37451         * sysdeps/sparc/ldsodefs.h: Likewise.
37452         * sysdeps/x86_64/ldsodefs.h: Likewise.
37453
37454 2012-07-25  Marek Polacek  <polacek@redhat.com>
37455
37456         [BZ #6808]
37457         * math/libm-test.inc (yn_test): Add another test.
37458         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c (__ieee754_ynl): Set errno
37459         to ERANGE when the result is +-Inf.
37460         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Likewise.
37461         * sysdeps/ieee754/flt-32/e_jnf.c (__ieee754_ynf): Likewise.
37462         * sysdeps/ieee754/ldbl-128/e_jnl.c (__ieee754_ynl): Likewise.
37463         * sysdeps/ieee754/dbl-64/e_jn.c (__ieee754_yn): Likewise.
37464
37465 2012-07-24  Joseph Myers  <joseph@codesourcery.com>
37466
37467         * conform/data/time.h-data (NULL): Use macro-constant.  Require
37468         equal to 0.
37469         (CLOCKS_PER_SEC): Use macro instead of constant.  Specify type as
37470         clock_t.
37471         [ISO11] (TIME_UTC): Use macro-int-constant.  Require value > 0.
37472
37473 2012-07-23  Thomas Schwinge  <thomas@codesourcery.com>
37474
37475         * configure.in <sysdeps resolving>: Correct printing
37476         Implies_before.
37477         * configure: Regenerate.
37478
37479 2012-07-22  Thomas Schwinge  <thomas@codesourcery.com>
37480
37481         * math/w_ilogb.c: Include <limits.h>.
37482         * math/w_ilogbl.c: Likewise.
37483
37484 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
37485
37486         * manual/lang.texi (__va_copy): Document primarily as ISO C99
37487         va_copy.  Document allowing for unavailable va_copy only as
37488         pre-C99 compatibility.
37489         * manual/string.texi (Copying and Concatenation): Use va_copy
37490         instead of __va_copy in concat example.
37491
37492 2012-07-20  Pino Toscano  <toscano.pino@tiscali.it>
37493
37494         * sysdeps/mach/hurd/sendto.c (create_address_port): New subroutine.
37495         (__sendto): Use create_address_port.  Initialize APORT and deallocate
37496         it if not null.
37497
37498         * sysdeps/mach/hurd/llistxattr.c: New file, copied from listxattr.c
37499         with O_NOLINK passed to __file_name_lookup.
37500
37501         * sysdeps/mach/hurd/lremovexattr.c: New file, copied from removexattr.c
37502         with O_NOLINK passed to __file_name_lookup.
37503
37504         * sysdeps/mach/hurd/getgroups.c: Return -1 and set EINVAL for
37505         negative N or less than NGIDS.
37506
37507         * sysdeps/mach/hurd/getlogin_r.c: Make LOGIN non-static and change its
37508         type to string_t.  Set ERANGE as errno and return it if NAME is not big
37509         enough.  Use memcpy instead of strncpy.
37510
37511 2012-07-20  Joseph Myers  <joseph@codesourcery.com>
37512
37513         * elf/Makefile (check-data): Remove.
37514         (localplt.data): New vpath directive.
37515         ($(objpfx)check-localplt.out): Use localplt.data from vpath
37516         instead of $(check-data).
37517         * scripts/data/localplt-generic.data: Move to ...
37518         * sysdeps/generic/localplt.data: ... here.
37519         * scripts/data/localplt-i386-linux-gnu.data: Move to ...
37520         * sysdeps/unix/sysv/linux/i386/nptl/localplt.data: ... here.
37521         * scripts/data/localplt-powerpc-linux-gnu.data: Move to ...
37522         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/localplt.data:
37523         ... here.
37524         * scripts/data/localplt-powerpc64-linux-gnu.data: Move to ...
37525         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/localplt.data:
37526         ... here.
37527         * scripts/data/localplt-s390-linux-gnu.data: Move to ...
37528         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/localplt.data:
37529         ... here.
37530         * scripts/data/localplt-s390x-linux-gnu.data: Move to ...
37531         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/localplt.data:
37532         ... here.
37533         * scripts/data/localplt-sparc-linux-gnu.data: Move to ...
37534         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/localplt.data:
37535         ... here.
37536         * scripts/data/localplt-sparc64-linux-gnu.data: Move to ...
37537         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/localplt.data:
37538         ... here.
37539
37540 2012-07-19 Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37541
37542         * sysdeps/powerpc/tls-macros.h: Split PowerPC definitions in
37543         PPC32 and PPC64 files.
37544         * sysdeps/powerpc/powerpc32/tls-macros.h: New file.
37545         * sysdeps/powerpc/powerpc64/tls-macros.h: Likewise.
37546
37547 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37548
37549         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c: Move
37550         __makecontext_ret to ...
37551         * sysdeps/unix/sysv/linux/s390/s390-32/__makecontext_ret.S:
37552         ... here and call exit if uc_link is NULL.  New file.
37553         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile: Add
37554         __makecontext_ret.S.
37555         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Move
37556         __makecontext_ret to ...
37557         * sysdeps/unix/sysv/linux/s390/s390-64/__makecontext_ret.S:
37558         ... here and call exit if uc_link is NULL.  New file.
37559         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile: Add
37560         __makecontext_ret.S.
37561
37562 2012-07-19  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37563
37564         * elf/elf.h (R_390_IRELATIVE): New definition.
37565         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Invoke the
37566         resolver function for IFUNC symbols.  Support R_390_IRELATIVE.
37567         (elf_machine_lazy_rel): Support R_390_IRELATIVE.
37568         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela):
37569         (elf_machine_lazy_rel): Likewise.
37570         * sysdeps/s390/dl-irel.h: New file.
37571         * sysdeps/s390/s390-64/memcpy.S: New asm code.
37572         * sysdeps/s390/s390-64/memset.S: New asm code.
37573         * sysdeps/s390/s390-64/memcmp.S: New asm code.
37574         * sysdeps/s390/s390-64/multiarch/memset.S: New file.
37575         * sysdeps/s390/s390-64/multiarch/ifunc-resolve.c: New file.
37576         * sysdeps/s390/s390-64/multiarch/memcmp.S: New file.
37577         * sysdeps/s390/s390-64/multiarch/memcpy.S: New file.
37578         * sysdeps/s390/s390-64/multiarch/Makefile: New file.
37579         * sysdeps/s390/s390-32/multiarch/ifunc-resolve.c: New file.
37580         * sysdeps/s390/s390-32/multiarch/Makefile: New file.
37581         * sysdeps/s390/s390-32/multiarch/memcmp.S: New file.
37582         * sysdeps/s390/s390-32/multiarch/memcpy.S: New file.
37583         * sysdeps/s390/s390-32/multiarch/memset.S: New file.
37584         * sysdeps/s390/s390-32/memcpy.S: New asm code.
37585         * sysdeps/s390/s390-32/memset.S: New asm code.
37586         * sysdeps/s390/s390-32/memcmp.S: New asm code.
37587
37588 2012-07-17  Marek Polacek  <polacek@redhat.com>
37589
37590         [BZ #14349]
37591         * sysdeps/s390/s390-32/configure.in: Remove TLS check.
37592         * sysdeps/s390/s390-64/configure.in: Likewise.
37593         * sysdeps/sparc/configure.in: Likewise.
37594         * sysdeps/powerpc/powerpc32/configure.in: Likewise.
37595         * sysdeps/powerpc/powerpc64/configure.in: Likewise.
37596         * sysdeps/i386/configure.in: Likewise.
37597         * sysdeps/x86_64/configure.in: Likewise.
37598         * sysdeps/sh/configure.in: Likewise.
37599         * sysdeps/s390/s390-32/configure: Regenerated.
37600         * sysdeps/s390/s390-64/configure: Likewise.
37601         * sysdeps/x86_64/configure: Likewise.
37602         * sysdeps/sh/configure: Likewise.
37603         * sysdeps/powerpc/powerpc64/configure: Likewise.
37604         * sysdeps/powerpc/powerpc32/configure: Likewise.
37605         * sysdeps/sparc/configure: Likwise.
37606         * sysdeps/i386/configure: Likewise.
37607
37608         * elf/dl-open.c: Comment fixes.
37609
37610 2012-07-17  Joseph Myers  <joseph@codesourcery.com>
37611
37612         * Makefile [CXX] (check-data): Remove.
37613         [CXX] (c++-types.data): New vpath directive.
37614         [CXX] ($(objpfx)c++-types-check.out): Use c++-types.data from
37615         vpath.  Do not allow for C++ type data being missing.
37616         * scripts/data/c++-types-alpha-linux-gnu.data: Move to
37617         ports/sysdeps/unix/sysv/linux/alpha/nptl/c++-types.data.
37618         * scripts/data/c++-types-ia64-linux-gnu.data: Move to
37619         ports/sysdeps/unix/sysv/linux/ia64/nptl/c++-types.data.
37620         * scripts/data/c++-types-i386-linux-gnu.data: Move to ...
37621         * sysdeps/unix/sysv/linux/i386/nptl/c++-types.data: ... here.
37622         * scripts/data/c++-types-powerpc-linux-gnu.data: Move to ...
37623         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/c++-types.data:
37624         ... here.
37625         * scripts/data/c++-types-powerpc64-linux-gnu.data: Move to ...
37626         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/c++-types.data:
37627         ... here.
37628         * scripts/data/c++-types-s390-linux-gnu.data: Move to ...
37629         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/c++-types.data:
37630         ... here.
37631         * scripts/data/c++-types-s390x-linux-gnu.data: Move to ...
37632         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/c++-types.data:
37633         ... here.
37634         * scripts/data/c++-types-sparc-linux-gnu.data: Move to ...
37635         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/c++-types.data:
37636         ... here.
37637         * scripts/data/c++-types-sparc64-linux-gnu.data: Move to ...
37638         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/c++-types.data:
37639         ... here.
37640         * scripts/data/c++-types-x32-linux-gnu.data: Move to ...
37641         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/c++-types.data:
37642         ... here.
37643         * scripts/data/c++-types-x86_64-linux-gnu.data: Move to ...
37644         * sysdeps/unix/sysv/linux/x86_64/64/nptl/c++-types.data: ... here.
37645
37646         * elf/tls-macros.h (TLS_LE): Move architecture-specific
37647         definitions to architecture-specific files.
37648         (TLS_IE): Likewise.
37649         (TLS_LD): Likewise.
37650         (TLS_GD): Likewise.
37651         * sysdeps/i386/tls-macros.h: New file.
37652         * sysdeps/powerpc/tls-macros.h: Likewise.
37653         * sysdeps/s390/s390-32/tls-macros.h: Likewise.
37654         * sysdeps/s390/s390-64/tls-macros.h: Likewise.
37655         * sysdeps/sh/tls-macros.h: Likewise.
37656         * sysdeps/sparc/sparc32/tls-macros.h: Likewise.
37657         * sysdeps/sparc/sparc64/tls-macros.h: Likewise.
37658         * sysdeps/x86_64/tls-macros.h: Likewise.
37659
37660 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
37661
37662         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Preserve
37663         zero value for regular exit case.
37664
37665         * sysdeps/unix/sysv/linux/x86_64/__start_context.S
37666         (__start_context): Preserve zero value for regular exit case.
37667
37668 2012-07-17  Thomas Schwinge  <thomas@codesourcery.com>
37669             Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
37670
37671         * manual/setjmp.texi (setcontext): Clarify normal process
37672         termination when uc_link is the null pointer.
37673         * stdlib/tst-makecontext.c (cf): Exercise this: remove explicit
37674         exit call.
37675
37676 2012-07-16  Andreas Schwab  <schwab@linux-m68k.org>
37677
37678         * stdlib/bug-getcontext.c (do_test): Don't test FE_ALL_EXCEPT in
37679         preprocessor.  Test for each exception mask separately.
37680
37681 2012-07-16  Andreas Jaeger  <aj@suse.de>
37682
37683         * po/ru.po: Update from translation team.
37684
37685 2012-07-15  Joseph Myers  <joseph@codesourcery.com>
37686
37687         * conform/data/string.h-data (NULL): Use macro-constant.  Require
37688         equal to 0.
37689         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
37690         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
37691         (wcs*): Change to wcs[abcdefghijklmnopqrstuvwxyz]*.
37692         (mem[abcdefghijklmnopqrstuvwxyz]*): Allow.
37693         [ISO || ISO99 || ISO11] (*_t): Do not allow.
37694
37695 2012-07-13  Andreas Jaeger  <aj@suse.de>
37696
37697         * po/fr.po: Update from translation team.
37698
37699 2012-07-12  Marek Polacek  <polacek@redhat.com>
37700
37701         [BZ #14173]
37702         * math/libm-test.inc (yn_test): Add test for BZ #14173.
37703         * sysdeps/ieee754/ldbl-96/e_jnl.c (__ieee754_ynl): Correct
37704         loop condition.
37705
37706 2012-07-12  Joseph Myers  <joseph@codesourcery.com>
37707
37708         [BZ #13717]
37709         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel):
37710         Change to 2.4.1 where previously 2.4.0.
37711         * sysdeps/unix/sysv/linux/configure: Regenerated.
37712         * sysdeps/unix/sysv/linux/kernel-features.h [!__sh__]
37713         (__ASSUME_ST_INO_64_BIT): Do not condition definition on kernel
37714         version.
37715         [__i386__ || __sparc__] (__ASSUME_FCNTL64): Likewise.
37716         (__ASSUME_AT_CLKTCK): Remove.
37717         (__ASSUME_AT_PAGESIZE): Likewise.
37718         (__ASSUME_AT_XID): Likewise.
37719         (__ASSUME_GETDENTS64_SYSCALL): Define unconditionally.
37720         [__i386__] (__ASSUME_VFORK_SYSCALL): Define unconditionally.
37721         * sysdeps/unix/sysv/linux/ldsodefs.h (HAVE_AUX_XID): Define
37722         unconditionally.
37723         (HAVE_AUX_PAGESIZE): Likewise.
37724         * sysdeps/unix/sysv/linux/prof-freq.c (__profile_frequency)
37725         [__ASSUME_AT_CLKTCK]: Make code unconditional.
37726         [!__ASSUME_AT_CLKTCK]: Remove conditional code.
37727
37728 2012-07-12  Jeroen van Bemmel  <jvb127@gmail.com>
37729
37730         [BZ #14307]
37731         * sysdeps/posix/getaddrinfo.c (gaih_inet): Increase the size of
37732         the temporary buffer used to invoke __gethostbyname2_r,
37733         __gethostbyaddr_r and gethostbyname4_r to make room for struct
37734         host_data / struct gaih_addrtuple.
37735         * resolv/nss_dns/dns-host.c (global scope): Move definition of
37736         implementation constants MAX_NR_ALIASES and MAX_NR_ADDRS to
37737         header file nss/nsswitch.h.
37738         * nss/nsswitch.h (global scope): Add definition of implementation
37739         constants MAX_NR_ALIASES and MAX_NR_ADDRS (moved from
37740         resolv/nss_dns/dns-host.c).
37741
37742 2012-07-11  Andreas Jaeger  <aj@suse.de>
37743
37744         * po/fr.po: Update from translation team.
37745
37746         * po/sv.po: Update from translation team
37747         * po/fr.po: Another update from translation team.
37748
37749 2012-07-11  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
37750
37751         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Do not call sinh and cosh
37752         for subnormals or multiply small sinh result by itself.
37753         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
37754         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
37755
37756 2012-07-11  David S. Miller  <davem@davemloft.net>
37757
37758         * sysdeps/sparc/fpu/libm-test-ulps: Update.
37759
37760 2012-07-10  Andreas Schwab  <schwab@linux-m68k.org>
37761
37762         [BZ #14347]
37763         * misc/sys/syslog.h (LOG_MAKEPRI): Don't shift first argument.
37764         (INTERNAL_MARK): Shift it here.
37765
37766 2012-07-10  Marek Polacek  <polacek@redhat.com>
37767
37768         [BZ #14151]
37769         * configure.in (libc_cv_asm_global_directive): Remove test.  Replace
37770         libc_cv_asm_global_directive with .globl.
37771         * configure: Regenerated.
37772         * sysdeps/i386/configure.in: Replace libc_cv_asm_global_directive
37773         with .globl.
37774         * sysdeps/i386/configure: Regenerated.
37775         * sysdeps/x86_64/configure.in: Replace libc_cv_asm_global_directive
37776         with .globl.
37777         * sysdeps/x86_64/configure: Regenerated.
37778         * config.h.in: Do not undefine ASM_GLOBAL_DIRECTIVE.
37779         * include/libc-symbols.h: Replace ASM_GLOBAL_DIRECTIVE with .globl.
37780         * elf/tst-unique2mod2.c: Likewise.
37781         * elf/tst-unique2mod1.c: Likewise.
37782         * elf/tst-unique1mod2.c: Likewise.
37783         * elf/tst-unique1mod1.c: Likewise.
37784         * sysdeps/s390/s390-32/sysdep.h: Likewise.
37785         * sysdeps/s390/s390-32/s390-mcount.S: Likewise.
37786         * sysdeps/s390/s390-64/sysdep.h: Likewise.
37787         * sysdeps/s390/s390-64/s390x-mcount.S: Likewise.
37788         * sysdeps/mach/sysdep.h: Likewise.
37789         * sysdeps/i386/sysdep.h: Likewise.
37790         * sysdeps/i386/i386-mcount.S: Likewise.
37791         * sysdeps/x86_64/_mcount.S: Likewise.
37792         * sysdeps/x86_64/sysdep.h: Likewise.
37793         * sysdeps/sh/_mcount.S: Likewise.
37794         * sysdeps/sh/sysdep.h: Likewise.
37795         * sysdeps/powerpc/powerpc32/gprsave1.S: Likewise.
37796         * sysdeps/powerpc/powerpc32/fpu/fprrest.S: Likewise.
37797         * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Likewise.
37798         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
37799         * sysdeps/powerpc/powerpc32/gprrest1.S: Likewise.
37800         * sysdeps/powerpc/powerpc32/gprsave0.S: Likewise.
37801         * sysdeps/powerpc/powerpc32/gprrest0.S: Likewise.
37802         * locale/localeinfo.h: Likewise.
37803         (_NL_CURRENT_DEFINE_STRINGIFY): Delete macro.
37804         (_NL_CURRENT_DEFINE_STRINGIFY_1): Likewise.
37805
37806 2012-07-09  Roland McGrath  <roland@hack.frob.com>
37807
37808         [BZ #14336]
37809         * manual/charset.texi (Extended Char Intro): Word use fix, "operating
37810         system".
37811         * manual/message.texi (The Uniforum approach): Likewise.
37812         * manual/charset.texi (Extended Char Intro): Spelling fix, "affected".
37813         (glibc iconv Implementation): Likewise.
37814
37815 2012-07-09  Joseph Myers  <joseph@codesourcery.com>
37816
37817         [BZ #14337]
37818         * math/s_clog.c (__clog): Avoid scaling a value down where that
37819         could result in underflow.
37820         * math/s_clog10.c (__clog10): Likewise.
37821         * math/s_clog10f.c (__clog10f): Likewise.
37822         * math/s_clog10l.c (__clog10l): Likewise.
37823         * math/s_clogf.c (__clogf): Likewise.
37824         * math/s_clogl.c (__clogl): Likewise.
37825         * math/libm-test.inc (clog_test): Add more tests.
37826         (clog10_test): Likewise.
37827         * sysdeps/i386/fpu/libm-test-ulps: Update.
37828         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37829
37830 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
37831
37832         [BZ #14283]
37833         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Shift
37834         by 7 not 8 to examine high bit of fractional part.
37835
37836         [BZ #14042]
37837         * sysdeps/powerpc/powerpc32/ppc-mcount.S [SHARED]: Don't use PLT
37838         for call to __mcount_internal.
37839         * sysdeps/powerpc/powerpc32/Makefile (sysdep_routines)
37840         (shared-only-routines) [$(subdir) = gmon]: Add compat-ppc-mcount.
37841         * sysdeps/powerpc/powerpc32/compat-ppc-mcount.S: New file.
37842
37843 2012-07-06  Joseph Myers  <joseph@codesourcery.com>
37844
37845         [BZ #14154]
37846         * sysdeps/ieee754/flt-32/k_tanf.c (__kernel_tanf): Use linear
37847         approximation for values within 0x1p-13f of an odd multiple of
37848         pi/4.
37849         * math/libm-test.inc (tan_test): Do not allow spurious underflow
37850         exception.  Add more tests.
37851         * sysdeps/i386/fpu/libm-test-ulps: Update.
37852
37853         [BZ #6778]
37854         * sysdeps/i386/fpu/s_expm1.S (__expm1): Check for large negative
37855         inputs and return -1 for them.  Do not check for +Inf in case not
37856         reachable for +Inf.
37857         * sysdeps/i386/fpu/s_expm1f.S (__expm1f): Likewise.
37858         * sysdeps/i386/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not define.
37859         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
37860         and return -1 for them.  Do not check for +Inf in case not
37861         reachable for +Inf.
37862         * sysdeps/x86_64/fpu/e_expl.S [USE_AS_EXPM1L] (csat): Do not
37863         define.
37864         (IEEE754_EXPL) [USE_AS_EXPM1L]: Check for large negative inputs
37865         and return -1 for them.  Do not check for +Inf in case not
37866         reachable for +Inf.
37867         * math/libm-test.inc (expm1_test): Add more tests.  Do not allow
37868         spurious underflow.
37869         * sysdeps/i386/fpu/libm-test-ulps: Update.
37870         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37871
37872 2012-07-06  Mike Frysinger  <vapier@gentoo.org>
37873
37874         * sunrpc/rpc_clntout.c: Change <rpc/types.h> to "rpc/types.h".
37875
37876 2012-07-05  Joseph Myers  <joseph@codesourcery.com>
37877
37878         [BZ #14157]
37879         [BZ #14331]
37880         * math/s_csqrt.c (__csqrt): Avoid multiplying by 0.5 where this
37881         could result in spurious underflow.  Scale down values above
37882         DBL_MAX / 4.0 instead of DBL_MAX / 2.0.
37883         * math/s_csqrtf.c (__csqrtf): Likewise.
37884         * math/s_csqrtl.c (__csqrtl): Likewise.
37885         * math/libm-test.inc (csqrt_test): Add more tests.  Do not allow
37886         spurious underflow.
37887         * sysdeps/i386/fpu/libm-test-ulps: Update.
37888         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37889
37890 2012-07-04  Andreas Schwab  <schwab@linux-m68k.org>
37891
37892         * catgets/Makefile ($(objpfx)de.msg): Use xopen-msg.awk instead of
37893         xopen-msg.sed.
37894         * catgets/xopen-msg.awk: New file.
37895         * catgets/xopen-msg.sed: Removed.
37896
37897         * intl/Makefile ($(objpfx)msgs.h): Use po2test.awk instead of
37898         po2text.sed.
37899         * intl/po2test.awk: New file.
37900         * intl/po2test.sed: Removed.
37901
37902 2012-07-04  Joseph Myers  <joseph@codesourcery.com>
37903
37904         [BZ #14328]
37905         * math/s_ctan.c (__ctan): Do not call sinh and cosh for subnormals
37906         or multiply small sinh result by itself.
37907         * math/s_ctanf.c (__ctanf): Likewise.
37908         * math/s_ctanh.c (__ctanh): Likewise.
37909         * math/s_ctanhf.c (__ctanhf): Likewise.
37910         * math/s_ctanhl.c (__ctanhl): Likewise.
37911         * math/s_ctanl.c (__ctanl): Likewise.
37912         * math/libm-test.inc (ctan_test_tonearest): New function.
37913         (ctan_test_towardzero): Likewise.
37914         (ctan_test_downward): Likewise.
37915         (ctan_test_upward): Likewise.
37916         (ctanh_test_tonearest): Likewise.
37917         (ctanh_test_towardzero): Likewise.
37918         (ctanh_test_downward): Likewise.
37919         (ctanh_test_upward): Likewise.
37920         (main): Call these new functions.
37921         * sysdeps/i386/fpu/libm-test-ulps: Update.
37922         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
37923
37924 2012-07-03  Mike Frysinger  <vapier@gentoo.org>
37925
37926         * .gitignore: Delete /ports entry.
37927
37928 2012-07-03  Andreas Jaeger  <aj@suse.de>
37929
37930         * po/bg.po: Update from translation team.
37931         * po/cs.po: Likewise.
37932         * po/de.po: Likewise.
37933         * po/hr.po: Likewise.
37934         * po/nl.pl: Likewise.
37935         * po/pl.po: Likewise.
37936         * po/vi.po: Likewise.
37937
37938 2012-07-03  Joseph Myers  <joseph@codesourcery.com>
37939
37940         * Makeconfig [!+link] (+link-before-libc): New variable.
37941         [!+link] (+link-after-libc): Likewise.
37942         [!+link] (+link-tests): Likewise.
37943         [!+link] (+link): Define in terms of $(+link-before-libc) and
37944         $(+link-after-libc).
37945         [!+link-static] (+link-static-before-libc): New variable.
37946         [!+link-static] (+link-static-after-libc): Likewise.
37947         [!+link-static] (+link-static-tests): Likewise.
37948         [!+link-static] (+link-static): Define in terms of
37949         $(+link-static-before-libc) and $(+link-static-after-libc).
37950         [build-shared] (link-libc-before-gnulib): New variable.
37951         [build-shared] (link-libc-tests): Likewise.
37952         [build-shared] (link-libc): Define in terms of
37953         $(link-libc-before-gnulib).
37954         [!build-shared] (link-libc-tests): New variable.
37955         (link-libc-static-tests): New variable.
37956         [!gnulib] (gnulib-arch): New variable.
37957         [!gnulib] (gnulib-tests): Likewise.
37958         [!gnulib] (static-gnulib-arch): Likewise.
37959         [!gnulib] (static-gnulib-tests): Likewise.
37960         [!gnulib] (gnulib): Use $(gnulib-arch).  Do not use $(libgcc_eh).
37961         Define with "=" instead of ":=".
37962         [!gnulib] (static-gnulib): Use $(static-gnulib-arch).  Do not use
37963         -lgcc_eh $(libunwind).  Define with "=" instead of ":=".
37964         * Rules (binaries-all-notests): New variable.
37965         (binaries-all-tests): Likewise.
37966         (binaries-static-notests): Likewise.
37967         (binaries-static-tests): Likewise.
37968         (binaries-all): Define using $(binaries-all-notests) and
37969         $(binaries-all-tests).
37970         (binaries-static): Define using $(binaries-static-notests) and
37971         $(binaries-static-tests).
37972         (binaries-shared-tests): New variable.
37973         (binaries-shared-notests): Likewise.
37974         (binaries-shared): Remove variable.
37975         ($(addprefix $(objpfx),$(binaries-shared-notests))): New rule.
37976         ($(addprefix $(objpfx),$(binaries-shared-tests))): Likewise.
37977         ($(addprefix $(objpfx),$(binaries-shared))): Remove rule.
37978         ($(addprefix $(objpfx),$(binaries-static-notests))): New rule.
37979         ($(addprefix $(objpfx),$(binaries-static-tests))): Likewise.
37980         ($(addprefix $(objpfx),$(binaries-static))): Remove rule.
37981         * elf/Makefile (sln-modules): New variable.
37982         (extra-objs): Add $(sln-modules:=.o).
37983         (ldconfig-modules): Add static-stubs.
37984         ($(objpfx)sln): Depend on $(sln-modules:%=$(objpfx)%.o).
37985         * elf/static-stubs.c: New file.
37986
37987         [BZ #14283]
37988         * sysdeps/ieee754/flt-32/k_rem_pio2f.c (__kernel_rem_pio2f): Shift
37989         by 7 not 8 to examine high bit of fractional part.  Use volatile
37990         variables when splitting into final array of floats if
37991         __FLT_EVAL_METHOD__ != 0.
37992         * math/libm-test.inc (cos_test): Add another test.
37993         (sin_test): Likewise.
37994         * sysdeps/i386/fpu/libm-test-ulps: Update.
37995
37996         [BZ #14273]
37997         * math/libm-test.inc (cosh_test): Add more tests.
37998
37999         * version.h (RELEASE): Set to "development".
38000         (VERSION): Set to "2.16.90".
38001
38002 2012-06-30  Carlos O'Donell  <carlos_odonell@mentor.com>
38003
38004         * NEWS: Update copyright. Remove last-updated date.
38005         Mention math library bug fixes and timezone data changes.
38006         * README: Mention GNU/Hurd, x32, and HPPA support status.
38007
38008 2012-06-28  Thomas Schwinge  <thomas@codesourcery.com>
38009
38010         * manual/contrib.texi (Contributors): Sort alphabetically by last name.
38011
38012 2012-06-27  Andreas Jaeger  <aj@suse.de>
38013
38014         * manual/contrib.texi (Contributors): Add Samuel Thibault.
38015
38016 2012-06-25  Andreas Jaeger  <aj@suse.de>
38017
38018         * sysdeps/s390/fpu/libm-test-ulps: Update.
38019
38020 2012-06-23  Andreas Schwab  <schwab@linux-m68k.org>
38021             Thomas Schwinge  <thomas@codesourcery.com>
38022
38023         * sysdeps/unix/sysv/linux/sh/syscalls.list: Add fanotify_mark.
38024         * sysdeps/unix/sysv/linux/sh/Versions (GLIBC_2.16): Add fanotify_mark.
38025         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist (GLIBC_2.16): Add
38026         fanotify_mark.
38027
38028 2012-06-23  Thomas Schwinge  <thomas@codesourcery.com>
38029
38030         * sysdeps/mach/start.c: Remove file.
38031         * sysdeps/mach/hurd/i386/static-start.S: Fix start.S include.
38032         * sysdeps/i386/init-first.c: Fix comment regarding start.S.
38033         * sysdeps/sh/init-first.c: Likewise.
38034
38035         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Preserve r12 and pr
38036         registers for frame unwinding purposes, add CFI directives.
38037         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
38038         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Likewise
38039         * sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
38040         Likewise.
38041
38042         * sysdeps/sh/____longjmp_chk.S (CALL_FAIL): Don't plan for the call to
38043         __fortify_fail returning.
38044         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S (CALL_FAIL): Likewise.
38045
38046         * sysdeps/unix/sysv/linux/sh/____longjmp_chk.S: New file, based on
38047         sysdeps/sh/____longjmp_chk.S.
38048         * sysdeps/unix/sysv/linux/sh/sigaltstack-offsets.sym: New file, based
38049         on sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym.
38050         * sysdeps/unix/sysv/linux/sh/Makefile [subdir=misc]
38051         (gen-as-const-headers): Append sigaltstack-offsets.sym.
38052
38053         * sysdeps/sh/abort-instr.h: New file.
38054         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Terminate the
38055         process in case exit returns.
38056
38057         * sysdeps/unix/sysv/linux/sh/makecontext.S (.Lexitcode): Always
38058         initialize the GOT register before use.
38059
38060         * sysdeps/unix/sysv/linux/sh/makecontext.S (__makecontext): Fix
38061         calculation of ARGC > 4.
38062
38063         * sysdeps/unix/sysv/linux/sh/makecontext.S: Add comments and give more
38064         meaningful names to some local labels.
38065
38066 2012-06-22  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
38067             Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38068
38069         * sysdeps/unix/sysv/linux/sh/bits/atomic.h
38070         (__arch_compare_and_exchange_val_8_acq): Remove explicit nop.
38071         (__arch_compare_and_exchange_val_16_acq): Likewise.
38072         (__arch_compare_and_exchange_val_32_acq): Likewise.
38073         (atomic_exchange_and_add): Fix gUSA sequence.
38074         (atomic_add): Likewise.
38075         (atomic_add_negative): Likewise.
38076         (atomic_add_zero): Likewise.
38077         (atomic_bit_test_set): Likewise.
38078
38079 2012-06-22  Andreas Schwab  <schwab@redhat.com>
38080
38081         [BZ #13579]
38082         * include/link.h (struct link_map): Add l_free_initfini.
38083         * elf/dl-deps.c (_dl_map_object_deps): Set it when assigning
38084         l_initfini.
38085         * elf/dl-close.c (_dl_close_worker): Don't free l_initfini.
38086         * elf/rtld.c (dl_main): Clear it on all objects loaded on startup.
38087         * elf/dl-libc.c (free_mem): Free l_initfini if l_free_initfini is
38088         set.
38089
38090 2012-06-22  Carlos O'Donell  <carlos_odonell@mentor.com>
38091
38092         * configure.in: Use AC_LANG_SOURCE.
38093         * configure: Regenerate.
38094
38095 2012-06-22  Roland McGrath  <roland@hack.frob.com>
38096
38097         * configure.in (libc_cv_localstatedir): New substituted variable.
38098         * configure: Regenerated.
38099         * config.make.in (localstatedir): New variable, substituted from
38100         libc_cv_localstatedir.
38101         * Makeconfig (vardbdir): Use $(localstatedir) in place of /var.
38102         * sysdeps/gnu/configure.in (libc_cv_localstatedir): Change
38103         ${prefix}/var to /var when we change ${prefix}/etc to /etc.
38104         * sysdeps/gnu/configure: Regenerated.
38105
38106 2012-06-21  Jeff Law  <law@redhat.com>
38107
38108         [BZ #14277]
38109         * intl/dcigettext.c (_nl_find_msg): Avoid use after potential
38110         free.  Simplify list management for _LIBC case.
38111
38112 2012-06-21  Joseph Myers  <joseph@codesourcery.com>
38113
38114         [BZ #14273]
38115         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c (__ieee754_cosh):
38116         Clear sign bit of 64-bit integer value before comparing against
38117         overflow value.
38118
38119         * sysdeps/mach/configure: Regenerated.
38120
38121 2012-06-21  H.J. Lu  <hongjiu.lu@intel.com>
38122
38123         [BZ #14278]
38124         * sysdeps/i386/sysdep.h (SYSCALL_PIC_SETUP): Fix a typo.
38125
38126 2012-06-21  Jeff Law  <law@redhat.com>
38127
38128         [BZ #13882]
38129         * elf/dl-deps.c (_dl_map_object_deps): Fix cycle detection.  Use
38130         uint16_t for elements in the "seen" array to avoid char overflows.
38131         * elf/dl-fini.c (_dl_sort_fini): Likewise.
38132         * elf/dl-open.c (dl_open_worker): Likewise.
38133
38134 2012-06-21  Carlos O'Donell  <carlos_odonell@mentor.com>
38135
38136         * scripts/list-sources.sh: Scan PORTS for translations.
38137         * po/libc.pot: Regenerated.
38138
38139 2012-06-21  Andreas Jaeger  <aj@suse.de>
38140
38141         [BZ #12194]
38142         * sysdeps/s390/bits/byteswap-16.h (__bswap_16): Avoid -Wconversion
38143         warning.
38144         * sysdeps/s390/bits/byteswap.h (__bswap_constant_16): Likewise.
38145         * bits/byteswap-16.h (__bswap_16): Likewise.
38146         * bits/byteswap.h (__bswap_constant_16): Likewise.
38147
38148 2012-06-18  H.J. Lu  <hongjiu.lu@intel.com>
38149
38150         [BZ #14117]
38151         * sysdeps/i386/fpu_control.h: Removed.
38152         * sysdeps/x86_64/fpu_control.h: Moved to ...
38153         * sysdeps/x86/fpu_control.h: Here.
38154
38155         * sysdeps/x86_64/fpu_control.h (_FPU_GETCW): Add __volatile__.
38156         (_FPU_SETCW): Likewise.
38157
38158 2012-06-15  H.J. Lu  <hongjiu.lu@intel.com>
38159
38160         [BZ #14117]
38161         * sysdeps/i386/fpu/bits/mathinline.h: Renamed to ...
38162         * sysdeps/x86/fpu/bits/mathinline.h: This.
38163         * sysdeps/x86_64/fpu/bits/mathinline.h: Removed.
38164
38165         [BZ #14050]
38166         [BZ #14117]
38167         * sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
38168         functions if __x86_64__ is defined.
38169
38170 2012-06-15  Chung-Lin Tang  <cltang@codesourcery.com>
38171
38172         * string/endian.h: Add !__ASSEMBLER__ condition for including
38173         conversion interfaces.
38174
38175 2012-06-15  Joseph Myers  <joseph@codesourcery.com>
38176
38177         [BZ #14241]
38178         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Use 0.0 instead
38179         of ABS(x) in calculating zero to negative powers other than odd
38180         integers.
38181         * math/libm-test.inc (pow_test): Add more tests.
38182
38183 2012-06-15  Andreas Jaeger  <aj@suse.de>
38184
38185         * manual/contrib.texi (Contributors): Update entry of Liubov
38186         Dmitrieva and add entries for Will Schmidt and Tulio Magno Quites
38187         Machado Filho.
38188
38189 2012-06-15  Cyril Hrubis  <metan@ucw.cz>
38190
38191         * string/string.h: Add __wur to GNU version of strerror_r.
38192
38193 2012-06-14  H.J. Lu  <hongjiu.lu@intel.com>
38194
38195         [BZ #14229]
38196         * string/Makefile (tests): Add tst-strtok_r.
38197         * string/tst-strtok_r.c: New file.
38198         * sysdeps/x86_64/strtok.S: Use LP_SIZE on save_ptr and use
38199         RAX_LP/RDX_LP on SAVE_PTR.
38200
38201 2012-06-14  Roland McGrath  <roland@hack.frob.com>
38202
38203         * manual/Makefile ($(objpfx)texis): Do $(make-target-directory).
38204
38205 2012-06-14  Joseph Myers  <joseph@codesourcery.com>
38206
38207         * libm_test.inc (csqrt_test): Allow more spurious underflow
38208         exceptions.
38209         (j0_test): Likewise.
38210         (j1_test): Likewise.
38211         (y0_test): Likewise.
38212         (y1_test): Likewise.
38213
38214 2012-06-13  Carlos O'Donell  <carlos_odonell@mentor.com>
38215
38216         * po/Makefile (libc.pot): Use UTF-8 charset.
38217
38218 2012-06-13  Paul Pluzhnikov  <ppluzhnikov@google.com>
38219
38220         [BZ #14210]
38221         Suppress sign-conversion warning from FD_SET.
38222         See <http://sourceware.org/ml/libc-alpha/2012-05/msg01794.html>.
38223         * debug/fdelt_chk.c (__fdelt_chk): Accept and return long int,
38224         not unsigned long int.
38225         * misc/bits/select2.h (__fdelt_chk, __fdelt_warn, __FD_ELT): Likewise.
38226
38227 2012-06-12  H.J. Lu  <hongjiu.lu@intel.com>
38228
38229         [BZ #14050]
38230         [BZ #14117]
38231         * sysdeps/i386/fpu/bits/mathinline.h (__MATH_INLINE): Check
38232         __extern_always_inline instead of __extern_inline.
38233         (__signbitf): Support __SSE2_MATH__ and C++ namespace.
38234         (__signbit): Likewise.
38235         (__signbitl): Support C++ namespace.
38236         (lrintf): New inline function.
38237         (lrint): Likewise.
38238         (llrintf): Likewise.
38239         (llrint): Likewise.
38240         (fmaxf): Likewise.
38241         (fmax): Likewise.
38242         (fminf): Likewise.
38243         (fmin): Likewise.
38244         (rint): Likewise.
38245         (rintf): Likewise.
38246         (ceil): Likewise.
38247         (ceilf): Likewise.
38248         (floor): Likewise.
38249         (floorf): Likewise.
38250         (nearbyint): Likewise.
38251         (nearbyintf): Likewise.
38252
38253 2012-06-12  Thomas Schwinge  <thomas@codesourcery.com>
38254
38255         * sysdeps/unix/Makefile ($(objpfx)stub-syscalls.c): Fix case for
38256         non-default versions.
38257
38258 2012-06-11  Roland McGrath  <roland@hack.frob.com>
38259
38260         [BZ #14218]
38261         * manual/argp.texi (Argp): Reword argp_parse description slightly.
38262
38263 2012-06-09  Thomas Schwinge  <thomas@codesourcery.com>
38264
38265         * sysdeps/sh/sh4/fpu/bits/fenv.h (__FE_UNDEFINED): Define.
38266         (FE_UPWARD, FE_DOWNWARD): Don't define.
38267         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Adapt to that.
38268         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
38269
38270         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Do not re-write fpscr after
38271         reading it.
38272         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
38273         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
38274
38275 2012-06-09  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38276
38277         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
38278         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Refreshed.
38279         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: Refreshed.
38280         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: Refreshed.
38281
38282 2012-06-06  H.J. Lu  <hongjiu.lu@intel.com>
38283
38284         [BZ #14117]
38285         * sysdeps/i386/fpu/bits/fenv.h: Removed.
38286         * sysdeps/i386/fpu/Implies: New file.
38287         * sysdeps/x86_64/fpu/Implies: Likewise.
38288         * sysdeps/x86_64/fpu/bits/fenv.h: Renamed to ...
38289         * sysdeps/x86/fpu/bits/fenv.h: This.
38290
38291         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Check
38292         __SSE_MATH__.
38293
38294 2012-06-06  Siddhesh Poyarekar  <siddhesh@redhat.com>
38295
38296         [BZ #14134]
38297         * iconvdata/ibm930.c (BODY) [FROM_LOOP]: Check for invalid
38298         character 0xffff that matches the last element of the
38299         conversion table.
38300
38301 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38302
38303         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Fix for wrong ldbl128-ibm
38304         fmodl commit.
38305
38306 2012-06-05  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38307
38308         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Fix spurious underflow for
38309         values higher than 25.6283.
38310
38311 2012-06-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38312
38313         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c (__ieee754_fmodl): Fix
38314         subnormal exponent extraction and add some __builtin_expect.
38315         * sysdeps/ieee754/ldbl-128ibm/math_ldbl.h (ldbl_extract_mantissa):
38316         Fix for subnormal mantissa calculation.
38317
38318 2012-06-04  Mike Frysinger  <vapier@gentoo.org>
38319
38320         * sysdeps/unix/sysv/linux/tst-getcpu.c (do_test): Call perror when
38321         cpu2 is -1 and errno is not ENOSYS.
38322
38323 2012-06-04  H.J. Lu  <hongjiu.lu@intel.com>
38324
38325         [BZ #14117]
38326         * sysdeps/i386/i486/bits/string.h: Renamed to ...
38327         * sysdeps/x86/bits/string.h: This.
38328         * sysdeps/x86_64/bits/string.h: Removed.
38329
38330         * sysdeps/i386/i486/bits/string.h: Define inline functions only
38331         if not compiling for x86-64, but compiling for >= i486.
38332
38333         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Renamed to ...
38334         * sysdeps/unix/sysv/linux/x86/bits/sigcontext.h: This.
38335
38336         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h (FP_XSTATE_MAGIC1):
38337         New macro from Linux kernel 3.4.0.
38338         (FP_XSTATE_MAGIC2): Likewise.
38339         (FP_XSTATE_MAGIC2_SIZE): Likewise.
38340         (X86_FXSR_MAGIC): New macro from Linux i386 kernel.
38341         (struct _fpx_sw_bytes): New struct.
38342         (struct _xsave_hdr): Likewise.
38343         (struct _ymmh_state): Likewise.
38344         (struct _xstate): Likewise.
38345
38346         * sysdeps/unix/sysv/linux/i386/sys/debugreg.h: Removed.
38347         * sysdeps/unix/sysv/linux/i386/sys/reg.h: Likewise.
38348         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Renamed to ...
38349         * sysdeps/unix/sysv/linux/x86/sys/debugreg.h: This.
38350         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Renamed to ...
38351         * sysdeps/unix/sysv/linux/x86/sys/reg.h: This.
38352
38353         * sysdeps/unix/sysv/linux/i386/sys/io.h: Removed.
38354         * sysdeps/unix/sysv/linux/x86_64/sys/io.h: Renamed to ...
38355         * sysdeps/unix/sysv/linux/x86/sys/io.h: This.
38356         * sysdeps/unix/sysv/linux/i386/sys/perm.h: Removed.
38357         * sysdeps/unix/sysv/linux/x86_64/sys/perm.h: Renamed to ...
38358         * sysdeps/unix/sysv/linux/x86/sys/perm.h: This.
38359
38360 2012-06-04  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
38361
38362         [BZ #13743]
38363         * sysdeps/powerpc/sys/platform/ppc.h: New file for PowerPC features.
38364         * sysdeps/powerpc/Makefile (tests): Add test-gettimebase.
38365         (sysdep_headers): Include sys/platform/ppc.h.
38366         * sysdeps/powerpc/test-gettimebase.c: Test for
38367         __ppc_get_timebase() to catch future ISA opcode/insn changes.
38368         * manual/Makefile (appendices): Include platform.texi.
38369         * manual/contrib.texi (Contributors): Update @node pointers.
38370         * manual/maint.texi (Maintenance): Likewise.
38371         (Platform): New node.
38372         * manual/platform.texi: New file.  Document the new features.
38373
38374 2012-06-04  Siddhesh Poyarekar  <siddhesh@redhat.com>
38375             Jakub Jelinek  <jakub@redhat.com>
38376
38377         [BZ #14188]
38378         * misc/sys/cdefs.h (__glibc_unlikely): New macro to wrap cases
38379         where __builtin_expect is unavailable.
38380
38381 2012-06-03  David S. Miller  <davem@davemloft.net>
38382
38383         * stdlib/longlong.h: Updated from GCC.
38384
38385 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
38386
38387         [BZ #14042]
38388         * sysdeps/powerpc/powerpc32/mcount.c: New file.
38389         * sysdeps/powerpc/powerpc32/Versions (GLIBC_2.16): Add
38390         __mcount_internal.
38391         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist
38392         (GLIBC_2.16): Likewise.
38393
38394 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38395
38396         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (outsw): Fix a typo.
38397
38398 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
38399
38400         * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
38401         (default-abi): New variable.
38402         * sysdeps/unix/sysv/linux/powerpc/powerpc64/Makefile: New file.
38403         * sysdeps/unix/sysv/linux/s390/s390-32/Makefile (default-abi): New
38404         variable.
38405         * sysdeps/unix/sysv/linux/s390/s390-64/Makefile (default-abi):
38406         Likewise.
38407         * sysdeps/unix/sysv/linux/sparc/sparc32/Makefile (default-abi):
38408         Likewise.
38409         * sysdeps/unix/sysv/linux/sparc/sparc64/Makefile (default-abi):
38410         Likewise.
38411
38412         * Makeconfig [abi-variants && !default-abi] (default-abi): Remove
38413         definition.  Document in comment.
38414
38415 2012-06-01  David S. Miller  <davem@davemloft.net>
38416
38417         * stdlib/longlong.h: Updated from GCC.
38418
38419 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38420
38421         [BZ #14117]
38422         * sysdeps/unix/sysv/linux/i386/Makefile (sysdep_headers):
38423         Don't add sys/elf.h sys/perm.h sys/reg.h sys/vm86.h
38424         sys/debugreg.h sys/io.h here.
38425         * sysdeps/unix/sysv/linux/x86/Makefile (sysdep_headers): Add
38426         sys/elf.h sys/perm.h sys/reg.h sys/vm86.h sys/debugreg.h
38427         sys/io.h.
38428         * sysdeps/unix/sysv/linux/x86_64/Makefile (sysdep_headers):
38429         Don't add sys/perm.h sys/reg.h sys/debugreg.h sys/io.h here.
38430         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Renamed to ...
38431         * sysdeps/unix/sysv/linux/x86/sys/elf.h: This.
38432         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Renamed to ...
38433         * sysdeps/unix/sysv/linux/x86/sys/vm86.h: This.
38434
38435         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h (DR_LEN_8):
38436         Define only if __x86_64__ is defined.
38437
38438 2012-06-01  Joseph Myers  <joseph@codesourcery.com>
38439
38440         [BZ #14048]
38441         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c (__ieee754_fmod):
38442         Use int64_t for variable i.
38443         * math/libm-test.inc (fmod_test): Add more tests.
38444
38445         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Ensure temp + (double)
38446         z computation is not scheduled after fetestexcept.
38447         * sysdeps/ieee754/ldbl-128/s_fmal.c: Include <math_private.h>.
38448         Use math_force_eval instead of asm to ensure calculation scheduled
38449         before exception test.
38450         * sysdeps/ieee754/ldbl-96/s_fmal.c: Include <math_private.h>.
38451         Ensure a1 + u.d computation is not scheduled after fetestexcept.
38452
38453 2012-06-01  Aurelien Jarno  <aurelien@aurel32.net>
38454
38455         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Ensure a1 + u.d
38456         computation is not scheduled after fetestexcept.
38457
38458 2012-06-01  H.J. Lu  <hongjiu.lu@intel.com>
38459
38460         [BZ #14117]
38461         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Renamed to ...
38462         * sysdeps/unix/sysv/linux/x86/bits/wchar.h: This.
38463
38464 2012-06-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
38465
38466         * sysdeps/powerpc/fpu/k_cosf.c: Fix underflow generation.
38467         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
38468
38469 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
38470
38471         [BZ #14117]
38472         * sysdeps/unix/sysv/linux/i386/bits/wchar.h: Include
38473         <bits/wordsize.h>.
38474         (__WCHAR_MIN): Support __WORDSIZE == 64.
38475         (__WCHAR_MAX): Likewise.
38476
38477         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: Renamed to ...
38478         * sysdeps/unix/sysv/linux/x86/bits/typesizes.h: This.
38479
38480         [BZ #14183]
38481         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__FSWORD_T_TYPE):
38482         Defined with __SWORD_TYPE if __x86_64__ isn't defined.
38483
38484         [BZ #14117]
38485         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: Renamed to ...
38486         * sysdeps/unix/sysv/linux/x86/bits/siginfo.h: This.
38487
38488         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h: Renamed to ...
38489         * sysdeps/unix/sysv/linux/x86/bits/stat.h: This.
38490
38491         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_KERNEL):
38492         Defined to 1 if __x86_64__ isn't defined.
38493         (_STAT_VER_LINUX_OLD): New.
38494         (st_atime): Remove duplicate.
38495         (st_mtime): Likewise.
38496         (st_ctime): Likewise.
38497
38498 2012-05-31  David S. Miller  <davem@davemloft.net>
38499
38500         * sysdeps/sparc/fpu/libm-test-ulps: Remove sqrt(2) and sqrt test
38501         entries.
38502
38503 2012-06-01  Andreas Schwab  <schwab@linux-m68k.org>
38504
38505         * sysdeps/powerpc/fpu/libm-test-ulps: Sort through
38506         gen-libm-test.pl.
38507
38508         [BZ #14132]
38509         * elf/dl-reloc.c: Include <_itoa.h>.
38510         (_dl_reloc_bad_type): Remove use of INTUSE.
38511         * elf/dl-minimal.c (_itoa, _itoa_lower_digits): Likewise.
38512         * stdio-common/_itoa.c (_itoa_word, _itoa): Likewise.
38513         * stdio-common/psiginfo.c (psiginfo): Likewise.
38514         * stdio-common/psignal.c (psignal): Likewise.
38515         * string/strsignal.c (strsignal): Likewise.
38516         * include/signal.h (_sys_siglist): Declare hidden proto.
38517         * stdio-common/itoa-digits.c: Include <_itoa.h>.  Replace
38518         INTVARDEF with libc_hidden_data_def.
38519         * stdio-common/itoa-udigits.c: Likewise.
38520         * sysdeps/generic/_itoa.h (_itoa_upper_digits_internal)
38521         (_itoa_lower_digits_internal): Remove declaration.
38522         (_itoa_upper_digits, _itoa_lower_digits): Declare hidden proto.
38523         * sysdeps/gnu/siglist.c (_sys_siglist_internal)
38524         (_sys_sigabbrev_internal): Remove aliases.
38525         (_sys_siglist): Define hidden alias.
38526
38527 2012-05-31  Markus Trippelsdorf  <markus@trippelsdorf.de>
38528
38529         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
38530         bits/sysctl.h.
38531
38532 2012-05-31  H.J. Lu  <hongjiu.lu@intel.com>
38533
38534         [BZ #14117]
38535         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Renamed to ...
38536         * sysdeps/unix/sysv/linux/x86/bits/sysctl.h: This.
38537
38538         * sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Removed.
38539         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Renamed to ...
38540         * sysdeps/unix/sysv/linux/x86/sys/ucontext.h: This.
38541         * sysdeps/unix/sysv/linux/i386/sys/user.h: Removed.
38542         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Renamed to ...
38543         * sysdeps/unix/sysv/linux/x86/sys/user.h: This.
38544
38545         * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Removed.
38546         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Renamed to ...
38547         * sysdeps/unix/sysv/linux/x86/sys/procfs.h: This.
38548
38549         * sysdeps/unix/sysv/linux/x86_64/sys/io.h (insb): Replace addr
38550         with __addr.
38551         (insw): Likewise.
38552         (insl): Likewise.
38553         (outsb): Likewise.
38554         (outsw): Likewise.
38555         (outsl): Likewise.
38556
38557         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Removed.
38558         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Renamed to ...
38559         * sysdeps/unix/sysv/linux/x86/bits/mman.h: This.
38560
38561         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Renamed to ...
38562         * sysdeps/unix/sysv/linux/x86/bits/msq.h: This.
38563         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h: Renamed to ...
38564         * sysdeps/unix/sysv/linux/x86/bits/sem.h: This.
38565         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h: Renamed to ...
38566         * sysdeps/unix/sysv/linux/x86/bits/shm.h: This.
38567
38568         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: Renamed to ...
38569         * sysdeps/unix/sysv/linux/x86/bits/ipctypes.h: This.
38570
38571         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Renamed to ...
38572         * sysdeps/unix/sysv/linux/x86/bits/epoll.h: This.
38573
38574         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Removed.
38575         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Renamed to ...
38576         * sysdeps/unix/sysv/linux/x86/bits/fcntl.h: This.
38577
38578         * sysdeps/unix/sysv/linux/i386/bits/environments.h: Removed.
38579         * sysdeps/unix/sysv/linux/x86_64/bits/environments.h: Renamed
38580         to ...
38581         * sysdeps/unix/sysv/linux/x86/bits/environments.h: This.
38582
38583         * sysdeps/unix/sysv/linux/i386/bits/a.out.h: Removed.
38584         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Renamed to ...
38585         * sysdeps/unix/sysv/linux/x86/bits/a.out.h: This.
38586
38587         * sysdeps/unix/sysv/linux/i386/sys/elf.h: Error when compiling
38588         for x86-64.
38589         * sysdeps/unix/sysv/linux/i386/sys/vm86.h: Likewise.
38590
38591 2012-05-31  Joseph Myers  <joseph@codesourcery.com>
38592
38593         * math/math.h (M_El): Use two more decimal places.
38594         (M_LOG2El): Likewise.
38595         (M_LOG10El): Likewise.
38596         (M_LN2l): Likewise.
38597         (M_LN10l): Likewise.
38598         (M_PIl): Likewise.
38599         (M_PI_2l): Likewise.
38600         (M_PI_4l): Likewise.
38601         (M_1_PIl): Likewise.
38602         (M_2_PIl): Likewise.
38603         (M_2_SQRTPIl): Likewise.
38604         (M_SQRT2l): Likewise.
38605         (M_SQRT1_2l): Likewise.
38606
38607 2012-05-31  David S. Miller  <davem@davemloft.net>
38608
38609         * sysdeps/sparc/sparc64/memcpy.S: Use fsrc2 to move 64-bit
38610         values between float registers.
38611         * sysdeps/sparc/sparc64/memset.S: Likewise.
38612         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
38613
38614 2012-05-31  Mike Frysinger  <vapier@gentoo.org>
38615
38616         * debug/Makefile (CFLAGS-tst-longjmp_chk.c): Delete
38617         -D_FORTIFY_SOURCE=1.
38618         (CPPFLAGS-tst-longjmp_chk.c): Define.
38619         (CFLAGS-tst-longjmp_chk2.c): Delete -D_FORTIFY_SOURCE=1.
38620         (CPPFLAGS-tst-longjmp_chk2.c): Define.
38621         * wcsmbs/Makefile (CPPFLAGS-tst-wchar-h.c): Rename from
38622         CFLAGS-tst-wchar-h.c.
38623
38624 2012-05-31  Marek Polacek  <polacek@redhat.com>
38625
38626         [BZ #14132]
38627         * include/mntent.h (__setmntent_internal, __getmntent_r_internal
38628         __endmntent_internal): Remove declaration.
38629         (__setmntent, __endmntent, __getmntent_r) [NOT_IN_libc]: Remove macro.
38630         (__setmntent, __endmntent, __getmntent_r): Declare hidden proto.
38631         * misc/mntent_r.c: Replace INTDEF with libc_hidden_def.
38632
38633 2012-05-30  David S. Miller  <davem@davemloft.net>
38634
38635         * sysdeps/sparc/sparc32/soft-fp/q_util.c
38636         (___Q_simulate_exceptions): Use real FP ops rather than writing
38637         into the %fsr.
38638         * sysdeps/sparc/sparc32/soft-fp/q_util.c (__Qp_handle_exceptions):
38639         Likewise.
38640
38641 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38642
38643         [BZ #14117]
38644         * sysdeps/x86_64/bits/xtitypes.h: Renamed to ...
38645         * sysdeps/x86/bits/xtitypes.h: This.
38646
38647         * sysdeps/x86_64/bits/wordsize.h: Renamed to ...
38648         * sysdeps/x86/bits/wordsize.h: This.
38649
38650         * sysdeps/i386/bits/huge_vall.h: Renamed to ...
38651         * sysdeps/x86/bits/huge_vall.h: This.
38652
38653         * sysdeps/i386/bits/select.h: Removed.
38654         * sysdeps/x86_64/bits/select.h: Renamed to ...
38655         * sysdeps/x86/bits/select.h: This.
38656
38657         * sysdeps/i386/bits/setjmp.h: Removed.
38658         * sysdeps/x86_64/bits/setjmp.h: Renamed to ...
38659         * sysdeps/x86/bits/setjmp.h: This.
38660
38661         * sysdeps/i386/bits/mathdef.h: Removed.
38662         * sysdeps/x86_64/bits/mathdef.h: Renamed to ...
38663         * sysdeps/x86/bits/mathdef.h: This.
38664
38665 2012-05-30  Andreas Schwab  <schwab@linux-m68k.org>
38666
38667         [BZ #14132]
38668         * include/sys/socket.h (__connect_internal)
38669         (__libc_sa_len_internal): Remove declaration.
38670         (__connect, __libc_sa_len): Declare hidden_proto.
38671         (SA_LEN): Remove use of INTUSE.
38672         * socket/connect.c: Add libc_hidden_def.
38673         * sysdeps/mach/hurd/connect.c: Replace INTDEF by libc_hidden_def.
38674         * sysdeps/unix/sysv/linux/sa_len.c: Likewise.
38675         * sysdeps/unix/inet/syscalls.list: Remove __connect_internal
38676         alias.
38677         * sysdeps/unix/sysv/linux/s390/s390-64/syscalls.list: Likewise.
38678         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Likewise.
38679         * sysdeps/unix/sysv/linux/connect.S: Use libc_hidden_weak instead
38680         of adding _internal alias.
38681
38682 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38683
38684         [BZ #14117]
38685         * sysdeps/i386/bits/link.h: Removed.
38686         * sysdeps/i386/bits/linkmap.h: Likewise.
38687         * sysdeps/x86_64/bits/link.h: Renamed to ...
38688         * sysdeps/x86/bits/link.h: This.
38689         * sysdeps/x86_64/bits/linkmap.h: Renamed to ...
38690         * sysdeps/x86/bits/linkmap.h: This.
38691
38692         * sysdeps/i386/bits/endian.h: Removed.
38693         * sysdeps/x86_64/bits/endian.h: Renamed to ...
38694         * sysdeps/x86/bits/endian.h: This.
38695
38696         * sysdeps/i386/bits/byteswap.h: Removed.
38697         * sysdeps/i386/bits/byteswap-16.h: Likewise.
38698         * sysdeps/x86_64/bits/byteswap.h: Renamed to ...
38699         * sysdeps/x86/bits/byteswap.h: This.
38700         * sysdeps/x86_64/bits/byteswap-16.h: Renamed to ...
38701         * sysdeps/x86/bits/byteswap-16.h: This.
38702         * sysdeps/i386/Implies: Add x86.
38703         * sysdeps/x86_64/Implies: Likewise.
38704
38705 2012-05-30  David S. Miller  <davem@davemloft.net>
38706
38707         * soft-fp/soft-fp.h (FP_CUR_EXCEPTIONS): Define.
38708         (FP_TRAPPING_EXCEPTIONS): Provide default implementation.
38709         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h
38710         (FP_TRAPPING_EXCEPTIONS): Define.
38711         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h
38712         (FP_TRAPPING_EXCEPTIONS): Define.
38713         * soft-fp/op-common.h (_FP_PACK_SEMIRAW): Signal underflow for
38714         subnormals only when inexact has been signalled or underflow
38715         exceptions are enabled.
38716         (_FP_PACK_CANONICAL): Likewise.
38717
38718 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38719
38720         [BZ #14183]
38721         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h (__NLINK_T_TYPE):
38722         Defined with __UWORD_TYPE if __x86_64__ isn't defined.
38723
38724 2012-05-30  Richard Henderson  <rth@twiddle.net>
38725
38726         * sysdeps/unix/make-syscalls.sh: Protect symbol_version output
38727         with #ifndef NOT_IN_libc.
38728
38729         * scripts/abilist.awk: Accept 8 fields.  Handle Alpha functions
38730         marked to avoid plt entry.
38731
38732 2012-05-30  H.J. Lu  <hongjiu.lu@intel.com>
38733
38734         [BZ #14112]
38735         * Makeconfig (default-abi): New macro.
38736         (abi-includes): Likewise.
38737         ($(common-objpfx)soversions.mk): Remove WORDSIZE check.  Use
38738         $(abi-$(default-abi)-lib-soname) for soname if defined.
38739         ($(common-objpfx)gnu/lib-names.stmp): Generate from
38740         abi-variants.
38741         * Makefile (installed-stubs): Likewise.
38742         * include/stubs-biarch.h: Removed.
38743         * scripts/lib-names.awk: Only handle one library at a time.
38744         * scripts/soversions.awk: Remove WORDSIZE support.
38745         * shlib-versions: Remove WORDSIZE and i.86/s390x/powerpc64 ld
38746         entries.
38747         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants):
38748         Removed.
38749         (syscall-list-default-condition): Likewise.
38750         (syscall-list-default-condition): Likewise.
38751         (syscall-list-includes): Likewise.
38752         ($(objpfx)bits/syscall%h $(objpfx)bits/syscall%d): Replace
38753         syscall-list-* with abi-*.  Handle undefined abi-variants.
38754         * sysdeps/unix/sysv/linux/i386/Makefile (default-abi): New macro.
38755         * sysdeps/unix/sysv/linux/i386/Implies: New file.
38756         * sysdeps/unix/sysv/linux/x86/Makefile: Likewise.
38757         * sysdeps/unix/sysv/linux/x86_64/64/Makefile: Likewise.
38758         * sysdeps/unix/sysv/linux/x86_64/Implies: Add unix/sysv/linux/x86.
38759         * sysdeps/unix/sysv/linux/x86_64/Makefile (syscall-list-variants):
38760         Removed.
38761         (syscall-list-32-options): Likewise.
38762         (syscall-list-32-condition): Likewise.
38763         (syscall-list-64-options): Likewise.
38764         (syscall-list-64-condition): Likewise.
38765         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (default-abi): New
38766         macro.
38767         * sysdeps/unix/sysv/linux/powerpc/Makefile (syscall-list-*):
38768         Renamed to ...
38769         (abi-*): This.
38770         (abi-64-ld-soname): New macro.
38771         * sysdeps/unix/sysv/linux/s390/Makefile: Likewise.
38772         * sysdeps/unix/sysv/linux/sparc/Makefile (syscall-list-*):
38773         Renamed to ...
38774         (abi-*): This.
38775         * sysdeps/x86_64/64/shlib-versions: Remove ld entry.
38776         * sysdeps/x86_64/x32/shlib-versions: Likewise.
38777
38778 2012-05-30  Joseph Myers  <joseph@codesourcery.com>
38779
38780         * sysdeps/unix/sysv/linux/kernel-features.h
38781         (__ASSUME_TRUNCATE64_SYSCALL): Remove all definitions.
38782         * sysdeps/unix/sysv/linux/ftruncate64.c: Do not
38783         include <kernel-features.h>.
38784         [!__NR_ftruncate64]: Remove conditional code.
38785         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38786         [__NR_ftruncate64]: Make code unconditional.
38787         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38788         * sysdeps/unix/sysv/linux/truncate64.c: Do not
38789         include <kernel-features.h>.
38790         [!__NR_ftruncate64]: Remove conditional code.
38791         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38792         [__NR_ftruncate64]: Make code unconditional.
38793         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38794         * sysdeps/unix/sysv/linux/powerpc/powerpc32/ftruncate64.c: Do not
38795         include <kernel-features.h>.
38796         [!__NR_ftruncate64]: Remove conditional code.
38797         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38798         [__NR_ftruncate64]: Make code unconditional.
38799         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38800         * sysdeps/unix/sysv/linux/powerpc/powerpc32/truncate64.c: Do not
38801         include <kernel-features.h>.
38802         [!__NR_ftruncate64]: Remove conditional code.
38803         [!__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38804         [__NR_ftruncate64]: Make code unconditional.
38805         [__ASSUME_TRUNCATE64_SYSCALL]: Likewise.
38806
38807         * configure.in (libc_cv_fpie): Weaken to a compile test using
38808         LIBC_TRY_CC_OPTION.
38809         * configure: Regenerated.
38810
38811 2012-05-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
38812
38813         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: Refreshed.
38814         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Refreshed.
38815         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: Refreshed.
38816         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
38817         Refreshed.
38818         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: Refreshed.
38819         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: Refreshed.
38820         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: Refreshed.
38821         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Refreshed.
38822         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: Refreshed.
38823         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
38824         Refreshed.
38825
38826 2012-05-27  David S. Miller  <davem@davemloft.net>
38827
38828         * sysdeps/sparc/sparc32/soft-fp/q_util.c (___Q_numbers): Delete.
38829         (___Q_zero): New.
38830         (__Q_simulate_exceptions): Return void.  Change to simulate
38831         exceptions by writing into the %fsr.
38832         * sysdeps/sparc/sparc64/soft-fp/qp_util.c
38833         (__Qp_handle_exceptions): Likewise.
38834         (numbers): Delete.
38835         * sysdeps/sparc/sparc64/soft-fp/Versions: Remove entry for
38836         __Qp_handle_exceptions.
38837         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Remove
38838         __Qp_handle_exceptions.
38839         * sysdeps/sparc/sparc32/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
38840         as unused and give dummy FP_RND_NEAREST initializer.
38841         (FP_INHIBIT_RESULTS): Define.
38842         (___Q_simulate_exceptions): Update declaration.
38843         (FP_HANDLE_EXCEPTIONS): Use ___Q_zero and tidy inline asm
38844         formatting.
38845         * sysdeps/sparc/sparc64/soft-fp/sfp-machine.h (_FP_DECL_EX): Mark
38846         as unused and give dummy FP_RND_NEAREST initializer.
38847         (__Qp_handle_exceptions): Update declaration.
38848         (FP_HANDLE_EXCEPTIONS, QP_NO_EXCEPTIONS): Tidy inline asm
38849         formatting.
38850
38851 2012-05-27  Thomas Schwinge  <thomas@codesourcery.com>
38852
38853         * sysdeps/sh/sh4/fpu/fclrexcpt.c (feclearexcept): Use fpu_control_t for
38854         the temporary FPU control word.
38855         * sysdeps/sh/sh4/fpu/fedisblxcpt.c (fedisableexcept): Likewise.
38856         * sysdeps/sh/sh4/fpu/feenablxcpt.c (feenableexcept): Likewise.
38857         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Likewise.
38858         * sysdeps/sh/sh4/fpu/fegetexcept.c (fegetexcept): Likewise.
38859         * sysdeps/sh/sh4/fpu/fegetround.c (fegetround): Likewise.
38860         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Likewise.
38861         * sysdeps/sh/sh4/fpu/fesetenv.c (fesetenv): Likewise.
38862         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Likewise.
38863         * sysdeps/sh/sh4/fpu/feupdateenv.c (feupdateenv): Likewise.
38864         * sysdeps/sh/sh4/fpu/fsetexcptflg.c (fesetexceptflag): Likewise.
38865         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
38866
38867 2012-05-27  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
38868
38869         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Restore fpscr flag
38870         fields.
38871
38872 2012-05-27  Chung-Lin Tang  <cltang@codesourcery.com>
38873
38874         * sysdeps/sh/_mcount.S (_mount): Add CFI directives.
38875         * sysdeps/unix/sh/sysdep.S (__syscall_error): Likewise.
38876         * sysdeps/unix/sysv/linux/sh/sh3/setcontext.S (__setcontext): Likewise.
38877         * sysdeps/unix/sysv/linux/sh/sh3/swapcontext.S (__swapcontext):
38878         Likewise.
38879         * sysdeps/unix/sysv/linux/sh/sh4/setcontext.S (__setcontext): Likewise.
38880         * sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S (__swapcontext):
38881         Likewise.
38882
38883 2012-05-27  Ulrich Drepper  <drepper@gmail.com>
38884
38885         * po/h.po: Update from translation team.
38886
38887 2012-05-26  Andreas Schwab  <schwab@linux-m68k.org>
38888
38889         * sysdeps/powerpc/powerpc32/dl-irel.h: Include <ldsodefs.h>.
38890
38891         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Optimize
38892         handling of denormals.
38893         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
38894         * sysdeps/ieee754/flt-32/s_logbf.c (__logbf): Likewise.
38895         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
38896         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
38897         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
38898         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c (_logb): Likewise.
38899         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c (_logbl):
38900         Likewise.
38901
38902 2012-05-26  Marek Polacek  <polacek@redhat.com>
38903
38904         [BZ #14152]
38905         * math/libm-test.inc (fma_test): Don't always expect underflow
38906         exception.
38907
38908 2012-05-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
38909
38910         [BZ #12416]
38911         * elf/tst-execstack.c: Include stackinfo.h.
38912         (do_test): Adjust test case to ensure that pthread_getattr_np
38913         behaviour remains the same after marking stack executable.
38914
38915 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
38916
38917         * sysdeps/unix/sysv/linux/kernel-features.h
38918         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove all definitions.
38919         * sysdeps/unix/sysv/linux/i386/getrlimit.c: Do not include
38920         kernel-features.h.
38921         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
38922         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
38923         * sysdeps/unix/sysv/linux/i386/setrlimit.c Do not include
38924         kernel-features.h.
38925         [!__ASSUME_NEW_GETRLIMIT_SYSCALL]: Remove conditional code.
38926         [__ASSUME_NEW_GETRLIMIT_SYSCALL]: Make code unconditional.
38927
38928 2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
38929
38930         * configure.in: Define the default includes to being none.
38931         * configure: Regenerated.
38932
38933 2012-05-25  Roland McGrath  <roland@hack.frob.com>
38934
38935         * sysdeps/x86_64/__longjmp.S: Add a static probe here.
38936         * sysdeps/x86_64/setjmp.S: Likewise.
38937         * sysdeps/i386/bsd-setjmp.S: Likewise.
38938         * sysdeps/i386/bsd-_setjmp.S: Likewise.
38939         * sysdeps/i386/setjmp.S: Likewise.
38940         * sysdeps/i386/__longjmp.S: Likewise.
38941         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
38942         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S: Likewise.
38943
38944         * include/stap-probe.h: New file.
38945         * configure.in: Handle --enable-systemtap.
38946         * configure: Regenerated.
38947         * config.h.in (USE_STAP_PROBE): New #undef.
38948         * extra-lib.mk (CPPFLAGS-$(lib)): Add -DIN_LIB=$(lib).
38949         * elf/Makefile (CPPFLAGS-.os): Add -DIN_LIB=rtld.
38950         * elf/rtld-Rules (rtld-CPPFLAGS): Likewise.
38951
38952 2012-05-25  Joseph Myers  <joseph@codesourcery.com>
38953
38954         [BZ #13717]
38955         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
38956         to 2.4.0 where earlier.
38957         * sysdeps/unix/sysv/linux/configure: Regenerated.
38958         * sysdeps/unix/sysv/linux/i386/chown.c: Do not include
38959         <kernel-features.h>.
38960         [__ASSUME_32BITUIDS]: Make code unconditional.
38961         [!__ASSUME_32BITUIDS]: Remove conditional code.
38962         * sysdeps/unix/sysv/linux/i386/fchown.c: Do not include
38963         <kernel-features.h>.
38964         [__ASSUME_32BITUIDS]: Make code unconditional.
38965         [!__ASSUME_32BITUIDS]: Remove conditional code.
38966         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat)
38967         [__ASSUME_32BITUIDS]: Make code unconditional.
38968         (fchownat) [!__ASSUME_32BITUIDS]: Remove conditional code.
38969         * sysdeps/unix/sysv/linux/i386/getegid.c: Do not include
38970         <kernel-features.h>.
38971         [__ASSUME_32BITUIDS]: Make code unconditional.
38972         [!__ASSUME_32BITUIDS]: Remove conditional code.
38973         * sysdeps/unix/sysv/linux/i386/geteuid.c: Do not include
38974         <kernel-features.h>.
38975         [__ASSUME_32BITUIDS]: Make code unconditional.
38976         [!__ASSUME_32BITUIDS]: Remove conditional code.
38977         * sysdeps/unix/sysv/linux/i386/getgid.c: Do not include
38978         <kernel-features.h>.
38979         [__ASSUME_32BITUIDS]: Make code unconditional.
38980         [!__ASSUME_32BITUIDS]: Remove conditional code.
38981         * sysdeps/unix/sysv/linux/i386/getgroups.c: Do not include
38982         <kernel-features.h>.
38983         [__ASSUME_32BITUIDS]: Make code unconditional.
38984         [!__ASSUME_32BITUIDS]: Remove conditional code.
38985         * sysdeps/unix/sysv/linux/i386/getresgid.c: Do not include
38986         <kernel-features.h>.
38987         [__ASSUME_32BITUIDS]: Make code unconditional.
38988         [!__ASSUME_32BITUIDS]: Remove conditional code.
38989         * sysdeps/unix/sysv/linux/i386/getresuid.c: Do not include
38990         <kernel-features.h>.
38991         [__ASSUME_32BITUIDS]: Make code unconditional.
38992         [!__ASSUME_32BITUIDS]: Remove conditional code.
38993         * sysdeps/unix/sysv/linux/i386/getuid.c: Do not include
38994         <kernel-features.h>.
38995         [__ASSUME_32BITUIDS]: Make code unconditional.
38996         [!__ASSUME_32BITUIDS]: Remove conditional code.
38997         * sysdeps/unix/sysv/linux/i386/lchown.c: Do not include
38998         <kernel-features.h>.
38999         [__ASSUME_32BITUIDS]: Make code unconditional.
39000         [!__ASSUME_32BITUIDS]: Remove conditional code.
39001         * sysdeps/unix/sysv/linux/i386/msgctl.c: Do not include
39002         <kernel-features.h>.
39003         [__ASSUME_32BITUIDS]: Make code unconditional.
39004         [!__ASSUME_32BITUIDS]: Remove conditional code.
39005         * sysdeps/unix/sysv/linux/i386/semctl.c: Do not include
39006         <kernel-features.h>.
39007         [__ASSUME_32BITUIDS]: Make code unconditional.
39008         [!__ASSUME_32BITUIDS]: Remove conditional code.
39009         * sysdeps/unix/sysv/linux/i386/setegid.c: Do not include
39010         <kernel-features.h>.
39011         [__NR_setresgid] (__setresgid): Do not declare.
39012         [__ASSUME_32BITUIDS]: Make code unconditional.
39013         [!__ASSUME_32BITUIDS]: Remove conditional code.
39014         * sysdeps/unix/sysv/linux/i386/seteuid.c: Do not include
39015         <kernel-features.h>.
39016         [__NR_setresuid] (__setresuid): Do not declare.
39017         [__ASSUME_32BITUIDS]: Make code unconditional.
39018         [!__ASSUME_32BITUIDS]: Remove conditional code.
39019         * sysdeps/unix/sysv/linux/i386/setfsgid.c: Do not include
39020         <kernel-features.h>.
39021         [__ASSUME_32BITUIDS]: Make code unconditional.
39022         [!__ASSUME_32BITUIDS]: Remove conditional code.
39023         * sysdeps/unix/sysv/linux/i386/setfsuid.c: Do not include
39024         <kernel-features.h>.
39025         [__ASSUME_32BITUIDS]: Make code unconditional.
39026         [!__ASSUME_32BITUIDS]: Remove conditional code.
39027         * sysdeps/unix/sysv/linux/i386/setgid.c: Do not include
39028         <kernel-features.h>.
39029         [__ASSUME_32BITUIDS]: Make code unconditional.
39030         [!__ASSUME_32BITUIDS]: Remove conditional code.
39031         * sysdeps/unix/sysv/linux/i386/setgroups.c: Do not include
39032         <kernel-features.h>.
39033         [__ASSUME_32BITUIDS]: Make code unconditional.
39034         [!__ASSUME_32BITUIDS]: Remove conditional code.
39035         * sysdeps/unix/sysv/linux/i386/setregid.c: Do not include
39036         <kernel-features.h>.
39037         [__ASSUME_32BITUIDS]: Make code unconditional.
39038         [!__ASSUME_32BITUIDS]: Remove conditional code.
39039         * sysdeps/unix/sysv/linux/i386/setresgid.c: Do not include
39040         <kernel-features.h>.
39041         [__ASSUME_32BITUIDS]: Make code unconditional.
39042         [!__ASSUME_32BITUIDS]: Remove conditional code.
39043         * sysdeps/unix/sysv/linux/i386/setresuid.c: Do not include
39044         <kernel-features.h>.
39045         [__ASSUME_32BITUIDS]: Make code unconditional.
39046         [!__ASSUME_32BITUIDS]: Remove conditional code.
39047         * sysdeps/unix/sysv/linux/i386/setreuid.c: Do not include
39048         <kernel-features.h>.
39049         [__ASSUME_32BITUIDS]: Make code unconditional.
39050         [!__ASSUME_32BITUIDS]: Remove conditional code.
39051         * sysdeps/unix/sysv/linux/i386/setuid.c: Do not include
39052         <kernel-features.h>.
39053         [__ASSUME_32BITUIDS]: Make code unconditional.
39054         [!__ASSUME_32BITUIDS]: Remove conditional code.
39055         * sysdeps/unix/sysv/linux/i386/shmctl.c: Do not include
39056         <kernel-features.h>.
39057         [__ASSUME_32BITUIDS]: Make code unconditional.
39058         [!__ASSUME_32BITUIDS]: Remove conditional code.
39059         * sysdeps/unix/sysv/linux/kernel-features.h
39060         (__ASSUME_SETRESUID_SYSCALL): Remove.
39061         (__ASSUME_SETRESGID_SYSCALL): Likewise.
39062         (__ASSUME_32BITUIDS): Likewise.
39063         (__ASSUME_LDT_WORKS): Likewise.
39064         (__ASSUME_O_DIRECTORY): Likewise.
39065         (__ASSUME_NEW_GETRLIMIT_SYSCALL): Define conditional on
39066         architecture but not kernel version.
39067         (__ASSUME_TRUNCATE64_SYSCALL): Likewise.
39068         (__ASSUME_MMAP2_SYSCALL): Likewise.
39069         (__ASSUME_STAT64_SYSCALL): Likewise.
39070         (__ASSUME_IPC64): Likewise.
39071         * sysdeps/unix/sysv/linux/local-setxid.h: Do not include
39072         <kernel-features.h>.
39073         [__ASSUME_32BITUIDS]: Make code unconditional.
39074         [!__ASSUME_32BITUIDS]: Remove conditional code.
39075         * sysdeps/unix/sysv/linux/opendir.c: Do not include
39076         <kernel-features.h>.
39077         [__ASSUME_O_DIRECTORY]: Make code unconditional.
39078         * sysdeps/unix/sysv/linux/opensock.c [__LINUX_KERNEL_VERSION <
39079         132096]: Remove conditional code.
39080         [__LINUX_KERNEL_VERSION >= 132096]: Make code unconditional.
39081         * sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Do not include
39082         <kernel-features.h>.
39083         [__ASSUME_32BITUIDS]: Make code unconditional.
39084         [!__ASSUME_32BITUIDS]: Remove conditional code.
39085         * sysdeps/unix/sysv/linux/s390/s390-32/lchown.c: Do not include
39086         <kernel-features.h>.
39087         [__ASSUME_32BITUIDS]: Make code unconditional.
39088         [!__ASSUME_32BITUIDS]: Remove conditional code.
39089         * sysdeps/unix/sysv/linux/setegid.c: Do not include
39090         <kernel-features.h>.
39091         [__NR_setresgid || __ASSUME_SETRESGID_SYSCALL]: Make code
39092         unconditional.
39093         (__setresgid): Do not declare.
39094         [__ASSUME_32BITUIDS]: Make code unconditional.
39095         [!__ASSUME_32BITUIDS]: Remove conditional code.
39096         * sysdeps/unix/sysv/linux/seteuid.c: Do not include
39097         <kernel-features.h>.
39098         [__NR_setresuid || __ASSUME_SETRESUID_SYSCALL]: Make code
39099         unconditional.
39100         (__setresuid): Do not declare.
39101         [__ASSUME_32BITUIDS]: Make code unconditional.
39102         [!__ASSUME_32BITUIDS]: Remove conditional code.
39103         * sysdeps/unix/sysv/linux/sh/chown.c: Do not include
39104         <kernel-features.h>.
39105         [__ASSUME_32BITUIDS]: Make code unconditional.
39106         [!__ASSUME_32BITUIDS]: Remove conditional code.
39107         * sysdeps/unix/sysv/linux/sparc/sparc32/semctl.c: Do not include
39108         <kernel-features.h>.
39109         [__ASSUME_32BITUIDS]: Make code unconditional.
39110         [!__ASSUME_32BITUIDS]: Remove conditional code.
39111
39112 2012-05-25  Richard Henderson  <rth@twiddle.net>
39113
39114         * sysdeps/powerpc/powerpc32/dl-irel.h (elf_ifunc_invoke): Pass
39115         dl_hwcap to ifunc resolver.
39116         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela): Use
39117         elf_ifunc_invoke.
39118         * sysdeps/powerpc/powerpc64/dl-irel.h (elf_ifunc_invoke): Pass
39119         dl_hwcap to ifunc resolver.
39120         * sysdeps/powerpc/powerpc64/dl-machine.h (resolve_ifunc): Likewise.
39121
39122 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39123
39124         [BZ #14153]
39125         * sysdeps/ieee754/flt-32/e_acosf.c (__ieee754_acosf): Return pi/2
39126         for |x| <= 2**-26, not 2**-57.
39127         * math/libm-test.inc (acos_test): Do not allow spurious underflow
39128         exception.
39129
39130 2012-05-24  Jeff Law  <law@redhat.com>
39131
39132         * stdio-common/Makefile (tests): Add bug25.
39133         * stdio-common/bug25.c: New test.
39134
39135 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
39136
39137         [BZ #13576]
39138         * malloc/malloc.c (sYSMALLOc): Free the old top chunk with a
39139         multiple of MALLOC_ALIGNMENT in size.
39140         (_int_free): Check chunk size is a multiple of MALLOC_ALIGNMENT.
39141
39142 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39143
39144         * conform/data/stdio.h-data (BUFSIZ): Use macro-int-constant.
39145         Require >= 256.
39146         (FILENAME_MAX): Use macro-int-constant.
39147         (FOPEN_MAX): Use macro-int-constant.  Require >= 8.
39148         (_IOFBF): Use macro-int-constant.
39149         (_IOLBF): Likewise.
39150         (_IONBF): Likewise.
39151         (SEEK_CUR): Likewise.
39152         (SEEK_END): Likewise.
39153         (SEEK_SET): Likewise.
39154         (TMP_MAX): Likewise.
39155         (EOF): Use macro-int-constant.  Require < 0.
39156         (NULL): Use macro-constant.  Require == 0.
39157         (stdin): Require type to be FILE *.
39158         (stdout): Likewise.
39159         (stderr): Likewise.
39160         * conform/data/stdlib.h-data (EXIT_FAILURE): Use
39161         macro-int-constant.
39162         (EXIT_SUCCESS): Likewise.
39163         (NULL): Use macro-constant.  Require == 0.
39164         (RAND_MAX): Use macro-int-constant.
39165         [ISO99 || ISO11] (lldiv_t): Require also for these standards.
39166         [C99-based standards] (strtof): Require function.
39167         [C99-based standards] (strtold): Likewise.
39168         [C99-based standards] (strtoll): Likewise.
39169         [C99-based standards] (strtoull): Likewise.
39170         [ISO || ISO99 || ISO11] (stddef.h): Do not allow header.
39171         [ISO || ISO99 || ISO11] (limits.h): Likewise.
39172         [ISO || ISO99 || ISO11] (math.h): Likewise.
39173         [ISO || ISO99 || ISO11] (sys/wait.h): Likewise.
39174         (str*): Change to str[abcdefghijklmnopqrstuvwxyz]*.
39175         [ISO || ISO99 || ISO11] (*_t): Do not allow.
39176
39177 2012-05-24  Andreas Schwab  <schwab@linux-m68k.org>
39178
39179         [BZ #14132]
39180         * argp/argp-help.c (dgettext) [_LIBC]: Remove use of INTUSE.
39181         * argp/argp-parse.c (dgettext) [_LIBC]: Likewise.
39182         * intl/dgettext.c (DCGETTEXT): Likewise.
39183         * intl/gettext.c (DCGETTEXT): Likewise.
39184         * intl/l10nflist.c (__argz_count, __argz_stringify): Likewise.
39185         * posix/regex_internal.h (gettext): Likewise.
39186         * include/libintl.h (__dcgettext_internal, __dcngettext_internal):
39187         Remove declaration.
39188         * include/argz.h (__argz_count_internal)
39189         (__argz_stringify_internal): Remove declaration.
39190         (__argz_count, __argz_stringify): Declare hidden proto.
39191         * intl/dcgettext.c: Remove use of INTDEF.
39192         * string/argz-count.c: Replace INTDEF with libc_hidden_def.
39193         * string/argz-stringify.c: Likewise.
39194         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
39195         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
39196         Declare hidden proto.
39197         * include/libio.h (_IO_free_backup_area, _IO_free_wbackup_area)
39198         (_IO_padn, _IO_putc, _IO_sgetn, _IO_vfprintf, _IO_vfscanf):
39199         Declare hidden proto.
39200         * include/stdio.h (__asprintf_internal): Don't declare.
39201         (__asprintf): Don't define as macro.  Declare hidden proto.
39202         * include/stdio_ext.h (__fsetlocking_internal): Don't declare.
39203         (__fsetlocking): Declare hidden proto.
39204         * libio/iolibio.h (_IO_fdopen, _IO_fflush, _IO_ftell, _IO_fread)
39205         (_IO_fwrite, _IO_setbuffer, _IO_setvbuf, _IO_vsprintf): Declare
39206         hidden proto.
39207         (_IO_vprintf, _IO_freopen, _IO_freopen64, _IO_setbuf)
39208         (_IO_setlinebuf): Remove use of INTUSE.
39209         (_IO_setbuffer_internal, _IO_fread_internal, _IO_fdopen_internal)
39210         (_IO_vsprintf_internal, _IO_fflush_internal, _IO_fwrite_internal)
39211         (_IO_ftell_internal, _IO_fputs_internal, _IO_setvbuf_internal):
39212         Remove declaration.
39213         * libio/libioP.h (INTUSE, INTDEF, INTDEF2): Don't define.
39214         (_IO_do_flush): Remove use of INTUSE.
39215         (_IO_switch_to_get_mode, _IO_init, _IO_sputbackc, _IO_un_link)
39216         (_IO_link_in, _IO_doallocbuf, _IO_unsave_markers, _IO_setb)
39217         (_IO_adjust_column, _IO_least_wmarker)
39218         (_IO_switch_to_main_wget_area, _IO_switch_to_wbackup_area)
39219         (_IO_switch_to_wget_mode, _IO_wsetb, _IO_sputbackwc)
39220         (_IO_wdoallocbuf, _IO_default_uflow, _IO_wdefault_uflow)
39221         (_IO_default_doallocate, _IO_wdefault_doallocate)
39222         (_IO_default_finish, _IO_wdefault_finish, _IO_default_pbackfail)
39223         (_IO_wdefault_pbackfail, _IO_default_xsputn, _IO_wdefault_xsputn)
39224         (_IO_default_xsgetn, _IO_wdefault_xsgetn, _IO_do_write)
39225         (_IO_wdo_write, _IO_flush_all, _IO_flush_all_linebuffered)
39226         (_IO_file_doallocate, _IO_file_setbuf, _IO_file_seekoff)
39227         (_IO_file_xsputn, _IO_file_xsgetn, _IO_file_stat, _IO_file_close)
39228         (_IO_file_underflow, _IO_file_overflow, _IO_file_init)
39229         (_IO_file_attach, _IO_file_fopen, _IO_file_read, _IO_file_sync)
39230         (_IO_file_close_it, _IO_file_seek, _IO_file_finish)
39231         (_IO_wfile_xsputn, _IO_wfile_sync, _IO_wfile_underflow)
39232         (_IO_wfile_overflow, _IO_wfile_seekoff, _IO_str_underflow)
39233         (_IO_str_overflow, _IO_str_pbackfail, _IO_str_seekoff)
39234         (_IO_getline, _IO_getline_info, _IO_list_all): Declare hidden
39235         proto.
39236         (_IO_flush_all_internal, _IO_adjust_column_internal)
39237         (_IO_default_uflow_internal, _IO_default_finish_internal)
39238         (_IO_default_pbackfail_internal, _IO_default_xsputn_internal)
39239         (_IO_default_xsgetn_internal, _IO_default_doallocate_internal)
39240         (_IO_wdefault_finish_internal, _IO_wdefault_pbackfail_internal)
39241         (_IO_wdefault_xsputn_internal, _IO_wdefault_xsgetn_internal)
39242         (_IO_wdefault_doallocate_internal, _IO_wdefault_uflow_internal)
39243         (_IO_file_doallocate_internal, _IO_file_setbuf_internal)
39244         (_IO_file_seekoff_internal, _IO_file_xsputn_internal)
39245         (_IO_file_xsgetn_internal, _IO_file_stat_internal)
39246         (_IO_file_close_internal, _IO_file_close_it_internal)
39247         (_IO_file_underflow_internal, _IO_file_overflow_internal)
39248         (_IO_file_init_internal, _IO_file_attach_internal)
39249         (_IO_file_fopen_internal, _IO_file_read_internal)
39250         (_IO_file_sync_internal, _IO_file_seek_internal)
39251         (_IO_file_finish_internal, _IO_wfile_xsputn_internal)
39252         (_IO_wfile_seekoff_internal, _IO_wfile_sync_internal)
39253         (_IO_str_underflow_internal, _IO_str_overflow_internal)
39254         (_IO_str_pbackfail_internal, _IO_str_seekoff_internal)
39255         (_IO_file_jumps_internal, _IO_wfile_jumps_internal)
39256         (_IO_list_all_internal, _IO_link_in_internal)
39257         (_IO_sputbackc_internal, _IO_wdoallocbuf_internal)
39258         (_IO_sgetn_internal, _IO_flush_all_linebuffered_internal)
39259         (_IO_switch_to_wget_mode_internal, _IO_unsave_markers_internal)
39260         (_IO_switch_to_main_wget_area_internal, _IO_wdo_write_internal)
39261         (_IO_do_write_internal, _IO_padn_internal)
39262         (_IO_getline_info_internal, _IO_getline_internal)
39263         (_IO_free_wbackup_area_internal, _IO_free_backup_area_internal)
39264         (_IO_switch_to_wbackup_area_internal, _IO_setb_internal)
39265         (_IO_sputbackwc_internal, _IO_switch_to_get_mode_internal)
39266         (_IO_vfscanf_internal, _IO_vfprintf_internal)
39267         (_IO_doallocbuf_internal, _IO_wsetb_internal, _IO_putc_internal)
39268         (_IO_init_internal, _IO_un_link_internal): Don't declare.
39269         * libio/fileops.c: Replace INTDEF with libc_hidden_def and INTDEF2
39270         with libc_hidden_ver, remove use of INTUSE.
39271         * libio/genops.c: Likewise.
39272         * libio/freopen.c: Likewise.
39273         * libio/freopen64.c: Likewise.
39274         * libio/iofclose.c: Likewise.
39275         * libio/iofdopen.c: Likewise.
39276         * libio/iofflush.c: Likewise.
39277         * libio/iofflush_u.c: Likewise.
39278         * libio/iofgets.c: Likewise.
39279         * libio/iofgets_u.c: Likewise.
39280         * libio/iofopen.c: Likewise.
39281         * libio/iofopncook.c: Likewise.
39282         * libio/iofread.c: Likewise.
39283         * libio/iofread_u.c: Likewise.
39284         * libio/ioftell.c: Likewise.
39285         * libio/iofwrite.c: Likewise.
39286         * libio/iogetline.c: Likewise.
39287         * libio/iogets.c: Likewise.
39288         * libio/iogetwline.c: Likewise.
39289         * libio/iopadn.c: Likewise.
39290         * libio/iopopen.c: Likewise.
39291         * libio/ioseekoff.c: Likewise.
39292         * libio/ioseekpos.c: Likewise.
39293         * libio/iosetbuffer.c: Likewise.
39294         * libio/iosetvbuf.c: Likewise.
39295         * libio/ioungetc.c: Likewise.
39296         * libio/ioungetwc.c: Likewise.
39297         * libio/iovdprintf.c: Likewise.
39298         * libio/iovsprintf.c: Likewise.
39299         * libio/iovsscanf.c: Likewise.
39300         * libio/memstream.c: Likewise.
39301         * libio/obprintf.c: Likewise.
39302         * libio/oldfileops.c: Likewise.
39303         * libio/oldiofclose.c: Likewise.
39304         * libio/oldiofdopen.c: Likewise.
39305         * libio/oldiofopen.c: Likewise.
39306         * libio/oldiopopen.c: Likewise.
39307         * libio/oldstdfiles.c: Likewise.
39308         * libio/putc.c: Likewise.
39309         * libio/setbuf.c: Likewise.
39310         * libio/setlinebuf.c: Likewise.
39311         * libio/stdfiles.c: Likewise.
39312         * libio/strops.c: Likewise.
39313         * libio/vasprintf.c: Likewise.
39314         * libio/vscanf.c: Likewise.
39315         * libio/vsnprintf.c: Likewise.
39316         * libio/vswprintf.c: Likewise.
39317         * libio/wfiledoalloc.c: Likewise.
39318         * libio/wfileops.c: Likewise.
39319         * libio/wgenops.c: Likewise.
39320         * libio/wmemstream.c: Likewise.
39321         * libio/wstrops.c: Likewise.
39322         * libio/__fpurge.c: Likewise.
39323         * libio/__fsetlocking.c: Likewise.
39324         * assert/assert.c: Likewise.
39325         * debug/fgets_chk.c: Likewise.
39326         * debug/fgets_u_chk.c: Likewise.
39327         * debug/fread_chk.c: Likewise.
39328         * debug/fread_u_chk.c: Likewise.
39329         * debug/gets_chk.c: Likewise.
39330         * debug/obprintf_chk.c: Likewise.
39331         * debug/vasprintf_chk.c: Likewise.
39332         * debug/vdprintf_chk.c: Likewise.
39333         * debug/vsnprintf_chk.c: Likewise.
39334         * debug/vsprintf_chk.c: Likewise.
39335         * malloc/mtrace.c: Likewise.
39336         * misc/error.c: Likewise.
39337         * misc/syslog.c: Likewise.
39338         * stdio-common/asprintf.c: Likewise.
39339         * stdio-common/fxprintf.c: Likewise.
39340         * stdio-common/getw.c: Likewise.
39341         * stdio-common/isoc99_fscanf.c: Likewise.
39342         * stdio-common/isoc99_scanf.c: Likewise.
39343         * stdio-common/isoc99_vfscanf.c: Likewise.
39344         * stdio-common/isoc99_vscanf.c: Likewise.
39345         * stdio-common/isoc99_vsscanf.c: Likewise.
39346         * stdio-common/printf-prs.c: Likewise.
39347         * stdio-common/printf_fp.c: Likewise.
39348         * stdio-common/printf_fphex.c: Likewise.
39349         * stdio-common/printf_size.c: Likewise.
39350         * stdio-common/putw.c: Likewise.
39351         * stdio-common/scanf.c: Likewise.
39352         * stdio-common/sprintf.c: Likewise.
39353         * stdio-common/tmpfile.c: Likewise.
39354         * stdio-common/vfprintf.c: Likewise.
39355         * stdio-common/vfscanf.c: Likewise.
39356         * stdlib/strfmon_l.c: Likewise.
39357         * sunrpc/openchild.c: Likewise.
39358         * sunrpc/xdr_stdio.c: Likewise.
39359         * sysdeps/ieee754/ldbl-opt/nldbl-compat.c: Likewise.
39360         * sysdeps/mach/hurd/tmpfile.c: Likewise.
39361
39362 2012-05-24  Roland McGrath  <roland@hack.frob.com>
39363
39364         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
39365
39366         * sysdeps/unix/make-syscalls.sh: Support "syscall:vdso_name@VDSOVER"
39367         in the third column, to generate for the shared library an IFUNC
39368         that uses _dl_vdso_vsym.
39369         * Makerules (COMPILE.c, compile-stdin.c): New variables.
39370         * Makeconfig (object-suffixes-noshared): New variable.
39371
39372         * sysdeps/unix/sysv/linux/dl-vdso.h (PREPARE_VERSION_KNOWN): New macro.
39373         (VDSO_NAME_LINUX_2_6, VDSO_HASH_LINUX_2_6): New macros.
39374         (VDSO_NAME_LINUX_2_6_15, VDSO_HASH_LINUX_2_6_15): New macros.
39375         (VDSO_NAME_LINUX_2_6_29, VDSO_HASH_LINUX_2_6_29): New macros.
39376
39377         [BZ #14132]
39378         * include/sys/time.h (__gettimeofday): Remove macro.
39379         (__gettimeofday, gettimeofday): Add libc_hidden_proto.
39380         * time/gettimeofday.c (__gettimeofday): Remove #undef.
39381         Remove INTDEF.
39382         (__gettimeofday): Add libc_hidden_def.
39383         (gettimeofday): Add libc_hidden_weak.
39384         * sysdeps/mach/gettimeofday.c: Likewise.
39385         * sysdeps/posix/gettimeofday.c: Likewise.
39386         * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Likewise.
39387         * sysdeps/unix/sysv/linux/s390/gettimeofday.c: Likewise.
39388         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c
39389         (__gettimeofday_internal): Remove strong_alias.
39390         (__gettimeofday): Add libc_hidden_def.
39391         (gettimeofday): Add libc_hidden_weak.
39392         * sysdeps/unix/syscalls.list (gettimeofday):
39393         Remove __gettimeofday_internal alias.
39394
39395 2012-05-24  Daniel Jacobowitz  <drow@false.org>
39396             H.J. Lu  <hongjiu.lu@intel.com>
39397
39398         [BZ #12495]
39399         * malloc/malloc.c (SMALLBIN_CORRECTION): New.
39400         (MIN_LARGE_SIZE, smallbin_index): Use it to handle 16-byte alignment.
39401         (largebin_index_32_big): New.
39402         (largebin_index): Use it for 16-byte alignment.
39403         (sYSMALLOc): Handle MALLOC_ALIGNMENT > 2 * SIZE_SZ.  Don't update
39404         correction with front_misalign.
39405
39406 2012-05-24  H.J. Lu  <hongjiu.lu@intel.com>
39407
39408         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/ld.abilist: New file.
39409         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libBrokenLocale.abilist:
39410         Likewise.
39411         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libanl.abilist:
39412         Likewise.
39413         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libc.abilist:
39414         Likewise.
39415         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libcrypt.abilist:
39416         Likewise.
39417         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libdl.abilist:
39418         Likewise.
39419         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libm.abilist:
39420         Likewise.
39421         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libnsl.abilist:
39422         Likewise.
39423         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libpthread.abilist:
39424         Likewise.
39425         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libresolv.abilist:
39426         Likewise.
39427         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/librt.abilist:
39428         Likewise.
39429         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libthread_db.abilist:
39430         Likewise.
39431         * sysdeps/unix/sysv/linux/x86_64/x32/nptl/libutil.abilist:
39432         Likewise.
39433
39434         * scripts/data/c++-types-x32-linux-gnu.data: New file.
39435         * sysdeps/x86_64/x32/shlib-versions: Add x32 ABI entry.
39436
39437 2012-05-24  Joseph Myers  <joseph@codesourcery.com>
39438
39439         [BZ #10846]
39440         [BZ #14036]
39441         * math/libm-test.inc (exp_test): Add test from bug 14036.
39442         (pow_test): Add test from bug 10846.
39443
39444         * math/gen-libm-test.pl (%beautify): Remove entries for exceptions
39445         and other flags.
39446         (special_function): Do not include flags in test name.
39447         (parse_args): Likewise.
39448         * sysdeps/i386/fpu/libm-test-ulps: Update.
39449         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
39450         * sysdeps/s390/fpu/libm-test-ulps: Likewise.
39451         * sysdeps/sparc/fpu/libm-test-ulps: Likewise.
39452         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39453
39454         * math/gen-libm-test.pl (%beautify): Add entries for underflow
39455         exceptions.
39456         * math/libm-test.inc ("Philosophy"): Update comment about
39457         exception testing.
39458         (UNDERFLOW_EXCEPTION): New macro.
39459         (UNDERFLOW_EXCEPTION_OK): Likewise.
39460         (UNDERFLOW_EXCEPTION_FLOAT): Likewise.
39461         (UNDERFLOW_EXCEPTION_OK_FLOAT): Likewise.
39462         (UNDERFLOW_EXCEPTION_DOUBLE): Likewise.
39463         (UNDERFLOW_EXCEPTION_LDOUBLE_IBM): Likewise.
39464         (INVALID_EXCEPTION_OK): Update value.
39465         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
39466         (OVERFLOW_EXCEPTION_OK): Likewise.
39467         (IGNORE_ZERO_INF_SIGN): Likewise.
39468         (test_exceptions): Handle underflow exceptions.
39469         (acos_test): Update for underflow exception expectations.
39470         (cexp_test): Likewise.
39471         (clog_test): Likewise.
39472         (clog10_test): Likewise.
39473         (csqrt_test): Likewise.
39474         (ctan_test): Likewise.
39475         (ctanh_test): Likewise.
39476         (exp_test): Likewise.
39477         (exp10_test): Likewise.
39478         (exp2_test): Likewise.
39479         (expm1_test): Likewise.
39480         (fma_test): Likewise.
39481         (j0_test): Likewise.
39482         (jn_test): Likewise.
39483         (nexttoward_test): Likewise.
39484         (pow_test): Likewise.
39485         (scalbn_test): Likewise.
39486         (scalbln_test): Likewise.
39487         (tan_test): Likewise.
39488         (y1_test): Likewise.
39489         * sysdeps/i386/fpu/libm-test-ulps: Update.
39490         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39491
39492 2012-05-23  David S. Miller  <davem@davemloft.net>
39493
39494         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
39495         (__libc_sigaction): Remove unused local variables.
39496
39497 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39498
39499         * sysdeps/unix/sysv/linux/x86_64/x32/configure: New file.
39500
39501 2012-05-23  Paul Eggert  <eggert@cs.ucla.edu>
39502
39503         mktime: avoid signed integer overflow
39504         * time/mktime.c (__mktime_internal): Do not mishandle the case
39505         where diff == INT_MIN.
39506
39507         mktime: simplify computation of average
39508         * time/mktime.c (ranged_convert): Use new time_t_avg function
39509         instead of rolling our own (probably-slower) code.
39510
39511         mktime: do not assume signed right shift propagates sign bit
39512         * time/mktime.c (isdst_differ): New static function.
39513         (__mktime_internal): No need to normalize tm_isdst now.
39514         (__mktime_internal, not_equal_tm): Use isdst_differ to compare
39515         tm_isdst values.
39516
39517         mktime: merge another wrapv change from gnulib
39518         * time/mktime.c (TYPE_MAXIMUM): Rework slightly to avoid diagnostics
39519         from some compilers.
39520
39521         mktime: remove incorrect attempt at unusual arithmetics
39522         * time/mktime.c (TYPE_ONES_COMPLEMENT, TYPE_SIGNED_MAGNITUDE): Remove.
39523         The code didn't really work on such machines anyway.
39524         (TYPE_MINIMUM): Assume two's complement.
39525         (twos_complement_arithmetic): Verify that long_int and time_t
39526         are two's complement (or unsigned, in the latter case).
39527
39528         mktime: check signed shifts on long_int and time_t, too
39529         * time/mktime.c (SHR): Check that shifts work as desired
39530         on the types long_int and time_t too, as SHR is used on
39531         such types.
39532
39533         mktime: do not assume 'long' is wide enough
39534         * time/mktime.c (verify): Move decl up.
39535         (long_int): New type.
39536         (leapyear, ydhms_diff, guess_time_tm, __mktime_internal): Use it,
39537         to remove assumption in the code that 'long' is wide enough to
39538         store year values.  This assumption is not true on x32 and on
39539         some non-glibc platforms.
39540
39541         mktime: merge wrapv change from gnulib
39542         * time/mktime.c (WRAPV): New macro.
39543         (time_t_avg, time_t_add_ok, time_t_int_add_ok): New static functions.
39544         (guess_time_tm, __mktime_internal): Do not assume that signed
39545         integer overflow wraps around; modern compilers generate code
39546         where this assumption is no longer valid.
39547
39548 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39549
39550         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
39551         Replace "jmp L(pseudo_end)" with "ret".
39552         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_ERROR_HANDLER):
39553         Likewise.
39554
39555 2012-05-23  Andreas Jaeger  <aj@suse.de>
39556
39557         * sysdeps/unix/sysv/linux/syscalls.list: Add poll.
39558         * sysdeps/unix/sysv/linux/poll.c: Remove file.
39559
39560 2012-05-23  Andreas Jaeger  <aj@suse.de>
39561             Maximilian Attems  <max@stro.at>
39562
39563         * sysdeps/unix/sysv/linux/sys/reboot.h (RB_SW_SUSPEND, RB_KEXEC):
39564         New macros.
39565
39566 2012-05-23  H.J. Lu  <hongjiu.lu@intel.com>
39567
39568         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Rearrange
39569         code so that pseudo_end is just ret and the stack pointer is
39570         correct also for static library in error case.
39571
39572 2012-05-23  Joseph Myers  <joseph@codesourcery.com>
39573
39574         * sysdeps/unix/sysv/linux/powerpc/chown.c: Add comment suggesting
39575         move to syscalls.list.
39576         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: Likewise.
39577         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: Likewise.
39578         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: Likewise.
39579         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: Likewise.
39580
39581         * manual/install.texi (Running make install): Do not mention Linux
39582         kernel version for which pt_chown is not needed.
39583         (Linux): Do not mention problems with nscd with 2.0 kernels.
39584         * INSTALL: Regenerated.
39585
39586 2012-05-23  Andreas Jaeger  <aj@suse.de>
39587
39588         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h
39589         (MADV_DONTDUMP,MADV_DODUMP): New macros from Linux 3.4.
39590         macro.
39591         * sysdeps/unix/sysv/linux/s390/bits/mman.h
39592         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39593         * sysdeps/unix/sysv/linux/sh/bits/mman.h
39594         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39595         * sysdeps/unix/sysv/linux/i386/bits/mman.h
39596         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39597         * sysdeps/unix/sysv/linux/sparc/bits/mman.h
39598         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39599         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h
39600         (MADV_DONTDUMP,MADV_DODUMP): Likewise.
39601         * sysdeps/unix/sysv/linux/bits/in.h
39602         (IP_MULTICAST_ALL,IP_UNICAST_IF): Likewise.
39603
39604 2012-05-22  Roland McGrath  <roland@hack.frob.com>
39605
39606         * sysdeps/unix/sysv/linux/dl-vdso.h (CHECK_HASH): Macro removed.
39607         (PREPARE_VERSION): Just use assert instead, it will be elided
39608         under [NDEBUG] anyway.
39609
39610 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39611
39612         * sysdeps/unix/sysv/linux/Makefile: Include
39613         $(firstword $(wildcard $(sysdirs:=/sysctl.mk))).
39614         (sysdep_routines): Remove sysctl.
39615         * sysdeps/unix/sysv/linux/bits/sysctl.h: New file.
39616         * sysdeps/unix/sysv/linux/sysctl.mk: Likewise.
39617         * sysdeps/unix/sysv/linux/x86_64/bits/sysctl.h: Likewise.
39618         * sysdeps/unix/sysv/linux/x86_64/x32/sysctl.mk: Likewise.
39619         * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <bits/sysctl.h>.
39620
39621 2012-05-22  Andreas Jaeger  <aj@suse.de>
39622
39623         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S: Rearrange code so
39624         that pseudo_end is just ret and the stack pointer is correct also
39625         for static library in error case.
39626
39627 2012-05-22  Paul Pluzhnikov  <ppluzhnikov@google.com>
39628
39629         [BZ #14122]
39630         * nss/nsswitch.c (defconfig_entries): New variable.
39631         (__nss_database_lookup): Don't leak defconfig entries.
39632         (nss_parse_service_list): Don't leak on error paths.
39633         (free_database_entries): New function.
39634         (free_defconfig): New function.
39635         (free_mem): Move common code to free_database_entries.
39636
39637 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39638
39639         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile (sysdep_routines):
39640         Add arch_prctl.
39641         * sysdeps/unix/sysv/linux/x86_64/x32/arch_prctl.c: New file.
39642
39643         * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c
39644         (posix_fallocate): Use INTERNAL_SYSCALL_TYPES if it is defined.
39645         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (INLINE_SYSCALL_TYPES):
39646         New macro.
39647         (INTERNAL_SYSCALL_NCS_TYPES): Likewise.
39648         (INTERNAL_SYSCALL_TYPES): Likewise.
39649         (LOAD_ARGS_TYPES_[1-6]): Likewise.
39650         (LOAD_REGS_TYPES_[1-6]): Likewise.
39651         (LOAD_ARGS_[1-6]): Use LOAD_ARGS_TYPES_[1-6].
39652         (LOAD_REGS_[1-6]): Use LOAD_REGS_TYPES_[1-6].
39653
39654 2012-05-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39655
39656         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: Add compat symbol
39657         copysignl for GLIBC_2_0.
39658         * sysdeps/powerpc/powerpc32/power7/fpu/s_finite.S: Add compat symbol
39659         finitel for GLIBC_2.0 and __finitel for GLIBC_2_1.
39660         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: Add compat symbol
39661         logbl for GLIBC_2_0.
39662         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: Likewise.
39663         * sysdeps/powerpc/powerpc64/power7/fpu/s_finite.S: Likewise.
39664
39665 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39666
39667         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Don't include
39668         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
39669
39670         * sysdeps/unix/sysv/linux/i386/sysdep.h (SYSCALL_ERROR_HANDLER):
39671         Use "neg %eax".
39672
39673         * time/mktime.c: Update copyright years.
39674
39675 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
39676
39677         mktime: merge comment-quoting-style change from gnulib
39678         * time/mktime.c: Quote 'like this' in comments.
39679         The GNU coding standards suggest that we no longer quote `like this',
39680         as "`" and "'" are typically rendered asymmetrically nowadays.
39681         The typical gnulib style is to quote 'like this' when quoting
39682         code, and "like this" when quoting English.
39683
39684         * time/mktime.c (compile-command): Add "-I.".
39685
39686         mktime: merge mktime-internal.h change from gnulib
39687         * time/mktime.c [!_LIBC]: Include "mktime-internal.h".
39688
39689         mktime: merge time_r change from gnulib
39690         * time/mktime.c [!_LIBC]: Do not include "time_r.h".
39691
39692         mktime: merge DEBUG change from gnulib
39693         * time/mktime.c (mktime) [DEBUG]: #undef before #define-ing, in
39694         case system <time.h> has a #define.
39695
39696         mktime: merge <sys/types.h> change from gnulib
39697         * time/mktime.c: Do not include <sys/types.h>; no longer needed,
39698         since <time.t> is now guaranteed to define time_t.
39699
39700         mktime: merge HAVE_CONFIG_H change from gnulib
39701         * time/mktime.c: Include <config.h> if !_LIBC, not if HAVE_CONFIG_H.
39702
39703 2012-05-22  H.J. Lu  <hongjiu.lu@intel.com>
39704
39705         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
39706         Use "neg %eax".
39707
39708         * sysdeps/unix/sysv/linux/bits/resource.h (RLIM_INFINITY): Use
39709         __rlim_t cast.
39710         (struct rusage): Use anonymous union to pad each field to
39711         __syscall_slong_t.
39712
39713 2012-05-21  David S. Miller  <davem@davemloft.net>
39714
39715         * Makefules (o-iterator): Remove .s cases.
39716         (compile-command.s): Delete.
39717         (COMPILE.s): Delete.
39718         * sysdeps/unix/make-syscalls.sh: Remove .s file tests.
39719
39720 2012-05-21  Joseph Myers  <joseph@codesourcery.com>
39721
39722         * configure.in (libc_cv_predef_stack_protector): Only consider
39723         "foobar" and "__stack_chk_fail" lines in libc_undefs.
39724         * configure: Regenerated.
39725
39726 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39727
39728         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (SYSCALL_SET_ERRNO):
39729         New macro.  Use R*LP on int and pointer.
39730         (SYSCALL_ERROR_HANDLER): Use SYSCALL_SET_ERRNO.
39731         * sysdeps/unix/sysv/linux/x86_64/x32/lseek.S: New file.
39732         * sysdeps/unix/sysv/linux/x86_64/x32/llseek.S: Likewise.
39733         * sysdeps/unix/sysv/linux/x86_64/x32/sysdep.h: Likewise.
39734
39735         * sysdeps/gnu/bits/utmp.h (struct lastlog): Check
39736         [__WORDSIZE_TIME64_COMPAT32] instead of
39737         [__WORDSIZE == 64 && __WORDSIZE_COMPAT32].
39738         (struct utmp): Likewise.
39739         * sysdeps/gnu/bits/utmpx.h (struct utmpx): Likewise.
39740         * sysdeps/powerpc/powerpc32/bits/wordsize.h (__WORDSIZE_COMPAT32):
39741         Renamed to ...
39742         (__WORDSIZE_TIME64_COMPAT32): This.
39743         * sysdeps/powerpc/powerpc64/bits/wordsize.h: Likewise.
39744         * sysdeps/sparc/sparc32/bits/wordsize.h: Likewise.
39745         * sysdeps/sparc/sparc64/bits/wordsize.h: Likewise.
39746         * sysdeps/unix/sysv/linux/powerpc/bits/wordsize.h: Likewise.
39747         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE_COMPAT32): Removed.
39748         (__WORDSIZE_TIME64_COMPAT32): New macro.
39749
39750 2012-05-21  Andreas Jaeger  <aj@suse.de>
39751
39752         * sysdeps/i386/i686/multiarch/wcschr-c.c: Redefine libc_hidden_def
39753         only if [SHARED]. Add prototype for __wcschr_ia32.
39754
39755 2012-05-21  Roland McGrath  <roland@hack.frob.com>
39756
39757         * sysdeps/x86_64/setjmp.S [PTR_MANGLE] [__ILP32__]: Preserve high bits
39758         of %rbp unmolested in the jmp_buf while mangling the low bits.
39759         * sysdeps/x86_64/__longjmp.S [PTR_DEMANGLE] [__ILP32__]: Restore the
39760         unmolested high bits of %rbp while demangling the low bits.
39761         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Likewise.
39762
39763 2012-05-21  Andreas Jaeger  <aj@suse.de>
39764
39765         * include/shlib-compat.h (libc_sunrpc_symbol): New macro.
39766         * sunrpc/svc_simple.c: Use it for registerrpc.
39767         * sunrpc/xcrypt.c: Use it for passwd2des.
39768
39769         * malloc/malloc.c: Include shlib-compat.h for SHLIB_COMPAT.
39770
39771 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39772
39773         * sysdeps/unix/sysv/linux/bits/statvfs.h (_STATVFSBUF_F_UNUSED):
39774         Don't define if [__SYSCALL_WORDSIZE != 32].
39775         * sysdeps/x86_64/bits/wordsize.h (__SYSCALL_WORDSIZE):
39776         New macro.
39777
39778 2012-05-21  Bruno Haible  <bruno@clisp.org>
39779             Andreas Jaeger  <aj@suse.de>
39780
39781         [BZ #13691], Revert breakage of iconv() converter for TCVN-5712.
39782         * iconvdata/tcvn5712-1.c (BODY for FROM_LOOP): Don't consider
39783         inptr and inend for must_buffer_ch.
39784         * wcsmbs/tst-mbsnrtowcs.c: Remove file.
39785         * wcsmbs/Makefile (tests): Remove tst-mbsnrtowcs.
39786         * stdio-common/Makefile (tests): Remove bug15.
39787         (bug15-ENV): Remove macro.
39788         * stdio-common/bug15.c: Remove, we do not support vi_VN.TCVN5712-1
39789         anymore.
39790
39791 2012-05-19  Andreas Jaeger  <aj@suse.de>
39792             Roland McGrath  <roland@hack.frob.com>
39793
39794         * manual/contrib.texi: Completely rewritten. It contains now an
39795         alphabetical list of contributors and their contributions.
39796
39797 2012-05-21  Richard Henderson  <rth@twiddle.net>
39798
39799         * misc/getauxval.c (__getauxval): Use unsigned long int.
39800         * misc/sys/auxv.h: Include <sys/cdefs.h>.
39801         (getauxval): Use unsigned long int.
39802
39803 2012-05-21  H.J. Lu  <hongjiu.lu@intel.com>
39804
39805         * sysdeps/unix/sysv/linux/x86_64/x32/syscalls.list: New file.
39806
39807 2012-05-21  Roland McGrath  <roland@hack.frob.com>
39808
39809         * malloc/malloc.c [!SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_16)]
39810         (MALLOC_ALIGNMENT): Set it to the greater of 2 * SIZE_SZ and
39811         __alignof__ (long double).
39812
39813 2012-05-21  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39814
39815         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39816
39817 2012-05-20  Richard Henderson  <rth@twiddle.net>
39818
39819         * misc/getauxval.c: New file.
39820         * misc/sys/auxv.h: New file.
39821         * misc/Makefile (headers): Add sys/auxv.h, bits/hwcap.h.
39822         (routines): Add getauxval.
39823         * misc/Versions (GLIBC_2.16): Add __getauxval, getauxval.
39824         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): Add _dl_auxv.
39825         * elf/dl-sysdep.c (_dl_auxv): Remove.
39826         (_dl_sysdep_start, _dl_show_auxv): Use GLRO to access _dl_auxv.
39827         * elf/dl-support.c (_dl_auxv): New variable.
39828         (_dl_aux_init): Initialize it.
39829         * manual/startup.texi (Auxiliary Vector): New node.
39830         * sysdeps/generic/bits/hwcap.h: New file.
39831         * sysdeps/powerpc/bits/hwcap.h: New file, split out from ...
39832         * sysdeps/powerpc/sysdep.h: ... here.  Include it.
39833         * sysdeps/sparc/bits/hwcap.h: New file, split out from ...
39834         * sysdeps/sparc/sysdep.h: ... here.  Include it.
39835         * sysdeps/unix/sysv/linux/s390/bits/hwcap.h: New file.
39836         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: Update.
39837         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
39838         Update.
39839         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: Update.
39840         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: Update.
39841         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: Update.
39842         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: Update.
39843         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
39844         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: Update.
39845         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: Update.
39846         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Update.
39847
39848 2012-05-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
39849
39850         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
39851
39852 2012-05-19  David S. Miller  <davem@davemloft.net>
39853
39854         * sysdeps/sparc/fpu/libm-test-ulps: Update.
39855
39856 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
39857
39858         [BZ #14123]
39859         * math/s_ccosh.c: Include <float.h>
39860         (__ccosh): Avoid internal overflow calculating sinh and cosh
39861         values before multiplying by sin and cos values.
39862         * math/s_ccoshf.c: Likewise.
39863         * math/s_ccoshl.c: Likewise.
39864         * math/s_csin.c: Likewise.
39865         * math/s_csinf.c: Likewise.
39866         * math/s_csinl.c: Likewise.
39867         * math/s_csinh.c: Likewise.
39868         * math/s_csinhf.c: Likewise.
39869         * math/s_csinhl.c: Likewise.
39870         * math/libm-test.inc (ccos_test): Add more tests.
39871         (ccosh_test): Likewise.
39872         (csin_test): Likewise.
39873         (csinh_test): Likewise.
39874         * sysdeps/i386/fpu/libm-test-ulps: Update.
39875         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
39876
39877 2012-05-19  H.J. Lu  <hongjiu.lu@intel.com>
39878
39879         * sysdeps/unix/sysv/linux/wordsize-64/preadv.c: New file.
39880         * sysdeps/unix/sysv/linux/wordsize-64/pwritev.c: Likewise.
39881
39882         * sysdeps/x86_64/x32/_itoa.h: Add comment.
39883
39884 2012-05-19  Joseph Myers  <joseph@codesourcery.com>
39885
39886         * sysdeps/powerpc/soft-fp/Makefile: Remove file.
39887         * sysdeps/powerpc/soft-fp/Subdirs: Likewise.
39888         * sysdeps/powerpc/soft-fp/Versions: Likewise.
39889         * sysdeps/powerpc/soft-fp/q_add.c: Likewise.
39890         * sysdeps/powerpc/soft-fp/q_cmp.c: Likewise.
39891         * sysdeps/powerpc/soft-fp/q_cmpe.c: Likewise.
39892         * sysdeps/powerpc/soft-fp/q_div.c: Likewise.
39893         * sysdeps/powerpc/soft-fp/q_dtoq.c: Likewise.
39894         * sysdeps/powerpc/soft-fp/q_feq.c: Likewise.
39895         * sysdeps/powerpc/soft-fp/q_fge.c: Likewise.
39896         * sysdeps/powerpc/soft-fp/q_fgt.c: Likewise.
39897         * sysdeps/powerpc/soft-fp/q_fle.c: Likewise.
39898         * sysdeps/powerpc/soft-fp/q_flt.c: Likewise.
39899         * sysdeps/powerpc/soft-fp/q_fne.c: Likewise.
39900         * sysdeps/powerpc/soft-fp/q_itoq.c: Likewise.
39901         * sysdeps/powerpc/soft-fp/q_lltoq.c: Likewise.
39902         * sysdeps/powerpc/soft-fp/q_mul.c: Likewise.
39903         * sysdeps/powerpc/soft-fp/q_neg.c: Likewise.
39904         * sysdeps/powerpc/soft-fp/q_qtod.c: Likewise.
39905         * sysdeps/powerpc/soft-fp/q_qtoi.c: Likewise.
39906         * sysdeps/powerpc/soft-fp/q_qtoll.c: Likewise.
39907         * sysdeps/powerpc/soft-fp/q_qtos.c: Likewise.
39908         * sysdeps/powerpc/soft-fp/q_qtou.c: Likewise.
39909         * sysdeps/powerpc/soft-fp/q_qtoull.c: Likewise.
39910         * sysdeps/powerpc/soft-fp/q_sqrt.c: Likewise.
39911         * sysdeps/powerpc/soft-fp/q_stoq.c: Likewise.
39912         * sysdeps/powerpc/soft-fp/q_sub.c: Likewise.
39913         * sysdeps/powerpc/soft-fp/q_ulltoq.c: Likewise.
39914         * sysdeps/powerpc/soft-fp/q_util.c: Likewise.
39915         * sysdeps/powerpc/soft-fp/q_utoq.c: Likewise.
39916         * sysdeps/powerpc/soft-fp/sfp-machine.h: Likewise.
39917
39918 2012-05-18  Andreas Jaeger  <aj@suse.de>
39919
39920         * csu/.gitignore: Delete.
39921
39922 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39923
39924         * sysdeps/unix/sysv/linux/bits/timex.h: Include <bits/types.h>.
39925         (timex): Use __syscall_slong_t.
39926
39927 2012-05-18  Andreas Jaeger  <aj@suse.de>
39928             Carlos O'Donell  <carlos_odonell@mentor.com>
39929
39930         * manual/install.texi (Configuring and compiling): Update
39931         description about files modified in the source directory.
39932         * INSTALL: Regenerated.
39933
39934 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39935
39936         * sysdeps/unix/x86_64/sysdep.S: Use RAX_LP to access return
39937         value.  Use "or" to set return value to -1.
39938         * sysdeps/unix/sysv/linux/x86_64/sysdep.S: Use RAX_LP to
39939         negate return value.
39940
39941 2012-05-18  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
39942
39943         * sysdeps/powerpc/powerpc32/power4/Makefile (CFLAGS-wordcopy.c)
39944         (CFLAGS-memmove.c): remove -ftree-loop-linear which causes a build
39945         failure if the compiler has Graphite support disabled.
39946         * sysdeps/powerpc/powerpc32/power4/fpu/Makefile (CFLAGS-mpa.c):
39947         Likewise.
39948         * sysdeps/powerpc/powerpc64/power4/Makefile (CFLAGS-wordcopy.c)
39949         (CFLAGS-memmove.c): Likewise.
39950         * sysdeps/powerpc/powerpc64/power4/fpu/Makefile (CFLAGS-mpa.c):
39951         Likewise.
39952
39953 2012-05-18  H.J. Lu  <hongjiu.lu@intel.com>
39954
39955         * sysdeps/x86_64/x32/_itoa.h: New file.
39956
39957         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): Use
39958         getdents system call only if kernel and user dirents have the
39959         same d_ino and d_off.
39960
39961         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
39962         LLONG_MAX != LONG_MAX.
39963         (_itoa_word): Use _ITOA_WORD_TYPE on value.
39964         (_fitoa_word): Likewise.
39965
39966         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Fold copyright
39967         years.
39968         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Likewise.
39969         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h: Likewise.
39970         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Likewise.
39971
39972         * sysdeps/unix/sysv/linux/x86_64/bits/sigcontext.h: Don't
39973         include <bits/wordsize.h>.  Check __x86_64__ instead of
39974         __WORDSIZE.
39975         (sigcontext): Use "__uint64_t" instead of "unsigned long int"
39976         if __x86_64__ is defined.  Use anonymous union on fpstate.
39977
39978         * sysdeps/unix/sysv/linux/x86_64/sys/user.h (user): Use
39979         anonymous union.
39980
39981 2012-05-18  Andreas Schwab  <schwab@linux-m68k.org>
39982
39983         * sysdeps/powerpc/powerpc32/dl-start.S (_dl_start_user): Use
39984         INTUSE on _dl_argv, and _rtld_local instead of _rtld_global.
39985         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S [IS_IN_rtld]:
39986         Refer to _rtld_local_ro instead of _rtld_global_ro.
39987         * sysdeps/powerpc/powerpc32/fpu/setjmp-common.S [IS_IN_rtld]:
39988         Likewise.
39989         * sysdeps/powerpc/powerpc64/__longjmp-common.S [IS_IN_rtld]:
39990         Likewise.
39991         * sysdeps/powerpc/powerpc64/setjmp-common.S [IS_IN_rtld]:
39992         Likewise.
39993         * sysdeps/powerpc/powerpc64/dl-trampoline.S [SHARED]: Likewise.
39994         * sysdeps/powerpc/powerpc64/dl-machine.h: Use _rtld_local instead
39995         of _rtld_global, and rtld_progname instead of _dl_argv[0].
39996
39997         * sysdeps/powerpc/powerpc32/dl-machine.c
39998         (__elf_machine_runtime_setup) [PROF]: Don't reference
39999         _dl_prof_resolve.
40000
40001 2012-05-18  Andreas Jaeger  <aj@suse.de>
40002
40003         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Make inline
40004         function only available for GCCs before 3.4 since GCC 3.4
40005         introduced a builtin.
40006         (lrint): Likewise.
40007         (llrintf): Likewise.
40008         (llrint): Likewise.
40009         (fmaxf): Likewise.
40010         (fmax): Likewise.
40011         (fminf): Likewise.
40012         (fmin): Likewise.
40013         (rint): Likewise.
40014         (rintf): Likewise.
40015         (nearbyint): Likewise.
40016         (nearbyintf): Likewise.
40017         (ceil): Likewise.
40018         (ceilf): Likewise.
40019         (floor): Likewise.
40020         (floorf): Likewise.
40021
40022 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40023
40024         * sysdeps/unix/sysv/linux/pselect.c (data): Use __syscall_ulong_t
40025         on both fields and cast pointer to __syscall_ulong_t.
40026
40027         * bits/types.h (__fsword_t): New type.
40028         * bits/typesizes.h (__FSWORD_T_TYPE): New macro.
40029         sysdeps/mach/hurd/bits/typesizes.h (__FSWORD_T_TYPE): Likewise.
40030         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40031         (__FSWORD_T_TYPE): Likewise.
40032         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40033         (__FSWORD_T_TYPE): Likewise.
40034         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40035         (__FSWORD_T_TYPE): Likewise.
40036         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h
40037         (__FSWORD_T_TYPE): Likewise.
40038         * sysdeps/unix/sysv/linux/bits/statfs.h (statfs): Replace
40039         __SWORD_TYPE with __fsword_t.
40040         (statfs64): Likewise.
40041
40042 2012-05-17  David S. Miller  <davem@davemloft.net>
40043
40044         * crypt/sha512c-test.c (TIMEOUT): Increase to 32.
40045
40046 2012-05-17  Andreas Jaeger  <aj@suse.de>
40047
40048         * elf/tst-relsort1.c (do_test): Fix function declaration to avoid
40049         warning.
40050
40051 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40052
40053         * sysdeps/x86_64/tst-mallocalign1.c (test): Cast to unsigned long.
40054
40055 2012-05-17  Andreas Jaeger  <aj@suse.de>
40056
40057         * sysdeps/i386/dl-machine.h (elf_machine_rel): Declare refsym only
40058         when it is used.
40059
40060 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
40061
40062         * stdio-common/bug22.c (TIMEOUT): Bump up from 30 to 60.
40063
40064 2012-05-17  H.J. Lu  <hongjiu.lu@intel.com>
40065
40066         * sysdeps/x86_64/Makefile (tests): Add tst-mallocalign1.
40067         * sysdeps/x86_64/tst-mallocalign1.c: New file.
40068
40069 2012-05-17  Andreas Jaeger  <aj@suse.de>
40070             Carlos O'Donell  <carlos_odonell@mentor.com>
40071
40072         [BZ #14059]
40073         * sysdeps/x86_64/multiarch/init-arch.h
40074         (bit_YMM_Usable): Rename to...
40075         (bit_AVX_Usable): ... this.
40076         (bit_FMA4_Usable): New macro.
40077         (bit_XMM_state): New macro.
40078         (bit_YMM_state): New macro.
40079         [__ASSEMBLER__] (index_YMM_Usable): Rename to...
40080         [__ASSEMBLER__] (index_AVX_Usable): ... this.
40081         [__ASSEMBLER__] (index_FMA4_Usable): New macro.
40082         (CPUID_OSXSAVE): New macro.
40083         (CPUID_AVX): New macro.
40084         (CPUID_FMA4): New macro.
40085         (index_YMM_Usable): Rename to...
40086         (index_AVX_Usable): ... this.
40087         (HAS_AVX): Use HAS_ARCH_FEATURE.
40088         (HAS_FMA4): Likewise.
40089         (HAS_YMM_USABLE): Remove.
40090         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
40091         Enable AVX or FMA4 IFF YMM and XMM states are usable and the features
40092         are present.
40093         * sysdeps/x86_64/multiarch/strcmp.S: Use bit_AVX_Usable.
40094         * sysdeps/i386/i686/multiarch/Makefile: Add test-multiarch to tests.
40095         * sysdeps/x86_64/multiarch/Makefile: Likewise.
40096         * sysdeps/i386/i686/multiarch/test-multiarch.c: New file.
40097         * sysdeps/x86_64/multiarch/test-multiarch.c: New file.
40098
40099 2012-05-17  Chris Metcalf  <cmetcalf@tilera.com>
40100
40101         * math/libm-test.c: Support platforms without multiple rounding modes.
40102         * math/bug-nextafter.c: Support platforms without FP exceptions.
40103         * math/bug-nexttoward.c: Likewise.
40104         * math/test-fenv.c: Likewise.
40105         * math/test-misc.c: Likewise.
40106         * stdlib/bug-getcontext.c: Likewise.
40107
40108 2012-05-17  Andreas Jaeger  <aj@suse.de>
40109
40110         * manual/examples/search.c (critter_cmp): Change signature to
40111         avoid warnings.
40112         * manual/string.texi (Collation Functions): Likewise.
40113
40114 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40115
40116         * bits/types.h: Fold copyright years.
40117         * bits/typesizes.h: Likewise.
40118         * sysdeps/mach/hurd/bits/typesizes.h: Likewise.
40119         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h: Likewise.
40120         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h: Likewise.
40121         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h: Likewise.
40122         * time/time.h: Likewise.
40123
40124 2012-05-16  Paul Pluzhnikov  <ppluzhnikov@google.com>
40125
40126         [BZ #208]
40127         * malloc.c (int_mallinfo): Add parameter to accumulate statistics
40128         in instead of returning them.  Return void.
40129         (__libc_mallinfo): Accumulate over all arenas.
40130         (__malloc_stats): Adjust for change in int_mallinfo interface.
40131
40132 2012-05-16  Roland McGrath  <roland@hack.frob.com>
40133
40134         [BZ #10375]
40135         * configure.in (NM): Add AC_CHECK_TOOL for it.
40136         (libc_extra_cflags): New substituted variable.
40137         Check for -fstack-protector being used implicitly.
40138         * configure: Regenerated.
40139         * config.make.in (config-extra-cflags): New variable,
40140         gets @libc_extra_cflags@.
40141         * Makeconfig (CFLAGS): Add $(config-extra-cflags) near the front.
40142
40143         [BZ #10375]
40144         * configure.in: Check for _FORTIFY_SOURCE being predefined.
40145         (CPPUNDEFS): New substituted variable; add -U_FORTIFY_SOURCE if needed.
40146         * configure: Regenerated.
40147         * config.make.in (CPPUNDEFS): New substituted variable.
40148         * Makeconfig (CPPFLAGS): Put $(CPPUNDEFS) at the beginning.
40149         * Makerules ($(stdio_lim:h=st)): Use $(CPPUNDEFS).
40150         * time/ctime.c: Don't #undef __OPTIMIZE__ and ctime.
40151
40152 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40153
40154         * sysdeps/unix/sysv/linux/bits/mqueue.h: Include <bits/types.h>.
40155         (mq_attr): Use __syscall_slong_t.
40156
40157 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40158
40159         * sysdeps/unix/sysv/linux/x86_64/bits/stat.h (_STAT_VER_SVR4):
40160         Check __x86_64__ instead of __WORDSIZE.
40161         (_STAT_VER_LINUX): Likewise.
40162         (stat): Check __x86_64__ instead of __WORDSIZE.  Use
40163         __syscall_ulong_t and __syscall_slong_t.
40164         (stat64): Likewise.
40165
40166 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40167
40168         * sysdeps/unix/sysv/linux/x86_64/bits/typesizes.h: New file.
40169
40170 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40171
40172         * sysdeps/unix/sysv/linux/x86_64/bits/ipctypes.h: New file.
40173
40174 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40175
40176         * sysdeps/unix/sysv/linux/bits/ipc.h (ipc_perm): Use
40177         __syscall_ulong_t.
40178
40179         * sysdeps/unix/sysv/linux/x86_64/sys/ucontext.h: Don't
40180         include <bits/wordsize.h>.  Check __x86_64__ instead of
40181         __WORDSIZE.
40182         (greg_t): Use "__extension__ long long int" if __x86_64__ is
40183         defined.
40184         (mcontext_t): Replace "unsigned long" with "unsigned long long".
40185
40186         * sysdeps/unix/sysv/linux/x86_64/sys/user.h: Don't
40187         include <bits/wordsize.h>.  Check __x86_64__ instead of
40188         __WORDSIZE.
40189         (user_regs_struct): Use "__extension__ unsigned long long"
40190         instead of "unsigned long" if __x86_64__ is defined.
40191         (user): Likewise.  Pad after pointer field if __ILP32__ is
40192         defined.
40193
40194 2012-05-16  Joseph Myers  <joseph@codesourcery.com>
40195
40196         * configure.in (makeinfo): Require version 4.5 or later.  Allow
40197         versions 5 to 9.
40198         * configure: Regenerated.
40199         * manual/install.texi (texinfo): Increase version requirement to
40200         4.5 or later.
40201         * INSTALL: Regenerated.
40202
40203         * include/stdc-predef.h (__STDC_ISO_10646__): Increase to 201103L.
40204
40205 2012-05-16  H.J. Lu  <hongjiu.lu@intel.com>
40206
40207         * sysdeps/x86_64/x32/gmp-mparam.h: New file.
40208
40209         * sysdeps/x86_64/x32/ffs.c: New file.
40210
40211         * sysdeps/unix/sysv/linux/x86_64/bits/shm.h (shmatt_t): Use
40212         __syscall_ulong_t.
40213         (shmid_ds): Add __unused1 and __unused2 only if __x86_64__ isn't
40214         defined.  Use __syscall_ulong_t.
40215         (shminfo): Use __syscall_ulong_t.
40216         (shm_info): Likewise.
40217
40218         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semid_ds): Use
40219         __syscall_ulong_t.
40220
40221         * sysdeps/unix/sysv/linux/x86_64/bits/msq.h: Don't include
40222         <bits/wordsize.h>.
40223         (msgqnum_t): Use __syscall_ulong_t.
40224         (msglen_t): Likewise.
40225         (msqid_ds): Check __x86_64__ instead of __WORDSIZE.  Use
40226         __syscall_ulong_t.
40227
40228         * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include
40229         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
40230
40231         * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file.
40232
40233         * sysdeps/x86_64/x32/divdi3.c: New dummy file.
40234         * sysdeps/x86_64/x32/symbol-hacks.h: Likewise.
40235
40236         * sysvipc/sys/msg.h (msgbuf): Replace long int with
40237         __syscall_slong_t.
40238
40239         * sysdeps/unix/sysv/linux/x86_64/sys/reg.h: Don't
40240         include <bits/wordsize.h>.  Check __x86_64__ instead of
40241         __WORDSIZE.
40242
40243         * sysdeps/unix/sysv/linux/x86_64/sys/procfs.h (elf_greg_t): Use
40244         "unsigned long long int" if __x86_64__ is defined.
40245         (elf_fpregset_t): Check __x86_64__ instead of __WORDSIZE.
40246
40247         * sysdeps/unix/sysv/linux/x86_64/sys/debugreg.h: Don't include
40248         <bits/wordsize.h>.  Check __x86_64__ instead of __WORDSIZE.
40249         (DR_CONTROL_RESERVED): Use ULL instead of UL suffix.
40250
40251         * sysdeps/unix/sysv/linux/x86_64/sigcontextinfo.h: Include
40252         <stdint.h>.
40253         (GET_PC): Cast to uintptr_t first.
40254         (GET_FRAME): Likewise.
40255         (GET_STACK): Likewise.
40256
40257         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort.c: New file.
40258         * sysdeps/unix/sysv/linux/x86_64/x32/alphasort64.c: Likewise.
40259         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko.c: Likewise.
40260         * sysdeps/unix/sysv/linux/x86_64/x32/fseeko64.c: Likewise.
40261         * sysdeps/unix/sysv/linux/x86_64/x32/ftello.c: Likewise.
40262         * sysdeps/unix/sysv/linux/x86_64/x32/ftello64.c: Likewise.
40263         * sysdeps/unix/sysv/linux/x86_64/x32/ftw.c: Likewise.
40264         * sysdeps/unix/sysv/linux/x86_64/x32/ftw64.c: Likewise.
40265         * sysdeps/unix/sysv/linux/x86_64/x32/glob.c: Likewise.
40266         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos.c: Likewise.
40267         * sysdeps/unix/sysv/linux/x86_64/x32/iofgetpos64.c: Likewise.
40268         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen.c: Likewise.
40269         * sysdeps/unix/sysv/linux/x86_64/x32/iofopen64.c: Likewise.
40270         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos.c: Likewise.
40271         * sysdeps/unix/sysv/linux/x86_64/x32/iofsetpos64.c: Likewise.
40272         * sysdeps/unix/sysv/linux/x86_64/x32/lockf.c: Likewise.
40273         * sysdeps/unix/sysv/linux/x86_64/x32/lockf64.c: Likewise.
40274         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: Likewise.
40275         * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: Likewise.
40276         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: Likewise.
40277         * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: Likewise.
40278         * sysdeps/unix/sysv/linux/x86_64/x32/scandir.c: Likewise.
40279         * sysdeps/unix/sysv/linux/x86_64/x32/scandir64.c: Likewise.
40280         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat.c: Likewise.
40281         * sysdeps/unix/sysv/linux/x86_64/x32/scandirat64.c: Likewise.
40282         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile.c: Likewise.
40283         * sysdeps/unix/sysv/linux/x86_64/x32/tmpfile64.c: Likewise.
40284         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort.c: Likewise.
40285         * sysdeps/unix/sysv/linux/x86_64/x32/versionsort64.c: Likewise.
40286
40287 2012-05-16  Andreas Schwab  <schwab@linux-m68k.org>
40288
40289         * Makerules (+depfiles): Also collect depfiles from .oS in
40290         $(extra-objs).
40291         * sysdeps/ieee754/ldbl-opt/Makefile (extra-objs): Add $(addsuffix
40292         .oS, $(libnldbl-routines)).
40293
40294         * Makerules (native-compile-mkdep-flags): Define.
40295         * sunrpc/Makefile (extra-objs): Add $(addprefix
40296         cross-,$(rpcgen-objs)), don't add $(cross-rpcgen-objs).
40297         ($(cross-rpcgen-objs)): Use $(native-compile-mkdep-flags) instead
40298         of $(compile-mkdep-flags).  Depend on $(before-compile) instead of
40299         calling $(make-target-directory).
40300
40301 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40302
40303         * bits/types.h (__snseconds_t): Removed.
40304         * time/time.h (struct timespec): Replace __snseconds_t with
40305         __syscall_slong_t.
40306         * bits/typesizes.h (__SNSECONDS_T_TYPE): Removed.
40307         * sysdeps/mach/hurd/bits/typesizes.h (__SNSECONDS_T_TYPE):
40308         Likewise.
40309         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40310         (__SNSECONDS_T_TYPE): Likewise.
40311         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40312         (__SNSECONDS_T_TYPE): Likewise.
40313         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40314         (__SNSECONDS_T_TYPE): Likewise.
40315
40316 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40317
40318         * sysdeps/mach/hurd/bits/typesizes.h
40319         (__SYSCALL_SLONG_TYPE): New macro.
40320         (__SYSCALL_ULONG_TYPE): Likewise.
40321
40322 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40323
40324         * bits/types.h (__syscall_slong_t): New type.
40325         (__syscall_ulong_t): Likewise.
40326
40327         * bits/typesizes.h (__SYSCALL_SLONG_TYPE): New macro.
40328         (__SYSCALL_ULONG_TYPE): Likewise.
40329         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
40330         (__SYSCALL_SLONG_TYPE): Likewise.
40331         (__SYSCALL_ULONG_TYPE): Likewise.
40332         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
40333         (__SYSCALL_SLONG_TYPE): Likewise.
40334         (__SYSCALL_ULONG_TYPE): Likewise.
40335         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
40336         (__SYSCALL_SLONG_TYPE): Likewise.
40337         (__SYSCALL_ULONG_TYPE): Likewise.
40338
40339 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40340
40341         * sysdeps/unix/sysv/linux/x86_64/Makefile (gen-as-const-headers):
40342         Add sigaltstack-offsets.sym.
40343         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S: Include
40344         <sigaltstack-offsets.h>.
40345         (CALL_FAIL): Use RSP_LP to operate on stack.  Use RDI_LP on
40346         longjmp_msg pointer.
40347         (____longjmp_chk): Use R8_LP and RDX_LP on SP and PC.  Use
40348         R*_LP, sizeSS, oSS_FLAGS, oSS_SP and oSS_SIZE for alternate
40349         signal stack.
40350         * sysdeps/unix/sysv/linux/x86_64/sigaltstack-offsets.sym: New.
40351
40352 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
40353
40354         * elf/stackguard-macros.h: Remove file.
40355         * sysdeps/generic/stackguard-macros.h: New file.
40356         * sysdeps/i386/stackguard-macros.h: Likewise.
40357         * sysdeps/powerpc/powerpc32/stackguard-macros.h: Likewise.
40358         * sysdeps/powerpc/powerpc64/stackguard-macros.h: Likewise.
40359         * sysdeps/s390/s390-32/stackguard-macros.h: Likewise.
40360         * sysdeps/s390/s390-64/stackguard-macros.h: Likewise.
40361         * sysdeps/sparc/sparc32/stackguard-macros.h: Likewise.
40362         * sysdeps/sparc/sparc64/stackguard-macros.h: Likewise.
40363         * sysdeps/x86_64/stackguard-macros.h: Likewise.
40364         * nptl/tst-stackguard1.c: Include <stackguard-macros.h> not
40365         <elf/stackguard-macros.h>.
40366
40367         [BZ #14109]
40368         * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h (elf_vrreg_t): Use
40369         __aligned__ in attribute.
40370         * sysdeps/unix/sysv/linux/s390/sys/ucontext.h (__psw_t): Likewise.
40371         (gregset_t): Likewise.
40372
40373 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40374
40375         * sysdeps/x86_64/Implies (wordsize-64): Moved to ....
40376         * sysdeps/x86_64/64/Implies-after: Here.  New file.
40377         * sysdeps/x86_64/x32/Implies-after: New file.
40378
40379 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40380
40381         * sysdeps/x86_64/dl-trampoline.h: Use R*_LP to pass arguments
40382         and access return value for _dl_profile_fixup.  Use R10_LP to
40383         load frame size.
40384
40385 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40386
40387         * sysdeps/unix/sysv/linux/x86_64/x32/init-first.c: New.
40388
40389 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40390
40391         * sysdeps/x86_64/sysdep.h: Allowed to be include more than once.
40392         * sysdeps/x86_64/x32/sysdep.h: New file.
40393
40394 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40395
40396         * sysdeps/x86_64/__longjmp.S: Use R*_LP on SP and PC.
40397         * sysdeps/x86_64/setjmp.S: Likewise.
40398
40399 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40400
40401         * sysdeps/ieee754/dbl-64/wordsize-64/e_log10.c: New file.
40402         * sysdeps/ieee754/dbl-64/wordsize-64/e_log2.c: New file.
40403         * sysdeps/ieee754/dbl-64/e_log2.c: Fixing indents.
40404         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise and also
40405         remove unused global constant.
40406
40407 2012-05-15  Chris Metcalf  <cmetcalf@tilera.com>
40408
40409         * sysdeps/unix/sysv/linux/getsysstats.c: Remove duplicate
40410         include of <not-cancel.h>.
40411
40412 2012-05-15  Roland McGrath  <roland@hack.frob.com>
40413
40414         * nscd/nscd-client.h (__nscd_acquire_maplock): Fix formatting.
40415
40416 2012-05-15  Jeff Law  <law@redhat.com>
40417             Andreas Jaeger  <aj@suse.de>
40418
40419         [BZ #13594]
40420         * nscd/nscd-client.h (__nscd_acquire_maplock): New function, split
40421         out from...
40422         * nscd/nscd_helper.c (__nscd_get_map_ref): ... here.
40423         * nscd/nscd-client.h: Add __nscd_acquire_maplock.
40424         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): Add locking to
40425         code changing __hst_map_handle.map.
40426
40427 2012-05-15  Roland McGrath  <roland@hack.frob.com>
40428
40429         * configure.in (sysnames): Look for Implies-before and Implies-after
40430         files.
40431         * configure: Regenerated.
40432
40433 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40434
40435         * sysdeps/unix/sysv/linux/x86_64/sigaction.c (RESTORE2): Replace
40436         8-byte data alignment with LP_SIZE alignment.
40437
40438 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40439
40440         * sysdeps/unix/sysv/linux/x86_64/clone.S: Load pointer to TID
40441         into R10_LP.
40442
40443 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40444
40445         * sysdeps/unix/sysv/linux/x86_64/x32/dl-cache.h: New.
40446
40447 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40448
40449         * sysdeps/unix/sysv/linux/x86_64/x32/Makefile: New file.
40450         * sysdeps/unix/sysv/linux/x86_64/x32/getcpu.c: Likewise.
40451         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu-static.c:
40452         Likewise.
40453         * sysdeps/unix/sysv/linux/x86_64/x32/sched_getcpu.S: Likewise.
40454
40455 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40456
40457         * sysdeps/x86_64/stackinfo.h (stackinfo_get_sp): Use RSP_LP.
40458         (stackinfo_sub_sp): Likewise.
40459
40460 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40461
40462         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Load pointers into
40463         RAX_LP.
40464
40465 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40466
40467         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Load cache sizes
40468         into R*_LP.
40469
40470 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40471
40472         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Load cache
40473         sizes into R*_LP.
40474
40475 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40476
40477         * sysdeps/x86_64/strcmp.S: Load pointers into R*_LP.
40478
40479 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40480
40481         * sysdeps/x86_64/memcpy.S: Load __x86_64_data_cache_size_half
40482         into R11_LP and load __x86_64_shared_cache_size_half into
40483         R8_LP.
40484
40485 2012-05-15  H.J. Lu  <hongjiu.lu@intel.com>
40486
40487         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Load cache size into
40488         R8_LP.
40489
40490 2012-05-15  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
40491
40492         * sysdeps/powerpc/powerpc32/power7/fpu/s_logb.c: New file. Optimized
40493         logb for POWER7.
40494         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbf.c: New file. Optimized
40495         logbf for POWER7.
40496         * sysdeps/powerpc/powerpc32/power7/fpu/s_logbl.c: New file. Optimized
40497         logbl for POWER7.
40498         * sysdeps/powerpc/powerpc64/power7/fpu/s_logb.c: New file. Use
40499         powerpc32/power7/fpu/s_logb.c via #include.
40500         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbf.c: New file. Use
40501         powerpc32/power7/fpu/s_logbf.c via #include.
40502         * sysdeps/powerpc/powerpc64/power7/fpu/s_logbl.c: New file. Use
40503         powerpc32/power7/fpu/s_logbl.c via #include.
40504
40505 2012-05-15  Joseph Myers  <joseph@codesourcery.com>
40506
40507         * README.libm: Remove file.
40508
40509 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40510
40511         * sysdeps/x86_64/start.S: Simulate popping 4-byte argument
40512         count for x32.  Use R*_LP and omit operand-size suffix.
40513
40514 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40515
40516         * shlib-versions: Move x86_64-.*-linux.* entries to ...
40517         * sysdeps/x86_64/64/shlib-versions: Here.  New file.
40518         * sysdeps/x86_64/x32/shlib-versions: New file.
40519
40520 2012-05-14  Roland McGrath  <roland@hack.frob.com>
40521
40522         * sysdeps/unix/sysv/linux/dl-osinfo.h (dl_fatal): Function removed.
40523         * elf/rtld.c (dl_main) [DL_SYSDEP_OSCHECK]:
40524         Use _dl_fatal_printf instead.
40525
40526 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
40527
40528         * sysdeps/unix/sysv/linux/configure.in (minimum_kernel): Always
40529         set if not set by the user.  Do not allow for being unset.
40530         * sysdeps/unix/sysv/linux/configure: Regenerated.
40531
40532 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40533
40534         * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Remove
40535         the `q' suffix from lea and replace .quad with ASM_ADDR.
40536
40537 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40538
40539         * sysdeps/unix/sysv/linux/x86_64/sysdep.h (PTR_MANGLE): Remove
40540         the `q' suffix from xor/rol instructions.  Use $2*LP_SIZE+1
40541         instead of $17.
40542         (PTR_DEMANGLE): Likewise.
40543
40544 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40545
40546         * sysdeps/x86_64/sysdep.h (LP_SIZE): New macro.
40547         (LP_OP): Likewise.
40548         (ASM_ADDR): Likewise.
40549         (RAX_LP): Likewise.
40550         (RBP_LP): Likewise.
40551         (RBX_LP): Likewise.
40552         (RCX_LP): Likewise.
40553         (RDI_LP): Likewise.
40554         (RSI_LP): Likewise.
40555         (RSP_LP): Likewise.
40556         (R8_LP): Likewise.
40557         (R9_LP): Likewise.
40558         (R10_LP): Likewise.
40559         (R10_LP): Likewise.
40560         (R11_LP): Likewise.
40561         (R12_LP): Likewise.
40562         (R13_LP): Likewise.
40563         (R14_LP): Likewise.
40564         (R15_LP): Likewise.
40565
40566 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40567
40568         * sysdeps/x86_64/x32/dl-machine.h: New file.
40569
40570 2012-05-14  Andreas Jaeger  <aj@suse.de>
40571
40572         * manual/Makefile (subdir): Remove export of subdir.
40573         (all): Remove target.
40574         (.PHONY): Remove all from list.
40575         (mkinstalldirs): Remove.
40576         (.PHONY): Remove installdirs from list.
40577         ($(inst_infodir)/libc.info): Use make-target-directory.
40578         (installdirs): Remove.
40579         (subdir_%): Remove.
40580         (glibc-targets): Remove.
40581         (lib): Remove.
40582         (stubs): Remove.
40583         ($(objpfx)stubs ../po/manual.pot): Remove.
40584         ($(objpfx)stamp%): Remove.
40585         (make-target-directory): Remove.
40586         (subdir_install): Remove.
40587         (routines): Remove.
40588         (aux): Remove.
40589         (sources): Remove.
40590         (objects): Remove.
40591         (headers): Remove.
40592
40593         [BZ #13750]
40594         * manual/.gitignore: Remove, it's not needed anymore.
40595         * manual/libc-texinfo.sh: Pass OUTDIR as extra argument, create
40596         all files in it.
40597         * manual/Makefile (dvi, pdf, info, html): Depend on files in build
40598         directory.
40599         (texis): Renamed to $(objpfx)texis.
40600         (texis-path): New, contains path to generated files.
40601         (chapters.%): Use texis-path for complete path, add extra argument
40602         libc-texinfo.sh.
40603         (libc.dvi, libc.pdf, libc.info, libc.pdf): Add $(objfpx) as prefix.
40604         (libc/index.html, summary.texi): Add $(objpfx) as prefix.
40605         (summary,texi, stamp-summary): Use complete path of
40606         files. Generate files in build dir.
40607         (dir-add.texi): Build in build dir.
40608         (libm-err.texi,stamp-libm-err): Likewise.
40609         (version.texi, stamp-version): Likewise.
40610         (.%c.texi): Likewise.
40611         (%.info,%.dvi,%.pdf): Add $(objpfx) as prefix, build in build dir.
40612         (mostlyclean): Remove target.
40613         (realclean): Remove target.
40614         (generated): Add new variable with contents from mostlyclean and
40615         realclean, remove entries duplicated in common-mostlyclean, add
40616         stamp-libm-err and stamp-version.
40617         (generated-dirs): Add libc directory.
40618         ($(inst_infodir)/libc.info): Install files from build dir.
40619
40620         * manual/install.texi (Configuring and compiling): Adjust since
40621         the info files are not part of the tar ball anymore.
40622
40623 2012-05-14  Andreas Jaeger  <aj@suse.de>
40624
40625         * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): Remove unused
40626         variable.
40627
40628 2012-05-14  Joseph Myers  <joseph@codesourcery.com>
40629
40630         [BZ #13717]
40631         * sysdeps/unix/sysv/linux/configure.in (arch_minimum_kernel): Set
40632         to 2.2.0 where earlier.
40633         * sysdeps/unix/sysv/linux/configure: Regenerated.
40634         * sysdeps/unix/sysv/linux/getcwd.c [!__ASSUME_GETCWD_SYSCALL]:
40635         Remove conditional code.
40636         [__ASSUME_GETCWD_SYSCALL]: Make code unconditional.
40637         * sysdeps/unix/sysv/linux/i386/chown.c [!__ASSUME_LCHOWN_SYSCALL]:
40638         Remove conditional code.
40639         [!__NR_lchown]: Likewise.
40640         [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40641         [__NR_lchown]: Likewise.
40642         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Remove
40643         comment referencing __ASSUME_LCHOWN_SYSCALL.
40644         * sysdeps/unix/sysv/linux/i386/sigaction.c
40645         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40646         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40647         * sysdeps/unix/sysv/linux/if_index.c [!__ASSUME_SIOCGIFNAME]:
40648         Remove conditional code.
40649         [__ASSUME_SIOCGIFNAME ]: Make code unconditional.
40650         (__protocol_available): Remove #if 0 code.
40651         * sysdeps/unix/sysv/linux/ifreq.c [!__ASSUME_SIOCGIFNAME]: Remove
40652         conditional code.
40653         [__ASSUME_SIOCGIFNAME]: Make code unconditional.
40654         * sysdeps/unix/sysv/linux/kernel-features.h
40655         (__ASSUME_GETCWD_SYSCALL): Don't define.
40656         (__ASSUME_REALTIME_SIGNALS): Likewise.
40657         (__ASSUME_PREAD_SYSCALL): Likewise.
40658         (__ASSUME_PWRITE_SYSCALL): Likewise.
40659         (__ASSUME_POLL_SYSCALL): Likewise.
40660         (__ASSUME_LCHOWN_SYSCALL): Likewise.
40661         (__ASSUME_SETRESUID_SYSCALL): Define for all kernel versions for
40662         non-SPARC.
40663         (__ASSUME_SIOCGIFNAME): Don't define.
40664         (__ASSUME_MSG_NOSIGNAL): Likewise.
40665         (__ASSUME_SENDFILE): Define unconditionally.
40666         (__ASSUME_PROC_SELF_FD_SYMLINK): Don't define.
40667         * sysdeps/unix/sysv/linux/poll.c [!__ASSUME_POLL_SYSCALL]: Remove
40668         conditional code.
40669         [__ASSUME_POLL_SYSCALL]: Make code unconditional.
40670         * sysdeps/unix/sysv/linux/powerpc/chown.c (__chown)
40671         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
40672         (__chown) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40673         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat)
40674         [!__ASSUME_LCHOWN_SYSCALL]: Remove conditional code.
40675         (fchownat) [__ASSUME_LCHOWN_SYSCALL]: Make code unconditional.
40676         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread.c
40677         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40678         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40679         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pread64.c
40680         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40681         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40682         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite.c
40683         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40684         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40685         * sysdeps/unix/sysv/linux/powerpc/powerpc32/pwrite64.c
40686         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40687         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40688         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c
40689         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40690         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40691         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c
40692         [!__ASSUME_PREAD_SYSCALL]: Remove conditional code.
40693         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40694         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c
40695         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40696         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40697         * sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c
40698         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40699         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40700         * sysdeps/unix/sysv/linux/pread.c [!__ASSUME_PREAD_SYSCALL]:
40701         Remove conditional code.
40702         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40703         * sysdeps/unix/sysv/linux/pread64.c [!__ASSUME_PREAD_SYSCALL]:
40704         Remove conditional code.
40705         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40706         * sysdeps/unix/sysv/linux/ptsname.c (__ptsname_internal)
40707         [__LINUX_KERNEL_VERSION < 131443]: Remove conditional code.
40708         * sysdeps/unix/sysv/linux/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
40709         Remove conditional code.
40710         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40711         * sysdeps/unix/sysv/linux/pwrite64.c [!__ASSUME_PWRITE_SYSCALL]:
40712         Remove conditional code.
40713         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40714         * sysdeps/unix/sysv/linux/sh/pread.c [!__ASSUME_PREAD_SYSCALL]:
40715         Remove conditional code.
40716         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40717         * sysdeps/unix/sysv/linux/sh/pread64.c [!__ASSUME_PREAD_SYSCALL]:
40718         Remove conditional code.
40719         [__ASSUME_PREAD_SYSCALL]: Make code unconditional.
40720         * sysdeps/unix/sysv/linux/sh/pwrite.c [!__ASSUME_PWRITE_SYSCALL]:
40721         Remove conditional code.
40722         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40723         * sysdeps/unix/sysv/linux/sh/pwrite64.c
40724         [!__ASSUME_PWRITE_SYSCALL]: Remove conditional code.
40725         [__ASSUME_PWRITE_SYSCALL]: Make code unconditional.
40726         * sysdeps/unix/sysv/linux/sigaction.c
40727         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40728         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40729         * sysdeps/unix/sysv/linux/sigpending.c
40730         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40731         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40732         * sysdeps/unix/sysv/linux/sigprocmask.c
40733         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40734         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40735         * sysdeps/unix/sysv/linux/sigsuspend.c
40736         [!__ASSUME_REALTIME_SIGNALS]: Remove conditional code.
40737         [__ASSUME_REALTIME_SIGNALS]: Make code unconditional.
40738         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c
40739         (__libc_missing_rt_sigs): Remove.
40740         (__libc_sigaction) [__NR_rt_sigaction]: Make code unconditional.
40741         (__libc_sigaction): Do not handle ENOSYS from rt_sigaction.
40742         * sysdeps/unix/sysv/linux/syslog.c [!__ASSUME_MSG_NOSIGNAL]:
40743         Remove conditional code.
40744         [__ASSUME_MSG_NOSIGNAL]: Make code unconditional.
40745         * sysdeps/unix/sysv/linux/testrtsig.h (kernel_has_rtsig): Always
40746         return 1.
40747         * sysdeps/unix/sysv/linux/ttyname.c (ttyname)
40748         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Remove conditional code.
40749         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r)
40750         [!__ASSUME_PROC_SELF_FD_SYMLINK]: Likewise.
40751
40752 2012-05-14  Andreas Jaeger  <aj@suse.de>
40753
40754         * sysdeps/i386/fpu/bits/mathinline.h (__pow2): Remove,
40755         it's not used in glibc.
40756         (__coshm1): Likewise.
40757         (__acosh1p): Likewise.
40758         (__sgn): Likewise.
40759
40760         * manual/string.texi (Copying and Concatenation): Add missing
40761         variable in concat example.
40762         Reported by David C. Rankin <drankinatty@suddenlinkmail.com>.
40763
40764 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40765
40766         [BZ #14103]
40767         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Replace
40768         __builtin_clzl with __builtin_clzll.
40769
40770 2012-05-14  H.J. Lu  <hongjiu.lu@intel.com>
40771
40772         [BZ #14104]
40773         * sysdeps/unix/sysv/linux/check_pf.c (cache): Use
40774         libc_freeres_ptr.
40775
40776 2012-05-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
40777
40778         * sysdeps/i386/i686/fpu/multiarch/Makefile: New file.
40779         * sysdeps/i386/i686fpu/multiarch/e_expf.c: New file.
40780         * sysdeps/i386/i686fpu/multiarch/e_expf-ia32.S: New file.
40781         * sysdeps/i386/i686/fpu/multiarch/e_expf-sse2.S: New file.
40782
40783 2012-05-14  Mike Frysinger  <vapier@gentoo.org>
40784
40785         * NEWS: Update ia64 info.
40786
40787 2012-05-12  Andreas Schwab  <schwab@linux-m68k.org>
40788
40789         * sysdeps/powerpc/memmove.c (MEMMOVE): Don't return a value if
40790         used as bcopy.
40791
40792 2012-05-12  Thomas Schwinge  <thomas@codesourcery.com>
40793
40794         * io/dup3.c (dup3): Rename to __dup3, add weak alias for dup3.
40795         * sysdeps/unix/syscalls.list (dup3): Likewise.
40796         * libio/freopen.c (freopen): Invoke __dup3 instead of dup3.
40797         * libio/freopen64.c (freopen64): Invoke __dup3 instead of dup3.
40798
40799 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
40800
40801         * elf/stackguard-macros.h (STACK_CHK_GUARD) [__x86_64__]: Use
40802         "%c1" with "i" (offsetof (tcbhead_t, stack_guard)).
40803
40804 2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
40805
40806         * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
40807         thread pointer.
40808         (TLS_IE): Use mov/add instead of movq/addq to load thread
40809         pointer.
40810         (TLS_GD_PREFIX): New.
40811         (TLS_GD): Use it.
40812
40813 2012-05-11  David S. Miller  <davem@davemloft.net>
40814
40815         * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
40816         * sysdeps/sparc/fpu/fpu_control.h (_FPU_GETCW): Likewise.
40817         (_FPU_SETCW): Likewise.
40818
40819 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40820
40821         * sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
40822         is 32-byte aligned.
40823
40824 2012-05-11  Andreas Schwab  <schwab@linux-m68k.org>
40825
40826         [BZ #11837]
40827         * iconvdata/gb18030.c: Update tables.
40828         (BODY for FROM_LOOP): Update.  Handle two-byte encoded non-BMP
40829         characters specially.
40830         (BODY for TO_LOOP): Add encoding of missing ranges.
40831
40832 2012-05-11  Thomas Schwinge  <thomas@codesourcery.com>
40833
40834         [BZ #13673]
40835         * sysdeps/mach/hurd/accept4.c: Replace FSF snail mail address with URL.
40836         * sysdeps/mach/hurd/dup3.c: Likewise.
40837         * sysdeps/mach/hurd/readlinkat.c: Likewise.
40838         * sysdeps/powerpc/memmove.c:: Likewise.
40839
40840 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40841
40842         * sysdeps/x86_64/dl-machine.h (elf_machine_rela_relative): Handle
40843         R_X86_64_RELATIVE64 only if RTLD_BOOTSTRAP isn't defined.
40844
40845 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
40846
40847         * elf/elf.h (R_X86_64_RELATIVE64): New.
40848         (R_X86_64_NUM): Updated.
40849         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Handle
40850         R_X86_64_RELATIVE64.  Always use Elf64_Addr with R_X86_64_64.
40851         (elf_machine_rela_relative): Handle R_X86_64_RELATIVE64.
40852         * sysdeps/x86_64/Makefile (tests): Add tst-quad1 tst-quad2
40853         tst-quad1pie tst-quad2pie
40854         (modules-names): Add tst-quadmod1 tst-quadmod2.
40855         ($(objpfx)tst-quad1): New dependency.
40856         ($(objpfx)tst-quad2): Likewise.
40857         ($(objpfx)tst-quad1pie): Likewise.
40858         ($(objpfx)tst-quad2pie): Likewise.
40859         * sysdeps/x86_64/tst-quad1.c: New file.
40860         * sysdeps/x86_64/tst-quad1pie.c: New file.
40861         * sysdeps/x86_64/tst-quad2.c: Likewise.
40862         * sysdeps/x86_64/tst-quad2pie.c: Likewise.
40863         * sysdeps/x86_64/tst-quadmod1.S: Likewise.
40864         * sysdeps/x86_64/tst-quadmod1pie.S: Likewise.
40865         * sysdeps/x86_64/tst-quadmod2.S: Likewise.
40866         * sysdeps/x86_64/tst-quadmod2pie.S: Likewise.
40867
40868 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40869
40870         * io/fcntl.h (mode_t, off_t, pid_t): Define types.
40871         (__mode_t_defined, __off_t_defined, __pid_t_defined): Define macros.
40872         * streams/stropts.h (t_scalar_t): Define type.
40873
40874         * sysdeps/generic/paths.h (_PATH_MAN): Set to "/usr/share/man"
40875         (_PATH_PRESERVE): Set to "/var/lib".
40876         (_PATH_RWHODIR): Set to "/var/spool/rwho".
40877
40878         * sysdeps/mach/hurd/openat.c (__openat): Set type of MODE to mode_t
40879         instead of int.
40880
40881         * sysdeps/mach/hurd/xmknodat.c (__xmknodat): Deallocate NODE port only
40882         if __dir_mkfile succeeded.
40883
40884         * sysdeps/mach/hurd/dup3.c: Lock _hurd_dtable_lock before
40885         checking for _hurd_dtablesize.  Unlock it right after having
40886         finished _hurd_dtable allocation.
40887
40888 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40889
40890         * sysdeps/mach/hurd/configure.in: Remove warning for --prefix=[...].
40891         * sysdeps/mach/hurd/configure: Regenerated.
40892         * sysdeps/unix/sysv/linux/configure.in: Move --prefix=/usr
40893         special-casing to...
40894         * sysdeps/gnu/configure.in: ... this new file.
40895         * sysdeps/unix/sysv/linux/configure: Regenerated.
40896         * sysdeps/gnu/configure: New generated file.
40897
40898         * sysdeps/mach/hurd/bits/stat.h (struct stat): Align to what is done
40899         for Linux: use nsec instead of usec, as well as:
40900         [__USE_MISC || __USE_XOPEN2K8] (st_atim, st_mtim, st_ctim): New
40901         members of type struct timespec.
40902         [__USE_MISC || __USE_XOPEN2K8] (st_atime, st_mtime, st_ctime):
40903         New macros.
40904         (struct stat64): Likewise.
40905         (_STATBUF_ST_NSEC): New macro.
40906         * sysdeps/mach/hurd/xstatconv.c (xstat64_conv): Adapt to that.
40907
40908         * hurd/lookup-retry.c (__hurd_file_name_lookup_retry): Use
40909         __strtoul_internal rather than strtoul.
40910
40911 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40912
40913         * hurd/hurdsock.c (_hurd_socket_server): Check for negative domains,
40914         and reject them.
40915
40916 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40917
40918         * sysdeps/mach/hurd/setresgid.c (__setresgid): Handle the -1 case,
40919         which preserves existing values.
40920         * sysdeps/mach/hurd/setresuid.c (__setresuid): Likewise.
40921
40922 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40923
40924         * hurd/hurdselect.c (_hurd_select): Return EINVAL for negative
40925         TIMEOUT values.  Return EINVAL for NFDS values either negative or
40926         greater than FD_SETSIZE.
40927
40928 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40929
40930         * sysdeps/mach/hurd/brk.c (_hurd_set_brk): When more space needs to be
40931         allocated, call __vm_protect to finish enabling the existing space, and
40932         pass a copy of _hurd_data_end instead of PAGEBRK to __vm_allocate to
40933         allocate the remainder.
40934
40935 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
40936
40937         * sysdeps/mach/hurd/recvfrom.c (__recvfrom): Check also for a null
40938         address port.  Set ADDR_LEN to 0 when not filling ADDRARG.
40939
40940 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40941
40942         * sysdeps/mach/hurd/readlinkat.c: New file, heavily derived from
40943         sysdeps/mach/hurd/readlink.c.
40944
40945         * posix/tst-sysconf.c (posix_options): Only use
40946         _POSIX_PRIORITIZED_IO, _POSIX_PRIORITY_SCHEDULING, and
40947         _POSIX_SYNCHRONIZED_IO when they are defined
40948         * sysdeps/mach/hurd/bits/posix_opt.h:
40949         (_POSIX_PRIORITY_SCHEDULING): Undefine macro.
40950         (_XOPEN_REALTIME): Undefine macro.
40951         (_XOPEN_REALTIME_THREADS): Undefine macro.
40952         (_XOPEN_SHM): Undefine macro.
40953         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_INHERIT): Define
40954         macro to -1.
40955         [__USE_XOPEN2K8] (_POSIX_THREAD_ROBUST_PRIO_PROTECT): Define
40956         macro to -1.
40957         (_POSIX_ASYNC_IO): Undefine macro.
40958         (_POSIX_PRIORITIZED_IO): Undefine macro.
40959         (_POSIX_SPIN_LOCKS): Define macro to -1.
40960
40961         * bits/sigaction.h [__USE_XOPEN2K8]: Define SA_RESTART,
40962         SA_NODEFER, SA_RESETHAND.
40963         * sysdeps/mach/hurd/bits/fcntl.h [__USE_XOPEN2K8]: Define
40964         O_NOFOLLOW, O_DIRECTORY, O_CLOEXEC, F_GETOWN, F_SETOWN,
40965         F_DUPFD_CLOEXEC.
40966
40967 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40968
40969         * elf/Makefile (pldd-modules): Define unconditionally.
40970
40971 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40972
40973         * sysdeps/mach/hurd/opendir.c (__opendirat): New function.
40974
40975 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40976
40977         * hurd/hurdchdir.c (_hurd_change_directory_port_from_name):
40978         Return ENOENT when name is empty.
40979         * sysdeps/mach/hurd/chroot.c (chroot): Likewise.
40980
40981 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40982
40983         * include/libc-symbols.h [NO_HIDDEN] (hidden_nolink): New macro.
40984
40985         * nss/makedb.c (MAP_POPULATE): If not defined, define to zero.
40986
40987 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
40988
40989         Fix mlock in all cases except non-readable pages.
40990         * sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ
40991         instead of VM_PROT_ALL as parameter to __vm_wire function.
40992
40993         * sysdeps/mach/hurd/mkdir.c: Include <string.h>.
40994         (__mkdir): When path is `/', just fail with EEXIST.
40995         * sysdeps/mach/hurd/mkdirat.c: Likewise.
40996
40997 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
40998
40999         * nss/makedb.c: Include <sys/param.h> (for MAX and roundup), and
41000         <sys/uio.h> (for writev).
41001         * nss/nss_db/db-initgroups.c: Include <limits.h> (for ULONG_MAX),
41002         and <sys/param.h> (for MIN).
41003
41004 2012-05-10  Pino Toscano  <toscano.pino@tiscali.it>
41005
41006         * sysdeps/mach/nanosleep.c: Return EINVAL for invalid values of
41007         REQUESTED_TIME.  Properly set the remaining time and return EINTR
41008         if interrupted.
41009
41010 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41011
41012         * sysdeps/mach/hurd/Makefile ($(common-objpfx)linkobj/libc.so):
41013         Depend on against $(link-rpcuserlibs).
41014
41015 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41016
41017         * sysdeps/generic/ldsodefs.h [LIBC_STACK_END_NOT_RELRO]
41018         (__libc_stack_end): Do not use attribute_relro.
41019         * sysdeps/mach/hurd/dl-sysdep.h (LIBC_STACK_END_NOT_RELRO): Define.
41020         * sysdeps/mach/hurd/i386/init-first.c (init): Update __libc_stack_end
41021         to libthread-provided value.
41022         * sysdeps/mach/hurd/dl-sysdep.c (__libc_stack_end): Do not use
41023         attribute_relro.
41024
41025 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41026
41027         [BZ #3748]
41028         * bits/libc-lock.h (__libc_once_get): New macro.
41029         * sysdeps/mach/bits/libc-lock.h: Likewise.
41030         * sysdeps/mach/hurd/bits/libc-lock.h: Likewise.
41031         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_get
41032         instead of using implementation details.
41033
41034         * libio/fileops.c: Unconditionally include <kernel-features.h>.
41035         * libio/freopen.c: Likewise.
41036         * libio/freopen64.c: Likewise.
41037         * misc/syslog.c: Likewise.
41038         * nscd/connections.c: Likewise.
41039         * nscd/netgroupcache.c: Likewise.
41040         * sysdeps/posix/getcwd.c: Likewise.
41041
41042 2012-05-10  Roland McGrath  <roland@hack.frob.com>
41043
41044         * math/w_ilogbf.c: Add #include <limits.h>.
41045
41046 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41047
41048         * sysdeps/mach/hurd/setitimer.c (setitimer_locked): Use common exit
41049         path instead of returning without unlocking.
41050
41051         * sysdeps/mach/hurd/bits/ioctls.h (_IOIW): New macro for
41052         immediate-write ioctls.
41053         * sysdeps/mach/hurd/ioctl.c: Handle cases with no arguments.
41054
41055 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41056
41057         * sysdeps/mach/hurd/i386/init-first.c (init): Use
41058         __builtin_frame_address instead of making assumptions about the
41059         location of the return address relative to DATA.  Force early load of
41060         the return address.
41061         (_dl_init_first, doinit1 in doinit in _hurd_stack_setup): Don't use
41062         __builtin_frame_address.
41063
41064         dup3 for GNU Hurd.
41065         * include/unistd.h: Declare __dup3 and use libc_hidden_proto on it.
41066         * sysdeps/mach/hurd/dup3.c: New file, copy from dup2.c.  Evolve it to
41067         implement dup3 and do some further code clean-ups.
41068         * sysdeps/mach/hurd/dup2.c (__dup2): Reimplement using __dup3.
41069         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_DUP3): Define.
41070
41071 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41072
41073         * sysdeps/mach/hurd/dl-sysdep.c: Conditionalize contents on [SHARED].
41074
41075         * hurd/hurd/fd.h (_hurd_fd_get): Call HURD_CRITICAL_BEGIN/
41076         HURD_CRITICAL_END around holding _hurd_dtable_lock.
41077         * sysdeps/mach/hurd/dirfd (dirfd): Likewise.
41078         * sysdeps/mach/hurd/opendir.c (_hurd_fd_opendir): Call
41079         HURD_CRITICAL_BEGIN/HURD_CRITICAL_END around holding
41080         d->port.lock.
41081
41082         * hurd/catch-signal.c (hurd_catch_signal): Use sigsetjmp/siglongjmp
41083         instead of setjmp/longjmp to restore the signal mask.  Call sigsetjmp
41084         when handler == SIG_ERR, not when handler != SIG_ERR.
41085
41086 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41087
41088         * sysdeps/mach/hurd/bits/socket.h: New file, copy from the bsd4.4 one.
41089         (SOCK_MAX, SOCK_TYPE_MASK, SOCK_CLOEXEC, SOCK_NONBLOCK): New
41090         definitions.
41091
41092         accept4 for GNU Hurd.
41093         * include/sys/socket.h (__libc_accept4): New prototype.
41094         * sysdeps/mach/hurd/accept4.c: New file, copy from accept.c.  Evolve it
41095         to implement __libc_accept4.
41096         * sysdeps/mach/hurd/accept.c (accept): Reimplement using
41097         __libc_accept4.
41098         * sysdeps/mach/hurd/kernel-features.h (__ASSUME_ACCEPT4): Define.
41099
41100         * sysdeps/mach/hurd/i386/____longjmp_chk.S: New file.
41101         * sysdeps/mach/hurd/i386/signal-defines.sym: New file.
41102         * sysdeps/mach/hurd/i386/Makefile (gen-as-const-headers): Add
41103         signal-defines.sym.
41104
41105 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41106
41107         * bits/in.h (SOL_IP, SOL_IPV6, SOL_ICMPV6): New macros.
41108
41109 2012-05-10  Thomas Schwinge  <thomas@schwinge.name>
41110
41111         * sysdeps/mach/hurd/dl-sysdep.c (open_file): Do not raise
41112         assertion on O_CLOEXEC flag.
41113         * hurd/hurd/fd.h: Update comment to mention O_CLOEXEC.
41114         * hurd/intern-fd.c: Likewise.
41115         * hurd/port2fd.c: Likewise.
41116
41117 2012-05-10  Samuel Thibault  <samuel.thibault@ens-lyon.org>
41118
41119         [BZ #3906]
41120         * bits/in.h (IPV6_PKTINFO): Define new macro.
41121         (IPV6_RXINFO,IPV6_TXINFO,SCM_SRCINFO): Redefine to IPV6_PKTINFO.
41122
41123 2012-05-09  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41124
41125         [BZ #13954]
41126         [BZ #13955]
41127         [BZ #13956]
41128         * sysdeps/ieee754/dbl-64/s_logb.c (__logb): Fix for subnormal number.
41129         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c (__logb): Likewise.
41130         * sysdeps/ieee754/flt-32/s_logbf.c (__logf): Likewise.
41131         * sysdeps/ieee754/ldbl-128/s_logbl.c (__logbl): Likewise.
41132         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
41133         * sysdeps/ieee754/ldbl-96/s_logbl.c (__logbl): Likewise.
41134         * math/libm-test.inc (logb_test) : Additional logb tests.
41135
41136 2012-05-09  Andreas Schwab  <schwab@linux-m68k.org>
41137             Andreas Jaeger  <aj@suse.de>
41138
41139         * configure.in (obsolete-rpc): Add new option --enable-obsolete-rpc.
41140         * configure: Regenerated.
41141         * config.h.in (LINK_OBSOLETE_RPC): New macro.
41142         * config.make.in (link-obsolete-rpc): New substituted variable.
41143         * include/libc-symbols.h (libc_hidden_nolink_sunrpc): Rename from
41144         libc_hidden_nolink and define based on LINK_OBSOLETE_RPC.
41145         * sunrpc/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
41146         (shared-only-routines): Don't set it under [link-obsolete-rpc],
41147         so that libc.a contains the symbols.
41148         * nis/Makefile (headers) [link-obsolete-rpc]: Add rpc headers.
41149         * sunrpc/auth_des.c: Use libc_hidden_nolink_sunrpc.
41150         * sunrpc/auth_none.c: Likewise.
41151         * sunrpc/auth_unix.c: Likewise.
41152         * sunrpc/authdes_prot.c: Likewise.
41153         * sunrpc/authuxprot.c: Likewise.
41154         * sunrpc/clnt_gen.c: Likewise.
41155         * sunrpc/clnt_perr.c: Likewise.
41156         * sunrpc/clnt_raw.c: Likewise.
41157         * sunrpc/clnt_simp.c: Likewise.
41158         * sunrpc/clnt_tcp.c: Likewise.
41159         * sunrpc/clnt_udp.c: Likewise.
41160         * sunrpc/clnt_unix.c: Likewise.
41161         * sunrpc/des_crypt.c: Likewise.
41162         * sunrpc/des_soft.c: Likewise.
41163         * sunrpc/get_myaddr.c: Likewise.
41164         * sunrpc/key_call.c: Likewise.
41165         * sunrpc/key_prot.c: Likewise.
41166         * sunrpc/netname.c: Likewise.
41167         * sunrpc/pm_getmaps.c: Likewise.
41168         * sunrpc/pm_getport.c: Likewise.
41169         * sunrpc/pmap_clnt.c: Likewise.
41170         * sunrpc/pmap_prot.c: Likewise.
41171         * sunrpc/pmap_prot2.c: Likewise.
41172         * sunrpc/pmap_rmt.c: Likewise.
41173         * sunrpc/publickey.c: Likewise.
41174         * sunrpc/rpc_cmsg.c: Likewise.
41175         * sunrpc/rpc_common.c: Likewise.
41176         * sunrpc/rpc_dtable.c: Likewise.
41177         * sunrpc/rpc_prot.c: Likewise.
41178         * sunrpc/rpc_thread.c: Likewise.
41179         * sunrpc/rtime.c: Likewise.
41180         * sunrpc/svc.c: Likewise.
41181         * sunrpc/svc_auth.c: Likewise.
41182         * sunrpc/svc_raw.c: Likewise.
41183         * sunrpc/svc_run.c: Likewise.
41184         * sunrpc/svc_tcp.c: Likewise.
41185         * sunrpc/svc_udp.c: Likewise.
41186         * sunrpc/svc_unix.c: Likewise.
41187         * sunrpc/svcauth_des.c: Likewise.
41188         * sunrpc/xcrypt.c: Likewise.
41189         * sunrpc/xdr.c: Likewise.
41190         * sunrpc/xdr_array.c: Likewise.
41191         * sunrpc/xdr_float.c: Likewise.
41192         * sunrpc/xdr_intXX_t.c: Likewise.
41193         * sunrpc/xdr_mem.c: Likewise.
41194         * sunrpc/xdr_rec.c: Likewise.
41195         * sunrpc/xdr_ref.c: Likewise.
41196         * sunrpc/xdr_sizeof.c: Likewise.
41197         * sunrpc/xdr_stdio.c: Likewise.
41198
41199 2012-05-10  Roland McGrath  <roland@hack.frob.com>
41200
41201         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
41202         change.  Update copyright years.
41203
41204 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
41205
41206         * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
41207
41208 2012-05-10  Maxim Kuvyrkov  <maxim@codesourcery.com>
41209             Joseph Myers  <joseph@codesourcery.com>
41210             Paul Pluzhnikov  <ppluzhnikov@google.com>
41211
41212         [BZ #14012]
41213         * sunrpc/Makefile [cross-compiling] (headers): Enable additions
41214         requiring rpcgen.
41215         [cross-compiling] (extra-libs): Likewise.
41216         [cross-compiling] (extra-libs-others): Likewise.
41217         [cross-compiling] (librpcsvc-routines): Likewise.
41218         [cross-compiling] (librpcsvc-inhibit-o): Likewise.
41219         [cross-compiling] (omit-deps): Likewise.
41220         (sunrpc-CPPFLAGS): New variable.
41221         (CPPFLAGS): Define using $(sunrpc-CPPFLAGS).
41222         (BUILD_CPPFLAGS): Append $(sunrpc-CPPFLAGS).
41223         (cross-rpcgen-objs): New variable.
41224         (extra-objs): Append $(cross-rpcgen-objs).
41225         ($(cross-rpcgen-objs)): New rule.
41226         ($(objpfx)cross-rpcgen): Likewise.
41227         (rpcgen-cmd): Define to use $(built-program-file).  Expand
41228         comment.
41229         ($(objpfx)rpcsvc/%.stmp): Depend on cross-rpcgen.
41230         ($(objpfx)x%.stmp): Likewise.
41231         * sunrpc/proto.h [IS_IN_build] (_): Define.
41232         [IS_IN_build] (_libc_intl_domainname): Likewise.
41233
41234 2012-05-10  H.J. Lu  <hongjiu.lu@intel.com>
41235
41236         * sysdeps/x86_64/dl-machine.h (elf_machine_rela) [__ILP32__]:
41237         Sign extend relocation result to 64 bits for R_X86_64_DTPOFF64
41238         and R_X86_64_TPOFF64.
41239
41240 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
41241
41242         * sysdeps/unix/sysv/linux/syscalls.list (alarm): Add entry from
41243         sysdeps/unix/sysv/syscalls.list.
41244         (stime): Likewise.
41245         (utime): Likewise.
41246         * sysdeps/unix/sysv/syscalls.list: Remove file.
41247
41248 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
41249
41250         [BZ #3440]
41251         * locale/bits/locale.h (__LC_CTYPE, __LC_NUMERIC, __LC_TIME)
41252         (__LC_COLLATE, __LC_MONETARY, __LC_MESSAGES, __LC_ALL, __LC_PAPER)
41253         (__LC_NAME, __LC_ADDRESS, __LC_TELEPHONE, __LC_MEASUREMENT)
41254         (__LC_IDENTIFICATION): Make these macros useful in #if
41255         expressions, as required by C99.
41256
41257 2012-05-10  Andreas Schwab  <schwab@linux-m68k.org>
41258
41259         * sunrpc/Makefile (extra-objs) [$(build-shared) = yes]: Add
41260         $(addsuffix .os,$(rpc-compat-routines)).  Move include ../Rules
41261         after this.
41262
41263 2012-05-09  H.J. Lu  <hongjiu.lu@intel.com>
41264
41265         * stdlib/longlong.h: Updated from GCC.
41266
41267 2012-05-09  Andreas Jaeger  <aj@suse.de>
41268
41269         * nscd/nscd.c (run_modes): Make named enum, reorder so that
41270         default is first entry.
41271         (run_mode): Set type.
41272         (main): Remove informal message about syslog.
41273         (options): Fix typo.
41274
41275         [BZ #14053]
41276         * sysdeps/x86_64/fpu/bits/mathinline.h (lrintf): Add __volatile
41277         to asm.
41278         (lrint): Likewise.
41279         (llrintf): Likewise.
41280         (llrint): Likewise.
41281         (rint): Likewise.
41282         (rintf): Likewise.
41283         (nearbyint): Likewise.
41284         (nearbyintf): Likewise.
41285
41286 2012-05-09  Andreas Jaeger  <aj@suse.de>
41287             Pedro Alves  <palves@redhat.com>
41288
41289         * nscd/nscd.c (run_mode): Use enum.
41290         (main): Cleanup coding style issue.
41291
41292 2012-05-09  Alexandre Oliva  <aoliva@redhat.com>
41293             Andreas Jaeger  <aj@suse.de>
41294
41295         * nscd/nscd.c (go_background): Replaced with...
41296         (run_mode): ... this.
41297         (RUN_FOREGROUND, RUN_DAEMONIZE, RUN_DEBUG): Add.
41298         (options): Add -F --foreground.
41299         (main): Implement it.
41300         (parse_opt): Parse it.
41301
41302 2012-05-09  Andreas Jaeger  <aj@suse.de>
41303
41304         [BZ #14083]
41305         * string/bits/string2.h (strspn) [__GNUC_PREREQ(3, 2) &&
41306         !_HAVE_STRING_ARCH_strspn]: Cast zero to size_t to avoid
41307         -Wconversion warning.
41308         (strspn) [!__GNUC_PREREQ(3, 2) && !_HAVE_STRING_ARCH_strspn]:
41309         Likewise.
41310
41311 2012-05-09  Joseph Myers  <joseph@codesourcery.com>
41312
41313         * conform/data/locale.h-data (NULL): Use macro-constant.  Require
41314         == 0.
41315         (LC_ALL): Use macro-int-constant.
41316         (LC_COLLATE): Likewise.
41317         (LC_CTYPE): Likewise.
41318         (LC_MESSAGES): Likewise.
41319         (LC_MONETARY): Likewise.
41320         (LC_NUMERIC): Likewise.
41321         (LC_TIME): Likewise.
41322         [ISO || ISO99 || ISO11] (LC_MESSAGES): Do not require.
41323         (LC_*): Change to LC_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
41324         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41325         * conform/data/math.h-data (HUGE_VAL): Use macro-constant.
41326         Specify type.
41327         [C99-based standards] (float_t): Expect type.
41328         [C99-based standards] (double_t): Expect type.
41329         [C99-based standards] (HUGE_VALF): Use macro-constant.  Specify
41330         type.
41331         [C99-based standards] (HUGE_VALL): Likewise.
41332         [C99-based standards] (INFINITY): Likewise.
41333         [C99-based standards] (NAN): Likewise.
41334         [C99-based standards] (FP_INFINITE): Use macro-int-constant.
41335         [C99-based standards] (FP_NAN): Likewise.
41336         [C99-based standards] (FP_NORMAL): Likewise.
41337         [C99-based standards] (FP_SUBNORMAL): Likewise.
41338         [C99-based standards] (FP_ZERO): Likewise.
41339         [C99-based standards] (FP_FAST_FMA): Use
41340         optional-macro-int-constant.  Specify type.  Require == 1.
41341         [C99-based standards] (FP_FAST_FMAF): Likewise.
41342         [C99-based standards] (FP_FAST_FMAL): Likewise.
41343         [C99-based standards] (FP_ILOGB0): Use macro-int-constant.
41344         [C99-based standards] (FP_ILOGBNAN): Likewise.
41345         [C99-based standards] (MATH_ERRNO): Use macro-int-constant.
41346         Specify type.
41347         [C99-based standards] (MATH_ERREXCEPT): Likewise.
41348         [C99-based standards] (math_errhandling): Specify type.
41349         [ISO99 || ISO11] (signgam): Do not allow.
41350         [non-C99-based standards] (copysignf): Do not allow.
41351         [non-C99-based standards] (exp2f): Likewise.
41352         [non-C99-based standards] (log2f): Likewise.
41353         [non-C99-based standards] (modff): Allow.
41354         [non-C99-based standards] (erff): Do not allow.
41355         [non-C99-based standards] (erfcf): Likewise.
41356         [non-C99-based standards] (gammaf): Likewise.
41357         [non-C99-based standards] (hypotf): Likewise.
41358         [non-C99-based standards] (j0f): Likewise.
41359         [non-C99-based standards] (j1f): Likewise.
41360         [non-C99-based standards] (jnf): Likewise.
41361         [non-C99-based standards] (lgammaf): Likewise.
41362         [non-C99-based standards] (tgammaf): Likewise.
41363         [non-C99-based standards] (y0f): Likewise.
41364         [non-C99-based standards] (y1f): Likewise.
41365         [non-C99-based standards] (ynf): Likewise.
41366         [non-C99-based standards] (isnanf): Likewise.
41367         [non-C99-based standards] (acoshf): Likewise.
41368         [non-C99-based standards] (asinhf): Likewise.
41369         [non-C99-based standards] (atanhf): Likewise.
41370         [non-C99-based standards] (cbrtf): Likewise.
41371         [non-C99-based standards] (expm1f): Likewise.
41372         [non-C99-based standards] (ilogbf): Likewise.
41373         [non-C99-based standards] (log1pf): Likewise.
41374         [non-C99-based standards] (logbf): Likewise.
41375         [non-C99-based standards] (nextafterf): Likewise.
41376         [non-C99-based standards] (remainderf): Likewise.
41377         [non-C99-based standards] (rintf): Likewise.
41378         [non-C99-based standards] (scalbf): Likewise.
41379         [non-C99-based standards] (copysignl): Likewise.
41380         [non-C99-based standards] (exp2l): Likewise.
41381         [non-C99-based standards] (log2l): Likewise.
41382         [non-C99-based standards] (modfl): Allow.
41383         [non-C99-based standards] (erfl): Do not allow.
41384         [non-C99-based standards] (erfcl): Likewise.
41385         [non-C99-based standards] (gammal): Likewise.
41386         [non-C99-based standards] (hypotl): Likewise.
41387         [non-C99-based standards] (j0l): Likewise.
41388         [non-C99-based standards] (j1l): Likewise.
41389         [non-C99-based standards] (jnl): Likewise.
41390         [non-C99-based standards] (lgammal): Likewise.
41391         [non-C99-based standards] (tgammal): Likewise.
41392         [non-C99-based standards] (y0l): Likewise.
41393         [non-C99-based standards] (y1l): Likewise.
41394         [non-C99-based standards] (ynl): Likewise.
41395         [non-C99-based standards] (isnanl): Likewise.
41396         [non-C99-based standards] (acoshl): Likewise.
41397         [non-C99-based standards] (asinhl): Likewise.
41398         [non-C99-based standards] (atanhl): Likewise.
41399         [non-C99-based standards] (cbrtl): Likewise.
41400         [non-C99-based standards] (expm1l): Likewise.
41401         [non-C99-based standards] (ilogbl): Likewise.
41402         [non-C99-based standards] (log1pl): Likewise.
41403         [non-C99-based standards] (logbl): Likewise.
41404         [non-C99-based standards] (nextafterl): Likewise.
41405         [non-C99-based standards] (remainderl): Likewise.
41406         [non-C99-based standards] (rintl): Likewise.
41407         [non-C99-based standards] (scalbl): Likewise.
41408         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41409         [non-C99-based standards] (FP_*): Do not allow.
41410         [C99-based standards] (FP_*): Change to
41411         FP_[ABCDEFGHIJKLMNOPQRSTUVWXYZ]*.
41412         * conform/data/setjmp.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41413         allow.
41414         * conform/data/signal.h-data (SIG_DFL): Use macro-constant.
41415         (SIG_ERR): Likewise.
41416         [X/Open-based standards] (SIG_HOLD): Likewise.
41417         (SIG_IGN): Likewise.
41418         (SIGABRT): Use macro-int-constant.  Specify type.  Require
41419         positive value.
41420         (SIGFPE): Likewise.
41421         (SIGILL): Likewise.
41422         (SIGINT): Likewise.
41423         (SIGSEGV): Likewise.
41424         (SIGTER): Likewise.
41425         [!ISO && !ISO99 && !ISO11] (SIGALRM): Likewise.
41426         [!ISO && !ISO99 && !ISO11] (SIGHUP): Likewise.
41427         [!ISO && !ISO99 && !ISO11] (SIGIO): Likewise.
41428         [!ISO && !ISO99 && !ISO11] (SIGKILL): Likewise.
41429         [!ISO && !ISO99 && !ISO11] (SIGPIPE): Likewise.
41430         [!ISO && !ISO99 && !ISO11] (SIGQUIT): Likewise.
41431         [!ISO && !ISO99 && !ISO11] (SIGUSR1): Likewise.
41432         [!ISO && !ISO99 && !ISO11] (SIGUSR2): Likewise.
41433         [!ISO && !ISO99 && !ISO11] (SIGCHLD): Likewise.
41434         [!ISO && !ISO99 && !ISO11] (SIGCONT): Likewise.
41435         [!ISO && !ISO99 && !ISO11] (SIGSTOP): Likewise.
41436         [!ISO && !ISO99 && !ISO11] (SIGTSTP): Likewise.
41437         [!ISO && !ISO99 && !ISO11] (SIGTTIN): Likewise.
41438         [!ISO && !ISO99 && !ISO11] (SIGTTOU): Likewise.
41439         [!ISO && !ISO99 && !ISO11] (SIGBUS): Likewise.
41440         [!ISO && !ISO99 && !ISO11] (SIGPOLL): Likewise.
41441         [!ISO && !ISO99 && !ISO11] (SIGPROF): Likewise.
41442         [!ISO && !ISO99 && !ISO11] (SIGSYS): Likewise.
41443         [X/Open-based standards] (SIGTRAP): Likewise.
41444         [!ISO && !ISO99 && !ISO11] (SIGURG): Likewise.
41445         [!ISO && !ISO99 && !ISO11] (SIGVTALRM): Likewise.
41446         [!ISO && !ISO99 && !ISO11] (SIGXCPU): Likewise.
41447         [!ISO && !ISO99 && !ISO11] (SIGXFSZ): Likewise.
41448         * conform/data/stdarg.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41449         allow.
41450
41451 2012-05-08  Ian Wienand  <ianw@vmware.com>
41452
41453         [BZ #14080]
41454         * time/tzset.c (__tzset_parse_tz): Update default rules for
41455         daylight time changes in the Energy Policy Act of 2005.
41456
41457 2012-05-09  Andreas Jaeger  <aj@suse.de>
41458
41459         [BZ #13983]
41460         * elf/ldconfig.c (parse_conf): Change string to make clear that
41461         ldconfig only issued a warning if ld.so.conf does not exist.
41462
41463 2012-05-08  David S. Miller  <davem@davemloft.net>
41464
41465         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: Use
41466         movxtod instead of popping the value on the stack.
41467
41468         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41469
41470 2012-05-08  Carlos O'Donell  <carlos_odonell@mentor.com>
41471
41472         * config.h.in: Add HAVE_ARM_PCS_VFP.
41473
41474 2012-05-08  Roland Mc Grath  <roland@hack.frob.com>
41475
41476         [BZ #13979]
41477         * include/features.h: Warn if user requests __FORTIFY_SOURCE
41478         checking but the checks are disabled for any reason.
41479
41480 2012-05-08  H.J. Lu  <hongjiu.lu@intel.com>
41481
41482         * sysdeps/x86_64/dl-machine.h: Replace Elf64_XXX with ElfW(XXX)
41483         and ELF64_R_TYPE with ELFW(R_TYPE).
41484
41485 2012-05-08  Joseph Myers  <joseph@codesourcery.com>
41486
41487         * sysdeps/unix/sysv/syscalls.list (pause): Remove.
41488         (ulimit): Likewise.
41489
41490         * sysdeps/unix/sysv/syscalls.list (setrlimit): Remove.
41491         (settimeofday): Likewise.
41492
41493 2012-05-08  Mike Frysinger  <vapier@gentoo.org>
41494
41495         * inet/arpa/tftp.h (struct tftphdr): Rename th_u to th_u1.  Add
41496         a struct th_u2 inside the union, and move tu_block/tu_code into
41497         a new th_u3 union of tu_block/tu_code inside of that.  Move
41498         th_data[1] into the th_u2 as tu_data[0].  Change tu_stuff[1] to
41499         tu_stuff[0].  Add a new tu_padding[4] to keep sizeof() the same.
41500         (th_block): Change to th_u1.th_u2.th_u3.tu_block.
41501         (th_code): Change to th_u1.th_u2.th_u3.tu_code.
41502         (th_stuff): Change to th_u1.tu_stuff.
41503         (th_data): Define.
41504         (th_msg): Change to th_u1.th_u2.tu_data.
41505
41506 2012-05-07  David S. Miller  <davem@davemloft.net>
41507
41508         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41509
41510         [BZ #14074]
41511         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK_CALL): New macro.
41512         (SETUP_PIC_REG): Use it.
41513         (SETUP_PIC_REG_LEAF): Use it.
41514
41515 2012-05-07  Joseph Myers  <joseph@codesourcery.com>
41516
41517         [BZ #13885]
41518         [BZ #13923]
41519         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41520         USE_AS_EXPM1L.
41521         (EXPL_FINITE): Likewise.
41522         (FLDLOG): Likewise.
41523         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
41524         * sysdeps/i386/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
41525         e_expl.S.
41526         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41527         USE_AS_EXPM1L.
41528         (EXPL_FINITE): Likewise.
41529         (FLDLOG): Likewise.
41530         (IEEE754_EXPL) [USE_AS_EXPM1L]: Support use as expm1l.
41531         * sysdeps/x86_64/fpu/s_expm1l.S: Define USE_AS_EXPM1L and include
41532         e_expl.S.
41533         * math/libm-test.inc (expm1_test): Add more tests.  Do not disable
41534         test of -max_value argument for long double.
41535         * sysdeps/i386/fpu/libm-test-ulps: Update.
41536         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
41537
41538 2012-05-06  David S. Miller  <davem@davemloft.net>
41539
41540         * scripts/data/localplt-sparc-linux-gnu.data: Add '?' markers to
41541         quad soft-float symbols whose references which are compiler
41542         generated.
41543         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
41544
41545 2012-05-06  Joseph Myers  <joseph@codesourcery.com>
41546
41547         [BZ #13884]
41548         [BZ #13914]
41549         * sysdeps/i386/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41550         USE_AS_EXP10L.
41551         (EXPL_FINITE): Likewise.
41552         (FLDLOG): Likewise.
41553         (c0): Likewise.
41554         (c1): Likewise.
41555         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
41556         Adjust comments for base varying.
41557         (__expl_finite): Change alias to EXPL_FINITE.
41558         * sysdeps/i386/fpu/e_exp10l.S: Define USE_AS_EXP10L and include
41559         e_expl.S.
41560         * sysdeps/ieee754/dbl-64/e_exp10.c: New file.
41561         * sysdeps/ieee754/ldbl-128/e_exp10l.c: Likewise.
41562         * sysdeps/ieee754/ldbl-128ibm/e_exp10l.c: Likewise.
41563         * sysdeps/x86_64/fpu/e_exp10l.S: Likewise.
41564         * sysdeps/x86_64/fpu/e_expl.S (IEEE754_EXPL): Define conditional on
41565         USE_AS_EXP10L.
41566         (EXPL_FINITE): Likewise.
41567         (FLDLOG): Likewise.
41568         (c0): Likewise.
41569         (c1): Likewise.
41570         (__ieee754_expl): Change to IEEE754_EXPL.  Use FLDLOG macro.
41571         Adjust comments for base varying.
41572         (__expl_finite): Change alias to EXPL_FINITE.
41573         * math/libm-test.inc (exp10_test): Add more tests.  Do not disable
41574         tests for bugs.
41575         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
41576
41577         [BZ #14064]
41578         * math/libm-test.inc (check_float_internal): Correct ulp
41579         calculation for subnormal expected results.
41580
41581 2012-05-06  Andreas Jaeger  <aj@suse.de>
41582
41583         * Makeconfig (+math-flags): New, set to -frounding-math.
41584         (+cflags): Add +math-flags so that all of glibc gets compiled with
41585         it.
41586
41587         * sysdeps/x86_64/fpu/libm-test-ulps: Updated.
41588
41589 2012-05-05  Joseph Myers  <joseph@codesourcery.com>
41590
41591         * math/libm-test.inc (hypot_test) [TEST_DOUBLE && TEST_INLINE]:
41592         Disable one test.
41593
41594         [BZ #13787]
41595         [BZ #13922]
41596         [BZ #14036]
41597         * sysdeps/i386/fpu/e_expl.S (csat): New constant.
41598         (__ieee754_expl): Allow for and saturate large arguments.
41599         * sysdeps/ieee754/dbl-64/w_exp.c (o_threshold): Remove variable.
41600         (u_threshold): Likewise.
41601         (__exp): Call __ieee754_exp before checking for overflow and
41602         underflow.
41603         * sysdeps/ieee754/flt-32/w_expf.c (o_threshold): Remove variable.
41604         (u_threshold): Likewise.
41605         (__expf): Call __ieee754_expf before checking for overflow and
41606         underflow.
41607         * sysdeps/ieee754/ldbl-96/w_expl.c (o_threshold): Remove variable.
41608         (u_threshold): Likewise.
41609         (__expl): Call __ieee754_expl before checking for overflow and
41610         underflow.
41611         * sysdeps/x86_64/fpu/e_expl.S (csat): New constant.
41612         (__ieee754_expl): Allow for and saturate large arguments.
41613         * math/libm-test.inc (exp_test): Add another test.  Do not allow
41614         missing overflow exception on overflow.
41615         (expm1_test): Do not allow missing overflow exception on overflow.
41616
41617         * sysdeps/i386/fpu/e_expl.c: Move to ...
41618         * sysdeps/i386/fpu/e_expl.S: ... here.  Write directly in assembly
41619         rather than using inline asm.
41620         * sysdeps/x86_64/fpu/e_expl.c: Remove file.
41621         * sysdeps/x86_64/fpu/e_expl.S: Copy from
41622         sysdeps/i386/fpu/e_expl.S, adjusted for x86_64.
41623
41624         * sysdeps/unix/sysv/syscalls.list (ftime): Remove.
41625         (nice): Likewise.
41626         (poll): Likewise.
41627         (signal): Likewise.
41628         (time): Likewise.
41629         (times): Likewise.
41630
41631 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41632
41633         * sysdeps/unix/syscalls.list (adjtime): Add entry from
41634         sysdeps/unix/common/syscalls.list.
41635         (fchmod): Likewise.
41636         (fchown): Likewise.
41637         (ftruncate): Likewise.
41638         (getrusage): Likewise.
41639         (gettimeofday): Likewise.
41640         (setpgid): Likewise.
41641         (setregid): Likewise.
41642         (setreuid): Likewise.
41643         (sigaction): Likewise.
41644         (truncate): Likewise.
41645         (vhangup): Likewise.
41646         * sysdeps/unix/common/syscalls.list: Remove file.
41647         * sysdeps/unix/bsd/Implies: Don't include unix/common.
41648         * sysdeps/unix/sysv/linux/Implies: Likewise.
41649
41650 2012-05-04  H.J. Lu  <hongjiu.lu@intel.com>
41651
41652         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: Moved to ...
41653         * sysdeps/unix/sysv/linux/x86_64/64/nptl/ld.abilist: Here.
41654         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist:
41655         Moved to ...
41656         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libBrokenLocale.abilist:
41657         Here.
41658         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: Moved
41659         to ...
41660         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libanl.abilist: Here.
41661         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: Moved
41662         to ...
41663         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libc.abilist: Here.
41664         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: Moved
41665         to ...
41666         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libcrypt.abilist: Here.
41667         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: Moved
41668         to ...
41669         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libdl.abilist: Here.
41670         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: Moved
41671         to ...
41672         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libm.abilist: Here.
41673         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: Moved
41674         to ...
41675         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libnsl.abilist: Here.
41676         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: Moved
41677         to ...
41678         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libpthread.abilist:
41679         Here.
41680         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: Moved
41681         to ...
41682         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libresolv.abilist:
41683         Here.
41684         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: Moved
41685         to ...
41686         * sysdeps/unix/sysv/linux/x86_64/64/nptl/librt.abilist: Here.
41687         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist:
41688         Moved to ...
41689         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libthread_db.abilist:
41690         Here.
41691         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: Moved
41692         to ...
41693         * sysdeps/unix/sysv/linux/x86_64/64/nptl/libutil.abilist: Here.
41694
41695 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41696
41697         * sysdeps/unix/common/bits/dirent.h: Remove file.
41698         * sysdeps/unix/common/bits/fcntl.h: Likewise.
41699
41700         * sysdeps/unix/bsd/bits/dirent.h: Remove file.
41701         * sysdeps/unix/bsd/bits/fcntl.h: Likewise.
41702         * sysdeps/unix/bsd/bsd4.4/isatty.c: Likewise.
41703         * sysdeps/unix/bsd/isatty.c: Likewise.
41704         * sysdeps/unix/bsd/tcdrain.c: Likewise.
41705         * sysdeps/unix/bsd/tcgetattr.c: Likewise.
41706         * sysdeps/unix/bsd/tcsetattr.c: Likewise.
41707
41708 2012-05-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41709
41710         [BZ #13563]
41711         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c (__ieee754_acosl): Fix
41712         long double comparison inaccuracies.
41713         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c (__ieee754_asinl): Likewise.
41714         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
41715
41716 2012-05-04  Andreas Schwab  <schwab@linux-m68k.org>
41717
41718         * sysdeps/unix/make-syscalls.sh: Fix check for version aliases.
41719         * sysdeps/unix/sysv/linux/i386/syscalls.list: Revert last change.
41720
41721 2012-05-04  Joseph Myers  <joseph@codesourcery.com>
41722
41723         [BZ #14049]
41724         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Check for trailing
41725         nonzero digits before rounding a hex value.
41726         * stdlib/tst-strtod.c (tests): Add another test.
41727
41728 2012-05-03  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
41729
41730         * sysdeps/s390/fpu/libm-test-ulps: Update.
41731
41732 2012-05-03  Andreas Jaeger  <aj@suse.de>
41733
41734         * malloc/mcheck.c (mcheck): Add barrier so that malloc/free pair
41735         does not get optimized out.
41736         (malloc_opt_barrier): New.
41737
41738 2012-05-03  Andreas Jaeger  <aj@suse.de>
41739             Roland McGrath  <roland@hack.frob.com>
41740
41741         * Makerules (.PRECIOUS): Add %.symlist pattern to prevent
41742         intermediate file deletion.
41743         (generated): Add .symlist files.
41744
41745 2012-05-03  Joseph Myers  <joseph@codesourcery.com>
41746
41747         [BZ #13775]
41748         * libio/bits/stdio-ldbl.h [__USE_XOPEN2K8] (__dprintf_chk):
41749         Redirect under this condition.
41750         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
41751         [__USE_GNU] (__dprintf_chk): Not under this condition.
41752         [__USE_GNU] (__vdprintf_chk): Likewise.
41753         * libio/bits/stdio2.h [__USE_XOPEN2K8] (__dprintf_chk): Declare
41754         under this condition.
41755         [__USE_XOPEN2K8] (__vdprintf_chk): Likewise.
41756         [__USE_XOPEN2K8] (dprintf): Define under this condition.
41757         [__USE_XOPEN2K8] (vdprintf): Likewise.
41758         [__USE_GNU] (__dprintf_chk): Not under this condition.
41759         [__USE_GNU] (__vdprintf_chk): Likewise.
41760         [__USE_GNU] (dprintf): Likewise.
41761         [__USE_GNU] (vdprintf): Likewise.
41762
41763 2012-05-03  Roland McGrath  <roland@hack.frob.com>
41764
41765         * elf/Makefile (common-generated): Set this instead of generated for
41766         .dyn, .phdr, .jmprel files.  Remove $(common-objpfx) from the
41767         $(all-built-dso)-derived lists.
41768
41769 2012-05-03  Andreas Jaeger  <aj@suse.de>
41770
41771         * sysdeps/i386/fpu/libm-test-ulps: Update.
41772
41773         * FAQ: Removed.
41774         * FAQ.in: Likewise.
41775         * scripts/gen-FAQ.pl: Likewise.
41776         * manual/install.texi (Installation): Point to online location of
41777         FAQ.
41778         * Makefile (files-for-dist): Remove FAQ.
41779         (FAQ): Remove.
41780
41781 2012-05-02  Allan McRae  <allan@archlinux.org>
41782
41783         * elf/Makefile: (LDFLAGS-nodel2mod3.so: Use $(no-as-needed).
41784         (LDFLAGS-reldepmod5.so): Likewise.
41785         (LDFLAGS-reldep6mod1.so): Likewise.
41786         (LDFLAGS-reldep6mod4.so): Likewise.
41787         (LDFLAGS-reldep8mod3.so): Likewise.
41788         (LDFLAGS-unload4mod1.so): Likewise.
41789         (LDFLAGS-unload4mod2.so): Likewise.
41790         (LDFLAGS-tst-initorder): Likewise.
41791         (LDFLAGS-tst-initordera2.so): Likewise.
41792         (LDFLAGS-tst-initordera3.so): Likewise.
41793         (LDFLAGS-tst-initordera4.so): Likewise.
41794         (LDFLAGS-tst-initorderb2.so): Likewise.
41795         (LDFLAGS-noload): Likewise.
41796         (LDFLAGS-next): Likewise.
41797         (LDFLAGS-order2mod1.so): Likewise.
41798         (LDFLAGS-order2mod2.so): Likewise.
41799         (LDFLAGS-tst-initorder2): Likewise.
41800         (LDFLAGS-tst-initorder2a.so): Likewise.
41801         (LDFLAGS-tst-initorder2b.so): Likewise.
41802         (LDFLAGS-tst-initorder2c.so): Likewise.
41803         * stdlib/Makefile: (LDFLAGS-tst-putenv): Likewise.
41804
41805 2012-05-02  David S. Miller  <davem@davemloft.net>
41806
41807         * sysdeps/sparc/fpu/libm-test-ulps: Update.
41808
41809 2012-05-02  Paul Pluzhnikov  <ppluzhnikov@google.com>
41810
41811         [BZ #14055]
41812         * elf/dl-sysdep.c (_dl_show_auxv): Add bounds check.
41813
41814 2012-05-02  Andreas Jaeger  <aj@suse.de>
41815
41816         * math/Makefile (CPPFLAGS-test-ildoubl.c): Add -frounding-math
41817         since we manipulate rounding mode.
41818         (CPPFLAGS-test-idouble.c): Likewise.
41819         (CPPFLAGS-test-ifloat.c): Likewise.
41820         (CFLAGS-test-ldouble.c): Likewise.
41821         (CFLAGS-test-double.c): Likewise.
41822         (CFLAGS-test-float.c): Likewise.
41823         (CFLAGS-test-misc.c): Likewise.
41824         (CFLAGS-test-test-fenv.c): Likewise.
41825
41826 2012-05-02  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
41827
41828         [BZ #2550]
41829         [BZ #2570]
41830         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Use floating-point
41831         comparisons to determine direction to adjust input.
41832
41833 2012-05-01  Roland McGrath  <roland@hack.frob.com>
41834
41835         * elf/Makefile ($(objpfx)check-localplt.out): Redirect the test's
41836         output to the target.
41837
41838         * scripts/localplt.awk: New file.
41839         * elf/Makefile ($(objpfx)check-localplt): Target removed.
41840         (check-localplt-CFLAGS): Variable removed.
41841         ($(all-built-dso:=.jmprel)): New static pattern rule.
41842         (generated): Add those targets.
41843         (localplt-built-dso): New variable.
41844         ($(objpfx)check-localplt.out): Use the script on the .jmprel files.
41845
41846         * elf/check-localplt.c: File removed.
41847
41848         * scripts/check-execstack.awk: New file.
41849         * elf/Makefile ($(objpfx)check-execstack): Target removed.
41850         (check-execstack-CFLAGS): Variable removed.
41851         ($(objpfx)check-execstack.h): Target removed.
41852         ($(objpfx)execstack-default): New target.
41853         (generated): Add that instead of check-execstack.h.
41854         ($(all-built-dso:=.phdr)): New static pattern rule.
41855         (generated): Add those targets.
41856         * elf/check-execstack.c: File removed.
41857
41858         * scripts/check-textrel.awk: New file.
41859         * elf/Makefile ($(objpfx)check-textrel): Target removed.
41860         (check-textrel-CFLAGS): Variable removed.
41861         (all-built-dso): Use := to define.o
41862         ($(all-built-dso:=.dyn)): New static pattern rule.
41863         (generated): Add those targets.
41864         ($(objpfx)check-textrel.out): Use the script on the .dyn files.
41865         * config.make.in (READELF): New substituted variable.
41866         * elf/check-textrel.c: File removed.
41867
41868 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
41869
41870         * conform/data/assert.h-data [ISO || ISO99 || ISO11] (*_t): Do not
41871         allow.
41872         * conform/data/ctype.h-data [C99-based standards] (isblank):
41873         Expect function.
41874         (is*): Change to is[abcdefghijklmnopqrstuvwxyz]*.
41875         (to*): Change to to[abcdefghijklmnopqrstuvwxyz]*.
41876         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41877         * conform/data/errno.h-data (EDOM): Use macro-int-constant.
41878         Specify type.  Require positive value.
41879         (EILSEQ): Likewise.
41880         (ERANGE): Likewise.
41881         [ISO || POSIX] (EILSEQ): Do not expect.
41882         [!ISO && !ISO99 && !ISO11] (E2BIG): Use macro-int-constant.
41883         Specify type.  Require positive value.
41884         [!ISO && !ISO99 && !ISO11] (EACCES): Likewise.
41885         [!ISO && !ISO99 && !ISO11] (EADDRINUSE): Likewise.
41886         [!ISO && !ISO99 && !ISO11] (EADDRNOTAVAIL): Likewise.
41887         [!ISO && !ISO99 && !ISO11] (EAFNOSUPPORT): Likewise.
41888         [!ISO && !ISO99 && !ISO11] (EAGAIN): Likewise.
41889         [!ISO && !ISO99 && !ISO11] (EALREADY): Likewise.
41890         [!ISO && !ISO99 && !ISO11] (EBADF): Likewise.
41891         [!ISO && !ISO99 && !ISO11] (EBADMSG): Likewise.
41892         [!ISO && !ISO99 && !ISO11] (EBUSY): Likewise.
41893         [!ISO && !ISO99 && !ISO11] (ECANCELED): Likewise.
41894         [!ISO && !ISO99 && !ISO11] (ECHILD): Likewise.
41895         [!ISO && !ISO99 && !ISO11] (ECONNABORTED): Likewise.
41896         [!ISO && !ISO99 && !ISO11] (ECONNREFUSED): Likewise.
41897         [!ISO && !ISO99 && !ISO11] (ECONNRESET): Likewise.
41898         [!ISO && !ISO99 && !ISO11] (EDEADLK): Likewise.
41899         [!ISO && !ISO99 && !ISO11] (EDESTADDRREQ): Likewise.
41900         [!ISO && !ISO99 && !ISO11] (EDQUOT): Likewise.
41901         [!ISO && !ISO99 && !ISO11] (EEXIST): Likewise.
41902         [!ISO && !ISO99 && !ISO11] (EFAULT): Likewise.
41903         [!ISO && !ISO99 && !ISO11] (EFBIG): Likewise.
41904         [!ISO && !ISO99 && !ISO11] (EHOSTUNREACH): Likewise.
41905         [!ISO && !ISO99 && !ISO11] (EIDRM): Likewise.
41906         [!ISO && !ISO99 && !ISO11] (EINPROGRESS): Likewise.
41907         [!ISO && !ISO99 && !ISO11] (EINTR): Likewise.
41908         [!ISO && !ISO99 && !ISO11] (EINVAL): Likewise.
41909         [!ISO && !ISO99 && !ISO11] (EIO): Likewise.
41910         [!ISO && !ISO99 && !ISO11] (EISCONN): Likewise.
41911         [!ISO && !ISO99 && !ISO11] (EISDIR): Likewise.
41912         [!ISO && !ISO99 && !ISO11] (ELOOP): Likewise.
41913         [!ISO && !ISO99 && !ISO11] (EMFILE): Likewise.
41914         [!ISO && !ISO99 && !ISO11] (EMLINK): Likewise.
41915         [!ISO && !ISO99 && !ISO11] (EMSGSIZE): Likewise.
41916         [!ISO && !ISO99 && !ISO11] (EMULTIHOP): Likewise.
41917         [!ISO && !ISO99 && !ISO11] (ENAMETOOLONG): Likewise.
41918         [!ISO && !ISO99 && !ISO11] (ENETDOWN): Likewise.
41919         [!ISO && !ISO99 && !ISO11] (ENETUNREACH): Likewise.
41920         [!ISO && !ISO99 && !ISO11] (ENFILE): Likewise.
41921         [!ISO && !ISO99 && !ISO11] (ENOBUFS): Likewise.
41922         [!ISO && !ISO99 && !ISO11] (ENODATA): Likewise.
41923         [!ISO && !ISO99 && !ISO11] (ENODEV): Likewise.
41924         [!ISO && !ISO99 && !ISO11] (ENOENT): Likewise.
41925         [!ISO && !ISO99 && !ISO11] (ENOEXEC): Likewise.
41926         [!ISO && !ISO99 && !ISO11] (ENOLCK): Likewise.
41927         [!ISO && !ISO99 && !ISO11] (ENOLINK): Likewise.
41928         [!ISO && !ISO99 && !ISO11] (ENOMEM): Likewise.
41929         [!ISO && !ISO99 && !ISO11] (ENOMSG): Likewise.
41930         [!ISO && !ISO99 && !ISO11] (ENOPROTOOPT): Likewise.
41931         [!ISO && !ISO99 && !ISO11] (ENOSPC): Likewise.
41932         [!ISO && !ISO99 && !ISO11] (ENOSR): Likewise.
41933         [!ISO && !ISO99 && !ISO11] (ENOSTR): Likewise.
41934         [!ISO && !ISO99 && !ISO11] (ENOSYS): Likewise.
41935         [!ISO && !ISO99 && !ISO11] (ENOTCONN): Likewise.
41936         [!ISO && !ISO99 && !ISO11] (ENOTDIR): Likewise.
41937         [!ISO && !ISO99 && !ISO11] (ENOTEMPTY): Likewise.
41938         [!ISO && !ISO99 && !ISO11] (ENOTSOCK): Likewise.
41939         [!ISO && !ISO99 && !ISO11] (ENOTSUP): Likewise.
41940         [!ISO && !ISO99 && !ISO11] (ENOTTY): Likewise.
41941         [!ISO && !ISO99 && !ISO11] (ENXIO): Likewise.
41942         [!ISO && !ISO99 && !ISO11] (EOPNOTSUPP): Likewise.
41943         [!ISO && !ISO99 && !ISO11] (EOVERFLOW): Likewise.
41944         [!ISO && !ISO99 && !ISO11] (EPERM): Likewise.
41945         [!ISO && !ISO99 && !ISO11] (EPIPE): Likewise.
41946         [!ISO && !ISO99 && !ISO11] (EPROTO): Likewise.
41947         [!ISO && !ISO99 && !ISO11] (EPROTONOSUPPORT): Likewise.
41948         [!ISO && !ISO99 && !ISO11] (EPROTOTYPE): Likewise.
41949         [!ISO && !ISO99 && !ISO11] (EROFS): Likewise.
41950         [!ISO && !ISO99 && !ISO11] (ESPIPE): Likewise.
41951         [!ISO && !ISO99 && !ISO11] (ESRCH): Likewise.
41952         [!ISO && !ISO99 && !ISO11] (ESTALE): Likewise.
41953         [!ISO && !ISO99 && !ISO11] (ETIME): Likewise.
41954         [!ISO && !ISO99 && !ISO11] (ETIMEDOUT): Likewise.
41955         [!ISO && !ISO99 && !ISO11] (ETXTBSY): Likewise.
41956         [!ISO && !ISO99 && !ISO11] (EWOULDBLOCK): Likewise.
41957         [!ISO && !ISO99 && !ISO11] (EXDEV): Likewise.
41958         [XOPEN2K8 || defined POSIX2008] (ENOTRECOVERABLE): Likewise.
41959         [XOPEN2K8 || defined POSIX2008] (EOWNERDEAD): Likewise.
41960         * conform/data/float.h-data (FLT_RADIX): Use macro-int-constant.
41961         Require >= 2.
41962         (FLT_ROUNDS): Expect as macro, not constant.
41963         (FLT_MANT_DIG): Use macro-int-constant.
41964         (DBL_MANT_DIG): Likewise.
41965         (LDBL_MANT_DIG): Likewise.
41966         (FLT_DIG): Likewise.
41967         (DBL_DIG): Likewise.
41968         (LDBL_DIG): Likewise.
41969         (FLT_MIN_EXP): Use macro-int-constant.  Require < 0.
41970         (DBL_MIN_EXP): Likewise.
41971         (LDBL_MIN_EXP): Likewise.
41972         (FLT_MAX_EXP): Use macro-int-constant.
41973         (DBL_MAX_EXP): Likewise.
41974         (LDBL_MAX_EXP): Likewise.
41975         (FLT_MAX_10_EXP): Likewise.
41976         (DBL_MAX_10_EXP): Likewise.
41977         (LDBL_MAX_10_EXP): Likewise.
41978         (FLT_MAX): Use macro-constant.
41979         (DBL_MAX): Likewise.
41980         (LDBL_MAX): Likewise.
41981         (FLT_EPSILON): Use macro-constant.  Give upper bound.
41982         (DBL_EPSILON): Likewise.
41983         (LDBL_EPSILON): Likewise.
41984         (FLT_MIN): Likewise.
41985         (DBL_MIN): Likewise.
41986         (LDBL_MIN): Likewise.
41987         [C99-based standards] (DECIMAL_DIG): Use macro-int-constant.
41988         [C99-based standards] (FLT_EVAL_METHOD): Likewise.
41989         [ISO11] (DBL_HAS_SUBNORM): Use macro-int-constant.
41990         [ISO11] (FLT_HAS_SUBNORM): Likewise.
41991         [ISO11] (LDBL_HAS_SUBNORM): Likewise.
41992         [ISO11] (DBL_DECIMAL_DIG): Likewise.
41993         [ISO11] (FLT_DECIMAL_DIG): Likewise.
41994         [ISO11] (LDBL_DECIMAL_DIG): Likewise.
41995         [ISO11] (DBL_TRUE_MIN): Use macro-constant.
41996         [ISO11] (FLT_TRUE_MIN): Likewise.
41997         [ISO11] (LDBL_TRUE_MIN): Likewise.
41998         [ISO || ISO99 || ISO11] (*_t): Do not allow.
41999         * conform/data/limits.h-data (CHAR_BIT): Use macro-int-constant.
42000         (SCHAR_MIN): Use macro-int-constant.  Specify type.
42001         (SCHAR_MAX): Likewise.
42002         (UCHAR_MAX): Likewise.
42003         (CHAR_MIN): Likewise.
42004         (CHAR_MAX): Likewise.
42005         (MB_LEN_MAX): Use macro-int-constant.
42006         (SHRT_MIN): Use macro-int-constant.  Specify type.
42007         (SHRT_MAX): Likewise.
42008         (USHRT_MAX): Likewise.
42009         (INT_MAX): Likewise.
42010         (INT_MIN): Use macro-int-constant.  Specify type.  Make upper
42011         bound negative.
42012         (UINT_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42013         bound with "U".
42014         (LONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42015         bound with "L".
42016         (LONG_MIN): Use macro-int-constant.  Specify type.  Make upper
42017         bound negative.  Suffix upper bound with "L".
42018         (ULONG_MAX): Use macro-int-constant.  Specify type.  Suffix lower
42019         bound with "UL".
42020         [C99-based standards] (LLONG_MIN): Use macro-int-constant.
42021         Specify type.
42022         [C99-based standards] (LLONG_MAX): Likewise.
42023         [C99-based standards] (ULLONG_MAX): Likewise.
42024         * conform/data/stddef.h-data (NULL): Use macro-constant.  Require
42025         == 0.
42026         [ISO11] (max_align_t): Require type.
42027         [ISO || ISO99 || ISO11] (*_t): Do not allow.
42028
42029         * conform/conformtest.pl ($CFLAGS_namespace): Define separately
42030         from $CFLAGS, without defining away __attribute__ calls.
42031         (checknamespace): Use $CFLAGS_namespace.
42032
42033         * conform/conformtest.pl (@keywords): Only include C99 keywords
42034         for standards based on C99 or C11.
42035
42036         * conform/data/iso646.h-data [ISO || POSIX || XPG3 || XPG4]:
42037         Disable tests.
42038         * conform/data/stdint.h-data [ISO || POSIX || XPG3 || XPG4 ||
42039         UNIX98]: Likewise.
42040
42041         * conform/conformtest.pl: Handle "macro-int-constant" and test for
42042         usability of symbols in #if.
42043
42044         * conform/conformtest.pl: If macro or constant types start
42045         "promoted:", expect the symbol to be of the following type
42046         promoted by the integer promotions.
42047
42048         * conform/conformtest.pl: Parse all "constant" and "macro" lines
42049         in one place.  Also handle "macro-constant".
42050
42051         * conform/conformtest.pl: Only accept expected macro values with
42052         "==".  Parse all "macro" lines in one place.
42053         * conform/data/stdlib.h-data: Use "==" form on "macro" lines.
42054
42055         * conform/conformtest.pl: Handle braced types on "constant" lines
42056         instead of handling "typed-constant".
42057         * conform/data/signal.h-data: Use "constant" instead of
42058         "typed-constant".
42059
42060         * conform/conformtest.pl: Handle "optional-" at start of lines in
42061         one place rather than duplicating several cases.  Handle each
42062         format of "macro" line with initial "optional-".
42063
42064         * conform/conformtest.pl: Only accept expected constant or
42065         optional-constant values with "==".  Parse all "constant" lines in
42066         one place.  Parse all "optional-constant" lines in one place.
42067         * conform/data/cpio.h-data: Use "==" form on "constant" lines.
42068         * conform/data/fmtmsg.h-data: Likewise.
42069         * conform/data/netinet/in.h-data: Likewise.
42070         * conform/data/tar.h-data: Likewise.
42071         * conform/data/limits.h-data: Use "==" form on "constant" and
42072         "optional-constant" lines.
42073
42074         * conform/conformtest.pl: Use -ansi for XPG3, XPG4 and UNIX98.
42075         Use -std=c99 for XOPEN2K.
42076         (@knownproblems): Remove.
42077         (newtoken): Don't check %isknown.
42078
42079         * conform/data/math.h-data [XPG3 || XPG4 || UNIX98] (fpclassify):
42080         Do not expect macro.
42081         [XPG3 || XPG4 || UNIX98] (isfinite): Likewise.
42082         [XPG3 || XPG4 || UNIX98] (isinf): Likewise.
42083         [XPG3 || XPG4 || UNIX98] (isnan): Likewise.
42084         [XPG3 || XPG4 || UNIX98] (isnormal): Likewise.
42085         [XPG3 || XPG4 || UNIX98] (signbit): Likewise.
42086         [XPG3 || XPG4 || UNIX98] (isgreater): Likewise.
42087         [XPG3 || XPG4 || UNIX98] (isgreaterequal): Likewise.
42088         [XPG3 || XPG4 || UNIX98] (isless): Likewise.
42089         [XPG3 || XPG4 || UNIX98] (islessequal): Likewise.
42090         [XPG3 || XPG4 || UNIX98] (islessgreater): Likewise.
42091         [XPG3 || XPG4 || UNIX98] (isunordered): Likewise.
42092         [XPG3 || XPG4 || UNIX98] (isnan): Expect as function.
42093         [XPG3 || XPG4 || UNIX98] (HUGE_VALF): Do not expect.
42094         [XPG3 || XPG4 || UNIX98] (HUGE_VALL): Likewise.
42095         [XPG3 || XPG4 || UNIX98] (INFINITY): Likewise.
42096         [XPG3 || XPG4 || UNIX98] (NAN): Likewise.
42097         [XPG3 || XPG4 || UNIX98] (FP_INFINITE): Likewise.
42098         [XPG3 || XPG4 || UNIX98] (FP_NAN): Likewise.
42099         [XPG3 || XPG4 || UNIX98] (FP_NORMAL): Likewise.
42100         [XPG3 || XPG4 || UNIX98] (FP_SUBNORMAL): Likewise.
42101         [XPG3 || XPG4 || UNIX98] (FP_ZERO): Likewise.
42102         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMA): Likewise.
42103         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAF): Likewise.
42104         [XPG3 || XPG4 || UNIX98] (FP_FAST_FMAL): Likewise.
42105         [XPG3 || XPG4 || UNIX98] (FP_ILOGB0): Likewise.
42106         [XPG3 || XPG4 || UNIX98] (FP_ILOGBNAN): Likewise.
42107         [XPG3 || XPG4 || UNIX98] (copysign): Likewise.
42108         [XPG3 || XPG4 || UNIX98] (exp2): Likewise.
42109         [XPG3 || XPG4 || UNIX98] (log2): Likewise.
42110         [XPG3 || XPG4 || UNIX98] (tgama): Likewise.
42111         [XPG3] (acosh): Likewise.
42112         [XPG3] (asinh): Likewise.
42113         [XPG3] (atanh): Likewise.
42114         [XPG3] (cbrt): Likewise.
42115         [XPG3] (expm1): Likewise.
42116         [XPG3] (ilogb): Likewise.
42117         [XPG3] (log1p): Likewise.
42118         [XPG3] (logb): Likewise.
42119         [XPG3] (nextafter): Likewise.
42120         [XPG3 || XPG4 || UNIX98] (nexttoward): Likewise.
42121         [XPG3 || XPG4 || UNIX98] (nearbyint): Likewise.
42122         [XPG3] (remainder): Likewise.
42123         [XPG3] (rint): Likewise.
42124         [XPG3 || XPG4 || UNIX98] (round): Likewise.
42125         [XPG3 || XPG4 || UNIX98] (trunc): Likewise.
42126         [XPG3 || XPG4 || UNIX98] (lrint): Likewise.
42127         [XPG3 || XPG4 || UNIX98] (llrint): Likewise.
42128         [XPG3 || XPG4 || UNIX98] (lround): Likewise.
42129         [XPG3 || XPG4 || UNIX98] (llround): Likewise.
42130         [XPG3 || XPG4 || UNIX98] (remquo): Likewise.
42131         [UNIX98 || XOPEN2K] (scalb): Expect.
42132         [XPG3 || XPG4 || UNIX98] (scalbn): Do not expect.
42133         [XPG3 || XPG4 || UNIX98] (scalbln): Likewise.
42134         [XPG3 || XPG4 || UNIX98] (fdim): Likewise.
42135         [XPG3 || XPG4 || UNIX98] (fmax): Likewise.
42136         [XPG3 || XPG4 || UNIX98] (fmin): Likewise.
42137         [XPG3 || XPG4 || UNIX98] (fma): Likewise.
42138         [XPG3 || XPG4 || UNIX98] (nan): Likewise.
42139         [XPG3 || XPG4 || UNIX98] (acosf): Likewise.
42140         [XPG3 || XPG4 || UNIX98] (asinf): Likewise.
42141         [XPG3 || XPG4 || UNIX98] (atanf): Likewise.
42142         [XPG3 || XPG4 || UNIX98] (atan2f): Likewise.
42143         [XPG3 || XPG4 || UNIX98] (ceilf): Likewise.
42144         [XPG3 || XPG4 || UNIX98] (copysignf): Likewise.
42145         [XPG3 || XPG4 || UNIX98] (cosf): Likewise.
42146         [XPG3 || XPG4 || UNIX98] (coshf): Likewise.
42147         [XPG3 || XPG4 || UNIX98] (expf): Likewise.
42148         [XPG3 || XPG4 || UNIX98] (exp2f): Likewise.
42149         [XPG3 || XPG4 || UNIX98] (fabsf): Likewise.
42150         [XPG3 || XPG4 || UNIX98] (floorf): Likewise.
42151         [XPG3 || XPG4 || UNIX98] (fmodf): Likewise.
42152         [XPG3 || XPG4 || UNIX98] (frexpf): Likewise.
42153         [XPG3 || XPG4 || UNIX98] (ldexpf): Likewise.
42154         [XPG3 || XPG4 || UNIX98] (logf): Likewise.
42155         [XPG3 || XPG4 || UNIX98] (log10f): Likewise.
42156         [XPG3 || XPG4 || UNIX98] (log2f): Likewise.
42157         [XPG3 || XPG4 || UNIX98] (modff): Likewise.
42158         [XPG3 || XPG4 || UNIX98] (powf): Likewise.
42159         [XPG3 || XPG4 || UNIX98] (sinf): Likewise.
42160         [XPG3 || XPG4 || UNIX98] (sinhf): Likewise.
42161         [XPG3 || XPG4 || UNIX98] (sqrtf): Likewise.
42162         [XPG3 || XPG4 || UNIX98] (tanf): Likewise.
42163         [XPG3 || XPG4 || UNIX98] (tanhf): Likewise.
42164         [XPG3 || XPG4 || UNIX98] (erff): Likewise.
42165         [XPG3 || XPG4 || UNIX98] (erfcf): Likewise.
42166         [XPG3 || XPG4 || UNIX98] (gammaf): Likewise.
42167         [XPG3 || XPG4 || UNIX98] (hypotf): Likewise.
42168         [XPG3 || XPG4 || UNIX98] (j0f): Likewise.
42169         [XPG3 || XPG4 || UNIX98] (j1f): Likewise.
42170         [XPG3 || XPG4 || UNIX98] (jnf): Likewise.
42171         [XPG3 || XPG4 || UNIX98] (lgammaf): Likewise.
42172         [XPG3 || XPG4 || UNIX98] (tgammaf): Likewise.
42173         [XPG3 || XPG4 || UNIX98] (y0f): Likewise.
42174         [XPG3 || XPG4 || UNIX98] (y1f): Likewise.
42175         [XPG3 || XPG4 || UNIX98] (ynf): Likewise.
42176         [XPG3 || XPG4 || UNIX98] (acoshf): Likewise.
42177         [XPG3 || XPG4 || UNIX98] (asinhf): Likewise.
42178         [XPG3 || XPG4 || UNIX98] (atanhf): Likewise.
42179         [XPG3 || XPG4 || UNIX98] (cbrtf): Likewise.
42180         [XPG3 || XPG4 || UNIX98] (expm1f): Likewise.
42181         [XPG3 || XPG4 || UNIX98] (ilogbf): Likewise.
42182         [XPG3 || XPG4 || UNIX98] (log1pf): Likewise.
42183         [XPG3 || XPG4 || UNIX98] (logbf): Likewise.
42184         [XPG3 || XPG4 || UNIX98] (nextafterf): Likewise.
42185         [XPG3 || XPG4 || UNIX98] (nexttowardf): Likewise.
42186         [XPG3 || XPG4 || UNIX98] (nearbyintf): Likewise.
42187         [XPG3 || XPG4 || UNIX98] (remainderf): Likewise.
42188         [XPG3 || XPG4 || UNIX98] (rintf): Likewise.
42189         [XPG3 || XPG4 || UNIX98] (roundf): Likewise.
42190         [XPG3 || XPG4 || UNIX98] (truncf): Likewise.
42191         [XPG3 || XPG4 || UNIX98] (lrintf): Likewise.
42192         [XPG3 || XPG4 || UNIX98] (llrintf): Likewise.
42193         [XPG3 || XPG4 || UNIX98] (lroundf): Likewise.
42194         [XPG3 || XPG4 || UNIX98] (llroundf): Likewise.
42195         [XPG3 || XPG4 || UNIX98] (remquof): Likewise.
42196         [XPG3 || XPG4 || UNIX98] (scalbf): Likewise.
42197         [XPG3 || XPG4 || UNIX98] (scalbnf): Likewise.
42198         [XPG3 || XPG4 || UNIX98] (scalblnf): Likewise.
42199         [XPG3 || XPG4 || UNIX98] (fdimf): Likewise.
42200         [XPG3 || XPG4 || UNIX98] (fmaxf): Likewise.
42201         [XPG3 || XPG4 || UNIX98] (fminf): Likewise.
42202         [XPG3 || XPG4 || UNIX98] (fmaf): Likewise.
42203         [XPG3 || XPG4 || UNIX98] (nanf): Likewise.
42204         [XPG3 || XPG4 || UNIX98] (acosl): Likewise.
42205         [XPG3 || XPG4 || UNIX98] (asinl): Likewise.
42206         [XPG3 || XPG4 || UNIX98] (atanl): Likewise.
42207         [XPG3 || XPG4 || UNIX98] (atan2l): Likewise.
42208         [XPG3 || XPG4 || UNIX98] (ceill): Likewise.
42209         [XPG3 || XPG4 || UNIX98] (copysignl): Likewise.
42210         [XPG3 || XPG4 || UNIX98] (cosl): Likewise.
42211         [XPG3 || XPG4 || UNIX98] (coshl): Likewise.
42212         [XPG3 || XPG4 || UNIX98] (expl): Likewise.
42213         [XPG3 || XPG4 || UNIX98] (exp2l): Likewise.
42214         [XPG3 || XPG4 || UNIX98] (fabsl): Likewise.
42215         [XPG3 || XPG4 || UNIX98] (floorl): Likewise.
42216         [XPG3 || XPG4 || UNIX98] (fmodl): Likewise.
42217         [XPG3 || XPG4 || UNIX98] (frexpl): Likewise.
42218         [XPG3 || XPG4 || UNIX98] (ldexpl): Likewise.
42219         [XPG3 || XPG4 || UNIX98] (logl): Likewise.
42220         [XPG3 || XPG4 || UNIX98] (log10l): Likewise.
42221         [XPG3 || XPG4 || UNIX98] (log2l): Likewise.
42222         [XPG3 || XPG4 || UNIX98] (modfl): Likewise.
42223         [XPG3 || XPG4 || UNIX98] (powl): Likewise.
42224         [XPG3 || XPG4 || UNIX98] (sinl): Likewise.
42225         [XPG3 || XPG4 || UNIX98] (sinhl): Likewise.
42226         [XPG3 || XPG4 || UNIX98] (sqrtl): Likewise.
42227         [XPG3 || XPG4 || UNIX98] (tanl): Likewise.
42228         [XPG3 || XPG4 || UNIX98] (tanhl): Likewise.
42229         [XPG3 || XPG4 || UNIX98] (erfl): Likewise.
42230         [XPG3 || XPG4 || UNIX98] (erfcl): Likewise.
42231         [XPG3 || XPG4 || UNIX98] (gammal): Likewise.
42232         [XPG3 || XPG4 || UNIX98] (hypotl): Likewise.
42233         [XPG3 || XPG4 || UNIX98] (j0l): Likewise.
42234         [XPG3 || XPG4 || UNIX98] (j1l): Likewise.
42235         [XPG3 || XPG4 || UNIX98] (jnl): Likewise.
42236         [XPG3 || XPG4 || UNIX98] (lgammal): Likewise.
42237         [XPG3 || XPG4 || UNIX98] (tgammal): Likewise.
42238         [XPG3 || XPG4 || UNIX98] (y0l): Likewise.
42239         [XPG3 || XPG4 || UNIX98] (y1l): Likewise.
42240         [XPG3 || XPG4 || UNIX98] (ynl): Likewise.
42241         [XPG3 || XPG4 || UNIX98] (acoshl): Likewise.
42242         [XPG3 || XPG4 || UNIX98] (asinhl): Likewise.
42243         [XPG3 || XPG4 || UNIX98] (atanhl): Likewise.
42244         [XPG3 || XPG4 || UNIX98] (cbrtl): Likewise.
42245         [XPG3 || XPG4 || UNIX98] (expm1l): Likewise.
42246         [XPG3 || XPG4 || UNIX98] (ilogbl): Likewise.
42247         [XPG3 || XPG4 || UNIX98] (log1pl): Likewise.
42248         [XPG3 || XPG4 || UNIX98] (logbl): Likewise.
42249         [XPG3 || XPG4 || UNIX98] (nextafterl): Likewise.
42250         [XPG3 || XPG4 || UNIX98] (nexttowardl): Likewise.
42251         [XPG3 || XPG4 || UNIX98] (nearbyintl): Likewise.
42252         [XPG3 || XPG4 || UNIX98] (remainderl): Likewise.
42253         [XPG3 || XPG4 || UNIX98] (rintl): Likewise.
42254         [XPG3 || XPG4 || UNIX98] (roundl): Likewise.
42255         [XPG3 || XPG4 || UNIX98] (truncl): Likewise.
42256         [XPG3 || XPG4 || UNIX98] (lrintl): Likewise.
42257         [XPG3 || XPG4 || UNIX98] (llrintl): Likewise.
42258         [XPG3 || XPG4 || UNIX98] (lroundl): Likewise.
42259         [XPG3 || XPG4 || UNIX98] (llroundl): Likewise.
42260         [XPG3 || XPG4 || UNIX98] (remquol): Likewise.
42261         [XPG3 || XPG4 || UNIX98] (scalbl): Likewise.
42262         [XPG3 || XPG4 || UNIX98] (scalbnl): Likewise.
42263         [XPG3 || XPG4 || UNIX98] (scalblnl): Likewise.
42264         [XPG3 || XPG4 || UNIX98] (fdiml): Likewise.
42265         [XPG3 || XPG4 || UNIX98] (fmaxl): Likewise.
42266         [XPG3 || XPG4 || UNIX98] (fminl): Likewise.
42267         [XPG3 || XPG4 || UNIX98] (fmal): Likewise.
42268         [XPG3 || XPG4 || UNIX98] (nanl): Likewise.
42269
42270         * conform/conformtest.pl: Define _XOPEN_SOURCE as well as
42271         _XOPEN_SOURCE_EXTENDED for XPG4.
42272
42273         * conform/conformtest.pl: Handle "symbol" lines for allow-header.
42274
42275         * Makeconfig (localtime): Remove variable.
42276         (inst_localtime-file): Likewise.
42277
42278 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
42279
42280         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/ld.abilist:
42281         Update.
42282         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libc.abilist:
42283         Update.
42284         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libm.abilist:
42285         Update.
42286         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/libpthread.abilist:
42287         Update.
42288         * sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/nptl/librt.abilist:
42289         Update.
42290         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist:
42291         Update.
42292         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist:
42293         Update.
42294         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist:
42295         Update.
42296         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
42297         Update.
42298
42299 2012-05-01  Joseph Myers  <joseph@codesourcery.com>
42300
42301         [BZ #2550]
42302         [BZ #2570]
42303         * math/s_nexttowardf.c (__nexttowardf): Use floating-point
42304         comparisons to determine direction to adjust input.
42305         * sysdeps/i386/fpu/s_nexttoward.c (__nexttoward): Likewise.
42306         * sysdeps/i386/fpu/s_nexttowardf.c(__nexttowardf): Likewise.
42307         * sysdeps/ieee754/ldbl-128/s_nexttoward.c (__nexttoward):
42308         Likewise.
42309         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c (__nexttowardf):
42310         Likewise.
42311         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c (__nexttowardf):
42312         Likewise.
42313         * sysdeps/ieee754/ldbl-96/s_nexttoward.c (__nexttoward): Likewise.
42314         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c (__nexttowardf):
42315         Likewise.
42316         * sysdeps/ieee754/ldbl-opt/s_nexttowardfd.c (__nldbl_nexttowardf):
42317         Likewise.
42318         * math/libm-test.inc (nexttoward_test): Add more tests.
42319
42320 2012-05-01  Andreas Schwab  <schwab@linux-m68k.org>
42321
42322         [BZ #14040]
42323         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S (nearbyintl): Define
42324         in version GLIBC_2.1, not GLIBC_2.0.
42325         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S (nearbyintl):
42326         Likewise.
42327
42328 2012-04-30  Joseph Myers  <joseph@codesourcery.com>
42329
42330         [BZ #13942]
42331         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Calculate 1 - x^2 as
42332         (1 - x) * (1 + x).
42333         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
42334         * sysdeps/i386/fpu/e_asin.S (__ieee754_asin): Likewise.
42335         * math/libm-test.inc (acos_test): Add more tests.
42336         (asin_test): Likewise.
42337         * sysdeps/i386/fpu/libm-test-ulps: Update.
42338         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
42339
42340         [BZ #14034]
42341         * sysdeps/i386/fpu/e_acos.S (__ieee754_acos): Take absolute value
42342         of square root.
42343         * sysdeps/i386/fpu/e_acosf.S (__ieee754_acosf): Likewise.
42344         * sysdeps/i386/fpu/e_acosl.c (__ieee754_acosl): Likewise.
42345         * math/libm-test.inc (acos_test_tonearest): New function.
42346         (acos_test_towardzero): Likewise.
42347         (acos_test_downward): Likewise.
42348         (acos_test_upward): Likewise.
42349         (asin_test_tonearest): Likewise.
42350         (asin_test_towardzero): Likewise.
42351         (asin_test_downward): Likewise.
42352         (asin_test_upward): Likewise.
42353         (main): Call the new functions.
42354         * sysdeps/i386/fpu/libm-test-ulps: Update.
42355         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
42356
42357         [BZ #13884]
42358         [BZ #13924]
42359         * math/e_exp10.c: Include <float.h>.
42360         (__ieee754_exp10): Handle underflow here rather than multiplying
42361         large negative argument by M_LN10.
42362         * math/e_exp10f.c (__ieee754_exp10f): Call __ieee754_exp instead
42363         of __ieee754_expf.
42364         * math/e_exp10l.c: Include <float.h>.
42365         (__ieee754_exp10l): Handle underflow here rather than multiplying
42366         large negative argument by M_LN10l.
42367         * math/libm-test.inc (exp10_test): Add another test.  Do not allow
42368         spurious overflow exception on underflow.
42369
42370 2012-04-29  Marek Polacek  <polacek@redhat.com>
42371
42372         * misc/sys/cdefs.h (__attribute_artificial__): New macro.
42373         (__fortify_function): New macro.
42374         (__extern_always_inline): Don't use __attribute__ ((__artificial__)).
42375         * libio/bits/stdio-ldbl.h: Use __fortify_function in place of
42376         __extern_always_inline.
42377         * libio/bits/stdio2.h: Likewise.
42378         * libio/bits/stdio.h: Likewise.
42379         * string/string.h: Likewise.
42380         * string/bits/string3.h: Likewise.
42381         * include/stdio.h: Likewise.
42382         * stdlib/bits/stdlib.h: Likewise.
42383         * stdlib/stdlib.h: Likewise.
42384         * rt/bits/mqueue2.h: Likewise.
42385         * rt/mqueue.h: Likewise.
42386         * posix/bits/unistd.h: Likewise.
42387         * posix/unistd.h: Likewise.
42388         * io/bits/poll2.h: Likewise.
42389         * io/bits/fcntl2.h: Likewise.
42390         * io/fcntl.h: Likewise.
42391         * io/sys/poll.h: Likewise.
42392         * misc/bits/syslog.h: Likewise.
42393         * misc/bits/syslog-ldbl.h: Likewise.
42394         * misc/sys/syslog.h: Likewise.
42395         * socket/bits/socket2.h: Likewise.
42396         * socket/sys/socket.h: Likewise.
42397         * debug/tst-chk1.c: Likewise.
42398         * wcsmbs/bits/wchar2.h: Likewise.
42399         * wcsmbs/bits/wchar-ldbl.h: Likewise.
42400         * wcsmbs/wchar.h: Likewise.
42401
42402 2012-04-29  Andreas Jaeger  <aj@suse.de>
42403
42404         * Makerules (tests): Remove enable-check-abi protection.
42405         (check-abi-warn): Remove.
42406         (check-abi-%): Remove check-abi-warn usage.
42407
42408         * configure.in: Remove check-abi configure option.
42409         * configure: Regenerated.
42410         * config.make.in (enable-check-abi): Remove.
42411
42412 2012-04-28  Andreas Schwab  <schwab@linux-m68k.org>
42413
42414         [BZ #14033]
42415         * math/bits/math-finite.h [__NO_LONG_DOUBLE_MATH]: Redirect long
42416         double functions to double *_finite functions.
42417
42418         [BZ #13941]
42419         * sysdeps/ieee754/ldbl-128ibm/ldbl2mpn.c
42420         (__mpn_extract_long_double): Use DBL_MIN_EXP instead of
42421         LDBL_MIN_EXP.
42422         * stdio-common/Makefile (tests): Add tst-sprintf3.
42423         * stdio-common/tst-sprintf3.c: New file.
42424
42425         * elf/Makefile ($(objpfx)tst-leaks1-mem, $(objpfx)noload-mem)
42426         ($(objpfx)tst-unused-dep.out): Don't run when cross-compiling.
42427
42428 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
42429
42430         * conform/conformtest.pl: Remove duplicate typed-constant
42431         handling.
42432
42433 2012-04-28  David S. Miller  <davem@davemloft.net>
42434
42435         * Makerules (%.abilist): Add vpath on sysdep_dirs.
42436         (check-abi-%): Remove AWK script prerequisite and explicit
42437         abilist directory.
42438         (check-abi): Rewrite to just diff the symlist with the abilist.
42439         (config-tls, config-abi-config): Delete, no longer used.
42440         (update-abi-%): Remove AWK script and explicit abilist directory.
42441         (update-abi): Rewrite to simply compare and conditionally copy the
42442         symlist and the sysdep abilist file.  Remove update-abi-config
42443         checks.
42444         * abilist/ld.abilist: Remove.
42445         * abilist/libBrokenLocale.abilist: Remove.
42446         * abilist/libanl.abilist: Remove.
42447         * abilist/libcrypt.abilist: Remove.
42448         * abilist/libdl.abilist: Remove.
42449         * abilist/librt.abilist: Remove.
42450         * abilist/libthread_db.abilist: Remove.
42451         * abilist/libutil.abilist: Remove.
42452         * scripts/extract-abilist.awk: Remove.
42453         * scripts/merge-abilist.awk: Remove.
42454         * sysdeps/generic/libcidn.abilist: New file.
42455         * sysdeps/generic/libnss_compat.abilist: New file.
42456         * sysdeps/generic/libnss_db.abilist: New file.
42457         * sysdeps/generic/libnss_dns.abilist: New file.
42458         * sysdeps/generic/libnss_files.abilist: New file.
42459         * sysdeps/generic/libnss_hesiod.abilist: New file.
42460         * sysdeps/generic/libnss_nis.abilist: New file.
42461         * sysdeps/generic/libnss_nisplus.abilist: New file.
42462         * sysdeps/unix/sysv/linux/i386/nptl/ld.abilist: New file.
42463         * sysdeps/unix/sysv/linux/i386/nptl/libanl.abilist: New file.
42464         * sysdeps/unix/sysv/linux/i386/nptl/libBrokenLocale.abilist: New
42465         file.
42466         * sysdeps/unix/sysv/linux/i386/nptl/libc.abilist: New file.
42467         * sysdeps/unix/sysv/linux/i386/nptl/libcrypt.abilist: New file.
42468         * sysdeps/unix/sysv/linux/i386/nptl/libdl.abilist: New file.
42469         * sysdeps/unix/sysv/linux/i386/nptl/libm.abilist: New file.
42470         * sysdeps/unix/sysv/linux/i386/nptl/libnsl.abilist: New file.
42471         * sysdeps/unix/sysv/linux/i386/nptl/libpthread.abilist: New file.
42472         * sysdeps/unix/sysv/linux/i386/nptl/libresolv.abilist: New file.
42473         * sysdeps/unix/sysv/linux/i386/nptl/librt.abilist: New file.
42474         * sysdeps/unix/sysv/linux/i386/nptl/libthread_db.abilist: New
42475         file.
42476         * sysdeps/unix/sysv/linux/i386/nptl/libutil.abilist: New file.
42477         * sysdeps/unix/sysv/linux/x86_64/nptl/ld.abilist: New file.
42478         * sysdeps/unix/sysv/linux/x86_64/nptl/libanl.abilist: New file.
42479         * sysdeps/unix/sysv/linux/x86_64/nptl/libBrokenLocale.abilist: New
42480         file.
42481         * sysdeps/unix/sysv/linux/x86_64/nptl/libc.abilist: New file.
42482         * sysdeps/unix/sysv/linux/x86_64/nptl/libcrypt.abilist: New file.
42483         * sysdeps/unix/sysv/linux/x86_64/nptl/libdl.abilist: New file.
42484         * sysdeps/unix/sysv/linux/x86_64/nptl/libm.abilist: New file.
42485         * sysdeps/unix/sysv/linux/x86_64/nptl/libnsl.abilist: New file.
42486         * sysdeps/unix/sysv/linux/x86_64/nptl/libpthread.abilist: New
42487         file.
42488         * sysdeps/unix/sysv/linux/x86_64/nptl/libresolv.abilist: New file.
42489         * sysdeps/unix/sysv/linux/x86_64/nptl/librt.abilist: New file.
42490         * sysdeps/unix/sysv/linux/x86_64/nptl/libthread_db.abilist: New
42491         file.
42492         * sysdeps/unix/sysv/linux/x86_64/nptl/libutil.abilist: New file.
42493         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/ld.abilist:
42494         New file.
42495         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libanl.abilist:
42496         New file.
42497         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libBrokenLocale.abilist:
42498         New file.
42499         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libc.abilist:
42500         New file.
42501         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libcrypt.abilist:
42502         New file.
42503         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libdl.abilist:
42504         New file.
42505         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libm.abilist:
42506         New file.
42507         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libnsl.abilist:
42508         New file.
42509         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libpthread.abilist:
42510         New file.
42511         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libresolv.abilist:
42512         New file.
42513         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/librt.abilist:
42514         New file.
42515         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libthread_db.abilist:
42516         New file.
42517         * sysdeps/unix/sysv/linux/powerpc/powercp32/fpu/nptl/libutil.abilist:
42518         New file.
42519         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/ld.abilist: New
42520         file.
42521         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libanl.abilist:
42522         New file.
42523         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libBrokenLocale.abilist:
42524         New file.
42525         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libc.abilist: New
42526         file.
42527         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libcrypt.abilist:
42528         New file.
42529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libdl.abilist:
42530         New file.
42531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libm.abilist: New
42532         file.
42533         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libnsl.abilist:
42534         New file.
42535         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libpthread.abilist:
42536         New file.
42537         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libresolv.abilist:
42538         New file.
42539         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/librt.abilist:
42540         New file.
42541         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libthread_db.abilist:
42542         New file.
42543         * sysdeps/unix/sysv/linux/powerpc/powerpc64/nptl/libutil.abilist:
42544         New file.
42545         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/ld.abilist: New file.
42546         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libanl.abilist: New
42547         file.
42548         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libBrokenLocale.abilist:
42549         New file.
42550         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libc.abilist: New
42551         file.
42552         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libcrypt.abilist: New
42553         file.
42554         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libdl.abilist: New
42555         file.
42556         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libm.abilist: New
42557         file.
42558         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libnsl.abilist: New
42559         file.
42560         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libpthread.abilist:
42561         New file.
42562         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libresolv.abilist: New
42563         file.
42564         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/librt.abilist: New
42565         file.
42566         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libthread_db.abilist:
42567         New file.
42568         * sysdeps/unix/sysv/linux/s390/s390-32/nptl/libutil.abilist: New
42569         file.
42570         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/ld.abilist: New file.
42571         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libanl.abilist: New
42572         file.
42573         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libBrokenLocale.abilist:
42574         New file.
42575         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libc.abilist: New
42576         file.
42577         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libcrypt.abilist: New
42578         file.
42579         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libdl.abilist: New
42580         file.
42581         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libm.abilist: New
42582         file.
42583         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libnsl.abilist: New
42584         file.
42585         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libpthread.abilist:
42586         New file.
42587         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libresolv.abilist: New
42588         file.
42589         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/librt.abilist: New
42590         file.
42591         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libthread_db.abilist:
42592         New file.
42593         * sysdeps/unix/sysv/linux/s390/s390-64/nptl/libutil.abilist: New
42594         file.
42595         * sysdeps/unix/sysv/linux/sh/nptl/ld.abilist: New file.
42596         * sysdeps/unix/sysv/linux/sh/nptl/libanl.abilist: New file.
42597         * sysdeps/unix/sysv/linux/sh/nptl/libBrokenLocale.abilist: New
42598         file.
42599         * sysdeps/unix/sysv/linux/sh/nptl/libc.abilist: New file.
42600         * sysdeps/unix/sysv/linux/sh/nptl/libcrypt.abilist: New file.
42601         * sysdeps/unix/sysv/linux/sh/nptl/libdl.abilist: New file.
42602         * sysdeps/unix/sysv/linux/sh/nptl/libm.abilist: New file.
42603         * sysdeps/unix/sysv/linux/sh/nptl/libnsl.abilist: New file.
42604         * sysdeps/unix/sysv/linux/sh/nptl/libpthread.abilist: New file.
42605         * sysdeps/unix/sysv/linux/sh/nptl/libresolv.abilist: New file.
42606         * sysdeps/unix/sysv/linux/sh/nptl/librt.abilist: New file.
42607         * sysdeps/unix/sysv/linux/sh/nptl/libthread_db.abilist: New file.
42608         * sysdeps/unix/sysv/linux/sh/nptl/libutil.abilist: New file.
42609         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/ld.abilist: New file.
42610         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libanl.abilist: New
42611         file.
42612         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libBrokenLocale.abilist:
42613         New file.
42614         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libc.abilist: New
42615         file.
42616         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libcrypt.abilist: New
42617         file.
42618         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libdl.abilist: New
42619         file.
42620         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libm.abilist: New
42621         file.
42622         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libnsl.abilist: New
42623         file.
42624         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libpthread.abilist:
42625         New file.
42626         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libresolv.abilist:
42627         New file.
42628         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/librt.abilist: New
42629         file.
42630         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libthread_db.abilist:
42631         New file.
42632         * sysdeps/unix/sysv/linux/sparc/sparc32/nptl/libutil.abilist: New
42633         file.
42634         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/ld.abilist: New file.
42635         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libanl.abilist: New
42636         file.
42637         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libBrokenLocale.abilist:
42638         New file.
42639         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libc.abilist: New
42640         file.
42641         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libcrypt.abilist: New
42642         file.
42643         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libdl.abilist: New
42644         file.
42645         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libm.abilist: New
42646         file.
42647         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libnsl.abilist: New
42648         file.
42649         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libpthread.abilist:
42650         New file.
42651         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libresolv.abilist:
42652         New file.
42653         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/librt.abilist: New
42654         file.
42655         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libthread_db.abilist:
42656         New file.
42657         * sysdeps/unix/sysv/linux/sparc/sparc64/nptl/libutil.abilist: New
42658         file.
42659
42660 2012-04-28  Joseph Myers  <joseph@codesourcery.com>
42661
42662         * conform/conformtest.pl: Fix typo in handling typed-constant from
42663         allow-header.
42664
42665 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
42666
42667         * README: Cut down references to pre-2.6 Linux kernels and
42668         Linuxthreads.  Update lists of configurations in libc and ports
42669         and sort alphabetically.  Say "or newer" with Linux kernel version
42670         requirements.
42671
42672         * config.h.in [IS_IN_build]: Allow compiling without optimization.
42673
42674 2012-04-27  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
42675
42676         [BZ #887]
42677         * math/libm-test.inc (logb_test_downward): New test to expose
42678         erroneous negative sign on -0.0 result of logb[l](1) in FE_DOWNWARD
42679         rounding mode.
42680
42681 2012-04-27  Joseph Myers  <joseph@codesourcery.com>
42682
42683         [BZ #14027]
42684         * math/fclrexcpt.c (__feclearexcept): Return zero if nothing needs
42685         to be done.
42686         * math/fraiseexcpt.c (__feraiseexcept): Likewise.
42687         * math/fsetexcptflg.c (__fesetexceptflag): Likewise.
42688
42689 2012-04-26  Joseph Myers  <joseph@codesourcery.com>
42690
42691         * sysdeps/unix/i386/brk.S: Remove file.
42692         * sysdeps/unix/i386/dl-brk.S: Likewise.
42693         * sysdeps/unix/i386/pipe.S: Likewise.
42694         * sysdeps/unix/i386/sigreturn.S: Likewise.
42695         * sysdeps/unix/i386/syscall.S: Likewise.
42696         * sysdeps/unix/i386/vfork.S: Likewise.
42697         * sysdeps/unix/i386/wait.S: Likewise.
42698
42699         * sysdeps/unix/common/tcsendbrk.c: Move to ...
42700         * sysdeps/unix/sysv/linux/tcsendbrk.c: ... here.
42701
42702         * configure.in (arm*-none*): Do not allow without
42703         --enable-hacker-mode.
42704         (netbsd*): Remove case setting base_os.
42705         (386bsd*): Likewise.
42706         (freebsd*): Likewise.
42707         (bsdi*): Likewise.
42708         (osf*): Likewise.
42709         (sunos*): Likewise.
42710         (ultrix*): Likewise.
42711         (newsos*): Likewise.
42712         (dynix*): Likewise.
42713         (*bsd*): Likewise.
42714         (sysv*): Likewise.
42715         (isc*): Likewise.
42716         (esix*): Likewise.
42717         (sco*): Likewise.
42718         (minix*): Likewise.
42719         (irix4*): Likewise.
42720         (irix6*): Likewise.
42721         (solaris[2-9]*): Likewise.
42722         (none): Likewise.
42723         * configure: Regenerated.
42724
42725 2012-04-26  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42726
42727         [BZ #11521]
42728         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c (__ctanhl): Avoid internal
42729         overflow or cancellation in calculating denominator.
42730         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c (__ctanl): Likewise.
42731         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c (__ieee754_sinhl): Breaking
42732         down expression to avoid unexpected rounding in newer GCCs.
42733         * sysdeps/powerpc/fpu/libm-test-ulps: Update for ctan, ctanh fix.
42734
42735 2012-04-26  David S. Miller  <davem@davemloft.net>
42736
42737         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Generate
42738         long-double compat symbols.
42739         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
42740         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
42741         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
42742         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: Likewise.
42743         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
42744         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Likewise.
42745         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: Likewise.
42746         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: Likewise.
42747         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: Likewise.
42748         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: Likewise.
42749         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: Likewise.
42750         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: Likewise.
42751         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
42752
42753 2012-04-25  David S. Miller  <davem@davemloft.net>
42754
42755         * sysdeps/sparc/sparc32/bits/atomic.h: Include sysdep.h to get
42756         HWCAP_* values only after the memory barriers have been defined.
42757         (atomic_full_barrier): Define.
42758         (atomic_read_barrier): Define.
42759         (atomic_write_barrier): Define.
42760
42761 2012-04-26  Siddhesh Poyarekar  <siddhesh@redhat.com>
42762
42763         * shlib-versions: Add libgcc_s version information.
42764         * sysdeps/generic/libgcc_s.h: Remove.
42765         * sysdeps/generic/framestate.c: Include gnu/lib-names.h instead of
42766         libgcc_s.h.
42767         * sysdeps/gnu/unwind-resume.c: Likewise.
42768         * scripts/test-installation.pl: Remove libgcc_s from link_libs.
42769
42770 2012-04-25  David S. Miller  <davem@davemloft.net>
42771
42772         * sysdeps/unix/sparc/brk.S: Delete.
42773         * sysdeps/unix/sparc/dl-brk.S: Delete.
42774         * sysdeps/unix/sparc/pipe.S: Delete.
42775         * sysdeps/unix/sparc/sysdep.S: Delete.
42776         * sysdeps/unix/sparc/sysdep.h: Delete.
42777         * sysdeps/unix/sparc/vfork.S: Delete.
42778         * sysdeps/sparc/sysdep.h (SPARC_PIC_THUNK, SPARC_PIC_REG)
42779         (SPARC_PIC_REG_LEAF, ENTRY, END, LOC): Define.
42780         * sysdeps/unix/sysv/linux/sparc/sysdep.h (ret, ret_NOERRNO)
42781         (ret_ERRVAL, r0, r1, MOVE): Define.
42782         (JUMPTARGET): Remove.
42783         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Don't include
42784         sysdeps/unix/sparc/sysdep.h
42785         (ENTRY, END): Remove.
42786         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
42787
42788 2012-04-25  Joseph Myers  <joseph@codesourcery.com>
42789
42790         * Makerules (native-compile): Use $(BUILD_LDFLAGS).
42791         (ALL_BUILD_CFLAGS): Use $(BUILD_CPPFLAGS) -D_GNU_SOURCE
42792         -DIS_IN_build.
42793
42794         * timezone/README: Update upstream location and email address for
42795         tzcode and tzdata.
42796         * timezone/zdump.c: Update from tzcode 2012b.
42797         * timezone/zic.c: Likewise.
42798
42799         * configure.in (libc_cv_as_needed): Remove test.
42800         * configure: Regenerated.
42801         * Makeconfig [$(have-as-needed) != yes] (as-needed): Remove
42802         conditional definition.
42803         [$(have-as-needed) != yes] (no-as-needed): Likewise.
42804         [$(have-as-needed) != yes] (libgcc_eh): Likewise.
42805         * config.make.in (have-as-needed): Remove variable.
42806
42807 2012-04-25  Siddhesh Poyarekar  <siddhesh@redhat.com>
42808             Paul Pluzhnikov  <ppluzhnikov@google.com>
42809
42810         * elf/dl-minimal.c (__strtoul_internal): Parse hexadecimal and octal
42811         strings correctly.
42812
42813 2012-04-25  Chung-Lin Tang  <cltang@codesourcery.com>
42814
42815         * sysdeps/sh/memcpy.S: Remove include of endian.h, change
42816         preprocessor endian tests to '#ifdef __BIG_ENDIAN__'.
42817         * sysdeps/sh/strlen.S: Likewise.
42818
42819 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42820
42821         * sysdeps/unix/fork.S: Remove file.
42822         * sysdeps/unix/i386/fork.S: Likewise.
42823         * sysdeps/unix/sparc/fork.S: Likewise.
42824
42825         * sysdeps/unix/system.c: Remove file.
42826         * sysdeps/unix/bsd/bsd4.4/system.c: Likewise.
42827
42828         * sysdeps/unix/getegid.S: Remove file.
42829         * sysdeps/unix/geteuid.S: Likewise.
42830
42831 2012-04-24  Roland McGrath  <roland@hack.frob.com>
42832
42833         * scripts/check-localplt.awk: New file.
42834         * elf/Makefile ($(objpfx)check-localplt.out): Use that script instead
42835         of diff.
42836         * scripts/data/localplt-generic.data: Add a comment.
42837
42838         * sysdeps/mach/hurd/symlink.c: Don't call __mach_port_deallocate on
42839         NODE when __dir_mkfile failed.
42840         * sysdeps/mach/hurd/symlinkat.c: Likewise.
42841         Reported by Ludovic Courtès <ludo@gnu.org>.
42842
42843 2012-04-24  Andreas Jaeger  <aj@suse.de>
42844
42845         * Makerules (common-clean): Also remove gen-as-const-headers
42846         files.
42847
42848 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42849
42850         * Makerules (native-compile): Do not change working directory for
42851         build.  Use $(OUTPUT_OPTION) in command.
42852         (ALL_BUILD_CFLAGS): Use $(common-objpfx) to find config.h.
42853
42854 2012-04-24  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
42855
42856         [BZ #13886]
42857         * sysdeps/powerpc/powerpc64/fpu/s_floorl.S: Delete file. Use the
42858         sysdeps/ieee754/ldbl-128ibm/s_floorl.c version instead.
42859         * math/libm-test.inc (floor_test): Add more tests.
42860         * sysdeps/powerpc/fpu/libm-test-ulps: Update for pow tests.
42861
42862 2012-04-24  Joseph Myers  <joseph@codesourcery.com>
42863
42864         * sysdeps/unix/getdents.c: Remove file.
42865         * sysdeps/unix/sysv/getdents.c: Likewise.
42866         * sysdeps/unix/sysv/syscalls.list (s_getdents): Remove.
42867
42868         * sysdeps/unix/syscalls.list (madvise): Add syscall from
42869         sysdeps/unix/mman/syscalls.list.
42870         (mmap): Likewise.
42871         (mprotect): Likewise.
42872         (msync): Likewise.
42873         (munmap): Likewise.
42874         * sysdeps/unix/bsd/bsd4.4/Implies: Remove.
42875         * sysdeps/unix/mman/syscalls.list: Remove.
42876         * sysdeps/unix/sysv/linux/Implies: Don't include unix/mman.
42877
42878         * configure.in (libc_cv_libgcc_s_suffix): Remove test.
42879         (libc_cv_as_needed): Don't use $libc_cv_libgcc_s_suffix.
42880         * configure: Regenerated.
42881         * Makeconfig [$(have-as-needed) = yes] (libgcc_eh): Don't use
42882         $(libgcc_s_suffix).
42883         * config.make.in (libgcc_s_suffix): Remove variable.
42884
42885 2012-04-23  Joseph Myers  <joseph@codesourcery.com>
42886
42887         * sysdeps/unix/sysv/gethostname.c: Move to ...
42888         * sysdeps/posix/gethostname.c: ... here.
42889
42890         * sysdeps/unix/execve.S: Remove file.
42891
42892         * sysdeps/unix/_exit.S: Remove file.
42893
42894 2012-04-23  Andreas Jaeger  <aj@suse.de>
42895
42896         [BZ #13739]
42897         * manual/Makefile: Remove make dist support, there's no
42898         need for a stand-alone documentation tar ball.
42899         (TEXI2DVI): Define always, it's not in Makeconfig.
42900         (dist): Removed.
42901         (tar-it): Removed.
42902         (edition): Removed.
42903         (glibc-doc-$(edition).tar): Removed
42904         (%.Z): Removed.
42905         (%.gz): Removed.
42906         (%.uu): Removed.
42907         (ETAGS): Remove, it's in Makeconfig.
42908         (move-if-change): Remove, it's in Makeconfig.
42909
42910 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
42911
42912         [BZ #13970]
42913         * stdlib/stdlib.h: Remove warn_unused_result attribute from strtol etc.
42914         (strtod, strtof, strtold, strtol, strtoul, strtoq)
42915         (strtouq, strtoll, strtoull, strtol_l, strtoul_l, strtoll_l, strtoull_l)
42916         (strtod_l, strtof_l, strtold_l): Remove __wur.
42917         It is not necessarily an error to ignore strtol's return value.
42918         One can reliably look at the stored endptr to decide whether
42919         the number had valid syntax.
42920
42921 2012-04-21  Andreas Jaeger  <aj@suse.de>
42922
42923         [BZ #13739]
42924         * sysdeps/s390/s390-64/Makefile (distribute): Remove variable.
42925
42926 2012-04-21  Joseph Myers  <joseph@codesourcery.com>
42927
42928         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.0): Add sysinfo.
42929         * sysdeps/unix/sysv/Versions: Remove file.
42930
42931 2012-04-21  Markus Trippelsdorf  <markus@trippelsdorf.de>
42932
42933         [BZ #13927]
42934         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
42935
42936 2012-04-21  Nick Alcock  <nick.alcock@oracle.com>
42937
42938         [BZ #7064]
42939         * sysdeps/unix/sysv/linux/i386/syscalls.list: Omit explicit
42940         version from __vm86.
42941
42942 2012-04-20  Joseph Myers  <joseph@codesourcery.com>
42943
42944         * sysdeps/unix/common/lxstat.c: Remove file.
42945         * sysdeps/unix/common/syscalls.list (sys_lstat): Remove.
42946
42947         * sysdeps/unix/sysv/Makefile: Remove file.
42948
42949         * sysdeps/unix/sysv/direct.h: Remove file.
42950
42951         * sysdeps/unix/sysv/bits/dirent.h: Remove file.
42952         * sysdeps/unix/sysv/bits/fcntl.h: Likewise.
42953         * sysdeps/unix/sysv/bits/local_lim.h: Likewise.
42954         * sysdeps/unix/sysv/bits/signum.h: Likewise.
42955         * sysdeps/unix/sysv/bits/stat.h: Likewise.
42956         * sysdeps/unix/sysv/bits/utmp.h: Likewise.
42957         * sysdeps/unix/sysv/bits/utsname.h: Likewise.
42958
42959         * sysdeps/unix/sysv/setrlimit.c: Remove file.
42960
42961         * sysdeps/unix/xmknod.c: Remove file.
42962         * sysdeps/unix/syscalls.list (sys_mknod): Remove.
42963
42964         * sysdeps/unix/sysv/settimeofday.c: Remove file.
42965
42966         * sysdeps/unix/sysv/i386/time.S: Remove file.
42967
42968         * sysdeps/unix/fxstat.c: Remove file.
42969         * sysdeps/unix/xstat.c: Likewise.
42970         * sysdeps/unix/syscalls.list (sys_fstat, sys_stat): Remove.
42971
42972         * sysdeps/unix/sysv/sigaction.c: Remove file.
42973
42974         * sysdeps/unix/sysv/Makefile [termio.h not in sysdep_headers]
42975         (sysdep_headers): Remove variable.
42976         [termio.h not in sysdep_headers] (generated): Likewise.
42977         [termio.h not in sysdep_headers] ($(objpfx)termio.h): Remove rule.
42978         * sysdeps/unix/sysv/sysv_termio.h: Remove file.
42979         * sysdeps/unix/sysv/tcdrain.c: Likewise.
42980         * sysdeps/unix/sysv/tcflow.c: Likewise.
42981         * sysdeps/unix/sysv/tcflush.c: Likewise.
42982         * sysdeps/unix/sysv/tcgetattr.c: Likewise.
42983         * sysdeps/unix/sysv/tcgetpgrp.c: Likewise.
42984         * sysdeps/unix/sysv/tcsendbrk.c: Likewise.
42985         * sysdeps/unix/sysv/tcsetattr.c: Likewise.
42986         * sysdeps/unix/sysv/tcsetpgrp.c: Likewise.
42987
42988         * sysdeps/unix/siglist.c: Remove file.
42989
42990         * sysdeps/unix/getppid.S: Remove file.
42991
42992         * sysdeps/unix/mkdir.c: Remove file.
42993         * sysdeps/unix/rmdir.c: Likewise.
42994
42995 2012-04-19  Andreas Schwab  <schwab@linux-m68k.org>
42996
42997         * sysdeps/gnu/errlist-compat.awk (END): Correct computation of
42998         ERR_MAX value.
42999         * sysdeps/unix/sysv/linux/Versions (GLIBC_2.12): Adjust
43000         errlist-compat value.
43001
43002 2012-04-18  David S. Miller  <davem@davemloft.net>
43003
43004         * sysdeps/generic/memcopy.h (reg_char): Delete.
43005         * debug/strcat_chk.c: Use char, not reg_char.
43006         * debug/strcpy_chk.c: Likewise.
43007         * debug/strncat_chk.c: Likewise.
43008         * debug/strncpy_chk.c: Likewise.
43009         * string/memchr.c: Likewise.
43010         * string/memrchr.c: Likewise.
43011         * string/rawmemchr.c: Likewise.
43012         * string/strcat.c: Likewise.
43013         * string/strchr.c: Likewise.
43014         * string/strchrnul.c: Likewise.
43015         * string/strcmp.c: Likewise.
43016         * string/strcpy.c: Likewise.
43017         * string/strncat.c: Likewise.
43018         * string/strncmp.c: Likewise.
43019         * string/strncpy.c: Likewise.
43020
43021 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43022
43023         * sysdeps/powerpc/memmove.c: New file based on string/memmove.c where
43024         __builtin_memcopy is called when src and dest ranges are known to not
43025         overlap.
43026
43027 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43028
43029         * sysdeps/powerpc/powerpc64/power6/wordcopy.c
43030         (_wordcopy_fwd_dest_aligned): Replace switch with a parameterized
43031         fwd_align_merge macro call.
43032         (_wordcopy_bwd_dest_aligned): Replace switch with a parameterized
43033         bwd_align_merge macro call.
43034         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
43035
43036 2012-04-18  Will Schmidt  <will_schmidt@vnet.ibm.com>
43037
43038         * sysdeps/powerpc/powerpc64/power6/wordcopy.c: Add fwd_align_merge and
43039         bwd_align_merge macros.
43040         (_wordcopy_fwd_dest_aligned): Use fwd_align_merge macro calls.
43041         (_wordcopy_bwd_dest_aligned): Use bwd_align_merge macro calls.
43042         * sysdeps/powerpc/powerpc32/power6/wordcopy.c: Likewise.
43043
43044 2012-04-18  David S. Miller  <davem@davemloft.net>
43045
43046         * sysdeps/sparc/sparc64/memcopy.h: Delete.
43047
43048 2012-04-18  Andreas Jaeger  <aj@suse.de>
43049
43050         [BZ# 6794]
43051         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Moved to ...
43052         * sysdeps/ieee754/ldbl-96/e_ilogbl.c: ... here.
43053         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43054
43055         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Moved to ...
43056         * sysdeps/ieee754/ldbl-128/e_ilogbl.c: ... here.
43057         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43058
43059         * sysdeps/ieee754/ldbl-64-128/s_ilogbl.c: Moved to ...
43060         * sysdeps/ieee754/ldbl-64-128/e_ilogbl.c: ... here.
43061         Adjust for changed ldbl-128 files.
43062
43063         * sysdeps/sparc/sparc64/soft-fp/s_ilogbl.c: Moved to ...
43064         * sysdeps/sparc/sparc64/soft-fp/e_ilogbl.c: ... here.
43065         Rename __ilogbl to __ieee754_ilogbl and remove weak_alias.
43066
43067 2012-04-17  David S. Miller  <davem@davemloft.net>
43068
43069         * sysdeps/sparc/sparc32/memcopy.h: Delete.
43070
43071 2012-04-17  Andreas Schwab  <schwab@linux-m68k.org>
43072
43073         * sysdeps/i386/fpu/e_ilogb.S: Remove __ilogb*_finite alias.
43074         * sysdeps/i386/fpu/e_ilogbf.S: Likewise.
43075         * sysdeps/i386/fpu/e_ilogbl.S: Likewise.
43076         * sysdeps/x86_64/fpu/e_ilogbl.S: Likewise.
43077         * sysdeps/ieee754/dbl-64/e_ilogb.c: Likewise.
43078         * sysdeps/ieee754/flt-32/e_ilogbf.c: Likewise.
43079
43080 2012-04-17  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
43081
43082         [BZ #6794]
43083         * math/Makefile: Add e_ilogb and w_ilogb, remove s_logb.
43084         * math/libm-test.inc: Add ilogb errno and exception tests.
43085         * math/w_ilogb.c: New file: ilogb wrapper.
43086         * math/w_ilogbf.c: New file: ilogbf wrapper.
43087         * math/w_ilogbl.c: New file: ilogbl wrapper.
43088         * sysdeps/generic/math_private.h: Add __ieee754_ilogb[l|f] prototypes.
43089         * sysdeps/i386/fpu/s_ilogb.S: Moved to ...
43090         * sysdeps/i386/fpu/e_ilogb.S: ... here. Also fixed a FE_DIVBYZERO
43091         exception being thrown with 0.0 as argument.
43092         * sysdeps/i386/fpu/s_ilogbf.S: Moved to ...
43093         * sysdeps/i386/fpu/e_ilogbf.S: ... here. Also fixed a FE_DIVBYZERO
43094         exception being thrown with 0.0 as argument.
43095         * sysdeps/i386/fpu/s_ilogbl.S: Moved to ...
43096         * sysdeps/i386/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
43097         exception being thrown with 0.0 as argument.
43098         * sysdeps/x86_64/fpu/s_ilogbl.S: Moved to ...
43099         * sysdeps/x86_64/fpu/e_ilogbl.S: ... here. Also fixed a FE_DIVBYZERO
43100         exception being thrown with 0.0 as argument.
43101         * sysdeps/ieee754/dbl-64/s_ilogb.c: Moved to ...
43102         * sysdeps/ieee754/dbl-64/e_ilogb.c: ... here.
43103         * sysdeps/ieee754/flt-32/s_ilogbf.c: Moved to ...
43104         * sysdeps/ieee754/flt-32/e_ilogbf.c: ... here.
43105         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Moved to ...
43106         * sysdeps/ieee754/ldbl-128ibm/e_ilogbl.c: ... here.
43107         * sysdeps/ieee754/ldbl-opt/s_ilogb.c: Moved to ...
43108         * sysdeps/ieee754/ldbl-opt/w_ilogb.c: ... here.
43109         * sysdeps/ieee754/ldbl-opt/w_ilogbl.c: New file: ilogbl wrapper.
43110
43111 2012-04-17  Petr Baudis  <pasky@ucw.cz>
43112
43113         * include/sys/uio.h: Change __vector to __iovec to avoid clash
43114         with altivec.
43115
43116 2012-04-16  Marek Polacek  <polacek@redhat.com>
43117
43118         * elf/pldd-xx.c: Rename static_assert to pldd_assert.
43119
43120 2012-04-16  Marek Polacek  <polacek@redhat.com>
43121
43122         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Reverse the
43123         operands of fdivp instruction.
43124
43125 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
43126
43127         * elf/tst-auditmod1.c: Check __ILP32__ instead of __LP64__.
43128         * elf/tst-auditmod3b.c: Likewise.
43129         * elf/tst-auditmod4b.c: Likewise.
43130         * elf/tst-auditmod5b.c: Likewise.
43131         * elf/tst-auditmod6b.c: Likewise.
43132         * elf/tst-auditmod6c.c: Likewise.
43133         * elf/tst-auditmod7b.c: Likewise.
43134         * sysdeps/x86_64/ffsll.c (ffsl): Likewise.
43135         * sysdeps/x86_64/preconfigure.in: Likewise.
43136         * sysdeps/x86_64/preconfigure: Regenerated.
43137
43138 2012-04-13  H.J. Lu  <hongjiu.lu@intel.com>
43139
43140         * sysdeps/x86_64/bits/wordsize.h (__WORDSIZE): Also check
43141         __ILP32__.
43142
43143 2012-04-13  Antoine Balestrat <merkil33@gmail.com>
43144
43145         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
43146         (__get_clockfreq_via_proc_openprom): Fix test on wrong variable.
43147
43148 2012-04-13  Chris Leonard  <cjlhomeaddress@gmail.com>
43149
43150         [BZ #13973]
43151         * locale/iso-639.def: Fix gl language name. Spotted by
43152         Yaron Shahrabani.
43153
43154 2012-04-12  Roland McGrath  <roland@hack.frob.com>
43155
43156         [BZ #2074]
43157         * libio/libio.h (__io_write_fn): Update comment.
43158
43159 2012-04-12  Petr Baudis  <pasky@ucw.cz>
43160
43161         [BZ #2074]
43162         * stdio.texi (Hook Functions): The user provided writer function
43163         is not allowed to return -1.
43164
43165 2012-04-11  David S. Miller  <davem@davemloft.net>
43166
43167         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43168
43169 2012-04-11  Mike Frysinger  <vapier@gentoo.org>
43170
43171         * .gitignore: Add /ports, /linuxthreads, and /linuxthreads_db.
43172         Add a leading slash to rtkaio.
43173
43174 2012-04-11  Jim Meyering  <meyering@redhat.com>
43175
43176         [BZ #11959]
43177         * libio/stdio.h (fwrite, fwrite_unlocked): Remove __wur.
43178         It is not necessarily an error to ignore fwrite's return
43179         value.  One can reliably use ferror to test for errors after
43180         the fact.
43181
43182 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
43183
43184         * bits/types.h (__snseconds_t): New type.
43185         * time/time.h (struct timespec): Use __snseconds_t on tv_nsec.
43186
43187         * bits/typesizes.h (__SNSECONDS_T_TYPE): New macro.
43188         * sysdeps/unix/bsd/bsd4.4/freebsd/bits/typesizes.h
43189         (__SNSECONDS_T_TYPE): Likewise.
43190         * sysdeps/unix/sysv/linux/s390/bits/typesizes.h
43191         (__SNSECONDS_T_TYPE): Likewise.
43192         * sysdeps/unix/sysv/linux/sparc/bits/typesizes.h
43193         (__SNSECONDS_T_TYPE): Likewise.
43194
43195 2012-04-10  Andreas Jaeger  <aj@suse.de>
43196
43197         [BZ #2636]
43198         * manual/time.texi (Processor Time): Return type of times is
43199         elapsed real time since an arbitrary point in the past.
43200         (CPU Time): Move CLK_TCK from here...
43201         (Processor Time): ...to here.  Correct description.
43202         * manual/conf.texi (Constants for Sysconf): Correct description of
43203         _SC_CLK_TCK.
43204
43205 2012-04-10  David S. Miller  <davem@davemloft.net>
43206
43207         [BZ #13967]
43208         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Handle the case
43209         where the is a gap between DT_REL(A) and DT_JMPREL.
43210
43211 2012-04-10  H.J. Lu  <hongjiu.lu@intel.com>
43212
43213         * sysdeps/x86_64/bits/byteswap.h: Include <features.h>.
43214         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
43215         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
43216
43217 2012-04-10  Siddhesh Poyarekar  <siddhesh@redhat.com>
43218
43219         * elf/dl-support.c (_dl_inhibit_cache): New variable.
43220         * elf/rtld.c (_rtld_global_ro): New member _dl_inhibit_cache.
43221         (dl_main): Handle --inhibit-cache.
43222         * sysdeps/generic/ldsodefs.h (struct rtld_global_ro): New member
43223         _dl_inhibit_cache.
43224         * elf/dl-load.c (_dl_map_object): Use it.
43225         * elf/Makefile: Define SYSCONFDIR when building rtld.c.
43226
43227 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
43228
43229         [BZ #13872]
43230         * sysdeps/i386/fpu/e_powl.S (p78): New object.
43231         (__ieee754_powl): Saturate large exponents rather than testing for
43232         overflow of y*log2(x).
43233         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
43234         * math/libm-test.inc (pow_test): Do not permit spurious overflow
43235         exceptions.
43236
43237         [BZ #11521]
43238         * math/s_ctan.c: Include <float.h>.
43239         (__ctan): Avoid internal overflow or cancellation in calculating
43240         denominator.
43241         * math/s_ctanf.c: Likewise.
43242         * math/s_ctanl.c: Likewise.
43243         * math/s_ctanh.c: Likewise.
43244         * math/s_ctanhf.c: Likewise.
43245         * math/s_ctanhl.c: Likewise.
43246         * math/libm-test.inc (ctan_test): Add more tests.
43247         (ctanh_test): Likewise.
43248         * sysdeps/i386/fpu/libm-test-ulps: Update.
43249         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43250
43251 2012-04-09  Andreas Jaeger  <aj@suse.de>
43252
43253         [BZ #6894]
43254         * manual/filesys.texi (Directory Entries): Mention that d_namlen
43255         is an optional BSD extension.
43256
43257         [BZ #10254]
43258         * manual/stdio.texi (Opening Streams): Document additional fopen
43259         parameters.
43260
43261 2012-04-09  Roland McGrath  <roland@hack.frob.com>
43262
43263         * sysdeps/i386/fpu/bits/mathinline.h (__sincos_code): Don't clobber
43264         %eax without telling the compiler.
43265
43266 2012-04-09  Carlos O'Donell  <carlos_odonell@mentor.com>
43267
43268         [BZ # 13963]
43269         * manual/install.texi: Use sourceware.org.
43270
43271 2012-04-09  Joseph Myers  <joseph@codesourcery.com>
43272
43273         [BZ #13873]
43274         * sysdeps/ieee754/dbl-64/e_pow.c (huge, tiny): New variables.
43275         (__ieee754_pow): Generate overflow and underflow using huge*huge
43276         and tiny*tiny rather than just returning constant infinity or zero
43277         for large exponents.
43278         * math/libm-test.inc (pow_test): Require overflow exceptions for
43279         applicable cases of large exponents.
43280
43281         [BZ #706]
43282         * sysdeps/i386/fpu/e_pow.S (p10): New object.
43283         (__ieee754_pow): Use iterative multiplication algorithm only for
43284         integer exponents with absolute value below 1024.  Check for odd
43285         integer exponents when using algorithm for real exponents.
43286         * math/libm-test.inc (pow_test): Add more tests.
43287         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
43288
43289 2012-04-08  Joseph Myers  <joseph@codesourcery.com>
43290
43291         [BZ #13705]
43292         * math/libm-test.inc (exp_test): Do not allow overflow exception
43293         on underflow test.
43294
43295 2012-04-08  Aurelien Jarno  <aurelien@aurel32.net>
43296
43297         [BZ #13705]
43298         * sysdeps/ieee754/dbl-64/w_exp.c (__exp): Use __kernel_standard
43299         instead of __kernel_standard_f.
43300
43301 2012-04-08  Mike Frysinger  <vapier@gentoo.org>
43302
43303         * sysdeps/i386/i686/memset_chk.S: Update copyright year.
43304         * sysdeps/x86_64/memset_chk.S: Likewise.
43305
43306 2012-04-08  Andreas Jaeger  <aj@suse.de>
43307
43308         [BZ #10153]
43309         * manual/startup.texi (Environment Access): Describe return value
43310         for putenv and setenv.
43311
43312         [BZ #6895]
43313         * manual/filesys.texi (Directory Entries): Add description for
43314         DT_LNK.
43315
43316         [BZ #6890]
43317         * manual/filesys.texi (Directory Entries): Clarify that it's file
43318         system not operating system in the description of DT_UNKNOWN.
43319
43320         [BZ #6578]
43321         * manual/syslog.texi (closelog): Fix reference, it's openlog.
43322
43323 2012-04-08  Stephen Compall  <s11@member.fsf.org>
43324
43325         [BZ #6649]
43326         * manual/llio.texi (Opening and Closing Files): Add cross
43327         reference to explain mode argument.
43328
43329 2012-04-07  Mike Frysinger  <vapier@gentoo.org>
43330
43331         * sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
43332         * sysdeps/x86_64/memset_chk.S: Likewise.
43333
43334 2012-04-07  David S. Miller  <davem@davemloft.net>
43335
43336         * elf/elf.h (R_SPARC_WDISP10): Define.
43337         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Handle
43338         R_SPARC_SIZE32.
43339         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Handle
43340         R_SPARC_SIZE64 and R_SPARC_H34.
43341
43342 2012-04-07  Carlos O'Donell  <carlos_odonell@mentor.com>
43343
43344         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Simplify
43345         conditions and remove no longer applicable assertion.
43346
43347 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
43348
43349         * bits/byteswap.h: Include <features.h>.
43350         (__bswap_32): Use __builtin_bswap32 for GCC >= 4.2.
43351         (__bswap_64): Use __builtin_bswap64 for GCC >= 4.2.
43352
43353 2012-04-06  H.J. Lu  <hongjiu.lu@intel.com>
43354
43355         * bits/byteswap.h (__bswap_16): Removed.
43356         Include <bits/byteswap-16.h> to get __bswap_16.
43357         * sysdeps/i386/bits/byteswap.h: Likewise.
43358         * sysdeps/s390/bits/byteswap.h: Likewise.
43359         * sysdeps/x86_64/bits/byteswap.h: Likewise.
43360         * bits/byteswap-16.h: New file.
43361         * sysdeps/i386/bits/byteswap-16.h: Likewise.
43362         * sysdeps/s390/bits/byteswap-16.h: Likewise.
43363         * sysdeps/x86_64/bits/byteswap-16.h: Likewise.
43364         * string/Makefile (headers): Add bits/byteswap-16.h.
43365
43366 2012-04-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
43367
43368         [BZ #13895]
43369         * nss/nsswitch.c (nss_load_library, __nss_lookup_function): Avoid
43370         extra indirection.
43371         * nss/Makefile (tests-static, tests): Add tst-nss-static.
43372         * nss/tst-nss-static.c: New.
43373
43374 2012-04-06  Robert Millan  <rmh@gnu.org>
43375
43376         [BZ #6486]
43377         * manual/llio.texi (File Position Primitive): lseek
43378         refers to WHENCE when it really means OFFSET.
43379
43380 2012-04-06  Andreas Jaeger  <aj@suse.de>
43381
43382         * nss/nss_db/db-initgroups.c: Include <string.h> for strlen and
43383         strncmp declarations.
43384
43385         * abilist/libc.abilist: Add __poll and __ppoll.
43386
43387 2012-04-05  David S. Miller  <davem@davemloft.net>
43388
43389         * scripts/check-local-headers.sh: Accept a host triplet in the
43390         path matched by the exclude regexp.
43391
43392         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Reduce down to one
43393         definition.
43394         * sysdeps/powerpc/powerpc32/dl-machine.h
43395         (ELF_MACHINE_PLTREL_OVERLAP): Delete.
43396         * sysdeps/s390/s390-32/dl-machine.h
43397         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43398         * sysdeps/sparc/sparc32/dl-machine.h
43399         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43400         * sysdeps/sparc/sparc64/dl-machine.h
43401         (ELF_MACHINE_PLTREL_OVERLAP): Likewise.
43402
43403         * elf/rtld.c (dl_main): If DL_DEBUG_UNUSED is enabled, turn off
43404         lazy binding.
43405         * elf/dl-lookup.c (_dl_lookup_symbol_x): If DL_DEBUG_UNUSED, ignore
43406         undefined symbol errors.
43407
43408         * elf/rtld.c (dl_main): Skip VDSO when checking for unused
43409         DT_NEEDED entries.
43410
43411 2012-04-05  Michael Matz  <matz@suse.de>
43412
43413         [BZ #13592]
43414         * sysdeps/x86_64/memset.S: Fix size paramater comparisions.
43415
43416 2012-04-05  Andreas Jaeger  <aj@suse.de>
43417
43418         [BZ #13908]
43419         * stdlib/stdlib.h: Don't warn about unused result of mktemp, fix
43420         comment.
43421
43422 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43423
43424         * sysdeps/sh/sh4/fpu/fesetround.c (fesetround): Fix return value
43425         which ROUND is no valid rounding mode.
43426
43427 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43428
43429         * sysdeps/sh/sh4/fpu/fegetenv.c (fegetenv): Set fpscr register which
43430         read again.
43431         * sysdeps/sh/sh4/fpu/ftestexcept.c: Likewise.
43432
43433 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43434
43435         * sysdeps/sh/sh4/fpu/fraiseexcpt.c (feraiseexcept): Produce
43436         an exception using FPU order intentionally.
43437
43438 2012-04-05  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
43439
43440         * sysdeps/sh/sh4/fpu/fedisblxcpt.c: New file.
43441         * sysdeps/sh/sh4/fpu/feenablxcpt.c: New file.
43442         * sysdeps/sh/sh4/fpu/fegetexcept.c: New file.
43443         * sysdeps/sh/sh4/fpu/feupdateenv.c: New file.
43444
43445 2012-04-05  Simon Josefsson  <simon@josefsson.org>
43446
43447         [BZ #12340]
43448         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Return ERANGE instead of
43449         EINVAL when BUFLEN is too smal.
43450
43451 2012-04-05  Thomas Schwinge  <thomas@codesourcery.com>
43452
43453         [BZ #13553]
43454         * sysdeps/mach/i386/machine-lock.h: Use volatile instead of __volatile.
43455         * sysdeps/mach/powerpc/machine-lock.h: Likewise.
43456
43457 2012-04-03  Andreas Jaeger  <aj@suse.de>
43458
43459         [BZ #13938]
43460         * manual/setjmp.texi (System V contexts): Fix sentence.
43461
43462         [BZ #13926]
43463         * sysdeps/i386/bits/byteswap.h [!__GNUC__](__bswap_constant_64):
43464         New macro for this case.
43465         [!__GNUC__] (__bswap_64): New inline function for this case.
43466         * sysdeps/x86_64/bits/byteswap.h: Likewise.
43467         * bits/byteswap.h: Likewise.
43468         * sysdeps/s390/bits/byteswap.h: [!__GNUC__] (__bswap_64): Use
43469         ull, guard with __GLIBC_HAVE_LONG_LONG.
43470
43471         * string/endian.h (htobe64,htole64,be64toh,le64toh): Guard with
43472         __GLIBC_HAVE_LONG_LONG.
43473
43474         * string/byteswap.h (bswap_64): Guard with __GLIBC_HAVE_LONG_LONG.
43475         Include <features.h> for __GLIBC_HAVE_LONG_LONG.
43476
43477 2012-04-02 Tulio Magno Quites Machado Filho <tuliom@linux.vnet.ibm.com>
43478
43479         [BZ #13691]
43480         * iconvdata/tcvn5712-1.c (FROM_LOOP): Test end of input using
43481         inptr and inend, rather than using last_ch.
43482
43483 2012-04-02  David S. Miller  <davem@davemloft.net>
43484
43485         With help from Paul Eggert, Carlos O'Donell, and Roland McGrath.
43486         * stdio-common/printf-parse.h (read_int): Change return type to
43487         'int', return -1 on INT_MAX overflow.
43488         * stdio-common/vfprintf.c (vfprintf): Validate width and precision
43489         against overflow of INT_MAX.  Set errno to EOVERFLOW when 'done'
43490         overflows INT_MAX.  Check for overflow of in-format-string precision
43491         values properly.  Use EOVERFLOW rather than ERANGE throughout.  Use
43492         SIZE_MAX not INT_MAX for integer overflow test.
43493         * stdio-common/printf-parsemb.c: If read_int signals an overflow,
43494         skip the construct in the format string but do not record anything.
43495         * stdio-common/bug22.c: Adjust to test both width/prevision
43496         INT_MAX overflow as well as total length INT_MAX overflow.  Check
43497         explicitly for proper errno values.
43498
43499 2012-04-02  Thomas Schwinge  <thomas@codesourcery.com>
43500
43501         * string/test-memcmp.c [! WIDE]: #include <limits.h> for CHAR_MIN,
43502         CHAR_MAX.
43503         * string/test-strcmp.c [! WIDE]: Likewise.
43504         * time/tst-mktime2.c: Likewise for INT_MAX.
43505         * string/test-string.h: #include <sys/param.h> for MIN.
43506
43507         * csu/init-first.c (__libc_init_first): Call __ctype_init.
43508         * sysdeps/i386/init-first.c (init): Likewise.
43509         * sysdeps/mach/hurd/i386/init-first.c (posixland_init): Likewise.
43510         * sysdeps/mach/hurd/powerpc/init-first.c (posixland_init): Likewise.
43511         * sysdeps/sh/init-first.c (init): Likewise.
43512
43513 2012-04-01  Ulrich Drepper  <drepper@gmail.com>
43514
43515         * po/ru.po: Update from translation team.
43516         * po/vi.po: Likewise.
43517
43518 2012-03-31  Siddhesh Poyarekar  <siddhesh@redhat.com>
43519
43520         * resolv/nss_dns/dns-host.c: Merge copyright years.
43521
43522 2012-03-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
43523
43524         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
43525         Optimize memcpy with prefetch if
43526         DATA_CACHE_SIZE_HALF <= len <  SHARED_CACHE_SIZE_HALF and
43527         src, dst pointers have unequal 16 byte alignments.
43528
43529 2012-03-30  Siddhesh Poyarekar  <siddhesh@redhat.com>
43530
43531         [BZ #13928]
43532         * resolv/nss_dns/dns-host.c (getanswer_r): Also consider ttl
43533         from a CNAME entry and return the minimum ttl for the query.
43534         (gaih_getanswer_slice): Likewise.
43535
43536 2012-03-30  Jeff Law  <law@redhat.com>
43537
43538         * crypt/md5-crypt.c (__md5_crypt_r): Avoid unbounded alloca uses
43539         due to long keys.
43540         * crypt/sha256-crypt.c (__sha256_crypt_r): Likewise.
43541         * crypt/sha512-crypt.c (__sha512_crypt_r): Likewise.
43542
43543         * resolv/nss_dns/dns-host.c: Update copyright year.
43544
43545 2012-03-30  Ulrich Drepper  <drepper@gmail.com>
43546
43547         * resolv/res_send.c (send_dg): Use sendmmsg if we have to write two
43548         requests to save a system call.  Fix check that all bytes are sent.
43549
43550         * sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr): Fix up
43551         comments for sendmmsg.
43552
43553 2012-03-30  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
43554
43555         [BZ #13691]
43556         * iconvdata/tcvn5712-1.c (FROM_LOOP): Fix a bug when converting strings
43557         with only 1 character between 0x0041 and 0x01b0.
43558         * wcsmbs/Makefile (tests): Add tst-mbsnrtowcs.
43559         * wcsmbs/tst-mbsnrtowcs.c: New file.
43560
43561 2012-03-29  David S. Miller  <davem@davemloft.net>
43562
43563         * libio/fileops.c (_IO_new_file_xsputn): Don't try to optimize
43564         small copies by hand.
43565
43566 2012-03-28  Siddhesh Poyarekar  <siddhesh@redhat.com>
43567
43568         [BZ #13761]
43569         * nis/nss_compat/compat-initgroups.c (getgrent_next_nss)
43570         (_nss_compat_initgroups_dyn): Fall back to malloc/free for large
43571         group memberships.
43572
43573 2012-03-28  David S. Miller  <davem@davemloft.net>
43574
43575         * sysdeps/sparc/sparc32/memcpy.S: Implement mempcpy using a stub
43576         that branches into memcpy.
43577         * sysdeps/sparc/sparc64/memcpy.S: Likewise.
43578         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara1.S: Likewise.
43579         * sysdeps/sparc/sparc64/multiarch/memcpy-niagara2.S: Likewise.
43580         * sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: Likewise.
43581         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Add mempcpy multiarch
43582         bits.
43583         * sysdeps/sparc/sparc64/rtld-memcpy.c: Include generic mempcpy
43584         implementation too.
43585         * sysdeps/sparc/mempcpy.S: New file.
43586
43587         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Provide a hidden def to
43588         the IFUNC routine in the libc case.
43589         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
43590
43591         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memset.c: New file.
43592         * sysdeps/sparc/sparc32/sparcv9/multiarch/rtld-memcpy.c: New file.
43593         * sysdeps/sparc/sparc32/sparcv9/rtld-memset.c: New file.
43594         * sysdeps/sparc/sparc32/sparcv9/rtld-memcpy.c: New file.
43595         * sysdeps/sparc/sparc64/multiarch/rtld-memset.c: New file.
43596         * sysdeps/sparc/sparc64/multiarch/rtld-memcpy.c: New file.
43597         * sysdeps/sparc/sparc64/rtld-memset.c: New file.
43598         * sysdeps/sparc/sparc64/rtld-memcpy.c: New file.
43599
43600         * sysdeps/sparc/sparc64/multiarch/memset-niagara1.S: Unroll main
43601         loop to 256 bytes instead of 64 bytes and fix test signedness.
43602
43603         * sysdeps/sparc/Makefile: Add -fPIC to ASFLAGS-.os here....
43604         * sysdeps/sparc/sparc32/Makefile: rather than here...
43605         * sysdeps/sparc/sparc64/Makefile: and here.
43606
43607 2012-03-28  Ulrich Drepper  <drepper@gmail.com>
43608
43609         * malloc/mallocbug.c: Avoid warnings about unused variables.
43610
43611 2012-02-22  Siddhesh Poyarekar  <siddhesh@redhat.com>
43612
43613         [BZ #13760]
43614         * resolv/nss_dns/dns-host.c (gaih_getanswer): Look for errno
43615         in the right place. Discard and retry query if response is
43616         larger than input buffer size.
43617
43618 2012-03-28  Joseph Myers  <joseph@codesourcery.com>
43619
43620         [BZ #369]
43621         [BZ #2678]
43622         [BZ #3866]
43623         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Take absolute value of
43624         x for large integer exponent.
43625         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Likewise.
43626         * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise.  Adjust
43627         sign of result as needed afterwards.
43628         * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise.
43629         * sysdeps/ieee754/k_standard.c (__kernel_standard): Handle sign of
43630         result for underflowing pow the same as for overflow.
43631         (__kernel_standard_l): Handle powl overflow and underflow here
43632         rather than calling __kernel_standard.
43633         * math/libm-test.inc (pow_test): Add more tests.
43634
43635         [BZ #3868]
43636         [BZ #13879]
43637         [BZ #13910]
43638         [BZ #13911]
43639         [BZ #13912]
43640         [BZ #13913]
43641         [BZ #13915]
43642         [BZ #13916]
43643         [BZ #13917]
43644         [BZ #13918]
43645         [BZ #13919]
43646         [BZ #13920]
43647         [BZ #13921]
43648         * sysdeps/generic/math_private.h (__kernel_standard_l): Declare.
43649         * sysdeps/ieee754/k_standard.c: Include <float.h>.
43650         (__kernel_standard_l): New function.
43651         * math/w_acoshl.c (__acoshl): Use __kernel_standard_l instead of
43652         __kernel_standard.
43653         * math/w_acosl.c (__acosl): Likewise.
43654         * math/w_asinl.c (__asinl): Likewise.
43655         * math/w_atan2l.c (__atan2l): Likewise.
43656         * math/w_atanhl.c (__atanhl): Likewise.
43657         * math/w_coshl.c (__coshl): Likewise.
43658         * math/w_exp10l.c (__exp10l): Likewise.
43659         * math/w_exp2l.c (__exp2l): Likewise.
43660         * math/w_fmodl.c (__fmodl): Likewise.
43661         * math/w_hypotl.c (__hypotl): Likewise.
43662         * math/w_j0l.c (__j0l, __y0l): Likewise.
43663         * math/w_j1l.c (__j1l, __y1l): Likewise.
43664         * math/w_jnl.c (__jnl, __ynl): Likewise.
43665         * math/w_lgammal.c (__lgammal): Likewise.
43666         * math/w_log10l.c (__log10l): Likewise.
43667         * math/w_log2l.c (__log2l): Likewise.
43668         * math/w_logl.c (__logl): Likewise.
43669         * math/w_powl.c (__powl): Likewise.
43670         * math/w_remainderl.c (__remainderl): Likewise.
43671         * math/w_scalbl.c (sysv_scalbl): Likewise.
43672         * math/w_sinhl.c (__sinhl): Likewise.
43673         * math/w_sqrtl.c (__sqrtl): Likewise.
43674         * math/w_tgammal.c (__tgammal): Likewise.
43675         * sysdeps/ieee754/ldbl-128/w_expl.c (__expl): Likewise.
43676         * sysdeps/ieee754/ldbl-96/w_expl.c (__expl): Likewise.
43677         * math/libm-test.inc (acos_test): Add more tests.
43678         (acosh_test): Likewise.
43679         (asin_test): Likewise.
43680         (atanh_test): Likewise.
43681         (exp_test): Likewise.
43682         (exp10_test): Likewise.
43683         (exp2_test): Likewise.
43684         (expm1_test): Likewise.
43685         (lgamma_test): Likewise.
43686         (log_test): Likewise.
43687         (log10_test): Likewise.
43688         (log1p_test): Likewise.
43689         (log2_test): Likewise.
43690         (pow_test): Do not allow some spurious overflow exceptions.
43691         (sqrt_test): Add more tests.
43692         (tgamma_test): Likewise.
43693         (y0_test): Likewise.
43694         (y1_test): Likewise.
43695         (yn_test): Likewise.
43696
43697 2012-03-27  Anton Blanchard  <anton@samba.org>
43698
43699         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
43700         MAP_HUGETLB.
43701         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
43702         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
43703         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
43704
43705 2012-03-27  David S. Miller  <davem@davemloft.net>
43706
43707         * conform/Makefile: Run run-conformtest.sh using $(BASH).
43708
43709         * sysdeps/sparc/sparc64/Makefile (ASFLAGS-.os): Move before
43710         have-as-vis3 check.
43711
43712 2012-03-27  Andreas Jaeger  <aj@suse.de>
43713
43714         * sysdeps/x86_64/elf/configure.in: Moved to ...
43715         * sysdeps/x86_64/configure.in: ... here.
43716         * sysdeps/x86_64/elf/start.S: Moved to ...
43717         * sysdeps/x86_64/start.S: ... here.
43718         * sysdeps/x86_64/elf/configure: Delete.
43719
43720         * sysdeps/x86_64/configure.in: Merge contents from
43721         sysdeps/i386/configure.in (without i686 check).
43722
43723         * sysdeps/i386/elf/Versions: Merge into ...
43724         * sysdeps/i386/Versions: ... this.
43725         * sysdeps/i386/elf/Versions: Delete file.
43726         * sysdeps/i386/elf/start.S: Moved to ...
43727         * sysdeps/i386/start.S: ...here.
43728         * sysdeps/i386/elf/configure.in: Merge into...
43729         * sysdeps/i386/configure.in: ...here.
43730         * sysdeps/i386/elf/configure.in: Delete file.
43731         * sysdeps/i386/elf/configure: Delete file.
43732
43733         * sysdeps/generic/elf/backtracesyms.c: Moved to ...
43734         * debug/backtracesyms.c: ... here.
43735         * sysdeps/generic/elf/backtracesymsfd.c: Moved to ...
43736         * debug/backtracesymsfd.c: ... here.
43737         * sysdeps/generic/elf/ifunc-sel.h: Moved to ...
43738         * sysdeps/generic/ifunc-sel.h: ... here.
43739
43740         * sysdeps/unix/i386/start.c: Delete file.
43741         * sysdeps/unix/sparc/start.c: Delete file.
43742         * sysdeps/unix/start.c: Delete file.
43743
43744         * sysdeps/sh/elf/configure.in: Moved to ...
43745         * sysdeps/sh/configure.in: ... here.
43746         * sysdeps/sh/elf/start.S: Moved to ...
43747         * sysdeps/sh/start.S: ... here.
43748         * sysdeps/sh/elf/configure: Delete file.
43749
43750         * sysdeps/powerpc/powerpc64/elf/bzero.S: Moved to ...
43751         * sysdeps/powerpc/powerpc64/bzero.S: ... here.
43752         * sysdeps/powerpc/powerpc64/elf/entry.h: Moved to ...
43753         * sysdeps/powerpc/powerpc64/entry.h: ... here.
43754         * sysdeps/powerpc/powerpc64/elf/start.S: Moved to ...
43755         * sysdeps/powerpc/powerpc64/start.S: here.
43756         * sysdeps/powerpc/powerpc64/elf/Makefile: Merge into ...
43757         * sysdeps/powerpc/powerpc64/Makefile: ... this.
43758         * sysdeps/powerpc/powerpc64/elf/configure.in: Merge into ...
43759         * sysdeps/powerpc/powerpc64/configure.in: ... this.
43760         * sysdeps/powerpc/powerpc64/elf/configure: Delete file.
43761
43762         * sysdeps/powerpc/powerpc32/elf/bzero.S: Moved to ...
43763         * sysdeps/powerpc/powerpc32/bzero.S: ... here.
43764         * sysdeps/powerpc/powerpc32/elf/start.S: Moved to ...
43765         * sysdeps/powerpc/powerpc32/start.S: ... here.
43766         * sysdeps/powerpc/powerpc32/elf/configure.in: Merge into ...
43767         * sysdeps/powerpc/powerpc32/configure.in: ... this.
43768         * sysdeps/powerpc/powerpc32/elf/configure: Delete file.
43769
43770         * sysdeps/powerpc/elf/ifunc-sel.h: Moved to ...
43771         * sysdeps/powerpc/ifunc-sel.h: ... here.
43772         * sysdeps/powerpc/elf/rtld-global-offsets.sym: Moved to ...
43773         * sysdeps/powerpc/rtld-global-offsets.sym: ... here.
43774
43775         * sysdeps/sparc/elf/configure.in: Moved to ...
43776         * sysdeps/sparc/configure.in: ... here.
43777         * sysdeps/sparc/elf/configure: Delete file.
43778         * sysdeps/sparc/sparc32/elf/start.S: Moved to ...
43779         * sysdeps/sparc/sparc32/start.S: ... here.
43780         * sysdeps/sparc/sparc64/elf/start.S: Moved to ...
43781         * sysdeps/sparc/sparc64/start.S: ... here.
43782         * sysdeps/sparc/sparc32/elf/Makefile: Merged into ...
43783         * sysdeps/sparc/sparc32/Makefile: ... this.
43784         * sysdeps/sparc/sparc64/elf/Makefile: Merged into ...
43785         * sysdeps/sparc/sparc64/Makefile: ... this.
43786
43787         * sysdeps/s390/s390-32/elf/bsd-_setjmp.S: Moved to ...
43788         * sysdeps/s390/s390-32/bsd-_setjmp.S: ... here.
43789         * sysdeps/s390/s390-32/elf/bsd-setjmp.S: Moved to ...
43790         * sysdeps/s390/s390-32/bsd-setjmp.S: ... here.
43791         * sysdeps/s390/s390-32/elf/setjmp.S: Moved to ...
43792         * sysdeps/s390/s390-32/setjmp.S: ... here.
43793         * sysdeps/s390/s390-32/elf/configure.in: Moved to ...
43794         * sysdeps/s390/s390-32/configure.in: ... here.
43795         * sysdeps/s390/s390-32/elf/configure: Delete file.
43796         * sysdeps/s390/s390-32/elf/start.S: Moved to ...
43797         * sysdeps/s390/s390-32/start.S: ... here.
43798
43799         * sysdeps/s390/s390-64/elf/bsd-_setjmp.S: Moved to ...
43800         * sysdeps/s390/s390-64/bsd-_setjmp.S: ... here.
43801         * sysdeps/s390/s390-64/elf/bsd-setjmp.S: Moved to ...
43802         * sysdeps/s390/s390-64/bsd-setjmp.S: ... here.
43803         * sysdeps/s390/s390-64/elf/setjmp.S: Moved to ...
43804         * sysdeps/s390/s390-64/setjmp.S: ... here.
43805         * sysdeps/s390/s390-64/elf/configure.in: Moved to ...
43806         * sysdeps/s390/s390-64/configure.in: ... here
43807         * sysdeps/s390/s390-64/elf/configure: Delete file.
43808         * sysdeps/s390/s390-64/elf/start.S: Moved to ...
43809         * sysdeps/s390/s390-64/start.S: ... here.
43810         * sysdeps/s390/s390-64/elf/configure: Delete.
43811
43812         * configure.in: Remove support for elf directories in sysdeps.
43813
43814         * configure: Regenerated.
43815         * sysdeps/i386/configure: Regenerated.
43816         * sysdeps/powerpc/powerpc32/configure: Regenerated.
43817         * sysdeps/powerpc/powerpc64/configure: Regenerated.
43818         * sysdeps/s390/s390-32/configure: Regenerated.
43819         * sysdeps/s390/s390-64/configure: Regenerated.
43820         * sysdeps/sh/configure: Regenerated.
43821         * sysdeps/sparc/configure: Regenerated.
43822         * sysdeps/x86_64/configure: Regenerated.
43823
43824 2012-03-26  Andreas Schwab  <schwab@linux-m68k.org>
43825
43826         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43827
43828         * sysdeps/ieee754/ldbl-128ibm/e_expl.c (lomark): Adjust to take
43829         denormal result into account.
43830
43831 2012-03-25  Roland McGrath  <roland@hack.frob.com>
43832
43833         * posix/confstr.c (confstr): Lift RESTENVS definition to function scope.
43834         Reported by Allan McRae <allan@archlinux.org>.
43835
43836 2012-03-23  Jeff Law  <law@redhat.com>
43837
43838         * nss/getnssent.c (__nss_getent): Fix typo.
43839
43840 2012-03-23  David S. Miller  <davem@davemloft.net>
43841
43842         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43843
43844 2012-03-23  H.J. Lu  <hongjiu.lu@intel.com>
43845
43846         * sysdeps/x86_64/dl-tlsdesc.h (tlsdesc): Use anonymous union
43847         to pad to uint64_t for each field.
43848         (dl_tls_index): Replace unsigned long with uint64_t.
43849
43850 2012-03-23  Daniel Jacobowitz  <dmj@google.com>
43851         Paul Pluzhnikov  <ppluzhnikov@google.com>
43852
43853         [BZ #6528]
43854         * grp/Makefile (otherlibs): Don't set it.
43855         * inet/Makefile (otherlibs): Likewise.
43856         * login/Makefile (otherlibs): Likewise.
43857         * nscd/Makefile (otherlibs): Likewise.
43858         * posix/Makefile (otherlibs): Likewise.
43859         * pwd/Makefile (otherlibs): Likewise.
43860         * rt/Makefile (otherlibs): Likewise.
43861         * sunrpc/Makefile (otherlibs): Likewise.
43862         * nss/Makefile (otherlibs): Likewise.
43863         Add libnss_files to routines and static-only-routines.
43864         ($(objpfx)getent): Remove rule.
43865         * resolv/Makefile: Add libnss_dns and libresolv to routines and
43866         static-only-routines.
43867
43868 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
43869
43870         [BZ #13892]
43871         * math/s_cexp.c: Include <float.h>.
43872         (__cexp): Handle exp result overflowing not necessarily
43873         overflowing both real and imaginary parts of result.
43874         * math/s_cexpf.c: Likewise.
43875         * math/s_cexpl.c: Likewise.
43876         * math/libm-test.inc (cexp_test): Add more tests.
43877         * sysdeps/i386/fpu/libm-test-ulps: Update.
43878         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
43879
43880 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43881
43882         * include/link.h (ELFW): New macro.
43883         * sysdeps/x86_64/dl-irel.h: Replace Elf64_XXX with ElfW(XXX).
43884         Replace ELF64_R_TYPE with ELFW(R_TYPE).
43885
43886 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43887
43888         * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
43889         with uint64_t.
43890
43891 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43892
43893         * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
43894         declaration.
43895         (struct La_x32_retval): Likewise.
43896
43897 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
43898
43899         * sysdeps/x86_64/preconfigure.in: New file.
43900         * sysdeps/x86_64/preconfigure: New generated file.
43901
43902 2012-03-22  Joseph Myers  <joseph@codesourcery.com>
43903
43904         [BZ #13824]
43905         * math/e_exp2l.c: Include <float.h>.
43906         (__ieee754_exp2l): Handle overflow and underflow cases
43907         separately.  Only pass fractional part of argument to
43908         __ieee754_expl.
43909         * math/libm-test.inc (exp2_test): Add more tests.
43910
43911         * sysdeps/ieee754/ldbl-128/k_cosl.c (__kernel_cosl): Negate y if
43912         negating x to take absolute value.
43913         * sysdeps/ieee754/ldbl-128/k_sincosl.c (__kernel_sincosl):
43914         Likewise.
43915         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c (__kernel_cosl): Likewise.
43916         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c (__kernel_sincosl):
43917         Likewise.
43918         * sysdeps/ieee754/ldbl-128/k_sinl.c (__kernel_sinl): Negate y when
43919         computing low part if x was negated.
43920         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c (__kernel_sinl): Likewise.
43921
43922 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43923
43924         * elf/tst-auditmod1.c: Support la_x32_gnu_pltenter and
43925         la_x32_gnu_pltexit.
43926         (pltexit): Cast int_retval to ptrdiff_t.
43927         * elf/tst-auditmod3b.c: Likewise.
43928         * elf/tst-auditmod4b.c: Likewise.
43929         * elf/tst-auditmod5b.c: Likewise.
43930         * elf/tst-auditmod6b.c: Likewise.
43931         * elf/tst-auditmod6c.c: Likewise.
43932         * elf/tst-auditmod7b.c: Likewise.
43933
43934         * sysdeps/generic/ldsodefs.h (audit_ifaces): Add x32_gnu_pltenter
43935         and x32_gnu_pltexit.
43936
43937         * sysdeps/x86_64/bits/link.h: Check __x86_64__ instead of
43938         __ELF_NATIVE_CLASS.
43939         (La_x32_regs): New macro.
43940         (La_x32_retval): Likewise.
43941         (la_x32_gnu_pltenter): New function prototype.
43942         (la_x32_gnu_pltexit): Likewise.
43943
43944 2012-03-21  Andreas Schwab  <schwab@linux-m68k.org>
43945
43946         * sysdeps/ieee754/ldbl-128ibm/e_powl.c (huge, tiny): Correct
43947         exponent.
43948
43949         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
43950
43951         * configure.in (libc_cv_cc_nofma): Check for option to disable
43952         generation of FMA instructions.
43953         * configure: Regenerate.
43954         * config.make.in (config-cflags-nofma): Set from libc_cv_cc_nofma.
43955         * sysdeps/ieee754/dbl-64/Makefile: New file.
43956         * sysdeps/x86_64/fpu/multiarch/Makefile (libm-sysdep_routines):
43957         Remove brandred-fma4.
43958         (CFLAGS-brandred-fma4.c): Remove.
43959         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Remove.
43960         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c (__branred): Don't
43961         define.
43962         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c (__branred): Don't
43963         define.
43964
43965 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43966
43967         * stdio-common/_itoa.c: Check _ITOA_NEEDED instead of
43968         LLONG_MAX != LONG_MAX.
43969         (_itoa_word): Use _ITOA_WORD_TYPE on value.
43970         (_fitoa_word): Likewise.
43971         * stdio-common/_itowa.c: Check _ITOA_NEEDED instead of
43972         LLONG_MAX != LONG_MAX.
43973         * stdio-common/_itowa.h: Include <_itoa.h>.
43974         (_itowa_word): Use _ITOA_WORD_TYPE on value.
43975         (_itowa): New macro.  Defined only if _ITOA_NEEDED is false.
43976         * sysdeps/generic/_itoa.h (_ITOA_NEEDED): New macro.  Defined
43977         only if not defined.
43978         (_ITOA_WORD_TYPE): Likewise.
43979         (_itoa_word): Use _ITOA_WORD_TYPE on value.
43980         Check !_ITOA_NEEDED instead of LONG_MAX == LLONG_MAX.
43981
43982 2012-03-21  David S. Miller  <davem@davemloft.net>
43983
43984         * sysdeps/sparc/fpu/libm-test-ulps: Update.
43985
43986 2012-03-21  H.J. Lu  <hongjiu.lu@intel.com>
43987
43988         * sysdeps/unix/sysv/linux/configure.in: Check x86_64* instead
43989         of x86_64 when setting libc_cv_slibdir, libdir and
43990         libc_cv_localedir.
43991         * sysdeps/unix/sysv/linux/configure: Regenerated.
43992
43993 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
43994
43995         * manual/lang.texi (Old Varargs): Remove section.
43996         (How Variadic): Update menu.
43997         (va_start): Do not mention varargs.h.
43998
43999 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
44000             Joseph Myers  <joseph@codesourcery.com>
44001
44002         * configure.in (libc_cv_ssp): Use LIBC_TRY_CC_OPTION instead of a
44003         link test.
44004         * configure: Regenerated.
44005
44006 2012-03-21  Thomas Schwinge  <thomas@codesourcery.com>
44007
44008         * conform/conformtest.pl: Handle --tmpdir argument, defaulting to /tmp.
44009         * conform/run-conformtest.sh: Pass --tmpdir argument when invoking
44010         conformtest.pl
44011
44012 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
44013
44014         * NOTES: Remove.
44015         * Makefile (files-for-dist): Remove NOTES.
44016         (NOTES): Remove rule.
44017         * README: Don't refer to NOTES.
44018         * manual/creature.texi: Don't include macros.texi.
44019         * manual/intro.texi (creature.texi): Remove comment referring to
44020         NOTES.
44021
44022         * aclocal.m4 (LIBC_TRY_CC_OPTION): New macro.
44023         * configure.in (libc_cv_cc_submachine): Use LIBC_TRY_CC_OPTION.
44024         * configure: Regenerated.
44025         * sysdeps/i386/configure.in (libc_cv_cc_sse4): Use
44026         LIBC_TRY_CC_OPTION.
44027         (libc_cv_as_i686): Likewise.
44028         (libc_cv_cc_avx): Likewise.
44029         (libc_cv_cc_sse2avx): Likewise.
44030         (libc_cv_cc_fma4): Likewise.
44031         (libc_cv_cc_novzeroupper): Likewise.
44032         * sysdeps/i386/configure: Regenerated.
44033
44034         [BZ #13883]
44035         * sysdeps/i386/fpu/s_cexp.S: Remove.
44036         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
44037         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
44038         * math/libm-test.inc (cexp_test): Add more tests.
44039         * sysdeps/i386/fpu/libm-test-ulps: Update.
44040         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44041
44042 2012-03-21  Allan McRae  <allan@archlinux.org>
44043
44044         * timezone/Makefile: Do not install iso3166.tab and zone.tab
44045
44046 2012-03-21  Joseph Myers  <joseph@codesourcery.com>
44047
44048         [BZ #13871]
44049         * math/w_exp2.c: Do not include <float.h>.
44050         (o_threshold, u_threshold): Remove.
44051         (__exp2): Calculate result before checking finiteness and calling
44052         __kernel_standard.
44053         * math/w_exp2f.c: Likewise.
44054         * math/w_exp2l.c: Likewise.
44055         * math/libm-test.inc (exp2_test): Require overflow exception for
44056         1e6 input.
44057
44058         [BZ #3866]
44059         * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Test for y outside the
44060         range of signed 64-bit integers before using fistpll.  Remove
44061         checks for whether integers fit in mantissa bits.
44062         * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Test for y outside
44063         the range of signed 32-bit integers before using fistpl.  Remove
44064         checks for whether integers fit in mantissa bits.
44065         * sysdeps/i386/fpu/e_powl.S (p64): New object.
44066         (__ieee754_powl): Test for y outside the range of signed 64-bit
44067         integers before using fistpll.  Reduce 64-bit values to 63-bit
44068         ones as needed.
44069         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Ensure
44070         divide-by-zero is raised for zero to large negative powers.
44071         * sysdeps/x86_64/fpu/e_powl.S (p64): New object.
44072         (__ieee754_powl): Test for y outside the range of signed 64-bit
44073         integers before using fistpll.  Reduce 64-bit values to 63-bit
44074         ones as needed.
44075         * math/libm-test.inc (pow_test): Add more tests.
44076
44077 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44078
44079         * debug/backtracesymsfd.c: Include <_itoa.h> instead of
44080         <stdio-common/_itoa.h>.
44081         * debug/segfault.c: Likewise.
44082         * elf/dl-cache.c: Likewise.
44083         * elf/dl-minimal.c: Likewise.
44084         * elf/dl-misc.c: Likewise.
44085         * elf/dl-sysdep.c: Likewise.
44086         * elf/dl-version.c: Likewise.
44087         * elf/rtld.c: Likewise.
44088         * hurd/hurdsock.c: Likewise.
44089         * hurd/lookup-retry.c: Likewise.
44090         * malloc/malloc.c: Likewise.
44091         * malloc/mtrace.c: Likewise.
44092         * nscd/nscd_getgr_r.c: Likewise.
44093         * nscd/nscd_getpw_r.c: Likewise.
44094         * nscd/nscd_getserv_r.c: Likewise.
44095         * posix/getopt_init.c: Likewise.
44096         * posix/wordexp.c: Likewise.
44097         * stdio-common/_itoa.c: Likewise.
44098         * stdio-common/printf_fphex.c: Likewise.
44099         * stdio-common/vfprintf.c: Likewise.
44100         * string/_strerror.c: Likewise.
44101         * sysdeps/generic/elf/backtracesymsfd.c: Likewise.
44102         * sysdeps/i386/i686/hp-timing.h: Likewise.
44103         * sysdeps/mach/_strerror.c: Likewise.
44104         * sysdeps/mach/hurd/powerpc/register-dump.h: Likewise.
44105         * sysdeps/mach/hurd/sethostid.c: Likewise.
44106         * sysdeps/mach/hurd/xmknodat.c: Likewise.
44107         * sysdeps/mach/xpg-strerror.c: Likewise.
44108         * sysdeps/powerpc/powerpc32/dl-machine.c: Likewise.
44109         * sysdeps/powerpc/powerpc32/power4/hp-timing.h: Likewise.
44110         * sysdeps/powerpc/powerpc32/register-dump.h: Likewise.
44111         * sysdeps/powerpc/powerpc64/dl-machine.c: Likewise.
44112         * sysdeps/powerpc/powerpc64/hp-timing.h: Likewise.
44113         * sysdeps/powerpc/powerpc64/register-dump.h: Likewise.
44114         * sysdeps/sparc/sparc32/sparcv9/hp-timing.h: Likewise.
44115         * sysdeps/sparc/sparc64/hp-timing.h: Likewise.
44116         * sysdeps/unix/sysv/linux/fd_to_filename.h: Likewise.
44117         * sysdeps/unix/sysv/linux/futimes.c: Likewise.
44118         * sysdeps/unix/sysv/linux/i386/register-dump.h: Likewise.
44119         * sysdeps/unix/sysv/linux/ptsname.c: Likewise.
44120         * sysdeps/unix/sysv/linux/s390/s390-32/register-dump.h: Likewise.
44121         * sysdeps/unix/sysv/linux/s390/s390-64/register-dump.h: Likewise.
44122         * sysdeps/unix/sysv/linux/sh/sh3/register-dump.h: Likewise.
44123         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Likewise.
44124         * sysdeps/unix/sysv/linux/sparc/sparc32/register-dump.h: Likewise.
44125         * sysdeps/unix/sysv/linux/sparc/sparc64/register-dump.h: Likewise.
44126         * sysdeps/unix/sysv/linux/ttyname.c: Likewise.
44127         * sysdeps/unix/sysv/linux/ttyname_r.c: Likewise.
44128         * sysdeps/unix/sysv/linux/x86_64/register-dump.h: Likewise.
44129
44130         * stdio-common/_itoa.c: Include <_itoa.h> instead of "_itoa.h".
44131
44132         * stdio-common/_itoa.h: Moved to ...
44133         * sysdeps/generic/_itoa.h: Here.
44134
44135         * stdio-common/_itowa.c: Include <_itowa.h> instead of "_itowa.h".
44136
44137         * stdio-common/printf_fphex.c: Include <_itoa.h> and <_itowa.h>
44138         instead of "_itoa.h" and "_itowa.h".
44139         * stdio-common/vfprintf.: Likewise.
44140
44141 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44142
44143         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't include
44144         <bits/wordsize.h>.
44145         (__signbitf): Check __x86_64__ instead of __WORDSIZE.
44146         (__signbit): Likwise.
44147         (llrintf): Likwise.
44148         (llrint): Likwise.
44149
44150 2012-03-20  H.J. Lu  <hongjiu.lu@intel.com>
44151
44152         * sysdeps/x86_64/bits/setjmp.h (__jmp_buf): Support x86-64 with
44153         __WORDSIZE != 64.
44154
44155 2012-03-20  Joseph Myers  <joseph@codesourcery.com>
44156
44157         * math/gen-libm-test.pl (%beautify): Add OVERFLOW_EXCEPTION and
44158         OVERFLOW_EXCEPTION_OK.
44159         * math/libm-test.inc ("Philosophy"): Update comment about
44160         exception testing.
44161         (OVERFLOW_EXCEPTION): Define.
44162         (OVERFLOW_EXCEPTION_OK): Likewise.
44163         (INVALID_EXCEPTION_OK): Renumber.
44164         (DIVIDE_BY_ZERO_EXCEPTION_OK): Likewise.
44165         (IGNORE_ZERO_INF_SIGN): Likewise.
44166         (test_exceptions): Handle FE_OVERFLOW.
44167         (exp10_test): Expect overflow exceptions.
44168         (exp2_test): Likewise.
44169         (expm1_test): Likewise.
44170         (nextafter_test): Likewise.
44171         (pow_test): Likewise.
44172         (scalbn_test): Likewise.
44173         (scalbln_test): Likewise.
44174
44175 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44176
44177         * sysdeps/x86_64/bits/atomic.h
44178         (__arch_c_compare_and_exchange_val_64_acq): Use atomic64_t on
44179         64bit integer.
44180         (atomic_exchange_acq): Likewise.
44181         (__arch_exchange_and_add_body): Likewise.
44182         (__arch_add_body): Likewise.
44183         (atomic_add_negative): Likewise.
44184         (atomic_add_zero): Likewise.
44185
44186 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44187
44188         * sysdeps/x86_64/fpu/bits/fenv.h: Don't include <bits/wordsize.h>.
44189         (fenv_t): Check __x86_64__ instead of __WORDSIZE.
44190
44191 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44192
44193         * sysdeps/x86_64/bits/mathdef.h: Don't include <bits/wordsize.h>.
44194         Check __x86_64__ instead of __WORDSIZE.
44195
44196 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44197
44198         * sysdeps/unix/sysv/linux/x86_64/ldd-rewrite.sed: Support x32.
44199
44200 2012-03-19  David S. Miller  <davem@davemloft.net>
44201
44202         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44203
44204         * sysdeps/sparc/fpu/fenv_private.h: New file.
44205         * sysdeps/sparc/fpu/math_private.h: Use it.
44206         (libc_feholdexcept, libc_feholdexceptf, libc_feholdexceptl):
44207         Remove.
44208         (libc_feholdexcept_setround, libc_feholdexcept_setroundf)
44209         (libc_feholdexcept_setroundl): Remove.
44210         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl):
44211         Remove.
44212         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Remove.
44213         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvf): Remove.
44214
44215 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44216
44217         * sysdeps/x86_64/fpu/math_private.h (EXTRACT_WORDS64): Use
44218         int64_t instead of long int.
44219         (INSERT_WORDS64): Likwise.
44220
44221 2012-03-19  H.J. Lu  <hongjiu.lu@intel.com>
44222
44223         * sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
44224         _Unwind_GetCFA return to _Unwind_Ptr first.
44225
44226 2012-03-19  Joseph Myers  <joseph@codesourcery.com>
44227
44228         [BZ #13629]
44229         * math/s_clog.c: Include <float.h>.
44230         (__clog): Scale large or subnormal inputs.
44231         * math/s_clogf.c: Likewise.
44232         * math/s_clogl.c: Likewise.
44233         * math/s_clog10.c: Include <float.h>.
44234         (M_LOG10_2): Define.
44235         (__clog10): Scale large or subnormal inputs.
44236         * math/s_clog10f.c: Likewise.
44237         * math/s_clog10l.c: Likewise.
44238         * math/libm-test.inc (clog_test): Add more tests.
44239         (clog10_test): Likewise.
44240         * sysdeps/i386/fpu/libm-test-ulps: Update.
44241         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44242
44243         [BZ #11451]
44244         * sysdeps/ieee754/dbl-64/e_atan2.c (__ieee754_atan2): Scale large
44245         x and y.
44246         * math/libm-test.inc (atan2_test): Add another test.
44247
44248         * Makerules (common-objdir-compile): Remove.
44249         * sysdeps/unix/Makefile (config-generated): Do not add
44250         $(unix-generated) to variable.
44251         [generic bits/local_lim.h] (mk-local_lim-CFLAGS): Remove variable.
44252         [generic bits/local_lim.h] ($(common-objpfx)bits/local_lim.h):
44253         Remove rule.
44254         [generic bits/local_lim.h] ($(common-objpfx)mk-local_lim):
44255         Likewise.
44256         [generic bits/local_lim.h] (before-compile): Do not append to
44257         variable.
44258         [generic bits/local_lim.h] (common-generated): Likewise.
44259         [generic sys/param.h] (before-compile): Do not append to variable.
44260         [generic sys/param.h] ($(common-objpfx)sys/param.h): Remove rule.
44261         [generic sys/param.h] ($(common-objpfx)param.h.c): Likewise.
44262         [generic sys/param.h] ($(common-objpfx)param.h.dep): Likewise.
44263         [generic sys/param.h] ($(common-objpfx)param.h.dep): Do not
44264         include.
44265         [generic sys/param.h] (sys/param.h-includes): Remove variable.
44266         [generic sys/param.h] (sys/param.h-includes): Remove rule.
44267         [generic sys/param.h] ($(addprefix
44268         $(common-objpfx),$(sys/param.h-includes))): Likewise.
44269         [generic sys/param.h] (common-generated): Do not append to
44270         variable.
44271         [generic sys/param.h] (sysdep_headers): Likewise.
44272         [generic bits/errno.h] (before-compile): Do not append to
44273         variable.
44274         [generic bits/errno.h] ($(common-objpfx)bits/errno.h): Remove
44275         rule.
44276         [generic bits/errno.h] ($(common-objpfx)make-errnos): Likewise.
44277         [generic bits/errno.h] ($(common-objpfx)make-errnos.c): Likewise.
44278         [generic bits/errno.h] ($(common-objpfx)errnos): Likewise.
44279         [generic bits/errno.h] (common-generated): Do not append to
44280         variable.
44281         [generic bits/ioctls.h] (before-compile): Do not append to
44282         variable.
44283         [generic bits/ioctls.h] ($(common-objpfx)bits/ioctls.h): Remove
44284         rule.
44285         [generic bits/ioctls.h] (ioctl-includes): Remove variable.
44286         [generic bits/ioctls.h] (make-ioctls-CFLAGS): Likewise.
44287         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls): Remove
44288         rule.
44289         [generic bits/ioctls.h] ($(common-objpfx)make-ioctls.c): Likewise.
44290         [generic bits/ioctls.h] (bits_termios.h): Remove variable.
44291         [generic bits/ioctls.h] ($(common-objpfx)ioctls): Remove rule.
44292         [generic bits/ioctls.h] (common-generated): Do not append to
44293         variable.
44294         [generic sys/syscall.h] (syscall.h): Remove variable.
44295         [generic sys/syscall.h] ($(common-objpfx)sys/syscall.h): Remove
44296         rule.
44297         [generic sys/syscall.h] (before-compile): Do not append to
44298         variable.
44299         [generic sys/syscall.h] (common-generated): Likewise.
44300         * sysdeps/unix/errnos-tmpl.c: Remove file.
44301         * sysdeps/unix/errnos.awk: Likewise.
44302         * sysdeps/unix/ioctls-tmpl.c: Likewise.
44303         * sysdeps/unix/ioctls.awk: Likewise.
44304         * sysdeps/unix/mk-local_lim.c: Likewise.
44305         * sysdeps/unix/snarf-ioctls: Likewise.
44306
44307 2012-03-19  Richard Henderson  <rth@twiddle.net>
44308
44309         * sysdeps/i386/fpu/fenv_private.h: New file.
44310         * sysdeps/i386/fpu/math_private.h: Use it.
44311         (math_opt_barrier, math_force_eval): Remove.
44312         (libc_feholdexcept_setround_53bit): Remove.
44313         (libc_feupdateenv_53bit): Remove.
44314         * sysdeps/x86_64/fpu/math_private.h: Likewise.
44315         (math_opt_barrier, math_force_eval): Remove.
44316         (libc_feholdexcept): Remove.
44317         (libc_feholdexcept_setround): Remove.
44318         (libc_fetestexcept, libc_fesetenv): Remove.
44319         (libc_feupdateenv_test): Remove.
44320         (libc_feupdateenv, libc_feholdsetround): Remove.
44321         (libc_feresetround): Remove.
44322
44323         * sysdeps/i386/fpu/feholdexcpt.c (feholdexcept): Avoid the fldenv.
44324         * sysdeps/x86_64/fpu/feholdexcpt.c (feholdexcept): Likewise.
44325
44326         * sysdeps/generic/math_private.h (default_libc_feupdateenv_test): New.
44327         (libc_feupdateenv_test, libc_feupdateenv_testf): New.
44328         (libc_feupdateenv_testl): New.
44329         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv_test): New.
44330         (libc_feupdateenv_testf): New.
44331         (libc_feupdateenv): Use libc_feupdateenv_test.
44332         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Use libc_feupdateenv_test.
44333         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Likewise.
44334
44335         * sysdeps/generic/math_private.h (libc_feholdsetround): New.
44336         (libc_feholdsetroundf, libc_feholdsetroundl): New.
44337         (libc_feresetround, libc_feresetroundf, libc_feresetroundl): New.
44338         (libc_feresetround_noex): New.
44339         (libc_feresetround_noexf): New.
44340         (libc_feresetround_noexl): New.
44341         (SET_RESTORE_ROUND, SET_RESTORE_ROUNDF, SET_RESTORE_ROUNDL): New.
44342         (SET_RESTORE_ROUND_NOEX, SET_RESTORE_ROUND_NOEXF): New.
44343         (SET_RESTORE_ROUND_NOEXL, SET_RESTORE_ROUND_53BIT): New.
44344         * sysdeps/ieee754/dbl-64/e_exp.c (__ieee754_exp): Use
44345         SET_RESTORE_ROUND.
44346         * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Likewise.
44347         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Use SET_RESTORE_ROUND_53BIT.
44348         (__cos): Likewise.
44349         * sysdeps/ieee754/dbl-64/s_tan.c (__tan): Likewise.
44350         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Use
44351         SET_RESTORE_ROUND_NOEX.
44352         * sysdeps/ieee754/dbl-64/e_exp2f.c (__ieee754_exp2f): Use
44353         SET_RESTORE_ROUND_NOEXF.
44354         * sysdeps/ieee754/flt-32/e_expf.c (__ieee754_expf): Likewise.
44355         * sysdeps/x86_64/fpu/math_private.h (libc_feholdsetround): New.
44356         (libc_feholdsetroundf): New.
44357         (libc_feresetround, libc_feresetroundf): New.
44358
44359         * sysdeps/i386/fpu/math_private.h: Include <fenv.h>, <fpu_control.h>.
44360         (libc_feholdexcept_setround_53bit): Convert from macro to function.
44361         (libc_feupdateenv_53bit): Likewise.  Don't force _FPU_EXTENDED.
44362
44363         * sysdeps/generic/math_private.h: Include <fenv.h>.
44364         (default_libc_feholdexcept): New.
44365         (default_libc_feholdexcept_setround): New.
44366         (default_libc_fesetenv, default_libc_feupdateenv): New.
44367         (libc_feholdexcept): Only define if undefined.
44368         (libc_feholdexceptf, libc_feholdexceptl): Likewise.
44369         (libc_feholdexcept_setround, libc_feholdexcept_setroundf): Likewise.
44370         (libc_feholdexcept_setroundl): Likewise.
44371         (libc_feholdexcept_setround_53bit): Likewise.
44372         (libc_fetestexcept, libc_fetestexceptf, libc_fetestexceptl): Likewise.
44373         (libc_fesetenv, libc_fesetenvf, libc_fesetenvl): Likewise.
44374         (libc_feupdateenv, libc_feupdateenvf, libc_feupdateenvl): Likewise.
44375         (libc_feupdateenv_53bit): Likewise.
44376         * sysdeps/x86_64/fpu/math_private.h: Include <fenv.h>.
44377         (libc_feholdexcept): Convert from macro to inline function.
44378         (libc_feholdexcept_setround, libc_fetestexcept): Likewise.
44379         (libc_fesetenv, libc_feupdateenv): Likewise.
44380
44381         * sysdeps/generic/math_private.h (GET_HIGH_WORD): Define only if
44382         not previously defined.
44383         (GET_LOW_WORD, EXTRACT_WORDS64, INSERT_WORDS): Likewise.
44384         (INSERT_WORDS64, SET_HIGH_WORD, SET_LOW_WORD): Likewise.
44385         (GET_FLOAT_WORD, SET_FLOAT_WORD): Likewise.
44386         * sysdeps/ieee754/dbl-64/wordsize-64/math_private.h: New file.
44387         * sysdeps/ieee754/flt-32/math_private.h: New file.
44388         * sysdeps/x86_64/fpu/math_private.h: Move the include_next of
44389         math_private.h below SET_FLOAT_WORD.
44390         (__isnan, __isinf_ns, __finite): Remove.
44391         (__isnanf, __isinf_nsf, __finitef): Remove.
44392
44393 2012-03-18  Andreas Schwab  <schwab@linux-m68k.org>
44394
44395         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44396
44397 2012-03-17  David S. Miller  <davem@davemloft.net>
44398
44399         [BZ #6471]
44400         * sysdeps/unix/sysv/linux/sparc/Versions: Add __getshmlba entry
44401         for 2.16.
44402
44403 2012-03-16  David S. Miller  <davem@davemloft.net>
44404
44405         * sysdeps/unix/sysv/linux/shmat.c (shmat): Use -1l to avoid
44406         warnings.
44407
44408         [BZ #6471]
44409         * sysdeps/unix/sysv/linux/shmat.c (shmat): Test for syscall errors
44410         properly.
44411         * sysdeps/unix/sysv/linux/sparc/getshmlba.c: New file.
44412         * sysdeps/unix/sysv/linux/sparc/Makefile: Add getshmlba to
44413         sysdep_routines when subdir is sysvipc.
44414         * sysdeps/unix/sysv/linux/sparc/bits/shm.h (SHMLBA): Use new
44415         __getshmlba helper.
44416
44417         * sysdeps/sparc/fpu/libm-test/ulps: Update.
44418
44419 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44420
44421         * sysdeps/x86_64/ffsll.c (ffsl): Define alias only under
44422         [__LP64__].
44423
44424 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44425
44426         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Moved to ...
44427         * sysdeps/ieee754/dbl-64/wordsize-64/s_llround.c: This.
44428         (__lround): Renamed to ...
44429         (__llround): This.  Replace long int with long long int.
44430         Define lround functions as aliases of llround functions.
44431         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Empty file.
44432
44433 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44434
44435         * sysdeps/unix/sysv/linux/x86_64/makecontext.c (__makecontext):
44436         Use greg_t on sp.  Use unsigned int on idx_uc_link.  Cast
44437         adresses to uintptr_t.  Replace "long int" and "unsigned long
44438         int" with "greg_t" on va_arg.
44439
44440 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44441
44442         * sysdeps/generic/ldconfig.h (FLAG_X8664_LIBX32): New macro.
44443         * elf/cache.c (print_entry): Handle FLAG_X8664_LIBX32.
44444
44445         * sysdeps/unix/sysv/linux/i386/readelflib.c (process_elf_file):
44446         Move e_machine check before EI_CLASS check.  Handle x32
44447         libraries.  Check EM_IA_64 only if SKIP_EM_IA_64 isn't defined.
44448         * sysdeps/unix/sysv/linux/x86_64/readelflib.c: Just define
44449         SKIP_EM_IA_64 and include
44450         <sysdeps/unix/sysv/linux/i386/readelflib.c>.
44451
44452         * sysdeps/unix/sysv/linux/x86_64/dl-cache.h:
44453         Don't include <sysdeps/unix/sysv/linux/sparc/dl-cache.h>.
44454         (add_system_dir): New macro.
44455
44456         * sysdeps/unix/sysv/linux/x86_64/ldconfig.h
44457         (SYSDEP_KNOWN_INTERPRETER_NAMES): Add /libx32/ld-linux-x32.so.2.
44458
44459 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
44460
44461         [BZ #2551]
44462         [BZ #2552]
44463         [BZ #2553]
44464         [BZ #2554]
44465         [BZ #2562]
44466         [BZ #2563]
44467         [BZ #2565]
44468         [BZ #2566]
44469         [BZ #2576]
44470         * math/w_j0.c (j0): Don't produce TLOSS errors for POSIX libm.
44471         (y0): Likewise.
44472         * math/w_j0f.c (j0f): Likewise.
44473         (y0f): Likewise.
44474         * math/w_j0l.c (__j0l): Likewise.
44475         (__y0l): Likewise.
44476         * math/w_j1.c (j1): Likewise.
44477         (y1): Likewise.
44478         * math/w_j1f.c (j1f): Likewise.
44479         (y1f): Likewise.
44480         * math/w_j1l.c (__j1l): Likewise.
44481         (__y1l): Likewise.
44482         * math/w_jn.c (jn): Likewise.
44483         (yn): Likewise.
44484         * math/w_jnf.c (jnf): Likewise.
44485         (ynf): Likewise.
44486         * math/w_jnl.c (__jnl): Likewise.
44487         (__ynl): Likewise.
44488         * math/libm-test.inc (j0_test): Add more tests.
44489         (j1_test): Likewise.
44490         (jn_test): Likewise.  Add trailing semicolon to existing test.
44491         (y0_test): Likewise.
44492         (y1_test): Likewise.
44493         * sysdeps/i386/fpu/libm-test-ulps: Update.
44494         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44495
44496         [BZ #13851]
44497         [BZ #13854]
44498         * sysdeps/ieee754/dbl-64/s_tan.c (tan): Use
44499         libc_feholdexcept_setround_53bit and libc_feupdateenv_53bit.
44500         * sysdeps/ieee754/ldbl-96/k_tanl.c: New file.
44501         * sysdeps/ieee754/ldbl-96/s_tanl.c: Include <errno.h>.
44502         (__tanl): Set errno for infinite argument.
44503         * sysdeps/i386/fpu/mptan.c: Remove.
44504         * sysdeps/i386/fpu/s_tan.S: Likewise.
44505         * sysdeps/i386/fpu/s_tanl.S: Likewise.
44506         * sysdeps/x86_64/fpu/k_tanl.c: Likewise.
44507         * sysdeps/x86_64/fpu/s_tanl.S: Likewise.
44508         * math/libm-test.inc (tan_test): Add more tests and enable more
44509         tests for double and long double.
44510         * sysdeps/i386/fpu/libm-test-ulps: Update.
44511         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44512
44513 2012-03-16  Jan Kratochvil  <jan.kratochvil@redhat.com>
44514
44515         * sysdeps/x86_64/elf/start.S: Include <sysdep.h>.
44516         (_start): Add cfi_startproc, cfi_undefined for rip and cfi_endproc.
44517
44518 2012-03-16  Roland McGrath  <roland@hack.frob.com>
44519
44520         * aclocal.m4 (LIBC_PRECONFIGURE): New macro.
44521         * configure.in: Use it for both main tree and add-ons.
44522         * configure: Regenerated.
44523
44524 2012-03-16  H.J. Lu  <hongjiu.lu@intel.com>
44525
44526         * time/offtime.c (__offtime): Use time_t on days, rem, y and yg.
44527
44528 2012-03-16  Joseph Myers  <joseph@codesourcery.com>
44529
44530         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Include generator program
44531         in comment.
44532
44533         [BZ #13851]
44534         * sysdeps/ieee754/ldbl-96/e_rem_pio2l.c: New file.
44535         * sysdeps/ieee754/ldbl-96/k_cosl.c: Likewise.
44536         * sysdeps/ieee754/ldbl-96/k_sinl.c: Likewise.
44537         * sysdeps/ieee754/ldbl-96/t_sincosl.c: Likewise.
44538         * sysdeps/ieee754/ldbl-96/s_cosl.c (__cosl): Correct test for
44539         infinite argument.
44540         * sysdeps/ieee754/ldbl-96/s_sinl.c (__sinl): Likewise.
44541         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Handle __FLT_EVAL_METHOD__
44542         != 0 for prec == 2.
44543         * sysdeps/i386/fpu/e_rem_pio2l.c: Remove.
44544         * sysdeps/i386/fpu/k_rem_pio2.c: Likewise.
44545         * sysdeps/i386/fpu/s_cosl.S: Likewise.
44546         * sysdeps/i386/fpu/s_sincosl.S: Likewise.
44547         * sysdeps/i386/fpu/s_sinl.S: Likewise.
44548         * sysdeps/x86_64/fpu/e_rem_pio2l.c: Likewise.
44549         * sysdeps/x86_64/fpu/k_cosl.c: Likewise.
44550         * sysdeps/x86_64/fpu/k_sinl.c: Likewise.
44551         * sysdeps/x86_64/fpu/s_cosl.S: Likewise.
44552         * sysdeps/x86_64/fpu/s_sincosl.S: Likewise.
44553         * sysdeps/x86_64/fpu/s_sinl.S: Likewise.
44554         * math/libm-test.inc (cos_test): Add more tests and enable more
44555         tests for long double.
44556         (sin_test): Likewise.
44557         (sincos_test): Likewise.
44558         * sysdeps/i386/fpu/libm-test-ulps: Update.
44559         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44560
44561 2012-03-16  David S. Miller  <davem@davemloft.net>
44562
44563         * sysdeps/sparc/fpu/math_private.h: New file.
44564
44565 2012-03-15  David S. Miller  <davem@davemloft.net>
44566
44567         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma-vis3.S: New
44568         file.
44569         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fma.c: New file.
44570         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf-vis3.S: New
44571         file.
44572         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaf.c: New file.
44573         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma-vis3.S: New file.
44574         * sysdeps/sparc/sparc64/fpu/multiarch/s_fma.c: New file.
44575         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf-vis3.S: New file.
44576         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaf.c: New file.
44577         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add fma/fmaf
44578         sysdep routines.
44579         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
44580
44581         * sysdeps/sparc/sparc32/fpu/s_fma.c: New file.
44582         * sysdeps/sparc/sparc64/fpu/s_fma.c: New file.
44583
44584         * sysdeps/sparc/sparc-ifunc.h: New file.
44585         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: Use
44586         sparc-ifunc.h
44587         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: Likewise.
44588         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S:
44589         Likewise.
44590         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S:
44591         Likewise.
44592         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: Likewise.
44593         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: Likewise.
44594         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: Likewise.
44595         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S:
44596         Likewise.
44597         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: Likewise.
44598         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: Likewise.
44599         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: Likewise.
44600         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: Likewise.
44601         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S:
44602         Likewise.
44603         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S:
44604         Likewise.
44605         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: Likewise.
44606         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: Likewise.
44607         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: Likewise.
44608         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: Likewise.
44609         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: Likewise.
44610         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: Likewise.
44611         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: Likewise.
44612         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: Likewise.
44613         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: Likewise.
44614         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: Likewise.
44615         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: Likewise.
44616         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: Likewise.
44617         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: Likewise.
44618         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: Likewise.
44619         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: Likewise.
44620         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: Likewise.
44621         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: Likewise.
44622         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: Likewise.
44623         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: Likewise.
44624         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: Likewise.
44625         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: Likewise.
44626         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: Likewise.
44627         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: Likewise.
44628         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: Likewise.
44629
44630 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
44631
44632         * sysdeps/powerpc/fpu/e_hypotf.c: Use double precision instead of
44633         scaling.
44634         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44635
44636 2012-03-15  Andreas Jaeger  <aj@suse.de>
44637
44638         [BZ #13852]
44639         * sysdeps/i386/fpu/e_rem_pio2f.c: Delete so that i386 uses the
44640         ieee754/flt-32 implementation for sin, cos and sincos.
44641         * sysdeps/i386/fpu/k_rem_pio2f.c: Likewise.
44642         * sysdeps/i386/fpu/s_cosf.S: Likewise.
44643         * sysdeps/i386/fpu/s_sincosf.S: Likewise.
44644         * sysdeps/i386/fpu/s_sinf.S: Likewise.
44645         * sysdeps/i386/fpu/s_tanf.S: Delete so that i386 uses the
44646         ieee754/flt-32 implementation for tan.
44647
44648         * math/libm-test.inc (cos_test): Enable some large input tests for
44649         float as well
44650         (sin_test): Likewise.
44651         (sincos_test): Likewise.
44652         (tan_test): Add tests for large input.
44653
44654         * sysdeps/i386/fpu/libm-test-ulps: Update.
44655
44656 2012-03-15  Andreas Jaeger  <aj@suse.de>
44657
44658         [BZ #13658]
44659         * math/libm-test.inc (cos_test): Add more test cases.
44660         (sin_test): Likewise.
44661         (sincos_test): Likewise.
44662
44663 2012-03-15  Andreas Jaeger  <aj@suse.de>
44664
44665         [BZ #13837]
44666         * math/libm-test.inc (cos_test): Add a test case for large input
44667         value.
44668         (sin_test): Likewise.
44669         (sincos_test): Likewise.
44670
44671 2012-03-15  Andreas Jaeger  <aj@suse.de>
44672             Joseph Myers  <joseph@codesourcery.com>
44673
44674         [BZ #13658]
44675         * sysdeps/x86_64/fpu/s_sincos.S: Delete files so that
44676         x86-64 and i386 use the iee754/dbl-64 sin and cos implementation.
44677         * sysdeps/i386/fpu/branred.c: Likewise.
44678         * sysdeps/i386/fpu/dosincos.c: Likewise.
44679         * sysdeps/i386/fpu/mpa.c: Likewise.
44680         * sysdeps/i386/fpu/s_cos.S: Likewise.
44681         * sysdeps/i386/fpu/s_sin.S: Likewise.
44682         * sysdeps/i386/fpu/s_sincos.S: Likewise.
44683         * sysdeps/i386/fpu/sincos32.c: Likewise.
44684
44685         * sysdeps/generic/math_private.h (libc_feholdexcept_setround_53bit):
44686         Define.
44687         (libc_feupdateenv_53bit): Define.
44688         * sysdeps/i386/fpu/math_private.h (libc_feholdexcept_setround_53bit):
44689         Define.
44690         (libc_feupdateenv_53bit): Define.
44691
44692         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Do double arithmetic in
44693         53 bit (without extend i386 double precision).
44694
44695         * math/libm-test.inc (sincos_test): Add tests for large input.
44696         (sin): Likewise.
44697         (cos): Likewise.
44698
44699         * sysdeps/i386/fpu/libm-test-ulps: Update ULPs.
44700
44701 2012-03-15  Andreas Schwab  <schwab@linux-m68k.org>
44702
44703         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44704
44705 2012-03-15  David S. Miller  <davem@davemloft.net>
44706
44707         * sysdeps/sparc/sparc64/fpu/s_fmax.S: New file.
44708         * sysdeps/sparc/sparc64/fpu/s_fmaxf.S: New file.
44709         * sysdeps/sparc/sparc64/fpu/s_fmin.S: New file.
44710         * sysdeps/sparc/sparc64/fpu/s_fminf.S: New file.
44711         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmax.S: New file.
44712         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmaxf.S: New file.
44713         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fmin.S: New file.
44714         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fminf.S: New file.
44715         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmax.S: New file.
44716         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf-vis3.S: New file.
44717         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmaxf.S: New file.
44718         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin-vis3.S: New file.
44719         * sysdeps/sparc/sparc64/fpu/multiarch/s_fmin.S: New file.
44720         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf-vis3.S: New file.
44721         * sysdeps/sparc/sparc64/fpu/multiarch/s_fminf.S: New file.
44722         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax-vis3.S: New
44723         file.
44724         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmax.S: New file.
44725         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf-vis3.S: New
44726         file.
44727         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmaxf.S: New file.
44728         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin-vis3.S: New
44729         file.
44730         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fmin.S: New file.
44731         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf-vis3.S: New
44732         file.
44733         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fminf.S: New file.
44734         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new vis3
44735         fmin/fmax sysdep routines.
44736         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Likewise.
44737
44738 2012-03-14  David S. Miller  <davem@davemloft.net>
44739
44740         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil-vis3.S: New file.
44741         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceil.S: New file.
44742         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf-vis3.S: New file.
44743         * sysdeps/sparc/sparc64/fpu/multiarch/s_ceilf.S: New file.
44744         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite-vis3.S: New file.
44745         * sysdeps/sparc/sparc64/fpu/multiarch/s_finite.S: New file.
44746         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef-vis3.S: New file.
44747         * sysdeps/sparc/sparc64/fpu/multiarch/s_finitef.S: New file.
44748         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor-vis3.S: New file.
44749         * sysdeps/sparc/sparc64/fpu/multiarch/s_floor.S: New file.
44750         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf-vis3.S: New file.
44751         * sysdeps/sparc/sparc64/fpu/multiarch/s_floorf.S: New file.
44752         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf-vis3.S: New file.
44753         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinf.S: New file.
44754         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff-vis3.S: New file.
44755         * sysdeps/sparc/sparc64/fpu/multiarch/s_isinff.S: New file.
44756         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan-vis3.S: New file.
44757         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnan.S: New file.
44758         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf-vis3.S: New file.
44759         * sysdeps/sparc/sparc64/fpu/multiarch/s_isnanf.S: New file.
44760         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint-vis3.S: New file.
44761         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrint.S: New file.
44762         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf-vis3.S: New file.
44763         * sysdeps/sparc/sparc64/fpu/multiarch/s_lrintf.S: New file.
44764         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint-vis3.S: New file.
44765         * sysdeps/sparc/sparc64/fpu/multiarch/s_rint.S: New file.
44766         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf-vis3.S: New file.
44767         * sysdeps/sparc/sparc64/fpu/multiarch/s_rintf.S: New file.
44768         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: Add new VIS3
44769         routines.
44770         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil-vis3.S: New
44771         file.
44772         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceil.S: New file.
44773         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf-vis3.S: New
44774         file.
44775         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_ceilf.S: New file.
44776         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs-vis3.S: New
44777         file.
44778         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabs.S: New file.
44779         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf-vis3.S: New
44780         file.
44781         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_fabsf.S: New file.
44782         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor-vis3.S: New
44783         file.
44784         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floor.S: New file.
44785         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf-vis3.S: New
44786         file.
44787         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_floorf.S: New
44788         file.
44789         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint-vis3.S: New
44790         file.
44791         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrint.S: New
44792         file.
44793         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf-vis3.S:
44794         New file.
44795         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_llrintf.S: New
44796         file.
44797         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint-vis3.S: New
44798         file.
44799         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rint.S: New file.
44800         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf-vis3.S: New
44801         file.
44802         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_rintf.S: New file.
44803         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt-vis3.S: New
44804         file.
44805         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrt.S: New file.
44806         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf-vis3.S: New
44807         file.
44808         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/w_sqrtf.S: New file.
44809         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: Add new
44810         VIS3 routines.
44811
44812         * sysdeps/sparc/sparc32/sparcv9/fpu/unix/sysv/linux/multiarch/Implies:
44813         New file.
44814
44815         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44816
44817         * sysdeps/sparc/configure.in: New file.
44818         * sysdeps/sparc/configure: Generate.
44819         * configure.in (libc_cv_sparc_as_vis3): Substitute.
44820         * configure: Regenerate.
44821         * config.h.in (HAVE_AS_VIS3_SUPPORT): New.
44822         * config.make.in (have-as-vis3): New.
44823         * sysdeps/sparc/sparc32/sparcv9/Makefile (ASFLAGS-*): If VIS3 is
44824         available use -Av9d instead of -Av9a.
44825         * sysdeps/sparc/sparc64/Makefile: Likewise.
44826         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/Makefile: New file.
44827         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign-vis3.S:
44828         New file.
44829         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysign.S: New
44830         file.
44831         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf-vis3.S:
44832         New file.
44833         * sysdeps/sparc/sparc32/sparcv9/fpu/multiarch/s_copysignf.S: New
44834         file.
44835         * sysdeps/sparc/sparc64/fpu/multiarch/Makefile: New file.
44836         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit-vis3.S: New file.
44837         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbit.S: New file.
44838         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf-vis3.S: New file.
44839         * sysdeps/sparc/sparc64/fpu/multiarch/s_signbitf.S: New file.
44840
44841         * sysdeps/sparc/sparc64/fpu/s_copysign.S (__copysign): Use
44842         fzeros/fnegs to load 0x80000000 into a float register instead of
44843         using the stack.
44844         * sysdeps/sparc/sparc64/fpu/s_copysignf.S (__copysignf): Likewise.
44845
44846 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
44847
44848         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
44849         bits/syscall.h.
44850         ($(objpfx)syscall-%.h): Rename rule to $(objpfx)bits/syscall%h.
44851         ($(objpfx)syscall-%.d): Rename rule to $(objpfx)bits/syscall%d.
44852         ($(inst_includedir)/bits/syscall.h): Remove rule.
44853         ($(objpfx)bits/syscall.d): Include instead of
44854         $(objpfx)syscall-list.d.
44855         (generated): Change syscall-list.h and syscall-list.d to
44856         bits/syscall.h and bits/syscall.d.
44857
44858 2012-03-14  Roland McGrath  <roland@hack.frob.com>
44859
44860         [BZ #13846]
44861         * manual/llio.texi (Memory-mapped I/O): Fix wrong function name.
44862
44863 2012-03-14  Joseph Myers  <joseph@codesourcery.com>
44864
44865         [BZ #13841]
44866         * math/s_csqrt.c: Include <float.h>.
44867         (__csqrt): Scale large or subnormal inputs.
44868         * math/s_csqrtf.c: Likewise.
44869         * math/s_csqrtl.c: Likewise.
44870         * math/libm-test.inc (csqrt_test): Add more tests.
44871         * sysdeps/i386/fpu/libm-test-ulps: Update.
44872         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
44873
44874         [BZ #13840]
44875         * math/libm-test.inc (hypot_test): Add more tests.
44876
44877 2012-03-13  David S. Miller  <davem@davemloft.net>
44878
44879         [BZ #13840]
44880         * sysdeps/ieee754/flt-32/e_hypotf.c (__ieee754_hypotf): Rewrite to use
44881         double-precision for the calculation instead of scaling.
44882
44883 2012-03-13  Joseph Myers  <joseph@codesourcery.com>
44884
44885         * sysdeps/ieee754/dbl-64/s_nearbyint.c (__nearbyint): Do not
44886         manipulate bits before adding and subtracting TWO52[sx].
44887         * sysdeps/ieee754/dbl-64/s_rint.c (__rint): Likewise.
44888         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c (__nearbyint):
44889         Likewise.
44890         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c (__rint): Likewise.
44891
44892 2012-03-13  David S. Miller  <davem@davemloft.net>
44893
44894         * sysdeps/sparc/Makefile: Remove rtld-global-offsets.sym handling.
44895         * sysdeps/sparc/elf/rtld-global-offsets.sym: Delete.
44896         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Don't include
44897         rtld-global-offsets.h
44898         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
44899
44900         * sysdeps/ieee754/ldbl-128/s_expm1l.c (__expm1l): Use expl for
44901         large parameters.
44902
44903         * sysdeps/unix/sysv/linux/sparc/sparc64/dl-fxstatat64.c: New file.
44904
44905         * sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall
44906         'err' in the ifdef scope in which it is actually used.
44907
44908         * nss/nss_db/db-init.c: Include string.h
44909
44910 2012-03-12  David S. Miller  <davem@davemloft.net>
44911
44912         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
44913         masking out of the most significant byte of random value used.
44914         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
44915         Fix coding style in previous change.
44916
44917         * sysdeps/unix/sysv/linux/kernel-features.h
44918         (__ASSUME_CLONE_THREAD_FLAGS): Set on sparc when 2.5.64 and later.
44919         (__ASSUME_TGKILL): Set on sparc when 2.6.1 and later, simplify
44920         expression.
44921         (__ASSUME_FADVISE64_64_SYSCALL): Set on sparc when 2.6.1 and
44922         later.
44923
44924 2012-03-11  David S. Miller  <davem@davemloft.net>
44925
44926         * sysdeps/unix/sysv/linux/sparc/sparc64/makecontext.c
44927         (__makecontext): Fix signedness of pointer casts setting up 'sp'.
44928         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL) Use 'long'
44929         for 'resultvar' otherwise things get truncated on 64-bit.
44930
44931         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
44932         Fix masking out of the most significant byte of random value used.
44933
44934         * sysdeps/sparc/fpu/libm-test-ulps: Update.
44935
44936 2012-03-10  Andreas Schwab  <schwab@linux-m68k.org>
44937
44938         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
44939
44940 2012-03-09  David S. Miller  <davem@davemloft.net>
44941
44942         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Protect local
44943         variables with appropriate CPP guards.
44944         * sysdeps/sparc/sparc32/dl-trampoline.S: Propagate the stack_ptr
44945         from the frame pointer, not the stack pointer.  Correct layout
44946         comments.  Fix test on resulting framesize and the management of
44947         the outregs buffer for pltexit.  Preserve floating point return
44948         values across _dl_call_pltexit call.
44949         * sysdeps/sparc/sparc64/dl-trampoline.S: Fix test on resulting
44950         framesize and the management of the outregs buffer for pltexit.
44951         Preserve floating point return values across _dl_call_pltexit
44952         call.
44953         * elf/sotruss-lib.c (la_sparc32_gnu_pltenter)
44954         (la_sparc64_gnu_pltenter, la_sparc32_gnu_pltexit)
44955         (la_sparc64_gnu_pltexit): New functions.
44956         (print_exit): Fix format string for return register value.
44957
44958 2012-03-10  Joseph Myers  <joseph@codesourcery.com>
44959
44960         * sunrpc/Makefile (others): Add rpcgen.
44961         ($(objpfx)rpcgen): Remove special build rule and dependency on
44962         libc.
44963         * sunrpc/rpcgen.c: New file.
44964
44965 2012-03-09  Paul Eggert  <eggert@cs.ucla.edu>
44966
44967         [BZ #13673]
44968         * posix/bug-regex33.c: Replace FSF snail mail address with URL.
44969         * stdio-common/bug-vfprintf-nargs.c: Likewise.
44970         * sysdeps/i386/crti.S: Likewise.
44971         * sysdeps/i386/crtn.S: Likewise.
44972         * sysdeps/powerpc/powerpc32/crti.S: Likewise.
44973         * sysdeps/powerpc/powerpc32/crtn.S: Likewise.
44974         * sysdeps/powerpc/powerpc64/crti.S: Likewise.
44975         * sysdeps/powerpc/powerpc64/crtn.S: Likewise.
44976         * sysdeps/sh/crti.S: Likewise.
44977         * sysdeps/sh/crtn.S: Likewise.
44978         * sysdeps/x86_64/fpu/e_expf.S: Likewise.
44979
44980         [BZ #13673]
44981         * locale/programs/charmap-kw.gperf: Replace FSF snail mail address
44982         with URL.
44983         * locale/programs/locfile-kw.gperf: Likewise.
44984         * locale/programs/charmap-kw.h: Regenerated.
44985         * locale/programs/locfile-kw.h: Likewise.
44986
44987         [BZ #13673]
44988         * intl/plural.y: Replace FSF snail mail address with URL.
44989         * intl/plural.c: Regenerated.
44990
44991 2012-03-09  Richard Henderson  <rth@twiddle.net>
44992
44993         * include/math_private.h: Remove file.
44994         * math/math_private.h: Move file ...
44995         * sysdeps/generic/math_private.h: ... here.
44996
44997         * sysdeps/i386/fpu/math_private.h: Use include_next for math_private.h.
44998         * sysdeps/powerpc/fpu/math_private.h: Likewise.
44999         * sysdeps/x86_64/fpu/math_private.h: Likewise.
45000
45001         * sysdeps/i386/fpu/s_fpclassifyl.c: Use <> to include both <math.h>
45002         and <math_private.h>.
45003         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
45004         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
45005         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
45006         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
45007         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
45008         * sysdeps/ieee754/dbl-64/branred.c: Likewise.
45009         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
45010         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
45011         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
45012         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
45013         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
45014         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
45015         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
45016         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
45017         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
45018         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
45019         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
45020         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
45021         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
45022         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
45023         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
45024         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
45025         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
45026         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
45027         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Likewise.
45028         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
45029         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
45030         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
45031         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
45032         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
45033         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
45034         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
45035         * sysdeps/ieee754/dbl-64/s_cbrt.c: Likewise.
45036         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
45037         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
45038         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
45039         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
45040         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
45041         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
45042         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
45043         * sysdeps/ieee754/dbl-64/s_fpclassify.c: Likewise.
45044         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
45045         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
45046         * sysdeps/ieee754/dbl-64/s_isinf.c: Likewise.
45047         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: Likewise.
45048         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
45049         * sysdeps/ieee754/dbl-64/s_llrint.c: Likewise.
45050         * sysdeps/ieee754/dbl-64/s_llround.c: Likewise.
45051         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
45052         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
45053         * sysdeps/ieee754/dbl-64/s_lrint.c: Likewise.
45054         * sysdeps/ieee754/dbl-64/s_lround.c: Likewise.
45055         * sysdeps/ieee754/dbl-64/s_modf.c: Likewise.
45056         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
45057         * sysdeps/ieee754/dbl-64/s_remquo.c: Likewise.
45058         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
45059         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
45060         * sysdeps/ieee754/dbl-64/s_scalbln.c: Likewise.
45061         * sysdeps/ieee754/dbl-64/s_scalbn.c: Likewise.
45062         * sysdeps/ieee754/dbl-64/s_signbit.c: Likewise.
45063         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
45064         * sysdeps/ieee754/dbl-64/s_sincos.c: Likewise.
45065         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
45066         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
45067         * sysdeps/ieee754/dbl-64/s_trunc.c: Likewise.
45068         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
45069         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
45070         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
45071         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: Likewise.
45072         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: Likewise.
45073         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: Likewise.
45074         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
45075         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Likewise.
45076         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
45077         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: Likewise.
45078         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf.c: Likewise.
45079         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: Likewise.
45080         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
45081         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: Likewise.
45082         * sysdeps/ieee754/dbl-64/wordsize-64/s_lround.c: Likewise.
45083         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: Likewise.
45084         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Likewise.
45085         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: Likewise.
45086         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
45087         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
45088         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: Likewise.
45089         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: Likewise.
45090         * sysdeps/ieee754/dbl-64/wordsize-64/s_trunc.c: Likewise.
45091         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
45092         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
45093         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
45094         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
45095         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
45096         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
45097         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
45098         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
45099         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
45100         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
45101         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
45102         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
45103         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
45104         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
45105         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
45106         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
45107         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
45108         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
45109         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
45110         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
45111         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
45112         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
45113         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
45114         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
45115         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
45116         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
45117         * sysdeps/ieee754/flt-32/s_cbrtf.c: Likewise.
45118         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
45119         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
45120         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
45121         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
45122         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
45123         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
45124         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
45125         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
45126         * sysdeps/ieee754/flt-32/s_fpclassifyf.c: Likewise.
45127         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
45128         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
45129         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
45130         * sysdeps/ieee754/flt-32/s_isinff.c: Likewise.
45131         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
45132         * sysdeps/ieee754/flt-32/s_llrintf.c: Likewise.
45133         * sysdeps/ieee754/flt-32/s_llroundf.c: Likewise.
45134         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
45135         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
45136         * sysdeps/ieee754/flt-32/s_lrintf.c: Likewise.
45137         * sysdeps/ieee754/flt-32/s_lroundf.c: Likewise.
45138         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
45139         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
45140         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
45141         * sysdeps/ieee754/flt-32/s_remquof.c: Likewise.
45142         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
45143         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
45144         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
45145         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
45146         * sysdeps/ieee754/flt-32/s_signbitf.c: Likewise.
45147         * sysdeps/ieee754/flt-32/s_sincosf.c: Likewise.
45148         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
45149         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
45150         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
45151         * sysdeps/ieee754/flt-32/s_truncf.c: Likewise.
45152         * sysdeps/ieee754/k_standard.c: Likewise.
45153         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
45154         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
45155         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
45156         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
45157         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
45158         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
45159         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
45160         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
45161         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
45162         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
45163         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
45164         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
45165         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
45166         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
45167         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
45168         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
45169         * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: Likewise.
45170         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
45171         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
45172         * sysdeps/ieee754/ldbl-128/k_cosl.c: Likewise.
45173         * sysdeps/ieee754/ldbl-128/k_sincosl.c: Likewise.
45174         * sysdeps/ieee754/ldbl-128/k_sinl.c: Likewise.
45175         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
45176         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
45177         * sysdeps/ieee754/ldbl-128/s_atanl.c: Likewise.
45178         * sysdeps/ieee754/ldbl-128/s_cbrtl.c: Likewise.
45179         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
45180         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
45181         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
45182         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
45183         * sysdeps/ieee754/ldbl-128/s_expm1l.c: Likewise.
45184         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
45185         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
45186         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
45187         * sysdeps/ieee754/ldbl-128/s_fpclassifyl.c: Likewise.
45188         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
45189         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
45190         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: Likewise.
45191         * sysdeps/ieee754/ldbl-128/s_isinfl.c: Likewise.
45192         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
45193         * sysdeps/ieee754/ldbl-128/s_llrintl.c: Likewise.
45194         * sysdeps/ieee754/ldbl-128/s_llroundl.c: Likewise.
45195         * sysdeps/ieee754/ldbl-128/s_log1pl.c: Likewise.
45196         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
45197         * sysdeps/ieee754/ldbl-128/s_lrintl.c: Likewise.
45198         * sysdeps/ieee754/ldbl-128/s_lroundl.c: Likewise.
45199         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
45200         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
45201         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
45202         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
45203         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
45204         * sysdeps/ieee754/ldbl-128/s_remquol.c: Likewise.
45205         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
45206         * sysdeps/ieee754/ldbl-128/s_roundl.c: Likewise.
45207         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
45208         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
45209         * sysdeps/ieee754/ldbl-128/s_signbitl.c: Likewise.
45210         * sysdeps/ieee754/ldbl-128/s_sincosl.c: Likewise.
45211         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
45212         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
45213         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
45214         * sysdeps/ieee754/ldbl-128/s_truncl.c: Likewise.
45215         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
45216         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
45217         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
45218         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
45219         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
45220         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
45221         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
45222         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
45223         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
45224         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
45225         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
45226         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
45227         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
45228         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
45229         * sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c: Likewise.
45230         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
45231         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
45232         * sysdeps/ieee754/ldbl-128ibm/k_cosl.c: Likewise.
45233         * sysdeps/ieee754/ldbl-128ibm/k_sincosl.c: Likewise.
45234         * sysdeps/ieee754/ldbl-128ibm/k_sinl.c: Likewise.
45235         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
45236         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
45237         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Likewise.
45238         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
45239         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
45240         * sysdeps/ieee754/ldbl-128ibm/s_ctanhl.c: Likewise.
45241         * sysdeps/ieee754/ldbl-128ibm/s_ctanl.c: Likewise.
45242         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
45243         * sysdeps/ieee754/ldbl-128ibm/s_expm1l.c: Likewise.
45244         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
45245         * sysdeps/ieee754/ldbl-128ibm/s_finitel.c: Likewise.
45246         * sysdeps/ieee754/ldbl-128ibm/s_fpclassifyl.c: Likewise.
45247         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
45248         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
45249         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: Likewise.
45250         * sysdeps/ieee754/ldbl-128ibm/s_isinfl.c: Likewise.
45251         * sysdeps/ieee754/ldbl-128ibm/s_isnanl.c: Likewise.
45252         * sysdeps/ieee754/ldbl-128ibm/s_log1pl.c: Likewise.
45253         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
45254         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
45255         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
45256         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
45257         * sysdeps/ieee754/ldbl-128ibm/s_remquol.c: Likewise.
45258         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
45259         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
45260         * sysdeps/ieee754/ldbl-128ibm/s_signbitl.c: Likewise.
45261         * sysdeps/ieee754/ldbl-128ibm/s_sincosl.c: Likewise.
45262         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
45263         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
45264         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
45265         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
45266         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
45267         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
45268         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
45269         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
45270         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
45271         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
45272         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
45273         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
45274         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
45275         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
45276         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
45277         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
45278         * sysdeps/ieee754/ldbl-96/s_cbrtl.c: Likewise.
45279         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
45280         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
45281         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
45282         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
45283         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
45284         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
45285         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
45286         * sysdeps/ieee754/ldbl-96/s_fpclassifyl.c: Likewise.
45287         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
45288         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
45289         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: Likewise.
45290         * sysdeps/ieee754/ldbl-96/s_isinfl.c: Likewise.
45291         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
45292         * sysdeps/ieee754/ldbl-96/s_llrintl.c: Likewise.
45293         * sysdeps/ieee754/ldbl-96/s_llroundl.c: Likewise.
45294         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
45295         * sysdeps/ieee754/ldbl-96/s_lrintl.c: Likewise.
45296         * sysdeps/ieee754/ldbl-96/s_lroundl.c: Likewise.
45297         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
45298         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
45299         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
45300         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
45301         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
45302         * sysdeps/ieee754/ldbl-96/s_remquol.c: Likewise.
45303         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
45304         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
45305         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
45306         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
45307         * sysdeps/ieee754/ldbl-96/s_signbitl.c: Likewise.
45308         * sysdeps/ieee754/ldbl-96/s_sincosl.c: Likewise.
45309         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
45310         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
45311         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
45312         * sysdeps/ieee754/ldbl-96/s_truncl.c: Likewise.
45313         * sysdeps/ieee754/s_lib_version.c: Likewise.
45314         * sysdeps/ieee754/s_matherr.c: Likewise.
45315         * sysdeps/ieee754/s_signgam.c: Likewise.
45316         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
45317         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
45318         * sysdeps/powerpc/fpu/e_rem_pio2f.c: Likewise.
45319         * sysdeps/powerpc/fpu/k_cosf.c: Likewise.
45320         * sysdeps/powerpc/fpu/k_rem_pio2f.c: Likewise.
45321         * sysdeps/powerpc/fpu/k_sinf.c: Likewise.
45322         * sysdeps/powerpc/fpu/s_cosf.c: Likewise.
45323         * sysdeps/powerpc/fpu/s_float_bitwise.h: Likewise.
45324         * sysdeps/powerpc/fpu/s_isnan.c: Likewise.
45325         * sysdeps/powerpc/fpu/s_rint.c: Likewise.
45326         * sysdeps/powerpc/fpu/s_rintf.c: Likewise.
45327         * sysdeps/powerpc/fpu/s_sinf.c: Likewise.
45328         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
45329         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
45330         * sysdeps/powerpc/powerpc32/fpu/s_llrintf.c: Likewise.
45331         * sysdeps/powerpc/powerpc32/power4/fpu/slowexp.c: Likewise.
45332         * sysdeps/powerpc/powerpc32/power4/fpu/slowpow.c: Likewise.
45333         * sysdeps/powerpc/powerpc64/power4/fpu/slowexp.c: Likewise.
45334         * sysdeps/powerpc/powerpc64/power4/fpu/slowpow.c: Likewise.
45335         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
45336         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
45337
45338 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
45339
45340         * sunrpc/rpc_cout.c: Remove __GNU_LIBRARY__ conditionals.
45341         * sunrpc/rpc_main.c: Likewise.
45342         * sunrpc/rpc_svcout.c: Likewise.
45343
45344 2012-03-09  David S. Miller  <davem@davemloft.net>
45345
45346         * include/math_private.h: New file.
45347
45348 2012-03-09  Joseph Myers  <joseph@codesourcery.com>
45349
45350         * sysdeps/unix/sysv/linux/bits/socket_type.h: New file.
45351         * sysdeps/unix/sysv/linux/sparc/bits/socket_type.h: Likewise.
45352         * sysdeps/unix/sysv/linux/bits/socket.h: Get enum __socket_type
45353         from <bits/socket_type.h>.
45354         (enum __socket_type): Don't define here.
45355         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Remove.
45356         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
45357         bits/socket_type.h.
45358
45359         [BZ #13566]
45360         * libio/stdio.h (gets): Always declare for C++ up to C++11 without
45361         checking __USE_GNU.
45362
45363         * Makerules ($(inst_includedir)/%.h): New rule.
45364         * stdio-common/Makefile (headers): Add bits/stdio_lim.h.
45365         (install-others): Remove variable setting.
45366         ($(inst_includedir)/bits/stdio_lim.h): Remove rule.
45367
45368 2012-03-08  Richard Henderson  <rth@twiddle.net>
45369
45370         * sysdeps/powerpc/fpu/math_private.h (__ieee754_sqrt): Convert
45371         from macro to inline function; merge with the
45372         !__LIBC_INTERNAL_MATH_INLINES version.
45373         (__ieee754_sqrtf): Likewise.
45374
45375         * sysdeps/x86_64/fpu/math_private.h (__rint): Convert from macro
45376         to inline function.
45377         (__rintf, __floor, __floorf): Likewise.
45378
45379         * sysdeps/x86_64/fpu/math_private.h (__ieee754_sqrt): Convert from
45380         macro to inline function.
45381         (__ieee754_sqrtf, __ieee754_sqrtl): Likewise.
45382
45383         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>,
45384         not <math/math_private.h>.
45385
45386 2012-03-08  David S. Miller  <davem@davemloft.net>
45387
45388         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update
45389         copyright year.
45390         * sysdeps/unix/sysv/linux/sparc/sysdep.h: Likewise.
45391
45392 2012-03-08  Thomas Schwinge  <thomas@codesourcery.com>
45393
45394         * resolv/gai_misc.c (handle_requests): Fix struct timespec
45395         normalization.
45396         * rt/tst-cpuclock2.c (test_nanosleep): Likewise.
45397         * sysdeps/pthread/aio_misc.c (handle_fildes_io): Likewise.
45398
45399 2012-03-08  Ulrich Drepper  <drepper@gmail.com>
45400
45401         * stdio-common/tst-fphex.c: Various cleanups.  The macros cannot
45402         be defined individually, they must be defined as a block.  Define
45403         S for printing a string instead of hidint the different by using a
45404         macro for adding the 'l'.
45405         * stdio-common/tst-fphex-wide.c: Adjust.
45406
45407 2012-03-07  Marek Polacek  <polacek@redhat.com>
45408
45409         * stdio-common/tst-long-dbl-fphex.c: Fix test for non ldbl-96 targets.
45410
45411 2012-03-08  Marek Polacek  <polacek@redhat.com>
45412
45413         [BZ #13806]
45414         * stdio-common/Makefile (tests): Add tst-fphex-wide.
45415         * stdio-common/tst-fphex.c: Define a few macros to make the
45416         test reusable.  Use them.
45417         * stdio-common/tst-fphex-wide.c: New file.
45418
45419 2012-03-08  Joseph Myers  <joseph@codesourcery.com>
45420
45421         [BZ #6911]
45422         * manual/macros.texi (gnusystems): New macro.
45423         (nongnusystems): Likewise.
45424         (gnulinuxhurdsystems): Likewise.
45425         (gnuhurdsystems): Likewise..
45426         (gnulinuxsystems): Likewise.
45427         * manual/charset.texi: Use new macros or @theglibc{} to refer to
45428         variants of the GNU system, not "GNU system".
45429         * manual/conf.texi: Likewise.
45430         * manual/errno.texi: Likewise.  Update example of errno macro
45431         expansion.
45432         * manual/filesys.texi: Likewise.
45433         (getumask): Document as specific to GNU/Hurd.
45434         * manual/install.texi: Likewise.  Reword some references to
45435         GNU/Linux.
45436         * manual/intro.texi: Likewise.
45437         * manual/io.texi: Likewise.
45438         (File Name Portability): Detail which constraints are inapplicable
45439         to all GNU systems and which are only inapplicable to GNU/Hurd.
45440         * manual/job.texi: Likewise.
45441         * manual/llio.texi: Likewise.
45442         (O_NOCTTY): Document as present on GNU/Linux.
45443         * manual/maint.texi: Likewise.
45444         * manual/memory.texi: Likewise.
45445         * manual/pattern.texi: Likewise.
45446         * manual/pipe.texi: Likewise.
45447         * manual/process.texi: Likewise.
45448         * manual/resource.texi: Likewise.
45449         (RUSAGE_CHILDREN): Remove statement about specifying a particular
45450         child on GNU/Hurd.
45451         * manual/setjmp.texi: Likewise.
45452         * manual/signal.texi: Likewise.
45453         * manual/startup.texi: Likewise.
45454         * manual/stdio.texi: Likewise.
45455         * manual/terminal.texi: Likewise.
45456         (ONLCR): Document as POSIX.
45457         (OXTABS): Document availability on GNU/Linux as XTABS.
45458         (ONOEOT): Document availability separately from other bits.
45459         (VLNEXT, VDISCARD, VSTATUS): Document availability individually.
45460         * manual/time.texi: Likewise.
45461         * manual/users.texi: Likewise.
45462         * INSTALL: Regenerated.
45463         * sysdeps/gnu/errlist.c: Regenerated.
45464
45465         * aclocal.m4 (LIBC_TRY_LINK_STATIC): New macro.
45466         * configure.in (libc_cv_preinit_array): Use LIBC_TRY_LINK_STATIC.
45467         (libc_cv_ctors_header): Likewise.  Use asm ("") instead of calling
45468         puts.
45469         * configure: Regenerated.
45470
45471 2012-03-07  Joseph Myers  <joseph@codesourcery.com>
45472
45473         * sysdeps/i386/configure.in (cpuid.h): Use AC_CHECK_HEADER with no
45474         default includes instead of AC_HEADER_CHECK.
45475         * sysdeps/i386/configure: Regenerated.
45476
45477         [BZ #10716]
45478         * math/s_cacosh.c (__cacosh): Convert negative log results to 0.
45479         * math/s_cacoshf.c (__cacoshf): Likewise.
45480         * math/s_cacoshl.c (__cacoshl): Likewise.
45481         * math/s_casinh.c (__casinh): Set signs of result from argument.
45482         * math/s_casinhf.c (__casinhf): Likewise.
45483         * math/s_casinhl.c (__casinhl): Likewise.
45484         * math/libm-test.inc (cacos_test, cacosh_test, casin_test)
45485         (casinh_test): Add more tests.
45486         * sysdeps/i386/fpu/libm-test-ulps: Update.
45487         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45488
45489 2012-03-07  Ulrich Drepper  <drepper@gmail.com>
45490
45491         * po/zh_TW.po: Update from translation team.
45492
45493         * login/Makefile (distribute): Remove variable.
45494         * catgets/Makefile: Likewise.
45495         * mach/Makefile: Likewise.
45496         * malloc/Makefile: Likewise.
45497         * misc/Makefile: Likewise.
45498         * iconv/Makefile: Likewise.
45499         * nscd/Makefile: Likewise.
45500         * hurd/Makefile: Likewise.
45501         * manual/Makefile: Likewise.
45502         * locale/Makefile: Likewise.
45503         * intl/Makefile: Likewise.
45504         * conform/Makefile: Likewise.
45505         * nss/Makefile: Likewise.
45506         * time/Makefile: Likewise.
45507         * soft-fp/Makefile: Likewise.
45508         * dirent/Makefile: Likewise.
45509         * gmon/Makefile: Likewise.
45510         * po/Makefile: Likewise.
45511         * rt/Makefile: Likewise.
45512         * socket/Makefile: Likewise.
45513         * math/Makefile: Likewise.
45514         * signal/Makefile: Likewise.
45515         * debug/Makefile: Likewise.
45516         * elf/Makefile: Likewise.
45517         * timezone/Makefile: Likewise.
45518         * stdlib/Makefile: Likewise.
45519         * iconvdata/Makefile: Likewise.
45520         * sunrpc/Makefile: Likewise.
45521         * io/Makefile: Likewise.
45522         * argp/Makefile: Likewise.
45523         * inet/Makefile: Likewise.
45524         * hesiod/Makefile: Likewise.
45525         * grp/Makefile: Likewise.
45526         * csu/Makefile: Likewise.
45527         * wctype/Makefile: Likewise.
45528         * crypt/Makefile: Likewise.
45529         * libio/Makefile: Likewise.
45530         * string/Makefile: Likewise.
45531         * nis/Makefile: Likewise.
45532         * resolv/Makefile: Likewise.
45533         * stdio-common/Makefile: Likewise.
45534         * wcsmbs/Makefile: Likewise.
45535         * dlfcn/Makefile: Likewise.
45536         * posix/Makefile: Likewise.
45537
45538         [BZ #6959]
45539         * timezone/Makefile: Don't install timezone files, just the programs
45540         and scripts.
45541
45542 2012-03-06  Ulrich Drepper  <drepper@gmail.com>
45543
45544         * nss/databases.def: Add missing gshadow entry.
45545
45546         * stdio-common/vfprintf.c: Fix formatting.  Missing copyright update.
45547
45548 2012-03-06  Marek Polacek  <polacek@redhat.com>
45549
45550         [BZ #13726]
45551         * sysdeps/ieee754/ldbl-96/printf_fphex.c: Adjust position of wnumstr.
45552         * sysdeps/x86_64/fpu/printf_fphex.c: Likewise.
45553         * stdio-common/Makefile (tests): Add tst-long-dbl-fphex.
45554         * stdio-common/tst-long-dbl-fphex.c: New file.
45555
45556 2012-03-06  David S. Miller  <davem@davemloft.net>
45557
45558         * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
45559         (set_obp_int): New function.
45560         (get_obp_int): New function.
45561         (__get_clockfreq_via_dev_openprom): Likewise.
45562         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INTERNAL_SYSCALL_ERROR_P):
45563         Avoid unused variable warnings on 'val' and use builtin_expect.
45564         (INLINE_SYSCALL): Don't wrap INTERNAL_SYSCALL_ERROR_P with
45565         __builtin_expect.
45566         (INLINE_CLONE_SYSCALL): Likewise.
45567
45568 2012-03-05  David S. Miller  <davem@davemloft.net>
45569
45570         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45571
45572 2012-03-05  Andreas Schwab  <schwab@linux-m68k.org>
45573
45574         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45575
45576         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Drop exp(-x) term
45577         only for |x| >= 40.
45578         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
45579
45580 2012-03-05  H.J. Lu  <hongjiu.lu@intel.com>
45581
45582         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c (gettimeofday_ifunc):
45583         Replace gettimeofday with __vdso_gettimeofday.
45584
45585         * sysdeps/unix/sysv/linux/x86_64/init-first.c
45586         (_libc_vdso_platform_setup): Replace clock_gettime and getcpu with
45587         __vdso_clock_gettime and __vdso_getcpu.
45588
45589         * sysdeps/unix/sysv/linux/x86_64/time.c (time_ifunc): Replace
45590         time with __vdso_time.
45591
45592 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
45593
45594         * manual/lang.texi (size_t): Note types to which size_t may be
45595         equivalent with the GNU C Library, but do not describe when
45596         differences between them are significant.
45597
45598 2012-03-05  Andreas Jaeger  <aj@suse.de>
45599
45600         * sysdeps/i386/fpu/libm-test-ulps: Update.
45601
45602 2012-03-05  Joseph Myers  <joseph@codesourcery.com>
45603
45604         [BZ #3976]
45605         * sysdeps/ieee754/dbl-64/e_pow.c: Include <fenv.h>.
45606         (__ieee754_pow): Save and restore rounding mode and use
45607         round-to-nearest for main computations.
45608         * math/libm-test.inc (pow_test_tonearest): New function.
45609         (pow_test_towardzero): Likewise.
45610         (pow_test_downward): Likewise.
45611         (pow_test_upward): Likewise.
45612         (main): Call the new functions.
45613         * sysdeps/i386/fpu/libm-test-ulps: Update.
45614         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45615
45616         [BZ #3976]
45617         * math/libm-test.inc (cosh_test_tonearest): New function.
45618         (cosh_test_towardzero): Likewise.
45619         (cosh_test_downward): Likewise.
45620         (cosh_test_upward): Likewise.
45621         (sinh_test_tonearest): Likewise.
45622         (sinh_test_towardzero): Likewise.
45623         (sinh_test_downward): Likewise.
45624         (sinh_test_upward): Likewise.
45625         (main): Call the new functions.
45626         * sysdeps/i386/fpu/libm-test-ulps: Update.
45627         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45628
45629 2012-03-05  Tom de Vries  <tom@codesourcery.com>
45630
45631         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Ensure
45632         default stack guard is set in last bytes.
45633         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Same.
45634
45635 2012-03-05  Kees Cook  <keescook@chromium.org>
45636
45637         * stdio-common/vfprintf.c (vfprintf): add missing errno settings.
45638
45639         [BZ #13656]
45640         * stdio-common/vfprintf.c (vfprintf): Check for nargs overflow and
45641         possibly allocate from heap instead of stack.
45642         * stdio-common/bug-vfprintf-nargs.c: New file.
45643         * stdio-common/Makefile (tests): Add nargs overflow test.
45644
45645 2012-03-03  Andreas Schwab  <schwab@linux-m68k.org>
45646
45647         * sysdeps/powerpc/fpu/libm-test-ulps: Update.
45648
45649 2012-03-03  Marek Polacek  <polacek@redhat.com>
45650
45651         * include/sys/cdefs.h: Remove __GNUC_PREREQ macro.
45652         * math/math_private.h: Likewise.
45653         * stdlib/tst-strtod.c: Likewise.
45654         * sysdeps/i386/i486/bits/atomic.h: Likewise.
45655         * sysdeps/x86_64/bits/atomic.h: Likewise.
45656
45657 2012-03-02  David S. Miller  <davem@davemloft.net>
45658
45659         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrint.S: New file.
45660         * sysdeps/sparc/sparc32/sparcv9/fpu/s_llrintf.S: New file.
45661         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrint.S: New file.
45662         * sysdeps/sparc/sparc32/sparcv9/fpu/s_lrintf.S: New file.
45663         * sysdeps/sparc/sparc64/fpu/s_llrint.S: New file.
45664         * sysdeps/sparc/sparc64/fpu/s_llrintf.S: New file.
45665         * sysdeps/sparc/sparc64/fpu/s_lrint.S: New file.
45666         * sysdeps/sparc/sparc64/fpu/s_lrintf.S: New file.
45667
45668 2012-03-02  Roland McGrath  <roland@hack.frob.com>
45669
45670         [BZ #13792]
45671         * manual/examples/README: New file, says the example source files
45672         can be used under GPL>=2.
45673         * manual/Makefile (%.c.texi): Eat the leading part of the file until a
45674         line containing just "*/".
45675         * manual/examples/add.c: Add copyright header (GPL>=2).
45676         * manual/examples/argp-ex1.c: Likewise.
45677         * manual/examples/argp-ex2.c: Likewise.
45678         * manual/examples/argp-ex3.c: Likewise.
45679         * manual/examples/argp-ex4.c: Likewise.
45680         * manual/examples/atexit.c: Likewise.
45681         * manual/examples/db.c: Likewise.
45682         * manual/examples/dir.c: Likewise.
45683         * manual/examples/dir2.c: Likewise.
45684         * manual/examples/execinfo.c: Likewise.
45685         * manual/examples/filecli.c: Likewise.
45686         * manual/examples/filesrv.c: Likewise.
45687         * manual/examples/fmtmsgexpl.c: Likewise.
45688         * manual/examples/genpass.c: Likewise.
45689         * manual/examples/inetcli.c: Likewise.
45690         * manual/examples/inetsrv.c: Likewise.
45691         * manual/examples/isockad.c: Likewise.
45692         * manual/examples/longopt.c: Likewise.
45693         * manual/examples/memopen.c: Likewise.
45694         * manual/examples/memstrm.c: Likewise.
45695         * manual/examples/mkfsock.c: Likewise.
45696         * manual/examples/mkisock.c: Likewise.
45697         * manual/examples/mygetpass.c: Likewise.
45698         * manual/examples/pipe.c: Likewise.
45699         * manual/examples/popen.c: Likewise.
45700         * manual/examples/rprintf.c: Likewise.
45701         * manual/examples/search.c: Likewise.
45702         * manual/examples/select.c: Likewise.
45703         * manual/examples/setjmp.c: Likewise.
45704         * manual/examples/sigh1.c: Likewise.
45705         * manual/examples/sigusr.c: Likewise.
45706         * manual/examples/stpcpy.c: Likewise.
45707         * manual/examples/strdupa.c: Likewise.
45708         * manual/examples/strftim.c: Likewise.
45709         * manual/examples/strncat.c: Likewise.
45710         * manual/examples/subopt.c: Likewise.
45711         * manual/examples/swapcontext.c: Likewise.
45712         * manual/examples/termios.c: Likewise.
45713         * manual/examples/testopt.c: Likewise.
45714         * manual/examples/testpass.c: Likewise.
45715         * manual/examples/timeval_subtract.c: Likewise.
45716
45717         [BZ #13792]
45718         * manual/time.texi (Elapsed Time): Move timeval_subtract example
45719         function to ...
45720         * manual/timeval_subtract.c.texi: ... here, new file.
45721
45722 2012-03-02  David S. Miller  <davem@davemloft.net>
45723
45724         * sysdeps/sparc/fpu/libm-test-ulps: Update for recently added tests.
45725
45726 2012-03-02  Joseph Myers  <joseph@codesourcery.com>
45727
45728         [BZ #3976]
45729         * sysdeps/ieee754/dbl-64/s_sin.c: Include <fenv.h>
45730         (__sin): Save and restore rounding mode and use round-to-nearest
45731         for all computations.
45732         (__cos): Save and restore rounding mode and use round-to-nearest
45733         for all computations.
45734         * sysdeps/ieee754/dbl-64/s_tan.c: Include "math_private.h" and
45735         <fenv.h>.
45736         (tan): Save and restore rounding mode and use round-to-nearest for
45737         all computations.
45738         * math/libm-test.inc (cos_test_tonearest): New function.
45739         (cos_test_towardzero): Likewise.
45740         (cos_test_downward): Likewise.
45741         (cos_test_upward): Likewise.
45742         (sin_test_tonearest): Likewise.
45743         (sin_test_towardzero): Likewise.
45744         (sin_test_downward): Likewise.
45745         (sin_test_upward): Likewise.
45746         (tan_test_tonearest): Likewise.
45747         (tan_test_towardzero): Likewise.
45748         (tan_test_downward): Likewise.
45749         (tan_test_upward): Likewise.
45750         (main): Call the new functions.
45751         * sysdeps/i386/fpu/libm-test-ulps: Update.
45752         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45753
45754         [BZ #10135]
45755         * sysdeps/ieee754/dbl-64/s_scalbln.c (__scalbln): First test for
45756         small n, then large n, before computing and testing k+n.
45757         * sysdeps/ieee754/dbl-64/s_scalbn.c (__scalbn): Likewise.
45758         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c (__scalbln):
45759         Likewise.
45760         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c (__scalbn):
45761         Likewise.
45762         * sysdeps/ieee754/flt-32/s_scalblnf.c (__scalblnf): Likewise.
45763         * sysdeps/ieee754/flt-32/s_scalbnf.c (__scalbnf): Likewise.
45764         * sysdeps/ieee754/ldbl-128/s_scalblnl.c (__scalblnl): Likewise.
45765         * sysdeps/ieee754/ldbl-128/s_scalbnl.c (__scalbnl): Likewise.
45766         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c (__scalblnl): Likewise.
45767         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c (__scalbnl): Likewise.
45768         * sysdeps/ieee754/ldbl-96/s_scalblnl.c (__scalblnl): Likewise.
45769         * sysdeps/ieee754/ldbl-96/s_scalbnl.c (__scalbnl): Likewise.
45770         * math/libm-test.inc (scalbn_test): Add more tests.
45771         (scalbln_test): Likewise.
45772
45773         * manual/filesys.texi (mode_t): Describe constraints on size and
45774         signedness, not exact equivalence to a particular type.
45775         (ino_t): Likewise.
45776         (ino64_t): Likewise.
45777         (dev_t): Likewise.
45778         (nlink_t): Likewise.
45779         (blkcnt_t): Likewise.
45780         (blkcnt64_t): Likewise.
45781         * manual/llio.texi (off_t): Likewise.
45782
45783         [BZ #3976]
45784         * sysdeps/ieee754/dbl-64/e_exp.c: Include <fenv.h>.
45785         (__ieee754_exp): Save and restore rounding mode and use
45786         round-to-nearest for all computations.
45787         * math/libm-test.inc (exp_test_tonearest): New function.
45788         (exp_test_towardzero): Likewise.
45789         (exp_test_downward): Likewise.
45790         (exp_test_upward): Likewise.
45791         (main): Call the new functions.
45792         * sysdeps/i386/fpu/libm-test-ulps: Update.
45793         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45794
45795 2012-03-01  Chris Demetriou  <cgd@google.com>
45796
45797         * sysdeps/gnu/errlist-compat.awk: Don't depend on AWK internals to
45798         have predictable order.
45799
45800 2012-03-01  David S. Miller  <davem@davemloft.net>
45801
45802         * sysdeps/unix/sysv/linux/sparc/sparc32/getpagesize.c: Delete.
45803
45804         * sysdeps/sparc/sparc64/fpu/s_finite.S: New file.
45805         * sysdeps/sparc/sparc64/fpu/s_finitef.S: New file.
45806         * sysdeps/sparc/sparc64/fpu/s_isinf.S: New file.
45807         * sysdeps/sparc/sparc64/fpu/s_isinff.S: New file.
45808
45809         * sysdeps/sparc/sparc32/fpu/s_signbit.S: New file.
45810         * sysdeps/sparc/sparc32/fpu/s_signbitf.S: New file.
45811         * sysdeps/sparc/sparc32/fpu/s_signbitl.S: New file.
45812         * sysdeps/sparc/sparc32/sparcv9/fpu/s_isnan.S: New file.
45813         * sysdeps/sparc/sparc64/fpu/s_isnan.S: New file.
45814         * sysdeps/sparc/sparc64/fpu/s_isnanf.S: New file.
45815         * sysdeps/sparc/sparc64/fpu/s_signbit.S: New file.
45816         * sysdeps/sparc/sparc64/fpu/s_signbitf.S: New file.
45817         * sysdeps/sparc/sparc64/fpu/s_signbitl.S: New file.
45818
45819         * sysdeps/sparc/fpu/libm-test-ulps: Update.
45820
45821         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Move...
45822         * sysdeps/sparc/fpu/libm-test-ulps: to here.
45823         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Delete.
45824
45825         * sysdeps/sparc/crti.S: Remove HAVE_BINUTILS_GOTDATA checks.
45826         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
45827         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
45828         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: Likewise.
45829         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: Likewise.
45830         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: Likewise.
45831         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: Likewise.
45832         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
45833         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
45834         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: Likewise.
45835         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: Likewise.
45836         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
45837         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
45838         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
45839         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
45840         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
45841         * config.h.in (HAVE_BINUTILS_GOTDATA): Delete.
45842         * sysdeps/sparc/elf/configure.in: Remove binutils GOTDATA checks.
45843         * sysdeps/sparc/elf/configure: Regenerated.
45844
45845 2012-03-01  Joseph Myers  <joseph@codesourcery.com>
45846
45847         * configure.in (AS, LD): Require binutils 2.20 or later.
45848         * configure: Regenerated.
45849         * manual/install.texi (Tools for Compilation): Give binutils 2.20
45850         as required minimum version.
45851         * INSTALL: Regenerated.
45852
45853         [BZ #2541]
45854         [BZ #4108]
45855         * sysdeps/ieee754/flt-32/s_erff.c (__erfcf): Mask out one more bit
45856         before squaring exponent.
45857         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c (__erfcl): Mask out whole
45858         bottom long double and 27 bits of top long double before squaring
45859         exponent.
45860         * math/libm-test.inc (erfc_test): Add more tests.
45861         * sysdeps/i386/fpu/libm-test-ulps: Update.
45862         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
45863         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45864
45865 2012-03-01  Kai Tietz  <ktietz@redhat.com>
45866
45867         * soft-fp/soft-fp.h (_FP_STRUCT_LAYOUT): New macro.
45868         * soft-fp/quad.h (_FP_UNION_Q): Use _FP_STRUCT_LAYOUT on struct
45869         containing bit-fields.
45870         * soft-fp/extended.h (_FP_UNION_E): Likewise.
45871         * soft-fp/single.h (_FP_UNION_S): Likewise.
45872         * soft-fp/double.h (_FP_UNION_D): Likewise.
45873
45874 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
45875
45876         [BZ #13786]
45877         * sysdeps/i386/i686/multiarch/strcmp.S [USE_AS_STRCASECMP_L]: Do
45878         not include ../strcmp.S.
45879         [USE_AS_STRNCASECMP_L]: Likewise.
45880         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c
45881         (__strcasecmp_l_ia32): Define as alias to __strcasecmp_l_nonascii.
45882         * sysdeps/i386/i686/multiarch/strncase_l-c.c
45883         (__strncasecmp_l_ia32): Define as alias to
45884         __strncasecmp_l_nonascii.
45885
45886         [BZ #5794]
45887         * math/libm-test.inc (expm1_test): Add test for bug 5794.
45888         * sysdeps/i386/fpu/libm-test-ulps: Update.
45889         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45890
45891         * sysdeps/i386/fpu/libm-test-ulps: Reduce some expected errors.
45892         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
45893
45894 2012-02-29  Jeff Law  <law@redhat.com>
45895
45896         * resolv/res_query.c (__libc_res_nquerydomain): Avoid
45897         out of bounds read.
45898
45899 2012-02-29  Marek Polacek  <polacek@redhat.com>
45900
45901         [BZ #13706]
45902         * elf/rtld.c (dl_main): Always set l_used to 1 for vDSO.
45903         * elf/Makefile: Add rules to run tst-unused-dep.out.
45904
45905 2012-02-28  David S. Miller  <davem@davemloft.net>
45906
45907         * sysdeps/sparc/sparc32/fpu/w_sqrt.S: New file.
45908         * sysdeps/sparc/sparc32/fpu/w_sqrtf.S: New file.
45909         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrt.S: New file.
45910         * sysdeps/sparc/sparc32/sparcv9/fpu/w_sqrtf.S: New file.
45911         * sysdeps/sparc/sparc64/fpu/w_sqrt.S: New file.
45912         * sysdeps/sparc/sparc64/fpu/w_sqrtf.S: New file.
45913
45914 2012-02-29  Joseph Myers  <joseph@codesourcery.com>
45915
45916         * math/libm-test.inc (llround_test): Move one test from
45917         lround_test.  Use TEST_f_L in moved test.
45918         (lround_test): Move misplaced test to llround_test.  Add testcase
45919         from bug 2561.
45920
45921 2012-02-28  Ulrich Drepper  <drepper@gmail.com>
45922
45923         * sysdeps/x86_64/fpu/e_expf.S: New file.
45924         Contributed by Dmitrieva Liubov <liubov.dmitrieva@gmail.com>.
45925
45926 2012-02-28  Stanislav Brabec  <sbrabec@suse.cz>
45927
45928         [BZ #13637]
45929         * posix/regex_internal.c (re_string_skip_chars): Fix miscomputation
45930         of remain_len that may cause incomplete multi-byte character and
45931         false match.
45932         * posix/bug-regex33.c: New file.
45933         * posix/Makefile (tests): Add bug-regex33.
45934
45935 2012-02-28  Joseph Myers  <joseph@codesourcery.com>
45936
45937         * manual/macros.texi: New file.
45938         * Makefile (INSTALL, NOTES): Depend on manual/macros.texi.
45939         * manual/libc.texinfo: Include macros.texi.
45940         * manual/creatute.texi: Likewise.
45941         * manual/install.texi: Likewise.
45942         * manual/arith.texi: Use macros @Theglibc{}, @theglibc{} and
45943         @glibcadj{} in references to the GNU C Library.
45944         * manual/charset.texi: Likewise.
45945         * manual/conf.texi: Likewise.
45946         * manual/contrib.texi: Likewise.  Consistently use "GNU C Library"
45947         when not using those macros.
45948         * manual/creature.texi: Likewise.
45949         * manual/crypt.texi: Likewise.
45950         * manual/errno.texi: Likewise.
45951         * manual/filesys.texi: Likewise.
45952         * manual/header.texi: Likewise.
45953         * manual/install.texi: Likewise.
45954         * manual/intro.texi: Likewise.
45955         * manual/io.texi: Likewise.
45956         * manual/job.texi: Likewise.
45957         * manual/lang.texi: Likewise.
45958         * manual/libc.texiinfo: Likewise.
45959         * manual/llio.texi: Likewise.
45960         * manual/locale.texi: Likewise.
45961         * manual/maint.texi: Likewise.
45962         * manual/math.texi: Likewise.
45963         * manual/memory.texi: Likewise.
45964         * manual/message.texi: Likewise.
45965         * manual/nss.texi: Likewise.
45966         * manual/pattern.texi: Likewise.
45967         * manual/process.texi: Likewise.
45968         * manual/resource.texi: Likewise.
45969         * manual/search.texi: Likewise.
45970         * manual/setjmp.texi: Likewise.
45971         * manual/signal.texi: Likewise.
45972         * manual/socket.texi: Likewise.
45973         * manual/startup.texi: Likewise.
45974         * manual/stdio.texi: Likewise.
45975         * manual/string.texi: Likewise.
45976         * manual/sysinfo.texi: Likewise.
45977         * manual/syslog.texi: Likewise.
45978         * manual/terminal.texi: Likewise.
45979         * manual/time.texi: Likewise.
45980         * manual/users.texi: Likewise.
45981         * INSTALL: Regenerated.
45982         * NOTES: Regenerated.
45983         * sysdeps/gnu/errlist.c: Regenerated.
45984
45985 2012-02-28  Andreas Schwab  <schwab@linux-m68k.org>
45986
45987         * include/dirent.h: Include <dirstream.h> before
45988         <dirent/dirent.h>.
45989
45990 2012-02-28  David S. Miller  <davem@davemloft.net>
45991
45992         * sysdeps/sparc/sparc32/fpu/s_copysign.S: New file.
45993         * sysdeps/sparc/sparc32/fpu/s_copysignf.S: New file.
45994         * sysdeps/sparc/sparc64/fpu/s_copysign.S: New file.
45995         * sysdeps/sparc/sparc64/fpu/s_copysignf.S: New file.
45996
45997 2012-02-27  David S. Miller  <davem@davemloft.net>
45998
45999         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floor.S: New file.
46000         * sysdeps/sparc/sparc32/sparcv9/fpu/s_floorf.S: New file.
46001         * sysdeps/sparc/sparc64/fpu/s_floor.S: New file.
46002         * sysdeps/sparc/sparc64/fpu/s_floorf.S: New file.
46003
46004         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix accidental use of
46005         frame pointer instead of stack pointer relative arg slot.
46006         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
46007         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
46008         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
46009
46010 2012-02-27  Carlos O'Donell  <carlos_odonell@mentor.com>
46011
46012         [BZ #3992]
46013         * stdlib/fmtmsg.c: Use of uint32_t requires stdint.h.
46014
46015 2012-02-27  David S. Miller  <davem@davemloft.net>
46016
46017         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: Fix comment formatting.
46018         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: Likewise.
46019         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: Likewise.
46020         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: Likewise.
46021         * sysdeps/sparc/sparc64/fpu/s_ceil.S: Likewise.
46022         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: Likewise.
46023         * sysdeps/sparc/sparc64/fpu/s_rint.S: Likewise.
46024         * sysdeps/sparc/sparc64/fpu/s_rintf.S: Likewise.
46025
46026 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
46027
46028         * configure.in (CC): Restrict allowed GCC versions to 4.3 and
46029         later.  Allow versions 5-9.
46030         * configure: Regenerated.
46031         * manual/install.texi (Tools for Compilation): Give GCC 4.3 as
46032         required minimum version and 4.6 as recommended version.  Do not
46033         mention bugs in GCC 2.7 and 2.8.
46034         * INSTALL: Regenerated.
46035
46036 2012-02-27  David S. Miller  <davem@davemloft.net>
46037
46038         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceil.S: New file.
46039         * sysdeps/sparc/sparc32/sparcv9/fpu/s_ceilf.S: New file.
46040         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rint.S: New file.
46041         * sysdeps/sparc/sparc32/sparcv9/fpu/s_rintf.S: New file.
46042         * sysdeps/sparc/sparc64/fpu/s_ceil.S: New file.
46043         * sysdeps/sparc/sparc64/fpu/s_ceilf.S: New file.
46044         * sysdeps/sparc/sparc64/fpu/s_rint.S: New file.
46045         * sysdeps/sparc/sparc64/fpu/s_rintf.S: New file.
46046
46047         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Do not
46048         manipulate bits before adding and subtracting TWO112[sx].
46049         * sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
46050
46051 2012-02-27  Roland McGrath  <roland@hack.frob.com>
46052
46053         [BZ #13775]
46054         * libio/bits/stdio-ldbl.h (vdprintf, dprintf): Put these under
46055         [__USE_XOPEN2K8] rather than [__USE_GNU], to match the stdio.h decls.
46056         * libio/stdio.h (vdprintf, dprintf): Remove comment about these not
46057         being in POSIX, because they are in 1003.1-2008.
46058
46059         * rt/tst-aio.c: Include <fcntl.h>.
46060         * rt/tst-aio7.c: Likewise.
46061         * rt/tst-aio64.c: Likewise.
46062
46063         * stdio-common/tst-fmemopen.c (main): Remove spurious const.
46064
46065 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
46066
46067         * manual/install.texi (--with-headers): Describe headers as
46068         interface headers, not private headers.
46069         (Specific advice for GNU/Linux systems): Describe use of headers
46070         from "make headers_install", not private headers from older
46071         kernels.
46072         * INSTALL: Regenerated.
46073         * sysdeps/unix/sysv/linux/configure.in (LIBC_LINUX_VERSION):
46074         Change to 2.6.19.
46075         * sysdeps/unix/sysv/linux/configure: Regenerated.
46076
46077         * manual/llio.texi (fclean): Remove documentation.
46078
46079         * manual/Makefile (libc-texi-generated): New variable.  Include
46080         version.texi.
46081         (libc.dvi, libc.pdf, libc.info, libc/index.html): Depend on
46082         $(libc-texi-generated), not duplicated list of files.
46083         (version.texi, stamp-version): New rules.
46084         (realclean): Remove $(libc-texi-generated), not individual files
46085         from that list.  Do not remove dir-add.texinfo.
46086         * manual/libc.texinfo: Comment out uses of edition numbers and
46087         references to printed manual.  Remove last-updated dates.
46088         (EDITION): Comment out.
46089         (ISBN): Likewise.
46090         (VERSION, UPDATED): Remove.
46091         (version.texi): Include.
46092
46093 2012-02-27  Andreas Schwab  <schwab@linux-m68k.org>
46094
46095         * sysdeps/posix/spawni.c: Include <signal.h>.
46096         * sysdeps/pthread/aio_cancel.c: Include <fcntl.h>.
46097         * sysdeps/pthread/aio_fsync.c: Likewise.
46098
46099 2012-02-26  Ulrich Drepper  <drepper@gmail.com>
46100
46101         * conform/Makefile (tests): Run only when not cross-compiling and
46102         when fast-check is not defined.
46103
46104         * conform/conformtest.pl: XPG7 and POSIX2008 require C99.
46105         * conform/data/limits.h-data: Fixes for POSIX2008.
46106         * conform/run-conformtest.sh: Run all tests.
46107         * include/arpa/inet.h: Changes to allow conformtest.pl to use the
46108         headers.
46109         * include/bits/dlfcn.h: Likewise.
46110         * include/langinfo.h: Likewise.
46111         * include/monetary.h: Likewise.
46112         * include/sys/poll.h: Likewise.
46113
46114         * io/fcntl.h: Define AT_NO_AUTOMOUNT and AT_EMPTY_PATH only
46115         for __USE_GNU.
46116         * posix/spawn.h: Define __need_sigset_t.
46117         * posix/sys/wait.h: Don't include <sys/resource.h>, define id_t here.
46118         * posix/unistd.h: Declare ctermid only for XPG before XPG6.
46119         * rt/aio.h: Don't include fcntl.h and signal.h.  Use bits/siginfo.h
46120         to get sigevent_t only.
46121         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg and recvmmsg
46122         only for __USE_GNU.
46123         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
46124         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
46125         process_vm_writev only for __USE_GNU.
46126         * termios/termios.h: Declare tcgetsid also for POSIX2008.
46127
46128         * conform/Makefile: For now ignore errors from run-conformtest.
46129         * conform/conformtest.pl: Simplify code.  Add -ansi to CFLAGS for
46130         POSIX to avoid namespace pollution.  Don't prepend headers.
46131         * conform/data/aio.h-data: Fixes for POSIX testing.
46132         * conform/data/fcntl.h-data: Likewise.
46133         * conform/data/glob.h-data: Likewise.
46134         * conform/data/grp.h-data: Likewise.
46135         * conform/data/pthread.h-data: Likewise.
46136         * conform/data/pwd.h-data: Likewise.
46137         * conform/data/signal.h-data: Likewise.
46138         * conform/data/spawn.h-data: Likewise.
46139         * conform/data/stdio.h-data: Likewise.
46140         * conform/data/stdlib.h-data: Likewise.
46141         * conform/data/stropts.h-data: Likewise.
46142         * conform/data/sys/mman.h-data: Likewise.
46143         * conform/data/sys/stat.h-data: Likewise.
46144         * conform/data/sys/types.h-data: Likewise.
46145         * conform/data/sys/wait.h-data: Likewise.
46146         * conform/data/time.h-data: Likewise.
46147         * conform/data/unistd.h-data: Likewise.
46148         * conform/data/utime.h-data: Likewise.
46149
46150         * io/sys/stat.h: fchmod was always in POSIX.
46151         * posix/sys/wait.h: Include <sys/resource.h> only for waitid.
46152         * posix/unistd.h: fsync and ftruncate were in early POSIX as well.
46153         * rt/aio.h: Define __need_timespec before including <time.h>.
46154         * sysdeps/unix/sysv/linux/bits/siginfo.h: Don't name siginfo_t
46155         struct.  Add forward declaration of pthread_attr_t and use it in
46156         sigevent.
46157         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
46158         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
46159         * sysdeps/unix/sysv/linux/bits/time.h: Don't let __STRICT_ANSI__
46160         always remove CLK_TCK definition.
46161
46162 2012-02-26  Andreas Schwab  <schwab@linux-m68k.org>
46163
46164         * sysdeps/ieee754/dbl-64/k_tan.c: Replace with empty file.
46165
46166 2012-02-25  Ulrich Drepper  <drepper@gmail.com>
46167
46168         * conform/run-conformtest.sh: New file.
46169         * conform/Makefile: Run run-conformtest for tests.
46170         * conform/conformtest.pl: Many bug fixes.  Add ISO C99, ISO C11
46171         support.
46172
46173         * conform/data/uchar.h-data: New file.
46174         * conform/data/aio.h-data: Fixes for ISO C and POSIX 1995 testing.
46175         * conform/data/arpa/inet.h-data: Likewise.
46176         * conform/data/assert.h-data: Likewise.
46177         * conform/data/complex.h-data: Likewise.
46178         * conform/data/cpio.h-data: Likewise.
46179         * conform/data/ctype.h-data: Likewise.
46180         * conform/data/dirent.h-data: Likewise.
46181         * conform/data/dlfcn.h-data: Likewise.
46182         * conform/data/errno.h-data: Likewise.
46183         * conform/data/fcntl.h-data: Likewise.
46184         * conform/data/float.h-data: Likewise.
46185         * conform/data/fmtmsg.h-data: Likewise.
46186         * conform/data/fnmatch.h-data: Likewise.
46187         * conform/data/ftw.h-data: Likewise.
46188         * conform/data/glob.h-data: Likewise.
46189         * conform/data/grp.h-data: Likewise.
46190         * conform/data/iconv.h-data: Likewise.
46191         * conform/data/inttypes.h-data: Likewise.
46192         * conform/data/langinfo.h-data: Likewise.
46193         * conform/data/libgen.h-data: Likewise.
46194         * conform/data/limits.h-data: Likewise.
46195         * conform/data/locale.h-data: Likewise.
46196         * conform/data/math.h-data: Likewise.
46197         * conform/data/monetary.h-data: Likewise.
46198         * conform/data/mqueue.h-data: Likewise.
46199         * conform/data/ndbm.h-data: Likewise.
46200         * conform/data/net/if.h-data: Likewise.
46201         * conform/data/netdb.h-data: Likewise.
46202         * conform/data/netinet/in.h-data: Likewise.
46203         * conform/data/nl_types.h-data: Likewise.
46204         * conform/data/poll.h-data: Likewise.
46205         * conform/data/pthread.h-data: Likewise.
46206         * conform/data/pwd.h-data: Likewise.
46207         * conform/data/regex.h-data: Likewise.
46208         * conform/data/sched.h-data: Likewise.
46209         * conform/data/search.h-data: Likewise.
46210         * conform/data/semaphore.h-data: Likewise.
46211         * conform/data/setjmp.h-data: Likewise.
46212         * conform/data/signal.h-data: Likewise.
46213         * conform/data/spawn.h-data: Likewise.
46214         * conform/data/stdarg.h-data: Likewise.
46215         * conform/data/stdio.h-data: Likewise.
46216         * conform/data/stdlib.h-data: Likewise.
46217         * conform/data/string.h-data: Likewise.
46218         * conform/data/strings.h-data: Likewise.
46219         * conform/data/stropts.h-data: Likewise.
46220         * conform/data/sys/ipc.h-data: Likewise.
46221         * conform/data/sys/mman.h-data: Likewise.
46222         * conform/data/sys/msg.h-data: Likewise.
46223         * conform/data/sys/resource.h-data: Likewise.
46224         * conform/data/sys/select.h-data: Likewise.
46225         * conform/data/sys/sem.h-data: Likewise.
46226         * conform/data/sys/shm.h-data: Likewise.
46227         * conform/data/sys/socket.h-data: Likewise.
46228         * conform/data/sys/stat.h-data: Likewise.
46229         * conform/data/sys/statvfs.h-data: Likewise.
46230         * conform/data/sys/time.h-data: Likewise.
46231         * conform/data/sys/timeb.h-data: Likewise.
46232         * conform/data/sys/times.h-data: Likewise.
46233         * conform/data/sys/types.h-data: Likewise.
46234         * conform/data/sys/uio.h-data: Likewise.
46235         * conform/data/sys/un.h-data: Likewise.
46236         * conform/data/sys/utsname.h-data: Likewise.
46237         * conform/data/sys/wait.h-data: Likewise.
46238         * conform/data/syslog.h-data: Likewise.
46239         * conform/data/tar.h-data: Likewise.
46240         * conform/data/termios.h-data: Likewise.
46241         * conform/data/utime.h-data: Likewise.
46242         * conform/data/utmpx.h-data: Likewise.
46243         * conform/data/varargs.h-data: Likewise.
46244         * conform/data/wchar.h-data: Likewise.
46245         * conform/data/wctype.h-data: Likewise.
46246         * conform/data/wordexp.h-data: Likewise.
46247
46248         * include/stropts.h: New file.
46249         * include/uchar.h: New file.
46250         * include/aio.h: Changes to allow conformtest.pl to use the headers.
46251         * include/assert.h: Likewise.
46252         * include/ctype.h: Likewise.
46253         * include/dirent.h: Likewise.
46254         * include/dlfcn.h: Likewise.
46255         * include/fcntl.h: Likewise.
46256         * include/fnmatch.h: Likewise.
46257         * include/glob.h: Likewise.
46258         * include/grp.h: Likewise.
46259         * include/libio.h: Likewise.
46260         * include/locale.h: Likewise.
46261         * include/math.h: Likewise.
46262         * include/net/if.h: Likewise.
46263         * include/netdb.h: Likewise.
46264         * include/netinet/in.h: Likewise.
46265         * include/pthread.h: Likewise.
46266         * include/pwd.h: Likewise.
46267         * include/regex.h: Likewise.
46268         * include/sched.h: Likewise.
46269         * include/search.h: Likewise.
46270         * include/setjmp.h: Likewise.
46271         * include/signal.h: Likewise.
46272         * include/stdio.h: Likewise.
46273         * include/stdlib.h: Likewise.
46274         * include/string.h: Likewise.
46275         * include/sys/cdefs.h: Likewise.
46276         * include/sys/mman.h: Likewise.
46277         * include/sys/msg.h: Likewise.
46278         * include/sys/resource.h: Likewise.
46279         * include/sys/select.h: Likewise.
46280         * include/sys/socket.h: Likewise.
46281         * include/sys/stat.h: Likewise.
46282         * include/sys/statvfs.h: Likewise.
46283         * include/sys/time.h: Likewise.
46284         * include/sys/times.h: Likewise.
46285         * include/sys/uio.h: Likewise.
46286         * include/sys/utsname.h: Likewise.
46287         * include/sys/wait.h: Likewise.
46288         * include/termios.h: Likewise.
46289         * include/time.h: Likewise.
46290         * include/ulimit.h: Likewise.
46291         * include/unistd.h: Likewise.
46292         * include/utime.h: Likewise.
46293         * include/wchar.h: Likewise.
46294         * include/wctype.h: Likewise.
46295         * include/wordexp.h: Likewise.
46296
46297         * posix/tar.h (TSVTX): Should not be visible for POSIX before 2008.
46298
46299         * time/time.h: TIME_UTC must be a macro.
46300         Make timespec_get available for ISO C11 only as well.
46301
46302 2012-02-24  Ulrich Drepper  <drepper@gmail.com>
46303
46304         * stdlib/fmtmsg.c (fmtmsg): Lock around use of severity list.
46305         Reported by Peng Haitao <penght@cn.fujitsu.com>.
46306
46307 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46308
46309         * configure.in: Use -o not -a in test for unsupported multi-arch.
46310
46311 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46312
46313         * manual/texinfo.tex: Update to version 2012-01-19.16.
46314
46315 2012-02-24  Joseph Myers  <joseph@codesourcery.com>
46316
46317         * manual/Makefile (licenses): Change fdl-1.1.texi to fdl-1.3.texi.
46318
46319 2012-02-24  Roland McGrath  <roland@hack.frob.com>
46320
46321         [BZ #13738]
46322         * manual/libc.texinfo (FDL_VERSION): Set to 1.3.
46323         * manual/fdl-1.3.texi: New file.
46324         * manual/fdl-1.1.texi: File removed.
46325
46326         [BZ #13738]
46327         * manual/libc.texinfo (FDL_VERSION): New @set.
46328         Use it for mention of FDL in cover text.
46329         (Documentation License): Use it in @include file name.
46330
46331 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46332             Roland McGrath  <roland@hack.frob.com>
46333
46334         [BZ #5461]
46335         * manual/arith.texi (strtoll): Refer to LLONG_MAX and LLONG_MIN)
46336         (not LONG_LONG_MAX and LONG_LONG_MIN.
46337         * manual/lang.texi (LONG_LONG_MIN): Document first as ISO
46338         LLONG_MIN.  Refer to LONG_LONG_MIN only as older GCC-specific
46339         name.
46340         (LONG_LONG_MAX, LLONG_MAX, ULONG_LONG_MAX, ULLONG_MAX): Likewise.
46341
46342 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46343
46344         [BZ #2547]
46345         [BZ #11365]
46346         * sysdeps/ieee754/flt-32/s_nearbyintf.c (__nearbyintf): Do not
46347         manipulate bits before adding and subtracting TWO23[sx].
46348         * math/libm-test.inc (nearbyint_test): Add more tests.
46349
46350 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46351
46352         [BZ #2548]
46353         * sysdeps/ieee754/flt-32/s_rintf.c (__rintf): Do not manipulate
46354         bits before adding and subtracting TWO23[sx].
46355         * math/libm-test.inc (rint_test): Add more tests.
46356         (rint_test_tonearest): Likewise.
46357         (rint_test_towardzero): Likewise.
46358         (rint_test_downward): Likewise.
46359         (rint_test_upward: Likewise.
46360
46361 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46362
46363         [BZ #10110]
46364         * include/stdc-predef.h: New file.  Extracted from features.h.
46365         * include/features.h: Include stdc-predef.h.
46366         * Makefile (headers): Add stdc-predef.h.
46367         * CONFORMANCE (Compiler limitations): Update.
46368
46369 2012-02-22  Joseph Myers  <joseph@codesourcery.com>
46370
46371         * manual/libc.texinfo (VERSION, UPDATED): Revert.
46372
46373 2012-02-21  David S. Miller  <davem@davemloft.net>
46374
46375         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: More jn test ULP updates.
46376         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
46377
46378 2012-02-20  David S. Miller  <davem@davemloft.net>
46379
46380         * sysdeps/sparc/sparc32/__longjmp.S: Unwind in the 'thread' path
46381         using a normal save/restore sequence, rather than allocating a
46382         dummy stack frame just to store a frame pointer and restore.
46383         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
46384
46385 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46386
46387         * manual/install.texi: Fix stray word in line-wrapped comment.
46388
46389 2012-02-20  David S. Miller  <davem@davemloft.net>
46390
46391         * sysdeps/sparc/elf/configure.in (PI_STATIC_AND_HIDDEN): Define if
46392         both binutils and gcc support GOTDATA.
46393
46394         * sysdeps/unix/sparc/sysdep.h: Document why we don't use
46395         "rd %pc" in the PIC register setup sequences.
46396
46397         * sysdeps/sparc/crti.S: Try to use GOTDATA relocs.
46398         * sysdeps/sparc/sparc32/dl-machine.h (RTLD_START): Likewise.
46399         * sysdeps/sparc/sparc32/elf/start.S: Likewise.
46400         * sysdeps/sparc/sparc64/dl-machine.h (RTLD_START): Likewise.
46401         * sysdeps/sparc/sparc64/elf/start.S: Likewise.
46402         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Likewise.
46403         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
46404         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Likewise.
46405         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h
46406         (SYSCALL_ERROR_HANDLER): Likewise.
46407         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Likewise.
46408         * sysdeps/unix/sysv/linux/sparc/sparc64/brk.S: Likewise.
46409         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h
46410         (SYSCALL_ERROR_HANDLER): Likewise.
46411
46412         * config.h.in (HAVE_BINUTILS_GOTDATA): New.
46413         (HAVE_GCC_GOTDATA): New.
46414         * sysdeps/sparc/elf/configure.in: Test for GOTDATA
46415         relocation support in both binutils and gcc.
46416         * sysdeps/sparc/elf/configure: Regenerate.
46417
46418         * sysdeps/sparc/sparc32/elf/configure.in: Delete.
46419         * sysdeps/sparc/sparc32/elf/configure: Delete.
46420         * sysdeps/sparc/sparc64/elf/configure.in: Delete.
46421         * sysdeps/sparc/sparc64/elf/configure: Delete.
46422         * sysdeps/sparc/elf/configure.in: New file.
46423         * sysdeps/sparc/elf/configure: Generate.
46424
46425         * sysdeps/sparc/sparc32/elf/configure.in: Delete WDISP22 check.
46426         * sysdeps/sparc/sparc32/elf/configure: Regenerate.
46427         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
46428         * sysdeps/sparc/sparc64/elf/configure: Regenerate.
46429         * config.h.in (BROKEN_SPARC_WDISP22): Remove.
46430
46431 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46432
46433         * manual/install.texi: Do not mention specific glibc version
46434         numbers.
46435         * manual/libc.texinfo (VERSION, UPDATED): Update.
46436         (@copying): Use @copyright{} and range of years.
46437
46438 2012-02-21  Joseph Myers  <joseph@codesourcery.com>
46439
46440         [BZ #13695]
46441         * csu/Makefile (distribute): Remove initfini.c and defs.awk.
46442         [crti.S not in sysdirs] (generated): Do not append.
46443         [crti.S not in sysdirs] (omit-deps): Likewise.
46444         [crti.S not in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Remove rule.
46445         [crti.S not in sysdirs] ($(objpfx)initfini.s): Likewise.
46446         [crti.S not in sysdirs] ($(objpfx)crti.S): Likewise.
46447         [crti.S not in sysdirs] ($(objpfx)crtn.S): Likewise.
46448         [crti.S not in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)):
46449         Likewise.
46450         [crti.S not in sysdirs] ($(objpfx)defs.h): Likewise.
46451         [crti.S not in sysdirs] (CFLAGS-initfini.s): Remove variable.
46452         [crti.S not in sysdirs] (initfini.c): Remove vpath directive.
46453         * csu/defs.awk: Remove file.
46454         * sysdeps/generic/initfini.c: Likewise.
46455         * sysdeps/powerpc/powerpc32/Makefile (CFLAGS-initfini.s): Remove
46456         variable.
46457         * sysdeps/powerpc/powerpc64/Makefile (CFLAGS-initfini.s):
46458         Likewise.
46459
46460 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46461
46462         * sysdeps/unix/sysv/linux/bits/epoll.h: New file.
46463         * sysdeps/unix/sysv/linux/sparc/bits/epoll.h: Likewise.
46464         * sysdeps/unix/sysv/linux/x86_64/bits/epoll.h: Likewise.
46465         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Remove
46466         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
46467         * sysdeps/unix/sysv/linux/sys/epoll.h: Get flags from
46468         <bits/epoll.h>.
46469         (EPOLL_CLOEXEC, EPOLL_NONBLOCK): Don't define here.
46470         (__EPOLL_PACKED): Define to empty if not defined by
46471         <bits/epoll.h>.
46472         (struct epoll_event): Use __EPOLL_PACKED to make possibly packed.
46473         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46474         bits/epoll.h.
46475
46476 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46477
46478         * sysdeps/unix/sysv/linux/bits/timerfd.h: New file.
46479         * sysdeps/unix/sysv/linux/sparc/bits/timerfd.h: Likewise.
46480         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Remove.
46481         * sysdeps/unix/sysv/linux/sys/timerfd.h: Get flags from
46482         <bits/timerfd.h>.
46483         (TFD_CLOEXEC, TFD_NONBLOCK): Don't define here.
46484         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46485         bits/timerfd.h.
46486
46487 2012-02-20  Joseph Myers  <joseph@codesourcery.com>
46488
46489         * sysdeps/i386/fpu/libm-test-ulps: Resort with gen-libm-test.pl -n
46490         in C locale.
46491         * sysdeps/powerpc/fpu/libm-test-ulps: Likewise.
46492         * sysdeps/sh/sh4/fpu/libm-test-ulps: Likewise.
46493         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Likewise.
46494         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46495
46496 2012-02-20  Aurelien Jarno  <aurelien@aurel32.net>
46497
46498         * sysdeps/sparc/sparc32/fpu/libm-test-ulps: Adjust ULPs for jn tests.
46499         * sysdeps/sparc/sparc64/fpu/libm-test-ulps: Likewise.
46500
46501 2012-02-19  Andreas Schwab  <schwab@linux-m68k.org>
46502
46503         * manual/errno.texi (Error Codes): Add EHWPOISON entry.
46504         * sysdeps/unix/sysv/linux/bits/errno.h (EHWPOISON): Define if not
46505         defined.
46506         * sysdeps/unix/sysv/linux/sparc/bits/errno.h (EHWPOISON):
46507         Likewise.
46508         * sysdeps/unix/sysv/linux/sparc/Versions: Add new errlist compat
46509         entry for 2.16.
46510
46511 2012-02-19  Aurelien Jarno  <aurelien@aurel32.net>
46512
46513         * math/w_acos.c: Use non-signaling floating-point comparisons.
46514         * math/w_acosf.c: Likewise.
46515         * math/w_acosh.c: Likewise.
46516         * math/w_acoshf.c: Likewise.
46517         * math/w_acoshl.c: Likewise.
46518         * math/w_acosl.c: Likewise.
46519         * math/w_asin.c: Likewise.
46520         * math/w_asinf.c: Likewise.
46521         * math/w_asinl.c: Likewise.
46522         * math/w_atanh.c: Likewise.
46523         * math/w_atanhf.c: Likewise.
46524         * math/w_atanhl.c: Likewise.
46525         * math/w_exp2.c: Likewise.
46526         * math/w_exp2f.c: Likewise.
46527         * math/w_exp2l.c: Likewise.
46528         * math/w_j0.c: Likewise.
46529         * math/w_j0f.c: Likewise.
46530         * math/w_j0l.c: Likewise.
46531         * math/w_j1.c: Likewise.
46532         * math/w_j1f.c: Likewise.
46533         * math/w_j1l.c: Likewise.
46534         * math/w_jn.c: Likewise.
46535         * math/w_jnf.c: Likewise.
46536         * math/w_log.c: Likewise.
46537         * math/w_log10.c: Likewise.
46538         * math/w_log10f.c: Likewise.
46539         * math/w_log10l.c: Likewise.
46540         * math/w_log2.c: Likewise.
46541         * math/w_log2f.c: Likewise.
46542         * math/w_log2l.c: Likewise.
46543         * math/w_logf.c: Likewise.
46544         * math/w_logl.c: Likewise.
46545         * math/w_sqrt.c: Likewise.
46546         * math/w_sqrtf.c: Likewise.
46547         * math/w_sqrtl.c: Likewise.
46548         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
46549         * sysdeps/ieee754/dbl-64/w_exp.c: Likewise.
46550         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
46551         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
46552         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
46553
46554 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46555
46556         [BZ #9739]
46557         * manual/string.texi (strnlen): Use correct parameter name in
46558         equivalent expression.
46559
46560 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46561
46562         [BZ #11174]
46563         * manual/users.texi (seteuid): Consistently use neweuid for
46564         argument name.
46565
46566 2012-02-19  Joseph Myers  <joseph@codesourcery.com>
46567
46568         [BZ #13704]
46569         * manual/nss.texi (Services in the NSS configuration): Correct
46570         list of services in example configuration file.
46571
46572 2012-02-19  Nick Bowler  <nbowler@draconx.ca>
46573
46574         [BZ #11322]
46575         * manual/arith.texi: Remove statements about negative zero
46576         behaving identically to zero.
46577
46578 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
46579
46580         [BZ #5993]
46581         * manual/install.texi: Do not document upgrading from libc5.
46582
46583 2012-02-18  Joseph Myers  <joseph@codesourcery.com>
46584
46585         [BZ #4596]
46586         * manual/conf.texi (_POSIX_VERSION): Do not mention __POSIX__.
46587
46588 2012-02-18  David S. Miller  <davem@davemloft.net>
46589
46590         * sysdeps/unix/sparc/sysdep.h (SPARC_PIC_THUNK): New macro.
46591         (SETUP_PIC_REG): Use SPARC_PIC_THUNK and don't save and restore
46592         %o7 across the call.
46593         (SETUP_PIC_REG_LEAF): Do %o7 save/restore in this new macro
46594         instead.
46595         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Use
46596         SETUP_PIC_REG_LEAF.
46597         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
46598         * sysdeps/sparc/crti.S: Use SETUP_PIC_REG.
46599         * sysdeps/sparc/crtn.S: Likewise.
46600
46601 2012-02-17  Ulrich Drepper  <drepper@gmail.com>
46602
46603         * aout/Makefile: Remove.
46604
46605 2012-02-18  Rafe Kettler  <rafe.kettler@gmail.com>
46606
46607         [BZ #13058]
46608         * manual/examples/argp-ex1.c (main): Format definition in GNU
46609         style.
46610         * manual/examples/argp-ex2.c (main): Likewise.
46611         * manual/examples/argp-ex3.c (main): Likewise.
46612         * manual/examples/argp-ex4.c (main): Likewise.
46613         * manual/examples/longopt.c (main): Use new-style prototype
46614         definition.
46615         * manual/examples/strncat.c (main): Specify return type and use
46616         (void) for arguments.
46617         * manual/examples/subopt.c (main): Use char **argv argument.
46618
46619 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46620
46621         [BZ #5077]
46622         * manual/lang.texi (FLT_EPSILON): Avoid description depending on
46623         rounding modes.
46624
46625 2012-02-17  Fabrice Bauzac  <fabrice.bauzac@wanadoo.fr>
46626
46627         [BZ #6907]
46628         * manual/string.texi (strchr): Change when strchrnul is
46629         recommended.
46630
46631 2012-02-17  Dwayne Grant McConnell  <decimal@us.ibm.com>
46632
46633         [BZ #174]
46634         * manual/locale.texi (setlocale): Document LOCPATH.
46635
46636 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46637
46638         [BZ #10210]
46639         * manual/process.texi (execle): Move @dots{} before last argument.
46640
46641 2012-02-17  Paul Bolle  <pebolle@tiscali.nl>
46642
46643         [BZ #12047]
46644         * manual/charset.texi (Generic Charset Conversion): Fix typo
46645         (LC_TYPE -> LC_CTYPE).
46646
46647 2012-02-17  Nicolas Boulenguez  <nicolas.boulenguez@free.fr>
46648
46649         [BZ #5805]
46650         * manual/arith.texi (scalbn): Use @var{} on parameter names.
46651         (scalbnf): Likewise.
46652         (scalbnl): Likewise.
46653         (scalbln): Likewise.
46654         (scalblnf): Likewise.
46655         (scalblnl): Likewise.
46656         * manual/errno.texi (vwarn): Name last parameter as @var{ap}.
46657         (vwarnx): Likewise.
46658         (verr): Likewise.
46659         (verrx): Likewise.
46660         * manual/filesys.texi (telldir): Use braces around return type.
46661         * manual/llio.texi (mmap): Add space after comma.
46662         (mmap64): Likewise.
46663         * manual/math.texi (jn): Use @var{} on parameter names.
46664         (jnf): Likewise.
46665         (jnl): Likewise.
46666         (yn): Likewise.
46667         (ynf): Likewise.
46668         (ynl): Likewise.
46669         * manual/memory.texi (alloca): Remove semicolon on @deftypefun
46670         line.
46671         * manual/resource.texi (ulimit): Use @dots{} instead of literal
46672         "...".
46673         (sched_get_priority_min): Remove semicolon on @deftypefun line.
46674         (sched_get_priority_max): Likewise.
46675         * manual/signal.texi (sigvec): Add space after comma.
46676         * manual/socket.texi (if_nametoindex): Use @var{} on parameter
46677         names.
46678         (if_indextoname): Likewise.
46679         (if_freenameindex): Likewise.
46680         (sendto): Use ',' instead of '.' in prototype.
46681         * manual/startup.texi (syscall): Use @dots{} instead of literal
46682         "...".
46683         * manual/stdio.texi (__fpending): Separate initial words of
46684         paragraph from @deftypefun line.
46685         * manual/syslog.texi (syslog): Use @dots{} instead of literal
46686         "...".
46687         (vsyslog): Use @var{} on parameter names.
46688         * manual/terminal.texi (stty): Use @var{} on parameter names.
46689         * manual/users.texi (getutmp): Use @var{} on parameter names.
46690         (getutmpx): Likewise.
46691
46692 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46693
46694         [BZ #6884]
46695         * manual/stdio.texi (fopen): Fix typos in description of
46696         ",ccs=STRING".
46697
46698 2012-02-17  Aurelien Jarno  <aurelien@aurel32.net>
46699
46700         [BZ #4026]
46701         * sysdeps/unix/sysv/linux/clock_settime.c: include <time.h> to
46702         get clock_id definition.
46703
46704 2012-02-17  Thomas Schwinge  <thomas@schwinge.name>
46705
46706         [BZ #4822]
46707         * sysdeps/mach/hurd/malloc-machine.h: #include <sys/mman.h>.
46708         (madvise): Cast every argument to void on its own.
46709
46710 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46711
46712         [BZ #9902]
46713         * manual/startup.texi (Exit Status): Fix typo.
46714
46715 2012-02-17  Joseph Myers  <joseph@codesourcery.com>
46716
46717         [BZ #10140]
46718         * manual/examples/argp-ex1.c: Include <stdlib.h>.
46719         * manual/examples/argp-ex2.c: Likewise.
46720         * manual/examples/argp-ex3.c: Likewise.
46721
46722 2012-02-16  Richard Henderson  <rth@redhat.com>
46723
46724         * sysdeps/s390/s390-32/crti.S, sysdeps/s390/s390-32/crtn.S: New files.
46725         * sysdeps/s390/s390-32/initfini.c: Remove.
46726         * sysdeps/s390/s390-64/crti.S, sysdeps/s390/s390-64/crtn.S:
46727         * sysdeps/s390/s390-64/initfini.c: Remove.
46728
46729 2012-02-15  Kaz Kojima  <kkojima@rr.iij4u.or.jp>
46730
46731         * sysdeps/sh/crti.S, sysdeps/sh/crtn.S: New files, based on
46732         compiler output for sysdeps/generic/initfini.c.
46733         * sysdeps/sh/elf/initfini.c: Remove file.
46734
46735 2012-02-16  David S. Miller  <davem@davemloft.net>
46736
46737         [BZ #11494]
46738         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (O_FSYNC): Define.
46739
46740         * sysdeps/sparc/Makefile: Add -fPIC when building crt{i,n}.S
46741         * sysdeps/sparc/crti.S: New file.
46742         * sysdeps/sparc/crtn.S: New file.
46743         * sysdeps/sparc/sparc32/Makefile: Remove initfini handling.
46744         * sysdeps/sparc/sparc64/Makefile: Likewise.
46745
46746 2012-02-15  Mike Frysinger  <vapier@gentoo.org>
46747
46748         [BZ #3335]
46749         * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h.
46750
46751 2012-02-15  Roland McGrath  <roland@hack.frob.com>
46752
46753         [BZ #4822]
46754         * sysdeps/mach/hurd/malloc-machine.h (madvise): New macro.
46755
46756         * mach/devstream.c (cookie_io_functions_t): Macro removed.
46757         (write, read, close): Likewise.
46758         Patch by Aurelien Jarno <aurelien@aurel32.net>.
46759
46760 2012-02-15  Joseph Myers  <joseph@codesourcery.com>
46761
46762         * sysdeps/unix/sysv/linux/bits/signalfd.h: New file.
46763         * sysdeps/unix/sysv/linux/sparc/bits/signalfd.h: Likewise.
46764         * sysdeps/unix/sysv/linux/sparc/sys/signalfd.h: Remove.
46765         * sysdeps/unix/sysv/linux/sys/signalfd.h: Get flags from
46766         <bits/signalfd.h>.
46767         (SFD_CLOEXEC, SFD_NONBLOCK): Don't define here.
46768         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46769         bits/signalfd.h.
46770
46771 2012-02-14  Marek Polacek  <polacek@redhat.com>
46772
46773         * sysdeps/x86_64/crti.S: New file.
46774         * sysdeps/x86_64/crtn.S: New file.
46775         * sysdeps/x86_64/elf/initfini.c: Remove file.
46776
46777 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
46778
46779         * sysdeps/unix/sysv/linux/bits/inotify.h: New file.
46780         * sysdeps/unix/sysv/linux/sparc/bits/inotify.h: Likewise.
46781         * sysdeps/unix/sysv/linux/sparc/sys/inotify.h: Remove.
46782         * sysdeps/unix/sysv/linux/sys/inotify.h: Get flags from
46783         <bits/inotify.h>.
46784         (IN_CLOEXEC, IN_NONBLOCK): Don't define here.
46785         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46786         bits/inotify.h.
46787
46788 2012-02-13  Joseph Myers  <joseph@codesourcery.com>
46789
46790         * sysdeps/unix/sysv/linux/bits/eventfd.h: New file.
46791         * sysdeps/unix/sysv/linux/sparc/bits/eventfd.h: Likewise.
46792         * sysdeps/unix/sysv/linux/sparc/sys/eventfd.h: Remove.
46793         * sysdeps/unix/sysv/linux/sys/eventfd.h: Get flags from
46794         <bits/eventfd.h>.
46795         (EFD_SEMAPHORE, EFD_CLOEXEC, EFD_NONBLOCK): Don't define here.
46796         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
46797         bits/eventfd.h.
46798
46799 2012-02-10  Thomas Schwinge  <thomas@codesourcery.com>
46800
46801         * sysdeps/i386/fpu/feupdateenv.c (__feupdateenv): Invoke
46802         __feraiseexcept instead of feraiseexcept.
46803
46804         * rt/tst-cpuclock1.c: Add a few comments, and error checking for
46805         nanosleep invocations.
46806         * rt/tst-cpuclock2.c: Print some values as intended, fix explanatory
46807         strings, and add error checking for a nanosleep invocations.
46808
46809 2012-02-09  Paul Eggert  <eggert@cs.ucla.edu>
46810
46811         Replace FSF snail mail address with URLs, as per GNU coding standards.
46812         Most of the snail mail addresses were wrong anyway, and omitting
46813         them makes the source code easier to maintain.  Almost all of the
46814         changes are to license notices and to locale LC_IDENTIFICATION
46815         addresses, except for this one:
46816         * manual/libc.texinfo: In "Published by", give the FSF's URL,
46817         not its snail mail address.
46818
46819 2012-02-09  Richard Henderson  <rth@twiddle.net>
46820
46821         * sysdeps/unix/sysv/linux/internal_statvfs.c: Use <> for include
46822         of kernel-features.h.
46823
46824         * elf/dl-tls.c (update_get_addr): Avoid pointer type mismatch warning.
46825
46826 2012-02-08  Marek Polacek  <polacek@redhat.com>
46827
46828         * libio/libio.h: Remove _G_HAVE_SYS_CDEFS conditional.
46829         * sysdeps/mach/hurd/_G_config.h: Remove _G_HAVE_SYS_CDEFS macro.
46830         * sysdeps/gnu/_G_config.h: Likewise.
46831         * sysdeps/generic/_G_config.h: Likewise.
46832
46833 2012-02-08  Andreas Schwab  <schwab@linux-m68k.org>
46834
46835         * sysdeps/i386/fpu/libm-test-ulps: Reduce ldouble ULPs for jn
46836         tests.
46837         * sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
46838
46839         * sysdeps/powerpc/powerpc32/crti.S: New file.
46840         * sysdeps/powerpc/powerpc32/crtn.S: New file.
46841         * sysdeps/powerpc/powerpc64/crti.S: New file.
46842         * sysdeps/powerpc/powerpc64/crtn.S: New file.
46843
46844         * Makeconfig (have-initfini): Don't set.
46845         * config.make.in (have-initfini, need-nopic-initfini): Don't set.
46846         * configure.in (nopic_initfini): Don't substitute.
46847         * config.h.in (HAVE_INITFINI): Don't #undef.
46848         * csu/Makefile (CPPFLAGS): Don't add -DHAVE_INITFINI.
46849         * csu/gmon-start.c: Assume HAVE_INITFINI is defined.
46850
46851 2012-02-08  Joseph Myers  <joseph@codesourcery.com>
46852
46853         Support crti.S and crtn.S provided directly by architectures.
46854         * csu/Makefile [crti.S in sysdirs] (generated): Do not append.
46855         [crti.S in sysdirs] (omit-deps): Likewise.
46856         [crti.S in sysdirs] (CFLAGS-initfini.s): Do not define variable.
46857         [crti.S in sysdirs] ($(crtstuff:%=$(objpfx)%.o)): Disable rule.
46858         [crti.S in sysdirs] ($(objpfx)initfini.s): Likewise.
46859         [crti.S in sysdirs] ($(objpfx)crti.S): Likewise.
46860         [crti.S in sysdirs] ($(objpfx)crtn.S): Likewise.
46861         [crti.S in sysdirs] ($(patsubst %,$(objpfx)crt%.o,i n)): Likewise.
46862         [crti.S in sysdirs] ($(objpfx)defs.h): Likewise.
46863         [crti.S in sysdirs] (initfini.c): Remove vpath directive.
46864         * sysdeps/i386/crti.S, sysdeps/i386/crtn.S: New files, based on
46865         compiler output for sysdeps/generic/initfini.c.
46866         * sysdeps/i386/elf/Makefile: Remove file.
46867         * sysdeps/i386/Makefile (CFLAGS-initfini.s): Remove variable.
46868
46869 2012-02-07  Marek Polacek  <polacek@redhat.com>
46870
46871         * sysdeps/generic/_G_config.h: Remove _G_ARGS macro.
46872         * sysdeps/gnu/_G_config.h: Likewise.
46873         * sysdeps/mach/hurd/_G_config.h: Likewise.
46874
46875 2012-02-07  Marek Polacek  <polacek@redhat.com>
46876
46877         * math/Makefile (tests): Add tst-CMPLX2.
46878         * math/tst-CMPLX2.c: New file.
46879
46880 2012-02-07  Andreas Schwab  <schwab@linux-m68k.org>
46881
46882         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
46883
46884         * math/libm-test.inc (jn_test): Add missing L suffix.
46885
46886 2012-02-06  Marek Polacek  <polacek@redhat.com>
46887
46888         * sysdeps/s390/asm-syntax.h: Remove __ELF__ conditionals.
46889         * sysdeps/i386/fpu/e_powf.S: Likewise.
46890         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
46891         * sysdeps/i386/fpu/s_cexpl.S: Likewise.
46892         * sysdeps/i386/fpu/e_acosh.S: Likewise.
46893         * sysdeps/i386/fpu/e_pow.S: Likewise.
46894         * sysdeps/i386/fpu/s_asinhl.S: Likewise.
46895         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
46896         * sysdeps/i386/fpu/s_expm1.S: Likewise.
46897         * sysdeps/i386/fpu/s_frexpf.S: Likewise.
46898         * sysdeps/i386/fpu/e_log2.S: Likewise.
46899         * sysdeps/i386/fpu/e_log2l.S: Likewise.
46900         * sysdeps/i386/fpu/e_scalb.S: Likewise.
46901         * sysdeps/i386/fpu/e_powl.S: Likewise.
46902         * sysdeps/i386/fpu/s_log1p.S: Likewise.
46903         * sysdeps/i386/fpu/e_log10f.S: Likewise.
46904         * sysdeps/i386/fpu/s_cbrtf.S: Likewise.
46905         * sysdeps/i386/fpu/e_logl.S: Likewise.
46906         * sysdeps/i386/fpu/s_cbrt.S: Likewise.
46907         * sysdeps/i386/fpu/s_expm1l.S: Likewise.
46908         * sysdeps/i386/fpu/s_frexpl.S: Likewise.
46909         * sysdeps/i386/fpu/s_expm1f.S: Likewise.
46910         * sysdeps/i386/fpu/e_log2f.S: Likewise.
46911         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
46912         * sysdeps/i386/fpu/e_log.S: Likewise.
46913         * sysdeps/i386/fpu/s_cexp.S: Likewise.
46914         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
46915         * sysdeps/i386/fpu/s_log1pl.S: Likewise.
46916         * sysdeps/i386/fpu/e_logf.S: Likewise.
46917         * sysdeps/i386/fpu/e_log10l.S: Likewise.
46918         * sysdeps/i386/fpu/e_atanh.S: Likewise.
46919         * sysdeps/i386/fpu/s_log1pf.S: Likewise.
46920         * sysdeps/i386/fpu/s_asinhf.S: Likewise.
46921         * sysdeps/i386/fpu/s_cexpf.S: Likewise.
46922         * sysdeps/i386/fpu/e_log10.S: Likewise.
46923         * sysdeps/i386/fpu/s_frexp.S: Likewise.
46924         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
46925         * sysdeps/i386/fpu/s_asinh.S: Likewise.
46926         * sysdeps/i386/fpu/s_cbrtl.S: Likewise.
46927         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
46928         * sysdeps/i386/i686/fpu/e_logl.S: Likewise.
46929         * sysdeps/i386/asm-syntax.h: Likewise.
46930         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
46931         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
46932         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
46933         * sysdeps/x86_64/fpu/s_expm1l.S: Likewise.
46934         * sysdeps/x86_64/fpu/s_log1pl.S: Likewise.
46935         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
46936         * sysdeps/x86_64/fpu/s_copysignf.S: Likewise.
46937         * sysdeps/x86_64/fpu/s_copysign.S: Likewise.
46938         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
46939         * sysdeps/powerpc/sysdep.h: Likewise.
46940         * sysdeps/powerpc/powerpc64/sysdep.h: Likewise.
46941         * sysdeps/powerpc/powerpc32/sysdep.h: Likewise.
46942
46943 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
46944
46945         [BZ #411]
46946         * sysdeps/i386/sysdep.h (__i686): Undefine and redefine.
46947
46948 2012-02-06  Joseph Myers  <joseph@codesourcery.com>
46949
46950         * sysdeps/i386/sysdep.h: Include <features.h>.
46951         (GET_PC_THUNK, GET_PC_THUNK_STR): Define conditionally on compiler
46952         version.
46953
46954 2012-02-05  Joseph Myers  <joseph@codesourcery.com>
46955
46956         * sysdeps/i386/sysdep.h (SETUP_PIC_REG_STR, LOAD_PIC_REG_STR):
46957         Define.
46958         * sysdeps/unix/sysv/linux/i386/sysdep.h (check_consistency): Use
46959         LOAD_PIC_REG_STR.
46960
46961 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
46962
46963         * sysdeps/i386/sysdep.h (GET_PC_THUNK, GET_PC_THUNK_STR): Define.
46964         (SETUP_PIC_REG): Use GET_PC_THUNK.
46965         * sysdeps/unix/sysv/linux/i386/sysdep.h: Use GET_PC_THUNK_STR
46966         macro.
46967
46968 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
46969
46970         * sysdeps/i386/sysdep.h (SETUP_PIC_REG, LOAD_PIC_REG): Define also
46971         for non-PIC compilation.
46972         (SETUP_PIC_REG): Add .p2align directive.
46973         * sysdeps/i386/i686/memcmp.S: Use macros for PIC register setup.
46974         * sysdeps/i386/i686/multiarch/bcopy.S: Likewise.
46975         * sysdeps/i386/i686/multiarch/bzero.S: Likewise.
46976         * sysdeps/i386/i686/multiarch/memchr.S: Likewise.
46977         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise.
46978         * sysdeps/i386/i686/multiarch/memcmp.S: Likewise.
46979         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Likewise.
46980         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
46981         * sysdeps/i386/i686/multiarch/memcpy.S: Likewise.
46982         * sysdeps/i386/i686/multiarch/memcpy_chk.S: Likewise.
46983         * sysdeps/i386/i686/multiarch/memmove.S: Likewise.
46984         * sysdeps/i386/i686/multiarch/memmove_chk.S: Likewise.
46985         * sysdeps/i386/i686/multiarch/mempcpy.S: Likewise.
46986         * sysdeps/i386/i686/multiarch/mempcpy_chk.S: Likewise.
46987         * sysdeps/i386/i686/multiarch/memrchr.S: Likewise.
46988         * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise.
46989         * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise.
46990         * sysdeps/i386/i686/multiarch/memset.S: Likewise.
46991         * sysdeps/i386/i686/multiarch/memset_chk.S: Likewise.
46992         * sysdeps/i386/i686/multiarch/rawmemchr.S: Likewise.
46993         * sysdeps/i386/i686/multiarch/strcasecmp.S: Likewise.
46994         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise.
46995         * sysdeps/i386/i686/multiarch/strcat.S: Likewise.
46996         * sysdeps/i386/i686/multiarch/strchr.S: Likewise.
46997         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise.
46998         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise.
46999         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
47000         * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise.
47001         * sysdeps/i386/i686/multiarch/strcpy.S: Likewise.
47002         * sysdeps/i386/i686/multiarch/strcspn.S: Likewise.
47003         * sysdeps/i386/i686/multiarch/strlen.S: Likewise.
47004         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
47005         * sysdeps/i386/i686/multiarch/strnlen.S: Likewise.
47006         * sysdeps/i386/i686/multiarch/strrchr.S: Likewise.
47007         * sysdeps/i386/i686/multiarch/strspn.S: Likewise.
47008         * sysdeps/i386/i686/multiarch/wcschr.S: Likewise.
47009         * sysdeps/i386/i686/multiarch/wcscmp.S: Likewise.
47010         * sysdeps/i386/i686/multiarch/wcscpy.S: Likewise.
47011         * sysdeps/i386/i686/multiarch/wcslen.S: Likewise.
47012         * sysdeps/i386/i686/multiarch/wcsrchr.S: Likewise.
47013         * sysdeps/i386/i686/multiarch/wmemcmp.S: Likewise.
47014
47015 2012-02-03  Joseph Myers  <joseph@codesourcery.com>
47016
47017         * math/tst-CMPLX.c: Include <stdio.h>.
47018
47019 2012-01-31  Joseph Myers  <joseph@codesourcery.com>
47020
47021         * sysdeps/powerpc/bits/mathdef.h (float_t): Always define as
47022         float.
47023         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
47024         * sysdeps/sparc/bits/mathdef.h: Likewise.
47025
47026 2012-01-31  Marek Polacek  <polacek@redhat.com>
47027
47028         * libio/libio.h: Don't define _PARAMS.
47029         * locale/programs/config.h: Don't define PARAMS.
47030         * stdlib/strtol_l.c: Likewise.
47031         (__strtol_l): Remove PARAMS from the prototype.
47032
47033 2012-01-31  Ulrich Drepper  <drepper@gmail.com>
47034
47035         * malloc/malloc.c: Remove name translation.  Don't use mixed-cap
47036         names.  Just use the correct names.  Remove unnecessary wrapper
47037         functions.
47038         * malloc/arena.c: Likewise.
47039         * malloc/hooks.c: Likewise.
47040
47041         * malloc/arena.c (arena_get2): Really don't call __get_nprocs if
47042         ARENA_TEST says not to.  Simplify test for creation of a new arena.
47043         Partially based on a patch by Siddhesh Poyarekar <siddhesh@redhat.com>.
47044
47045 2012-01-30  Ulrich Drepper  <drepper@gmail.com>
47046
47047         * elf/dl-tls.c (__tls_get_addr): Optimize by transforming all calls
47048         into tail calls.
47049         (update_get_addr): New function.
47050         (tls_get_addr_tail): Take GET_ADDR_ARGS parameter, remove
47051         GET_ADDR_MODULE parameter.
47052
47053 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
47054
47055         * crypt/cert.c: Remove __STDC__ conditionals.
47056         * crypt/crypt-entry.c: Likewise.
47057         * crypt/crypt_util.c: Likewise.
47058         * libio/filedoalloc.c: Likewise.
47059         * libio/fileops.c: Likewise.
47060         * libio/genops.c: Likewise.
47061         * libio/iofclose.c: Likewise.
47062         * libio/iofdopen.c: Likewise.
47063         * libio/iofopen.c: Likewise.
47064         * libio/iofopen64.c: Likewise.
47065         * libio/iogetdelim.c: Likewise.
47066         * libio/iopopen.c: Likewise.
47067         * libio/obprintf.c: Likewise.
47068         * libio/oldfileops.c: Likewise.
47069         * libio/oldiofclose.c: Likewise.
47070         * libio/oldiofdopen.c: Likewise.
47071         * libio/oldiofopen.c: Likewise.
47072         * libio/oldiopopen.c: Likewise.
47073         * libio/wfiledoalloc.c: Likewise.
47074         * libio/wgenops.c: Likewise.
47075         * locale/programs/xmalloc.c: Likewise.
47076         * misc/syslog.c: Likewise.
47077         * stdio-common/xbug.c: Likewise.
47078         * string/memchr.c: Likewise.
47079         * string/memcmp.c: Likewise.
47080         * string/memrchr.c: Likewise.
47081         * string/rawmemchr.c: Likewise.
47082         * sysdeps/posix/getcwd.c: Likewise.
47083         * time/strftime_l.c: Likewise.
47084
47085 2012-01-30  Joseph Myers  <joseph@codesourcery.com>
47086
47087         * configure.in (libc_cv_cc_sse2avx): AC_SUBST.
47088         * config.make.in (config-cflags-sse2avx): Define.
47089         * sysdeps/x86_64/fpu/multiarch/Makefile (CFLAGS-slowexp-avx.c):
47090         Fix typo.
47091
47092 2012-01-29  Chris Metcalf  <cmetcalf@tilera.com>
47093
47094         * scripts/config.guess: Update from upstream config git repository.
47095         * scripts/config.sub: Likewise.
47096
47097 2012-01-28  Chris Metcalf  <cmetcalf@tilera.com>
47098
47099         * elf/elf.h (EM_TILEPRO, EM_TILEGX): New macros.
47100         (EM_NUM): Update.
47101         (R_TILEPRO_*, R_TILEGX_*): New macros.
47102
47103         * scripts/firstversions.awk: Fix bug in version range handling.
47104
47105         * sysdeps/unix/sysv/linux/grantpt.c: Use <> brackets for not-cancel.h.
47106
47107         * sysdeps/unix/sysv/linux/faccessat.c (faccessat): Call __fxstatat64.
47108
47109         * include/sys/epoll.h: New file.
47110         * sysdeps/unix/sysv/linux/epoll_pwait.c (epoll_pwait): Mark as
47111         libc_hidden_def.
47112
47113 2012-01-28  Ulrich Drepper  <drepper@gmail.com>
47114
47115         * sysdeps/x86_64/fpu/bits/mathinline.h (__signbitl): Optimize a bit.
47116         Avoid unnecessary __WORDSIZE == 64 test.
47117         (fmaxf): Use VEX format if possible.
47118         (fmax): Likewise.
47119         (fminf): Likewise.
47120         (fmin): Likewise.
47121
47122         * config.h.in: Define HAVE_SSE2AVX_SUPPORT.
47123         * math/math_private.h: Remove libc_fegetround* and
47124         libc_fesetround*.
47125         * sysdeps/i386/configure.in: Check for -msse2avx.
47126         * sysdeps/x86_64/fpu/math_private.h: Use VEX-encoded instructions
47127         also if SSE2AVX is defined.
47128         Remove libc_fegetround* and libc_fesetround*.
47129         * sysdeps/x86_64/fpu/multiarch/Makefile: Compile *-avx functions
47130         if config-cflags-sse2avx is yes.  Also add -DSSE2AVX to defines.
47131         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_AVX again instead
47132         of HAS_YMM_USABLE.
47133         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
47134         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
47135         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
47136         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
47137         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
47138
47139         * sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
47140
47141 2012-01-19  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
47142
47143         * sysdeps/powerpc/powerpc32/a2/memcpy.S: Fix for when cache line
47144         size is not set.
47145         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
47146
47147 2012-01-27  Ulrich Drepper  <drepper@gmail.com>
47148
47149         [BZ #13618]
47150         * elf/dl-open.c (dl_open_worker): Sort objects by dependency before
47151         relocation.
47152         * Makeconfig (libm): Define.
47153         * elf/Makefile: Add rules to build and run tst-relsort1.
47154         * elf/tst-relsort1.c: New file.
47155         * elf/tst-relsort1mod1.c: New file.
47156         * elf/tst-relsort1mod2.c: New file.
47157
47158 2012-01-27  Joseph Myers  <joseph@codesourcery.com>
47159
47160         * math/s_ldexp.c: Remove __STDC__ conditionals.
47161         * math/s_ldexpf.c: Likewise.
47162         * math/s_ldexpl.c: Likewise.
47163         * math/s_nextafter.c: Likewise.
47164         * math/s_nexttowardf.c: Likewise.
47165         * math/s_significand.c: Likewise.
47166         * math/s_significandf.c: Likewise.
47167         * math/s_significandl.c: Likewise.
47168         * math/w_jnl.c: Likewise.
47169         * sysdeps/i386/fpu/s_isinfl.c: Likewise.
47170         * sysdeps/i386/fpu/s_isnanl.c: Likewise.
47171         * sysdeps/i386/fpu/s_nextafterl.c: Likewise.
47172         * sysdeps/i386/fpu/s_nexttoward.c: Likewise.
47173         * sysdeps/i386/fpu/s_nexttowardf.c: Likewise.
47174         * sysdeps/ieee754/dbl-64/k_rem_pio2.c: Likewise.
47175         * sysdeps/ieee754/dbl-64/k_tan.c: Likewise.
47176         * sysdeps/ieee754/dbl-64/s_copysign.c: Likewise.
47177         * sysdeps/ieee754/dbl-64/s_erf.c: Likewise.
47178         * sysdeps/ieee754/dbl-64/s_fabs.c: Likewise.
47179         * sysdeps/ieee754/dbl-64/s_finite.c: Likewise.
47180         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
47181         * sysdeps/ieee754/dbl-64/s_frexp.c: Likewise.
47182         * sysdeps/ieee754/dbl-64/s_ilogb.c: Likewise.
47183         * sysdeps/ieee754/dbl-64/s_isnan.c: Likewise.
47184         * sysdeps/ieee754/dbl-64/s_logb.c: Likewise.
47185         * sysdeps/ieee754/dbl-64/s_nearbyint.c: Likewise.
47186         * sysdeps/ieee754/dbl-64/s_tanh.c: Likewise.
47187         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Likewise.
47188         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
47189         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
47190         * sysdeps/ieee754/flt-32/e_rem_pio2f.c: Likewise.
47191         * sysdeps/ieee754/flt-32/k_cosf.c: Likewise.
47192         * sysdeps/ieee754/flt-32/k_rem_pio2f.c: Likewise.
47193         * sysdeps/ieee754/flt-32/k_sinf.c: Likewise.
47194         * sysdeps/ieee754/flt-32/k_tanf.c: Likewise.
47195         * sysdeps/ieee754/flt-32/s_atanf.c: Likewise.
47196         * sysdeps/ieee754/flt-32/s_copysignf.c: Likewise.
47197         * sysdeps/ieee754/flt-32/s_cosf.c: Likewise.
47198         * sysdeps/ieee754/flt-32/s_erff.c: Likewise.
47199         * sysdeps/ieee754/flt-32/s_fabsf.c: Likewise.
47200         * sysdeps/ieee754/flt-32/s_finitef.c: Likewise.
47201         * sysdeps/ieee754/flt-32/s_frexpf.c: Likewise.
47202         * sysdeps/ieee754/flt-32/s_ilogbf.c: Likewise.
47203         * sysdeps/ieee754/flt-32/s_isnanf.c: Likewise.
47204         * sysdeps/ieee754/flt-32/s_logbf.c: Likewise.
47205         * sysdeps/ieee754/flt-32/s_nextafterf.c: Likewise.
47206         * sysdeps/ieee754/flt-32/s_sinf.c: Likewise.
47207         * sysdeps/ieee754/flt-32/s_tanf.c: Likewise.
47208         * sysdeps/ieee754/flt-32/s_tanhf.c: Likewise.
47209         * sysdeps/ieee754/k_standard.c: Likewise.
47210         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
47211         * sysdeps/ieee754/ldbl-128/k_tanl.c: Likewise.
47212         * sysdeps/ieee754/ldbl-128/s_asinhl.c: Likewise.
47213         * sysdeps/ieee754/ldbl-128/s_ceill.c: Likewise.
47214         * sysdeps/ieee754/ldbl-128/s_copysignl.c: Likewise.
47215         * sysdeps/ieee754/ldbl-128/s_cosl.c: Likewise.
47216         * sysdeps/ieee754/ldbl-128/s_erfl.c: Likewise.
47217         * sysdeps/ieee754/ldbl-128/s_fabsl.c: Likewise.
47218         * sysdeps/ieee754/ldbl-128/s_finitel.c: Likewise.
47219         * sysdeps/ieee754/ldbl-128/s_floorl.c: Likewise.
47220         * sysdeps/ieee754/ldbl-128/s_frexpl.c: Likewise.
47221         * sysdeps/ieee754/ldbl-128/s_ilogbl.c: Likewise.
47222         * sysdeps/ieee754/ldbl-128/s_isnanl.c: Likewise.
47223         * sysdeps/ieee754/ldbl-128/s_logbl.c: Likewise.
47224         * sysdeps/ieee754/ldbl-128/s_modfl.c: Likewise.
47225         * sysdeps/ieee754/ldbl-128/s_nearbyintl.c: Likewise.
47226         * sysdeps/ieee754/ldbl-128/s_nextafterl.c: Likewise.
47227         * sysdeps/ieee754/ldbl-128/s_nexttoward.c: Likewise.
47228         * sysdeps/ieee754/ldbl-128/s_nexttowardf.c: Likewise.
47229         * sysdeps/ieee754/ldbl-128/s_rintl.c: Likewise.
47230         * sysdeps/ieee754/ldbl-128/s_scalblnl.c: Likewise.
47231         * sysdeps/ieee754/ldbl-128/s_scalbnl.c: Likewise.
47232         * sysdeps/ieee754/ldbl-128/s_sinl.c: Likewise.
47233         * sysdeps/ieee754/ldbl-128/s_tanhl.c: Likewise.
47234         * sysdeps/ieee754/ldbl-128/s_tanl.c: Likewise.
47235         * sysdeps/ieee754/ldbl-128/w_expl.c: Likewise.
47236         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
47237         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
47238         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
47239         * sysdeps/ieee754/ldbl-128ibm/k_tanl.c: Likewise.
47240         * sysdeps/ieee754/ldbl-128ibm/s_asinhl.c: Likewise.
47241         * sysdeps/ieee754/ldbl-128ibm/s_ceill.c: Likewise.
47242         * sysdeps/ieee754/ldbl-128ibm/s_copysignl.c: Likewise.
47243         * sysdeps/ieee754/ldbl-128ibm/s_cosl.c: Likewise.
47244         * sysdeps/ieee754/ldbl-128ibm/s_erfl.c: Likewise.
47245         * sysdeps/ieee754/ldbl-128ibm/s_fabsl.c: Likewise.
47246         * sysdeps/ieee754/ldbl-128ibm/s_floorl.c: Likewise.
47247         * sysdeps/ieee754/ldbl-128ibm/s_frexpl.c: Likewise.
47248         * sysdeps/ieee754/ldbl-128ibm/s_ilogbl.c: Likewise.
47249         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Likewise.
47250         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
47251         * sysdeps/ieee754/ldbl-128ibm/s_logbl.c: Likewise.
47252         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Likewise.
47253         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Likewise.
47254         * sysdeps/ieee754/ldbl-128ibm/s_modfl.c: Likewise.
47255         * sysdeps/ieee754/ldbl-128ibm/s_nearbyintl.c: Likewise.
47256         * sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Likewise.
47257         * sysdeps/ieee754/ldbl-128ibm/s_nexttoward.c: Likewise.
47258         * sysdeps/ieee754/ldbl-128ibm/s_nexttowardf.c: Likewise.
47259         * sysdeps/ieee754/ldbl-128ibm/s_rintl.c: Likewise.
47260         * sysdeps/ieee754/ldbl-128ibm/s_roundl.c: Likewise.
47261         * sysdeps/ieee754/ldbl-128ibm/s_scalblnl.c: Likewise.
47262         * sysdeps/ieee754/ldbl-128ibm/s_scalbnl.c: Likewise.
47263         * sysdeps/ieee754/ldbl-128ibm/s_sinl.c: Likewise.
47264         * sysdeps/ieee754/ldbl-128ibm/s_tanhl.c: Likewise.
47265         * sysdeps/ieee754/ldbl-128ibm/s_tanl.c: Likewise.
47266         * sysdeps/ieee754/ldbl-128ibm/s_truncl.c: Likewise.
47267         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
47268         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
47269         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
47270         * sysdeps/ieee754/ldbl-96/s_ceill.c: Likewise.
47271         * sysdeps/ieee754/ldbl-96/s_copysignl.c: Likewise.
47272         * sysdeps/ieee754/ldbl-96/s_cosl.c: Likewise.
47273         * sysdeps/ieee754/ldbl-96/s_erfl.c: Likewise.
47274         * sysdeps/ieee754/ldbl-96/s_fabsl.c: Likewise.
47275         * sysdeps/ieee754/ldbl-96/s_finitel.c: Likewise.
47276         * sysdeps/ieee754/ldbl-96/s_floorl.c: Likewise.
47277         * sysdeps/ieee754/ldbl-96/s_frexpl.c: Likewise.
47278         * sysdeps/ieee754/ldbl-96/s_ilogbl.c: Likewise.
47279         * sysdeps/ieee754/ldbl-96/s_isnanl.c: Likewise.
47280         * sysdeps/ieee754/ldbl-96/s_logbl.c: Likewise.
47281         * sysdeps/ieee754/ldbl-96/s_nearbyintl.c: Likewise.
47282         * sysdeps/ieee754/ldbl-96/s_nextafterl.c: Likewise.
47283         * sysdeps/ieee754/ldbl-96/s_nexttoward.c: Likewise.
47284         * sysdeps/ieee754/ldbl-96/s_nexttowardf.c: Likewise.
47285         * sysdeps/ieee754/ldbl-96/s_rintl.c: Likewise.
47286         * sysdeps/ieee754/ldbl-96/s_sinl.c: Likewise.
47287         * sysdeps/ieee754/ldbl-96/s_tanhl.c: Likewise.
47288         * sysdeps/ieee754/ldbl-96/s_tanl.c: Likewise.
47289         * sysdeps/ieee754/s_matherr.c: Likewise.
47290         * sysdeps/powerpc/fpu/w_sqrt.c: Likewise.
47291         * sysdeps/powerpc/fpu/w_sqrtf.c: Likewise.
47292         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrt.c: Likewise.
47293         * sysdeps/powerpc/powerpc64/power4/fpu/w_sqrtf.c: Likewise.
47294
47295 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
47296
47297         * crypt/md5.h: Remove __STDC__ conditionals.
47298         * libio/libioP.h: Likewise.
47299         * locale/programs/config.h: Likewise.
47300         * sysdeps/generic/sysdep.h: Likewise.
47301         * sysdeps/i386/asm-syntax.h: Likewise.
47302         * sysdeps/s390/asm-syntax.h: Likewise.
47303         * sysdeps/unix/sysdep.h: Likewise.
47304         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h: Likewise.
47305         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h: Likewise.
47306
47307 2012-01-26  Joseph Myers  <joseph@codesourcery.com>
47308
47309         * libio/libio.h: Remove __STDC__ conditionals.
47310         * malloc/obstack.h: Likewise.
47311         * math/complex.h: Likewise.
47312         * math/math.h: Likewise.
47313         * sysdeps/generic/_G_config.h: Likewise.
47314         * sysdeps/gnu/_G_config.h: Likewise.
47315         * sysdeps/mach/hurd/_G_config.h: Likewise.
47316         * sysdeps/powerpc/bits/mathdef.h: Likewise.
47317         * sysdeps/sh/sh4/bits/mathdef.h: Likewise.
47318         * sysdeps/sparc/bits/mathdef.h: Likewise.
47319
47320 2012-01-26  Ulrich Drepper  <drepper@gmail.com>
47321
47322         [BZ #13583]
47323         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_OSXSAVE.
47324         Clean up HAS_* macros.
47325         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): If
47326         bit_AVX is set also check OSXAVE/XCR0 and set bit_YMM_Usable if
47327         possible.
47328         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Use HAS_YMM_USABLE, not
47329         HAS_AVX.
47330         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
47331         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
47332         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
47333         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
47334         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
47335
47336 2012-01-25  Joseph Myers  <joseph@codesourcery.com>
47337
47338         * elf/tst-unique3.cc (gets): Remove declaration.
47339         * elf/tst-unique3lib.cc (gets): Likewise.
47340         * elf/tst-unique3lib2.cc (gets): Likewise.
47341         * elf/tst-unique4.cc (gets): Likewise.
47342
47343 2012-01-24  Ulrich Drepper  <drepper@gmail.com>
47344
47345         * include/stdio.h: Add C++ protection.  Add gets declarations and
47346         definitions.
47347         * debug/tst-chk1.c: Don't declare gets here.
47348         * stdio-common/tst-gets.c: Likewise.
47349
47350 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
47351
47352         * posix/glob: Remove directory.
47353
47354 2012-01-24  Joseph Myers  <joseph@codesourcery.com>
47355
47356         * wcsmbs/Makefile (tst-c16c32-1-ENV): Define.
47357
47358 2012-01-22  Pino Toscano  <toscano.pino@tiscali.it>
47359
47360         * sysdeps/mach/hurd/socket.c (__socket): Return EAFNOSUPPORT instead
47361         of the non-standard EPFNOSUPPORT.
47362
47363 2011-12-26  Samuel Thibault  <samuel.thibault@ens-lyon.org>
47364
47365         * sysdeps/mach/hurd/mmap.c (__mmap): When MAPADDR is nonzero, try
47366         __vm_allocate and __vm_map with ANYWHERE set to 0 first, and try with
47367         ANYWHERE set to 1 only on KERN_NO_SPACE error.
47368
47369 2012-01-21  Ulrich Drepper  <drepper@gmail.com>
47370
47371         * wcsmbs/uchar.h: Test __STDC_VERSION__.
47372
47373 2012-01-20  Ulrich Drepper  <drepper@gmail.com>
47374
47375         * nscd/aicache.c (addhstaiX): Do not cache negative results of
47376         transient errors.
47377         * nscd/grpcache.c (cache_addgr): Likewise.
47378         * nscd/hstcache.c (cache_addhst): Likewise.
47379         * nscd/initgrcache.c (addinitgroupsX): Likewise.
47380         * nscd/pwdcache.c (cache_addpw): Likewise.
47381         * nscd/servicescache.c (cache_addserv): Likewise.
47382
47383 2012-01-16  Ulrich Drepper  <drepper@gmail.com>
47384
47385         * malloc/malloc.c: Various cleanups.
47386         * malloc/hooks.c: Likewise.
47387
47388         * stdlib/Makefile (tests): Add bug-fmtmsg1.
47389         * stdlib/bug-fmtmsg1.c: New file.
47390
47391         * stdlib/fmtmsg.c (init): Add missing unlock.
47392         Patch by Peng Haitao <penght@cn.fujitsu.com>.
47393
47394 2012-01-12  Marek Polacek  <polacek@redhat.com>
47395
47396         * libio/bits/stdio2.h: Do not define gets for ISO C11, ISO C++11,
47397         and _GNU_SOURCE.
47398
47399 2012-01-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
47400
47401         * powerpc/powerpc32/sysdep.h: Add GLUE and GENERATE_GOT_LABEL macros.
47402         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Call
47403         macro to ensure uniqueness of label name.
47404         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
47405         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
47406
47407 2012-01-11  Ulrich Drepper  <drepper@gmail.com>
47408
47409         * sysdeps/ieee754/dbl-64/wordsize-64/e_acosh.c: New file.
47410
47411         * sysdeps/ieee754/dbl-64/s_scalbln.c: Add branch prediction.
47412         * sysdeps/ieee754/flt-32/s_scalblnf.c: Likewise.
47413         * sysdeps/ieee754/ldbl-96/s_scalblnl.c: Likewise.
47414         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbln.c: New file.
47415
47416 2012-01-10  Ulrich Drepper  <drepper@gmail.com>
47417
47418         * sysdeps/ieee754/dbl-64/wordsize-64/s_modf.c: New file.
47419
47420         * sysdeps/ieee754/dbl-64/s_modf.c: Add branch prediction.
47421         * sysdeps/ieee754/flt-32/s_modff.c: Likewise.
47422         * sysdeps/ieee754/ldbl-96/s_modfl.c: Likewise.
47423
47424         * math/bits/mathcalls.h: Add const attribute to fmin and fmax.
47425
47426         * sysdeps/ieee754/dbl-64/s_scalbn.c: Add branch prediction.
47427         * sysdeps/ieee754/flt-32/s_scalbnf.c: Likewise.
47428         * sysdeps/ieee754/ldbl-96/s_scalbnl.c: Likewise.
47429         * sysdeps/ieee754/dbl-64/wordsize-64/s_scalbn.c: New file.
47430
47431         * math/bits/math-finite.h: Add ldexp support.
47432
47433 2012-01-10  Marek Polacek  <polacek@redhat.com>
47434
47435         * locale/programs/localedef.h (show_archive_content): Add noreturn
47436         attribute.
47437
47438 2012-01-09  Ulrich Drepper  <drepper@gmail.com>
47439
47440         * sysdeps/ieee754/dbl-64/s_log1p.c (__log1p): Add branch prediction.
47441
47442 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47443
47444         * io/bits/poll2.h: Add __BEGIN/__END_DECLS.
47445
47446         * io/Makefile (headers): Add bits/poll2.h.
47447
47448 2011-01-05  Will Schmidt  <will_schmidt@vnet.ibm.com>
47449
47450         * sysdeps/unix/sysv/linux/powerpc/powerpc32/getcontext.S: Fix a
47451         typo #include statement.
47452
47453 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47454
47455         * include/sys/cdefs.h: Define __attribute_alloc_size.
47456         * catgets/gencat.c: Add alloc_size attribute and apply consistently
47457         the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
47458         * elf/pldd.c: Likewise.
47459         * iconv/iconv_charmap.c: Likewise.
47460         * iconv/iconvconfig.c: Likewise.
47461         * iconv/strtab.c: Likewise.
47462         * locale/programs/locale.c: Likewise.
47463         * locale/programs/localedef.h: Likewise.
47464         * locale/programs/simple-hash.c: Likewise.
47465         * nscd/nscd.h: Likewise.
47466         * nss/makedb.c: Likewise.
47467         * sysdeps/generic/ldconfig.h: Likewise.
47468         * locale/programs/localedef.c: Remove xmalloc prototype.
47469         * nscd/mem.c: Remove xmalloc and xcalloc prototypes.
47470
47471 2012-01-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
47472
47473         * stdio-common/vfscanf.c (_IO_vfscanf_internal): Use alloca when
47474         appropriate.
47475
47476 2012-01-08  Ulrich Drepper  <drepper@gmail.com>
47477
47478         * math/Makefile (tests): Add tst-CMPLX.
47479         * math/tst-CMPLX.c: New file.
47480
47481         * math/complex.h (CMPLXL): Fix typo.
47482
47483         * debug/Makefile (routines): Add poll_chk and ppoll_chk.
47484         * debug/Versions: Export __pool_chk and __ppoll_chk from libc for
47485         GLIBC_2.16.
47486         * debug/tst-chk1.c: Add poll and ppoll tests.
47487         * io/sys/poll.h: Include bits/poll2.h for _FORTIFY_SOURCE.
47488         * include/sys/poll.h: Add hidden proto for ppoll.
47489         * sysdeps/unix/sysv/linux/ppoll.c: Add hidden def.
47490         * sysdeps/mach/hurd/ppoll.c: Likewise.
47491         * io/ppoll.c: Likewise.
47492         * debug/poll_chk.c: New file.
47493         * debug/ppoll_chk.c: New file.
47494         * include/bits/poll2.h: New file.
47495         * io/bits/poll2.h: New file.
47496
47497         [BZ #1350]
47498         * math/complex.h (CMPLX, CMPLXF, CMPLXL): Define.
47499
47500         * configure.in: static is always set to yes.  Remove.
47501         * config.make.in: Don't set build-static.
47502         * Makeconfig: Remove use of build-static.
47503         * dlfcn/Makefile: Likewise.
47504         * elf/Makefile: Likewise.
47505         * math/Makefile: Likewise.
47506         * misc/Makefile: Likewise.
47507         * nptl/Makefile: Likewise.
47508         * sysdeps/mach/hurd/Makefile: Likewise.
47509
47510         * configure.in: PWD_P is not used anymore.
47511         * config.make.in: Remove PWD_P entry.
47512
47513         * configure.in: Remove last remnants of RANLIB.
47514         No need to check for signed size_t anymore.
47515         Don't set libc_commonpagesize and libc_relro_required here for Alpha
47516         and IA-64.
47517         Remove __builtin_expect test because we require at least gcc 3.4.
47518         * aclocal.m4: Likewise.
47519
47520         * wcsmbs/mbrtoc16.c: Implement using towc function.
47521         * wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
47522         * wcsmbs/wcsmbsload.c: Likewise.
47523         * iconv/gconv_simple.c: Likewise.
47524         * iconv/gconv_int.h: Likewise.
47525         * iconv/gconv_builtin.h: Likewise.
47526         * iconv/iconv_prog.c: Remove CHAR16 handling.
47527
47528         * wcsmbs/c16rtomb.c: Remove #if 0'ed code.
47529
47530         * wcsmbs/mbrtowc.c: Better check for invalid inputs.
47531
47532         * configure.in: Remove --with-elf and --enable-bounded options.
47533         Dont set base_machine for ia64.  More non-ELF conditions removed.
47534         Remove testing and setting of leading underscore information.
47535         * config.make.in (build-bounded): Set to no.
47536         * config.h.in: Remove NO_UNDERSCORES entry.
47537         * include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS.  ELF has
47538         them.
47539         * csu/start.c: Remove !NO_UNDERSCORE code.
47540         * locale/localeinfo.h: Likewise.
47541         * sysdeps/generic/machine-gmon.h: Likewise.
47542         * sysdeps/generic/sysdep.h: Likewise.
47543         * sysdeps/i386/sysdep.h: Likewise.
47544         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
47545         * sysdeps/mach/sysdep.h: Likewise.
47546         * sysdeps/s390/s390-32/sysdep.h: Likewise.
47547         * sysdeps/s390/s390-64/sysdep.h: Likewise.
47548         * sysdeps/sh/sysdep.h: Likewise.
47549         * sysdeps/sparc/sparc32/alloca.S: Likewise.
47550         * sysdeps/unix/i386/sysdep.S: Likewise.
47551         * sysdeps/unix/sparc/start.c: Likewise.
47552         * sysdeps/unix/sparc/sysdep.S: Likewise.
47553         * sysdeps/unix/sparc/sysdep.h: Likewise.
47554         * sysdeps/unix/start.c: Likewise.
47555         * sysdeps/unix/x86_64/sysdep.S: Likewise.
47556         * sysdeps/x86_64/sysdep.h: Likewise.
47557
47558 2012-01-07  Ulrich Drepper  <drepper@gmail.com>
47559
47560         [BZ #13553]
47561         * misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
47562         for non-gcc.
47563         * argp/argp-fmtstream.h: Use const instead __const.
47564         * argp/argp.h: Likewise.
47565         * assert/assert.h: Likewise.
47566         * bits/fenv.h: Likewise.
47567         * bits/sched.h: Likewise.
47568         * bits/sigset.h: Likewise.
47569         * bits/sigthread.h: Likewise.
47570         * catgets/nl_types.h: Likewise.
47571         * conform/data/pthread.h-data: Likewise.
47572         * crypt/crypt-private.h: Likewise.
47573         * crypt/crypt.h: Likewise.
47574         * crypt/crypt_util.c: Likewise.
47575         * ctype/ctype.h: Likewise.
47576         * debug/execinfo.h: Likewise.
47577         * debug/mbsnrtowcs_chk.c: Likewise.
47578         * debug/mbsrtowcs_chk.c: Likewise.
47579         * debug/wcsnrtombs_chk.c: Likewise.
47580         * debug/wcsrtombs_chk.c: Likewise.
47581         * debug/wcstombs_chk.c: Likewise.
47582         * dirent/dirent.h: Likewise.
47583         * dlfcn/dlfcn.h: Likewise.
47584         * elf/neededtest4.c: Likewise.
47585         * grp/grp.h: Likewise.
47586         * gshadow/gshadow.h: Likewise.
47587         * iconv/gconv.h: Likewise.
47588         * iconv/gconv_int.h: Likewise.
47589         * iconv/gconv_simple.c: Likewise.
47590         * iconv/iconv.h: Likewise.
47591         * iconv/loop.c: Likewise.
47592         * iconv/skeleton.c: Likewise.
47593         * include/aio.h: Likewise.
47594         * include/aliases.h: Likewise.
47595         * include/argz.h: Likewise.
47596         * include/arpa/inet.h: Likewise.
47597         * include/assert.h: Likewise.
47598         * include/dirent.h: Likewise.
47599         * include/dlfcn.h: Likewise.
47600         * include/execinfo.h: Likewise.
47601         * include/fcntl.h: Likewise.
47602         * include/fenv.h: Likewise.
47603         * include/glob.h: Likewise.
47604         * include/grp.h: Likewise.
47605         * include/libintl.h: Likewise.
47606         * include/mntent.h: Likewise.
47607         * include/netdb.h: Likewise.
47608         * include/pwd.h: Likewise.
47609         * include/rpc/netdb.h: Likewise.
47610         * include/sched.h: Likewise.
47611         * include/search.h: Likewise.
47612         * include/shadow.h: Likewise.
47613         * include/signal.h: Likewise.
47614         * include/stdio.h: Likewise.
47615         * include/stdlib.h: Likewise.
47616         * include/string.h: Likewise.
47617         * include/sys/socket.h: Likewise.
47618         * include/sys/stat.h: Likewise.
47619         * include/sys/statfs.h: Likewise.
47620         * include/sys/statvfs.h: Likewise.
47621         * include/sys/syslog.h: Likewise.
47622         * include/sys/time.h: Likewise.
47623         * include/sys/uio.h: Likewise.
47624         * include/time.h: Likewise.
47625         * include/unistd.h: Likewise.
47626         * include/utmp.h: Likewise.
47627         * include/wchar.h: Likewise.
47628         * include/wctype.h: Likewise.
47629         * inet/aliases.h: Likewise.
47630         * inet/arpa/inet.h: Likewise.
47631         * inet/netinet/ether.h: Likewise.
47632         * inet/netinet/in.h: Likewise.
47633         * intl/libintl.h: Likewise.
47634         * io/bits/fcntl2.h: Likewise.
47635         * io/fcntl.h: Likewise.
47636         * io/ftw.h: Likewise.
47637         * io/sys/poll.h: Likewise.
47638         * io/sys/stat.h: Likewise.
47639         * io/sys/statfs.h: Likewise.
47640         * io/sys/statvfs.h: Likewise.
47641         * io/utime.h: Likewise.
47642         * libio/bits/stdio.h: Likewise.
47643         * libio/bits/stdio2.h: Likewise.
47644         * libio/libio.h: Likewise.
47645         * libio/libioP.h: Likewise.
47646         * libio/stdio.h: Likewise.
47647         * locale/lc-ctype.c: Likewise.
47648         * locale/locale.h: Likewise.
47649         * login/utmp.h: Likewise.
47650         * malloc/arena.c: Likewise.
47651         * malloc/malloc.c: Likewise.
47652         * malloc/malloc.h: Likewise.
47653         * malloc/mcheck.c: Likewise.
47654         * malloc/mtrace.c: Likewise.
47655         * math/bits/mathcalls.h: Likewise.
47656         * math/fenv.h: Likewise.
47657         * math/math_private.h: Likewise.
47658         * misc/bits/error.h: Likewise.
47659         * misc/bits/syslog.h: Likewise.
47660         * misc/err.h: Likewise.
47661         * misc/error.h: Likewise.
47662         * misc/fstab.h: Likewise.
47663         * misc/mntent.h: Likewise.
47664         * misc/regexp.h: Likewise.
47665         * misc/search.h: Likewise.
47666         * misc/sgtty.h: Likewise.
47667         * misc/sys/mman.h: Likewise.
47668         * misc/sys/syslog.h: Likewise.
47669         * misc/sys/uio.h: Likewise.
47670         * misc/sys/xattr.h: Likewise.
47671         * misc/ttyent.h: Likewise.
47672         * nis/rpcsvc/ypclnt.h: Likewise.
47673         * nss/nss.h: Likewise.
47674         * posix/bits/unistd.h: Likewise.
47675         * posix/fnmatch.h: Likewise.
47676         * posix/glob.h: Likewise.
47677         * posix/sched.h: Likewise.
47678         * posix/spawn.h: Likewise.
47679         * posix/sys/wait.h: Likewise.
47680         * posix/unistd.h: Likewise.
47681         * posix/wordexp.h: Likewise.
47682         * pwd/pwd.h: Likewise.
47683         * resolv/netdb.h: Likewise.
47684         * resource/sys/resource.h: Likewise.
47685         * rt/aio.h: Likewise.
47686         * rt/bits/mqueue2.h: Likewise.
47687         * rt/mqueue.h: Likewise.
47688         * shadow/shadow.h: Likewise.
47689         * signal/signal.h: Likewise.
47690         * socket/send.c: Likewise.
47691         * socket/sendto.c: Likewise.
47692         * socket/sys/socket.h: Likewise.
47693         * stdio-common/printf.h: Likewise.
47694         * stdlib/bits/stdlib.h: Likewise.
47695         * stdlib/fmtmsg.h: Likewise.
47696         * stdlib/monetary.h: Likewise.
47697         * stdlib/stdlib.h: Likewise.
47698         * stdlib/ucontext.h: Likewise.
47699         * streams/stropts.h: Likewise.
47700         * string/argz.h: Likewise.
47701         * string/bits/string2.h: Likewise.
47702         * string/string.h: Likewise.
47703         * string/strings.h: Likewise.
47704         * sunrpc/rpc/auth.h: Likewise.
47705         * sunrpc/rpc/auth_des.h: Likewise.
47706         * sunrpc/rpc/clnt.h: Likewise.
47707         * sunrpc/rpc/netdb.h: Likewise.
47708         * sunrpc/rpc/pmap_clnt.h: Likewise.
47709         * sunrpc/rpc/xdr.h: Likewise.
47710         * sysdeps/generic/inttypes.h: Likewise.
47711         * sysdeps/generic/net/if.h: Likewise.
47712         * sysdeps/generic/sys/swap.h: Likewise.
47713         * sysdeps/gnu/net/if.h: Likewise.
47714         * sysdeps/gnu/utmpx.h: Likewise.
47715         * sysdeps/i386/fpu/bits/fenv.h: Likewise.
47716         * sysdeps/i386/i486/bits/string.h: Likewise.
47717         * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
47718         * sysdeps/s390/bits/string.h: Likewise.
47719         * sysdeps/s390/fpu/bits/fenv.h: Likewise.
47720         * sysdeps/sparc/fpu/bits/fenv.h: Likewise.
47721         * sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
47722         * sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
47723         * sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
47724         * sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
47725         * sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
47726         * sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
47727         * sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
47728         * sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
47729         * sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
47730         * sysdeps/unix/sysv/linux/preadv.c: Likewise.
47731         * sysdeps/unix/sysv/linux/prlimit.c: Likewise.
47732         * sysdeps/unix/sysv/linux/pwritev.c: Likewise.
47733         * sysdeps/unix/sysv/linux/readv.c: Likewise.
47734         * sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
47735         * sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
47736         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
47737         * sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
47738         * sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
47739         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
47740         * sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
47741         * sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
47742         * sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
47743         * sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
47744         * sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
47745         * sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
47746         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
47747         * sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
47748         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
47749         * sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
47750         * sysvipc/sys/ipc.h: Likewise.
47751         * sysvipc/sys/msg.h: Likewise.
47752         * sysvipc/sys/sem.h: Likewise.
47753         * sysvipc/sys/shm.h: Likewise.
47754         * termios/termios.h: Likewise.
47755         * time/sys/time.h: Likewise.
47756         * time/time.h: Likewise.
47757         * wcsmbs/bits/wchar2.h: Likewise.
47758         * wcsmbs/uchar.h: Likewise.
47759         * wcsmbs/wchar.h: Likewise.
47760         * wctype/wctype.h: Likewise.
47761
47762         [BZ #13551]
47763         * Makeconfig: Remove all but ELF support including AIX support.
47764         * Makerules: Likewise.
47765         * config.h.in: Likewise.
47766         * config.make.in: Likewise.
47767         * configure: Likewise.
47768         * configure.in: Likewise.
47769         * csu/Makefile: Likewise.
47770         * csu/version.c: Likewise.
47771         * debug/Makefile: Likewise.
47772         * dlfcn/Makefile: Likewise.
47773         * elf/Makefile: Likewise.
47774         * extra-lib.mk: Likewise.
47775         * iconv/Makefile: Likewise.
47776         * include/libc-symbols.h: Likewise.
47777         * include/shlib-compat.h: Likewise.
47778         * resolv/Makefile: Likewise.
47779         * resolv/res_libc.c: Likewise.
47780         * rt/Makefile: Likewise.
47781         * sysdeps/i386/asm-syntax.h: Likewise.
47782         * sysdeps/i386/sysdep.h: Likewise.
47783         * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
47784         * sysdeps/mach/sysdep.h: Likewise.
47785         * sysdeps/powerpc/powerpc32/Makefile: Likewise.
47786         * sysdeps/powerpc/powerpc64/Makefile: Likewise.
47787         * sysdeps/s390/asm-syntax.h: Likewise.
47788         * sysdeps/s390/s390-32/sysdep.h: Likewise.
47789         * sysdeps/s390/s390-64/sysdep.h: Likewise.
47790         * sysdeps/sh/sysdep.h: Likewise.
47791         * sysdeps/unix/sparc/sysdep.h: Likewise.
47792         * sysdeps/wordsize-32/divdi3.c: Likewise.
47793         * sysdeps/x86_64/sysdep.h: Likewise.
47794
47795         * argp/Versions: Remove _argp_unlock_xxx.
47796
47797         [BZ #13559]
47798         * abilist/ld.abilist: Update.  Adjust for removal of tls option.
47799         * abilist/libBrokenLocale.abilist: Likewise.
47800         * abilist/libanl.abilist: Likewise.
47801         * abilist/libc.abilist: Likewise.
47802         * abilist/libcrypt.abilist: Likewise.
47803         * abilist/libdl.abilist: Likewise.
47804         * abilist/libm.abilist: Likewise.
47805         * abilist/libnsl.abilist: Likewise.
47806         * abilist/libpthread.abilist: Likewise.
47807         * abilist/libresolv.abilist: Likewise.
47808         * abilist/librt.abilist: Likewise.
47809         * abilist/libthread_db.abilist: Likewise.
47810         * abilist/libutil.abilist: Likewise.
47811         * abilist/libnss_db.abilist: New file.
47812
47813         * scripts/abilist.awk: Add support for indirect functions.
47814
47815         * sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
47816
47817         * sysdeps/generic/ldsodefs.h: Remove Alpha support.
47818
47819         * shlib-versions: Remove entries for ports architectures.
47820
47821         * elf/tls-macros.h: Remove support for Alpha and IA-64.  Should be in
47822         files in ports.
47823         * elf/stackguard-macros.h: Remove support for IA-64.
47824         * elf/tst-auditmod1.c: Likewise.
47825         * sysdeps/generic/ldsodefs.h: Likewise.
47826
47827         * sysdeps/unix/sysv/linux/configure.in: Ports should define
47828         libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
47829         configure files.
47830
47831         [BZ #13552]
47832         * configure.in: Remove --enable-omitfp support.
47833         * FAQ.in: Adjust.
47834         * config.make.in: Likewise.
47835         * Makeconfig: Likewise.
47836         * manual/install.texi: Likewise.
47837
47838         In case anyone cares, the IA-64 architecture could move to ports.
47839         * sysdeps/ia64/*: Removed.
47840         * sysdeps/unix/sysv/linux/ia64/*: Removed.
47841         * sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
47842
47843         [BZ #13555]
47844         * configure.in: Remove entries for unsupported architectures.
47845
47846         [BZ #13533]
47847         * iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
47848         * iconv/gconv_simple.c: Rename char16_t routines.  Add char16_t<->utf8
47849         routines.
47850         * iconv/gconv_int.h: Adjust prototypes for char16_t routines.
47851         * iconv/iconv_prog.c: Recognize CHAR16 as internal name.
47852         * wcsmbs/c16rtomb.c: Fix a few problems.  Disable all the code and
47853         fall back to using wcrtomb.
47854         * wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
47855         * wcsmbs/wcsmbsload.c: Make char16 routines optional.  Adjust for
47856         renaming.
47857         * wcsmbs/Makefile (tests): Add tst-c16c32-1:
47858         * wcsmbs/tst-c16c32-1.c: New file.
47859
47860         * wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
47861         local variable.
47862
47863         * libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
47864
47865         * elf/tst-unique3.cc: Add explicit declaration of gets.
47866         * elf/tst-unique3lib.cc: Likewise.
47867         * elf/tst-unique3lib2.cc: Likewise.
47868         * elf/tst-unique4.cc: Likewise.
47869
47870         * string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
47871
47872 2012-01-06  Joseph Myers  <joseph@codesourcery.com>
47873
47874         [BZ #13566]
47875         * assert/assert.h (static_assert): Don't define for C++.
47876         * libio/stdio.h (gets): Do declare for C++ <= C++11.
47877         * wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
47878
47879 2012-01-03  Ulrich Drepper  <drepper@gmail.com>
47880
47881         * iconv/loop.c (single loop): Fix assertion in storing of
47882         remaining bytes.
47883
47884         * posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
47885
47886 2012-01-01  Ulrich Drepper  <drepper@gmail.com>
47887
47888         * posix/getconf.c: Update copyright year.
47889         * nss/getent.c: Likewise.
47890         * nss/makedb.c: Likewise.
47891         * iconv/iconvconfig.c: Likewise.
47892         * iconv/iconv_prog.c: Likewise.
47893         * elf/ldconfig.c: Likewise.
47894         * elf/pldd.c: Likewise.
47895         * elf/sotruss.ksh: Likewise.
47896         * catgets/gencat.c: Likewise.
47897         * csu/version.c: Likewise.
47898         * elf/ldd.bash.in: Likewise.
47899         * elf/sprof.c (print_version): Likewise.
47900         * locale/programs/locale.c: Likewise.
47901         * locale/programs/localedef.c: Likewise.
47902         * login/programs/pt_chown.c: Likewise.
47903         * nscd/nscd.c (print_version): Likewise.
47904         * debug/xtrace.sh: Likewise.
47905         * malloc/memusage.sh: Likewise.
47906         * malloc/mtrace.pl: Likewise.
47907         * debug/catchsegv.sh: Likewise.
47908
47909 2011-12-30  Jakub Jelinek  <jakub@redhat.com>
47910
47911         * posix/regex_internal.c (re_string_fetch_byte_case): Remove
47912         pure attribute.
47913
47914 2011-12-24  Ulrich Drepper  <drepper@gmail.com>
47915
47916         [BZ #13533]
47917         * iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
47918         * iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
47919         transformations.
47920         * iconv/gconv_int.h: Likewise.
47921         * wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
47922         * wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
47923         from libc for GLIBC_2.16.
47924         * wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
47925         * wcsmbs/wcrtomb.c: Define c32rtomb alias.
47926         * wcsmbs/uchar.h: Really define mbstate_t.
47927         * wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
47928         * wcsmbs/c16rtomb.c: New file.
47929         * wcsmbs/mbrtoc16.c: New file.
47930         * wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
47931         for C/POSIX locale.
47932         (__wcsmbs_load_conv): Do not fill in c16 routines yet.
47933         * wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
47934
47935         * wcsmbs/wchar.h: Add missing __restrict.
47936
47937 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
47938
47939         [BZ #13532]
47940         * time/Makefile (routines): Add timespec_get.
47941         * time/Versions: Export timespec_get from libc for GLIBC_2.16.
47942         * time/time.h: Define TIME_UTC and declare timespec_get.  Define
47943         timespec for ISO C11.
47944         * time/timespec_get.c: New file.
47945         * sysdeps/unix/sysv/linux/timespec_get.c: New file.
47946         * sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
47947
47948         [BZ #13531]
47949         * malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
47950         * stdlib/stdlib.h: Declare aligned_alloc.
47951         * Versions.def: Add GLIBC_2.16 for libc.
47952         * malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
47953
47954         [BZ 13527]
47955         * stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
47956         ISO C11.
47957
47958         * include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
47959         code.
47960
47961         [BZ #13528]
47962         * libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
47963
47964         [BZ #13529]
47965         * assert/assert.h (static_assert): Define.
47966
47967         * version.h: Update for 2.16 development version.
47968
47969         [BZ #13526]
47970         * include/features.h: Handle __STDC_VERSION__ >= 201112 and
47971         _ISOC11_SOURCE.
47972
47973         * version.h (RELEASE): Bump for 2.15 release.
47974         * include/features.h (__GLIBC_MINOR__): Bump to 15.
47975
47976         * sysdeps/x86_64/dl-machine.h: Fix typos in comments.
47977         Patch by Marek Polacek <mpolacek@redhat.com>.
47978
47979         * bits/byteswap.h: Protect long long constants with __extension__.
47980         * sysdeps/i386/bits/byteswap.h: Likewise.
47981         * sysdeps/ia64/bits/byteswap.h: Likewise.
47982         * sysdeps/s390/bits/byteswap.h: Likewise.
47983         * sysdeps/x86_64/bits/byteswap.h: Likewise.
47984
47985 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
47986
47987         [BZ #13540]
47988         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
47989         destination buffer.
47990         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
47991
47992 2011-12-23  Marek Polacek  <polacek@redhat.com>
47993
47994         * elf/dl-addr.c (determine_info): Add inline keyword.
47995         * elf/tst-auditmod4b.c (check_avx): Likewise.
47996         * elf/tst-auditmod6b.c (check_avx): Likewise.
47997         * elf/tst-auditmod6c.c (check_avx): Likewise.
47998         * elf/tst-auditmod7b.c (check_avx): Likewise.
47999
48000 2011-12-23  Ulrich Drepper  <drepper@gmail.com>
48001
48002         * sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
48003         !__SSE_MATH__.
48004
48005 2011-12-23  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48006
48007         [BZ #13540]
48008         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
48009         processing for last bytes.
48010
48011 2011-08-06  Bruno Haible  <bruno@clisp.org>
48012
48013         [BZ #13061]
48014         * iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
48015         U+0385, not to U+1FEE.
48016
48017         [BZ #13062]
48018         * iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
48019         entry for U+00A5 U+0301.
48020
48021 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
48022
48023         [BZ #13166]
48024         * inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
48025         buffer for the output is too small.
48026
48027         * sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
48028         optimization.
48029
48030         [BZ #13185]
48031         * sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
48032         SSE flags if possible.
48033
48034 2011-12-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48035
48036         [BZ #13540]
48037         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
48038         processing for last bytes.
48039
48040 2011-12-22  Joseph Myers  <joseph@codesourcery.com>
48041
48042         * sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
48043         (syscall-list-default-options, syscall-list-default-condition)
48044         (syscall-list-includes): Define.
48045         ($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
48046         list of ABIs and options and #if conditions for each ABI.  Do not
48047         handle common syscalls between ABIs specially.
48048         * sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
48049         Remove.
48050         (syscall-list-variants, syscall-list-32bit-options)
48051         (syscall-list-32bit-condition, syscall-list-64bit-options)
48052         (syscall-list-64bit-condition): Define.
48053         * sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
48054         (syscall-list-variants, syscall-list-32bit-options)
48055         (syscall-list-32bit-condition, syscall-list-64bit-options)
48056         (syscall-list-64bit-condition): Define.
48057         * sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
48058         Remove.
48059         (syscall-list-variants, syscall-list-32bit-options)
48060         (syscall-list-32bit-condition, syscall-list-64bit-options)
48061         (syscall-list-64bit-condition): Define.
48062         * sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
48063         Remove.
48064         (syscall-list-variants, syscall-list-32bit-options)
48065         (syscall-list-32bit-condition, syscall-list-64bit-options)
48066         (syscall-list-64bit-condition): Define.
48067
48068 2011-12-22  Ulrich Drepper  <drepper@gmail.com>
48069
48070         * locale/iso-639.def: Add brx entry.
48071
48072         [BZ #13328]
48073         * malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
48074         Proposed by Mariusz_Cukr <marcukr@op.pl>.
48075
48076         * sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
48077         __feraiseexcept_renamed.
48078
48079 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
48080
48081         [BZ #13538]
48082         * sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
48083         EPOLLET with unsigned values.
48084         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
48085         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
48086
48087         * math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
48088         to large cancellation.
48089         * math/s_cacoshf.c: Likewise.
48090         * math/s_cacoshl.c: Likewise.
48091
48092 2011-11-18  Richard B. Kreckel  <kreckel@ginac.de>
48093
48094         [BZ #13305]
48095         [BZ #12786]
48096         * math/s_cacosh.c: Fix rare miscomputation in cacosh().
48097         * math/s_cacoshf.c: Likewise.
48098         * math/s_cacoshl.c: Likewise.
48099
48100 2011-12-21  Ulrich Drepper  <drepper@gmail.com>
48101
48102         [BZ #13439]
48103         * iconv/gconv.h: Define __GCONV_SWAP.
48104         * iconvdata/unicode.c: The swap bit must be stored in __flags.
48105         * iconvdata/utf-16.c: Likewise.
48106         * iconvdata/utf-32.c: Likewise.
48107
48108 2011-12-21  Andreas Schwab  <schwab@linux-m68k.org>
48109
48110         [BZ #13524]
48111         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
48112         numerator after shifting it by one limb.
48113
48114 2011-12-19  Rafael Ávila de Espíndola  <rafael.espindola@gmail.com>
48115
48116         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
48117         under [__USE_EXTERN_INLINES].
48118
48119 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
48120
48121         [BZ #13446]
48122         * stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
48123
48124 2011-11-22  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48125
48126         * sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
48127         * sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
48128         optimized code.
48129         * sysdeps/powerpc/powerpc32/power7/Makefile: New file.
48130         * sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
48131         * sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
48132         * sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
48133         for strncasecmp/strncasecmp_l compilation.
48134         * sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
48135         * sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
48136
48137 2011-12-08  Marek Polacek  <mpolacek@redhat.com>
48138
48139         [BZ #13484]
48140         * math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
48141         of __asm__.
48142
48143 2011-12-17  Ulrich Drepper  <drepper@gmail.com>
48144
48145         [BZ #13506]
48146         * time/tzfile.c (__tzfile_read): Check values from file header.
48147
48148 2011-11-21  Will Schmidt  <will_schmidt@vnet.ibm.com>
48149
48150         * powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
48151         * powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
48152         * powerpc/powerpc32/dl-start.S: Likewise.
48153         * powerpc/powerpc32/elf/start.S: Likewise.
48154         * powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
48155         * powerpc/powerpc32/fpu/s_ceil.S: Likewise.
48156         * powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
48157         * powerpc/powerpc32/fpu/s_floor.S: Likewise.
48158         * powerpc/powerpc32/fpu/s_floorf.S: Likewise.
48159         * powerpc/powerpc32/fpu/s_lround.S: Likewise.
48160         * powerpc/powerpc32/fpu/s_rint.S: Likewise.
48161         * powerpc/powerpc32/fpu/s_rintf.S: Likewise.
48162         * powerpc/powerpc32/fpu/s_round.S: Likewise.
48163         * powerpc/powerpc32/fpu/s_roundf.S: Likewise.
48164         * powerpc/powerpc32/fpu/s_trunc.S: Likewise.
48165         * powerpc/powerpc32/fpu/s_truncf.S: Likewise.
48166         * powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
48167         * powerpc/powerpc32/memset.S: Likewise.
48168         * powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
48169         * powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
48170         * powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
48171         * powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
48172         * powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
48173         * powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
48174         * powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
48175         * powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
48176         * unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
48177         * unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
48178         * unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
48179         * unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
48180         * unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
48181
48182 2011-11-18  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48183
48184         * math/libm-test.inc: Added more nearbyint tests.
48185         * sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
48186         * sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
48187         * sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
48188         * sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
48189
48190 2011-11-21  Ross Lagerwall  <rosslagerwall@gmail.com>
48191
48192         * resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
48193         FD_CLOEXEC.
48194
48195 2011-11-14  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48196
48197         * sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
48198         Add wcscpy-ssse3 wcscpy-c.
48199         * sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
48200         * sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
48201         * sysdeps/x86_64/multiarch/wcscpy.S: New file.
48202         * sysdeps/x86_64/wcschr.S: New file.
48203         * sysdeps/x86_64/wcsrchr.S: New file.
48204         * string/test-strcmp.c: Remove checking of wcscmp function for
48205         wrong alignments.
48206         * sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
48207         (sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
48208         wcsrchr-sse2 wcsrchr-c.
48209         * sysdeps/i386/i686/multiarch/wcschr.S: New file.
48210         * sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
48211         * sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
48212         * sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
48213         * sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
48214         * sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
48215         * sysdeps/i386/i686/multiarch/wcscpy.S: New file.
48216         * sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
48217         * sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
48218         * wcsmbc/wcschr.c (WCSCHR): New macro.
48219
48220 2011-11-17  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48221
48222         * wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
48223         * wcsmbs/test-wcsrchr.c: New file.
48224         * string/test-strrchr.c: Add wcsrchr support.
48225         (WIDE): New macro.
48226         * wcsmbs/test-wcscpy.c: New file.
48227         * string/test-strcpy.c: Add wcscpy support.
48228         (WIDE): New macro.
48229
48230 2011-12-10  Ulrich Drepper  <drepper@gmail.com>
48231
48232         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
48233         the inner loop.
48234
48235 2011-12-06  Andreas Schwab  <schwab@linux-m68k.org>
48236
48237         [BZ #13472]
48238         * sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
48239
48240 2011-12-04  Ulrich Drepper  <drepper@gmail.com>
48241
48242         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
48243         Minor optimizations.
48244
48245         * sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
48246         * sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
48247         * sunrpc/clnt_udp.c (clntudp_call): Likewise.
48248
48249 2011-12-03  Ulrich Drepper  <drepper@gmail.com>
48250
48251         * inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
48252         IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
48253         IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
48254         for gcc to avoid warnings.
48255         * inet/Makefile (tests): Add tst-checks.
48256         * inet/tst-checks.c: New file.
48257
48258         * sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
48259         warning.
48260
48261         * sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
48262         __wmemcmp_sse2.
48263
48264         * sysdeps/x86_64/fpu/s_scalbln.c: Removed.
48265         * sysdeps/x86_64/fpu/s_scalbn.c: Removed.
48266
48267         * malloc/mcheck.h: Fix use of incorrect encoding in comment.
48268
48269 2011-12-02  Ulrich Drepper  <drepper@gmail.com>
48270
48271         * nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
48272         problem.
48273
48274         * nscd/aicache.c (addhstaiX): Avoid unused variable warning.
48275
48276 2011-11-29  Joseph Myers  <joseph@codesourcery.com>
48277
48278         * sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
48279         conditional on GCC version.
48280         (__arch_compare_and_exchange_val_8_acq)
48281         (__arch_compare_and_exchange_val_16_acq)
48282         (__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
48283         (atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
48284         (atomic_bit_test_set): Use rNOSP instead of "r" constraints.
48285
48286 2011-12-02  Joseph Myers  <joseph@codesourcery.com>
48287
48288         * sysdeps/sh/backtrace.c: New file.
48289
48290 2011-12-02  Andreas Schwab  <schwab@redhat.com>
48291
48292         * misc/bits/select2.h (__FD_ELT): Mark as extension.  Add
48293         parenthesis.
48294
48295 2011-12-01  Andreas Schwab  <schwab@redhat.com>
48296
48297         * sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
48298         falling back to utime.
48299
48300 2011-11-30  Andreas Schwab  <schwab@redhat.com>
48301
48302         * sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
48303         expectations for float.
48304
48305 2011-11-29  Andreas Schwab  <schwab@redhat.com>
48306
48307         * locale/weight.h (findidx): Add parameter len.
48308         * locale/weightwc.h (findidx): Likewise.
48309         * posix/fnmatch_loop.c (FCT): Adjust caller.
48310         * posix/regcomp.c (build_equiv_class): Likewise.
48311         * posix/regex_internal.h (re_string_elem_size_at): Likewise.
48312         * posix/regexec.c (check_node_accept_bytes): Likewise.
48313         * string/strcoll_l.c (STRCOLL): Likewise.
48314         * string/strxfrm_l.c (STRXFRM): Likewise.
48315
48316 2011-11-17  Ulrich Drepper  <drepper@gmail.com>
48317
48318         * Makefile.in: Remove CVSOPT handling.
48319         * configure.in: Remove use of AC_REVISION.
48320         * iconvdata/Makefile (distribute): No need to filter out CVS.
48321         * scripts/list-sources.sh: Remove CVS, subversion and monotone
48322         handling.
48323
48324 2011-11-16  Andreas Schwab  <schwab@redhat.com>
48325
48326         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S
48327         [USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
48328         [USE_AS_STRNCASECMP_L]: Likewise.
48329         (__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
48330         NO_TLS_DIRECT_SEG_REFS.
48331         * sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
48332         Fix argument offsets for non-PIC.
48333         [USE_AS_STRNCASECMP_L]: Likewise.
48334         (__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
48335         NO_TLS_DIRECT_SEG_REFS.
48336
48337 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
48338
48339         * locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
48340         O_CLOEXEC.
48341         * locale/loadlocale.c (_nl_load_locale): Likewise.
48342
48343 2011-11-15  Andreas Schwab  <schwab@redhat.com>
48344
48345         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
48346         [__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
48347         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
48348         (SYSCALL_GETTIME): Set errno on error.
48349
48350         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
48351         count references to noai6ai_cached.
48352
48353 2011-11-15  Ulrich Drepper  <drepper@gmail.com>
48354
48355         * time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
48356
48357         * sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
48358         FD_CLOEXEC for /proc/self/maps.
48359
48360         * sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
48361         FD_CLOEXEC for /proc/meminfo.
48362
48363         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
48364         gai.conf.
48365
48366         * resolv/res_query.c (res_hostalias):  Don't allow cancellation and set
48367         FD_CLOEXEC for given file.
48368
48369         * resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
48370
48371         * resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
48372         FD_CLOEXEC for /etc/hosts.
48373         (_gethtent): Likewise.
48374
48375         * nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
48376
48377         * nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
48378         cancellation and set FD_CLOEXEC for /etc/netgroup.
48379
48380         * nss/nss_files/files-key.c (search): Don't allow cancellation when
48381         reading /etc/publickey.
48382
48383         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
48384         allow cancellation when reading /etc/group.
48385
48386         * nss/nss_files/files-alias.c (internal_setent): Don't allow
48387         cancellation.
48388         (get_next_alias): Likewise for included file.  Also set FD_CLOEXEC.
48389
48390         * nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
48391         when using data file.
48392
48393         * nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
48394
48395         * nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
48396         (write_nis_obj): Use "c" and "e" in fopen.
48397
48398         * misc/mntent_r.c (__setmntent): Also append e to fopen format.
48399
48400         * misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
48401
48402         * misc/getttyent.c (setttyent): Set FD_CLOEXEC.
48403
48404         * misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
48405
48406         * intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
48407         locale.alias.
48408
48409         * inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
48410
48411         * inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
48412
48413         * iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
48414
48415         * hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
48416         file parsing and set FD_CLOEXEC.
48417
48418 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
48419
48420         * time/tzfile.c (__tzfile_read): Use "e" in fopen call.
48421
48422 2011-11-14  Andreas Schwab  <schwab@redhat.com>
48423
48424         * malloc/arena.c (arena_get2): Don't call reused_arena when
48425         _int_new_arena failed.
48426
48427 2011-11-14  Ulrich Drepper  <drepper@gmail.com>
48428
48429         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]
48430         (sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
48431         * sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
48432         * sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
48433         * sysdeps/i386/i686/multiarch/strncase.S: Likewise.
48434         * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
48435         to compile strcasecmp and strncasecmp.
48436         * sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
48437         * sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
48438
48439         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
48440
48441 2011-11-13  Ulrich Drepper  <drepper@gmail.com>
48442
48443         * sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
48444         locale-defines.sym to gen-as-const-headers.
48445         (sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
48446         strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
48447         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
48448         to compile strcasecmp and strncasecmp.
48449         * sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
48450         strcasecmp_l and strncasecmp_l.
48451         * sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
48452         * sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
48453         * sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
48454         * sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
48455         * sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
48456         * sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
48457         * sysdeps/i386/i686/multiarch/strncase-c.c: New file.
48458         * sysdeps/i386/i686/multiarch/strncase.S: New file.
48459         * sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
48460         * sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
48461         * sysdeps/i386/i686/multiarch/strncase_l.S: New file.
48462
48463 2011-11-12  Ulrich Drepper  <drepper@gmail.com>
48464
48465         * sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
48466         result of SYSDEP_GETTIME_CPU to retval.
48467         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
48468         parameter list to macro.  Remove trailing semicolon.  Adjust users.
48469
48470         * resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
48471         variable.
48472
48473         * sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
48474         mantissa words.
48475         * sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
48476
48477         * sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
48478         from unused variable.
48479
48480         * sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
48481         DWARF definitions.
48482         * sysdeps/generic/dwarf2.h: Don't define enums when using the file
48483         for assembling.
48484
48485         * elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
48486         over namespaces.
48487
48488         * sunrpc/rpc_prot.c (rejected): Fix case value.
48489
48490         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
48491         unsigned long long int to avoid warnings in shift.
48492
48493         * posix/regex_internal.c (re_string_reconstruct): Actually use result
48494         of use of trans.
48495         * posix/regex_internal.h (re_string_wchar_at): Remove temporary
48496         variable tmp.
48497
48498         * sysdeps/i386/i686/multiarch/wcscmp-c.c: Avoid warning.
48499         * sysdeps/i386/i686/multiarch/wcslen-c.c: Likewise.
48500         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: Likewise.
48501
48502         * nis/nis_table.c (nis_list): Use variable of correct type for
48503         result of __follow_path call.
48504
48505 2011-11-07  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
48506
48507         * sysdeps/powerpc/fpu/math_private.h: Using inline assembly version
48508         of math functions ceil, trunc, floor, round, and sqrt, when
48509         avaliable on the platform.
48510         * sysdeps/powerpc/fpu/e_sqrt.c: Undefine __ieee754_sqrt to avoid
48511         name clash.
48512         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
48513         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
48514         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
48515
48516 2011-10-30  Marek Polacek  <mpolacek@redhat.com>
48517
48518         * libio/wfileops.c (_IO_wfile_underflow_mmap): Remove unused variable.
48519         * sysdeps/ieee754/dbl-64/mpsqrt.c (__mpsqrt): Likewise.
48520
48521 2011-11-11  Roland McGrath  <roland@hack.frob.com>
48522
48523         * include/unistd.h: Fix __readlink return type.
48524         Reported by Chris Metcalf <cmetcalf@tilera.com>.
48525
48526 2011-11-11  Ulrich Drepper  <drepper@gmail.com>
48527
48528         * stdlib/ucontext.h: Undo last change for makecontext.
48529
48530 2011-11-11  Andreas Schwab  <schwab@redhat.com>
48531
48532         * nss/db-Makefile ($(VAR_DB)/group.db): Fix typo in awk script.
48533
48534         * misc/sys/cdefs.h (__REDIRECT_NTHNL): Define.
48535         * setjmp/setjmp.h: Mark functions as non-leaf.
48536         * setjmp/bits/setjmp2.h: Likewise.
48537         * stdlib/ucontext.h: Likewise.
48538
48539 2011-11-10  Andreas Schwab  <schwab@redhat.com>
48540
48541         * malloc/arena.c (_int_new_arena): Don't increment narenas.
48542         (reused_arena): Don't check arena limit.
48543         (arena_get2): Atomically check arena limit.
48544
48545 2011-11-08  Ulrich Drepper  <drepper@gmail.com>
48546
48547         * locale/findlocale.c (_nl_find_locale): Use __strcasecmp_l.
48548         * intl/localealias.c (strcasecmp): Define using __strcasecmp_l.
48549
48550         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Remove unnecessary
48551         instructions.
48552
48553 2011-11-07  Andreas Schwab  <schwab@redhat.com>
48554
48555         * libio/genops.c (_IO_flush_all_lockp): Only register cleanup
48556         handler when locking.
48557
48558         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
48559         Fix size of allocated buffer.
48560
48561 2011-11-04  Andreas Schwab  <schwab@redhat.com>
48562
48563         [BZ #10103]
48564         * math/math.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Provide
48565         declarations for long double functions.
48566         * math/complex.h [__NO_LONG_DOUBLE_MATH && !_LIBC]: Likewise.
48567
48568         * elf/sprof.c (load_shobj): Fix off-by-one when reading link name.
48569
48570 2011-11-03  Andreas Schwab  <schwab@redhat.com>
48571
48572         * nscd/nscd.c (main): Don't start AVC thread until credentials are
48573         installed.
48574
48575         * nss/makedb.c (set_file_creation_context): Do nothing if SELinux
48576         is disabled.
48577
48578 2011-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
48579
48580         * bits/ioctl-types.h (_IOT_sgttyb): Set number of chars to 4.
48581
48582 2011-11-01  Andreas Schwab  <schwab@linux-m68k.org>
48583
48584         * include/alloca.h (stackinfo_alloca_round): Define.
48585         (extend_alloca): Use it.
48586         [_STACK_GROWS_UP]: Correct check for adjacent allocation.
48587         * elf/dl-deps.c (_dl_map_object_deps): Don't round alloca size
48588         here.
48589
48590         * scripts/check-local-headers.sh: Ignore libaudit.h.
48591
48592         * nscd/Makefile (extra-objs): Make recursively expanded.
48593
48594 2011-11-01  Ulrich Drepper  <drepper@gmail.com>
48595
48596         * sysdeps/x86_64/strcmp.S: Fix test for non-ASCII locales.
48597         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
48598
48599         * posix/tst-rfc3484.c: Add missing __free_in6ai dummy function.
48600         * posix/tst-rfc3484-2.c: Likewise.
48601         * posix/tst-rfc3484-3.c: Likewise.
48602
48603         * sysdeps/unix/sysv/linux/bits/uio.h: Declare process_vm_readv and
48604         process_vm_writev.
48605         * sysdeps/unix/sysv/linux/syscalls.list: Add process_vm_readv and
48606         process_vm_writev.
48607         * sysdeps/unix/sysv/linux/Versions: Export process_vm_readv and
48608         process_vm_writev from libc using GLIBC_2.15 version.
48609
48610         * nscd/connections.c: Use kernel headers instead of <netlink/netlink.h>.
48611
48612 2011-10-31  Paul Pluzhnikov  <ppluzhnikov@google.com>
48613
48614         * elf/dl-deps.c (_dl_map_object_deps): Reuse alloca space to reduce
48615         stack usage.
48616
48617 2011-10-31  Ulrich Drepper  <drepper@gmail.com>
48618
48619         [BZ #13367]
48620         * nss/getent.c (initgroups_keys): Show error message in case no group
48621         names are given.
48622
48623         * include/ifaddrs.h: Declare __free_in6ai and __bump_nl_timestamp.
48624         * inet/check_pf.c: Provide dummy versions of __free_in6ai and
48625         __bump_nl_timestamp.
48626         * nscd/connections (nscd_init): When host database is served open
48627         netlink socket and request notification about configuration changes.
48628         (main_loop_poll): Track netlink file descriptor and bump timestamp
48629         in case data becomes available.
48630         (main_loop_epoll): Likewise.
48631         * nscd/nscd-client.h (DB_VERSION): Bump to 2.
48632         (database_pers_head): Add extra_data fileds.
48633         Declare __nscd_get_mapping and __nscd_get_nl_timestamp.
48634         * nscd/nscd_gethst_r.c (__nscd_get_nl_timestamp): New function.
48635         * nscd/nscd_helper.c (__nscd_get_mapping): Renamed from get_mapping.
48636         Adjust caller.
48637         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call free on
48638         in6ai data, call __free_in6ai.
48639         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd] (sysdep-CFLAGS):
48640         Add -DHAVE_NETLINK.
48641         * sysdeps/unix/sysv/linux/check_pf.c: Major rewrite.  Cache the
48642         interface information.  Reuse previous data if netlink timestamp
48643         is not changed.
48644         (__bump_nl_timestamp): New function.
48645         (__free_in6ai): New function.
48646
48647 2011-10-30  Ulrich Drepper  <drepper@gmail.com>
48648
48649         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Don't call
48650         close_not_cancel_no_status here.
48651         (__check_pf): Reorganize code a bit to not call close twice if OOM.
48652
48653 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
48654
48655         [BZ #13276]
48656         * malloc/malloc.c (munmap_chunk): Don't use assertion to check munmap
48657         return value.
48658
48659         * posix/sys/wait.h: Mark wait3 and wait4 with __THROWNL.
48660         * libio/stdio.h: Mark sprintf, vsprintf snprintf, vsnprintf, vasprintf,
48661         asprintf, __asprintf, obstack_printf, obstack_vprintf with __THROWNL.
48662
48663 2011-07-03  Andreas Jaeger  <aj@suse.de>
48664
48665         [BZ #10709]
48666         * sysdeps/ieee754/dbl-64/s_sin.c (__sin): Fix incorrect rounding
48667         of sin. Patch suggested by Paul Zimmermann <zimmerma+gcc@loria.fr>.
48668         * math/libm-test.inc (sin_test): Add test case.
48669
48670 2011-10-29  Ulrich Drepper  <drepper@gmail.com>
48671
48672         [BZ #13337]
48673         * elf/sprof.c (load_shobj): Correctly NUL-terminate link name.
48674         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
48675
48676         * elf/chroot_canon.c (chroot_canon): Cleanups.
48677
48678         * elf/dl-lookup.c (_dl_setup_hash): Avoid warning.
48679
48680         [BZ #13335]
48681         * elf/chroot_canon.c (chroot_canon): Fix readlink call.
48682         Patch by Thomas Jarosch <thomas.jarosch@intra2net.com>.
48683
48684         * string/test-strchr.c: Make usable for strchrnul testing.
48685         * string/test-strchrnul.c: New file.
48686         * string/Makefile (strop-tests): Add strchrnul.
48687
48688         * po/it.po: Update from translation team.
48689         * po/es.po: Likewise.
48690
48691 2011-10-28  Ulrich Drepper  <drepper@gmail.com>
48692
48693         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Take
48694         the three constants needed as parameters.  Drop the others.
48695         (strcasestr_sse42): Load uclow, uchigh, and lcqword and pass to
48696         __m128i_strloadu_tolower.
48697         Create and initialize variable zero and use it in all the places
48698         where _mm_setzero_si128 was used.
48699
48700         * sysdeps/x86_64/fpu/multiarch/Makefile: Don't build brandred-avx.c,
48701         doasin-avx.c, dosincos-avx.c, e_asin-avx.c, mpatan-avx.c,
48702         mpatan2-avx.c, mpsqrt-avx.c, mptan-avx.c, sincos32-avx.c.
48703         * sysdeps/x86_64/fpu/multiarch/e_asin.c: There are no _avx variants
48704         anymore.
48705         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: Don't redirect __mpatan2.
48706         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: Don't redirect __mpatan.
48707         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: Don't redirect __branred,
48708         __docos, __dubsin, __mpcos, __mpcos1, __mpsin, __mpsin1.
48709         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: Don't redirect __branred,
48710         __mpranred, __mptan.
48711         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: Removed.
48712         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: Removed.
48713         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: Removed.
48714         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: Removed.
48715         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: Removed.
48716         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: Removed.
48717         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: Removed.
48718         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: Removed.
48719         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: Removed.
48720
48721 2011-10-28  Andreas Schwab  <schwab@redhat.com>
48722
48723         * sysdeps/i386/i686/multiarch/strnlen-c.c (libc_hidden_def): Only
48724         redefine if SHARED.
48725         * sysdeps/i386/i686/multiarch/wcscmp-c.c (libc_hidden_def): Likewise.
48726
48727         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Move
48728         wide char related routines to wcsmbs subdir.
48729
48730 2011-10-27  Andreas Schwab  <schwab@redhat.com>
48731
48732         [BZ #13344]
48733         * misc/sys/cdefs.h (__THROWNL): Define.
48734         * posix/unistd.h: Use __THREADNL instead of __THREAD
48735         for memory synchronization functions.
48736
48737 2011-10-26  Roland McGrath  <roland@hack.frob.com>
48738
48739         [BZ #13349]
48740         * libio/Versions (GLIBC_2.0): Remove open_obstack_stream, which
48741         doesn't exist.
48742         * manual/stdio.texi (Obstack Streams): Node removed.
48743
48744 2011-10-26  Andreas Schwab  <schwab@redhat.com>
48745
48746         * sysdeps/ieee754/flt-32/e_j0f.c: Fix use of math_force_eval.
48747         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
48748         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
48749
48750         * math/math_private.h (math_force_eval): Allow non-addressable
48751         arguments.
48752         * sysdeps/i386/fpu/math_private.h (math_force_eval): Likewise.
48753
48754 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48755
48756         * sysdeps/ieee754/dbl-64/e_rem_pio2.c: Comment everything out, the
48757         file is not needed.
48758
48759         * sysdeps/x86_64/fpu/multiarch/e_asin.c: Support AVX variants.
48760         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: Likewise.
48761         * sysdeps/x86_64/fpu/multiarch/e_exp.c: Likewise.
48762         * sysdeps/x86_64/fpu/multiarch/e_log.c: Likewise.
48763         * sysdeps/x86_64/fpu/multiarch/s_atan.c: Likewise.
48764         * sysdeps/x86_64/fpu/multiarch/s_sin.c: Likewise.
48765         * sysdeps/x86_64/fpu/multiarch/s_tan.c: Likewise.
48766         * sysdeps/x86_64/fpu/multiarch/Makefile: Fix some CFLAGS-* variables.
48767         Add AVX variants.
48768         * sysdeps/x86_64/fpu/multiarch/brandred-avx.c: New file.
48769         * sysdeps/x86_64/fpu/multiarch/doasin-avx.c: New file.
48770         * sysdeps/x86_64/fpu/multiarch/dosincos-avx.c: New file.
48771         * sysdeps/x86_64/fpu/multiarch/e_asin-avx.c: New file.
48772         * sysdeps/x86_64/fpu/multiarch/e_atan2-avx.c: New file.
48773         * sysdeps/x86_64/fpu/multiarch/e_exp-avx.c: New file.
48774         * sysdeps/x86_64/fpu/multiarch/e_log-avx.c: New file.
48775         * sysdeps/x86_64/fpu/multiarch/mpa-avx.c: New file.
48776         * sysdeps/x86_64/fpu/multiarch/mpatan-avx.c: New file.
48777         * sysdeps/x86_64/fpu/multiarch/mpatan2-avx.c: New file.
48778         * sysdeps/x86_64/fpu/multiarch/mpexp-avx.c: New file.
48779         * sysdeps/x86_64/fpu/multiarch/mplog-avx.c: New file.
48780         * sysdeps/x86_64/fpu/multiarch/mpsqrt-avx.c: New file.
48781         * sysdeps/x86_64/fpu/multiarch/mptan-avx.c: New file.
48782         * sysdeps/x86_64/fpu/multiarch/s_atan-avx.c: New file.
48783         * sysdeps/x86_64/fpu/multiarch/s_sin-avx.c: New file.
48784         * sysdeps/x86_64/fpu/multiarch/s_tan-avx.c: New file.
48785         * sysdeps/x86_64/fpu/multiarch/sincos32-avx.c: New file.
48786         * sysdeps/x86_64/fpu/multiarch/slowexp-avx.c: New file.
48787
48788         * sysdeps/x86_64/multiarch/init-arch.h: Make bit_* macros available
48789         all the time.  Define bit_AVX.  Define HAS_* macros using bit_* macros.
48790
48791         * sysdeps/x86_64/multiarch/strcmp-sse42.S: Move common code to earlier
48792         place.  Use VEX encoding when compiling for AVX.
48793
48794 2011-10-25  Andreas Schwab  <schwab@redhat.com>
48795
48796         * wcsmbs/wcscmp.c (WCSCMP): Compare as wchar_t, not wint_t.
48797         * wcsmbs/wmemcmp.c (WMEMCMP): Likewise.
48798
48799         * string/test-strchr.c (do_test): Don't generate NUL bytes.
48800
48801 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48802
48803         * sysdeps/ieee754/dbl-64/e_atanh.c: Use math_force_eval instead of a
48804         useless if() expression.
48805         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
48806         * sysdeps/ieee754/dbl-64/s_ceil.c: Likewise.
48807         * sysdeps/ieee754/dbl-64/s_expm1.c: Likewise.
48808         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
48809         * sysdeps/ieee754/dbl-64/s_log1p.c: Likewise.
48810         * sysdeps/ieee754/dbl-64/s_round.c: Likewise.
48811         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
48812         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
48813         * sysdeps/ieee754/dbl-64/wordsize-64/s_round.c: Likewise.
48814         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
48815         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
48816         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
48817         * sysdeps/ieee754/flt-32/s_expm1f.c: Likewise.
48818         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
48819         * sysdeps/ieee754/flt-32/s_log1pf.c: Likewise.
48820         * sysdeps/ieee754/flt-32/s_roundf.c: Likewise.
48821         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
48822         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
48823         * sysdeps/ieee754/ldbl-96/s_roundl.c: Likewise.
48824
48825         * sysdeps/x86_64/fpu/math_private.h: Use VEX encoding when possible.
48826
48827 2011-10-25  Andreas Schwab  <schwab@redhat.com>
48828
48829         * elf/dl-deps.c (_dl_map_object_deps): Remove always true
48830         condition.
48831         * elf/dl-fini.c (_dl_sort_fini): Likewise.
48832
48833 2011-10-25  Ulrich Drepper  <drepper@gmail.com>
48834
48835         * sysdeps/ieee754/dbl-64/branred.c: Move FMA4 code into separate
48836         .text section.  Avoid duplicate constants.
48837         * sysdeps/ieee754/dbl-64/doasin.c: Likewise.
48838         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48839         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
48840         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
48841         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
48842         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48843         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48844         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
48845         * sysdeps/ieee754/dbl-64/mpa.c: Likewise.
48846         * sysdeps/ieee754/dbl-64/mpa.h: Likewise.
48847         * sysdeps/ieee754/dbl-64/mpatan.c: Likewise.
48848         * sysdeps/ieee754/dbl-64/mpatan.h: Likewise.
48849         * sysdeps/ieee754/dbl-64/mpatan2.c: Likewise.
48850         * sysdeps/ieee754/dbl-64/mpexp.c: Likewise.
48851         * sysdeps/ieee754/dbl-64/mpexp.h: Likewise.
48852         * sysdeps/ieee754/dbl-64/mpsqrt.c: Likewise.
48853         * sysdeps/ieee754/dbl-64/mpsqrt.h: Likewise.
48854         * sysdeps/ieee754/dbl-64/mptan.c: Likewise.
48855         * sysdeps/ieee754/dbl-64/s_sin.c: Likewise.
48856         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
48857         * sysdeps/ieee754/dbl-64/sincos32.c: Likewise.
48858         * sysdeps/ieee754/dbl-64/slowexp.c: Likewise.
48859         * sysdeps/ieee754/dbl-64/slowpow.c: Likewise.
48860         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: Likewise.
48861         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: Likewise.
48862         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: Likewise.
48863         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: Likewise.
48864         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: Likewise.
48865         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: Likewise.
48866         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: Likewise.
48867         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: Likewise.
48868         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: Likewise.
48869         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: Likewise.
48870         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: Likewise.
48871         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: Likewise.
48872         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: Likewise.
48873         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: Likewise.
48874         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: Likewise.
48875         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: Likewise.
48876         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: Likewise.
48877         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: Likewise.
48878         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: Likewise.
48879         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: Likewise.
48880         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: Likewise.
48881         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: Likewise.
48882
48883 2011-10-24  Ulrich Drepper  <drepper@gmail.com>
48884
48885         * sysdeps/x86_64/dla.h: Move to ...
48886         * sysdeps/x86_64/fpu/dla.h: ...here.
48887         (DLA_FMS): Some compilers fail to inline __builtin_fma in some
48888         situations.  Use __builtin_fma only for gcc 4.6 and up.
48889
48890         * config.make.in: Add have-mfma4 entry.
48891         * configure.in: Substitute libc_cv_cc_fma4.
48892         * math/Makefile (dbl-only-routines): Add sincostab.
48893         * sysdeps/ieee754/dbl-64/dosincos.c: Don't include sincos.tbl.
48894         Use __sincostab not sincos.
48895         * sysdeps/ieee754/dbl-64/e_asin.c: Don't define aliases when function
48896         name is a macro.
48897         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
48898         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48899         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48900         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.  Define singArctan2
48901         using __copysign.
48902         * sysdeps/ieee754/dbl-64/mpa.c: Don't export __acr.  Don't define
48903         __cr and __cpymn.  Define __cpy unless NO___CPY is defined.  Define
48904         norm, denorm, and __mp_dbl unless NO___MP_DBL is defined.
48905         * sysdeps/ieee754/dbl-64/mpa.h: Don't declare __acr, __cr, __cpymn,
48906         and __inv.
48907         * sysdeps/ieee754/dbl-64/mpsqrt.c: Make fastiroot static.
48908         * sysdeps/ieee754/dbl-64/s_atan.c: Define __signArctan using
48909         __copysign.
48910         * sysdeps/ieee754/dbl-64/s_sin.c: Use __sincostab not sincos.  Don't
48911         define aliases when function name is a macro.
48912         * sysdeps/ieee754/dbl-64/sincostab.c: Renamed from
48913         sysdeps/ieee754/dbl-64/sincos.tbl.
48914         * sysdeps/x86_64/fpu/multiarch/Makefile: Add entries to build
48915         fma4-enabled routines.
48916         * sysdeps/x86_64/fpu/multiarch/brandred-fma4.c: New file.
48917         * sysdeps/x86_64/fpu/multiarch/doasin-fma4.c: New file.
48918         * sysdeps/x86_64/fpu/multiarch/dosincos-fma4.c: New file.
48919         * sysdeps/x86_64/fpu/multiarch/e_asin-fma4.c: New file.
48920         * sysdeps/x86_64/fpu/multiarch/e_asin.c: New file.
48921         * sysdeps/x86_64/fpu/multiarch/e_atan2-fma4.c: New file.
48922         * sysdeps/x86_64/fpu/multiarch/e_atan2.c: New file.
48923         * sysdeps/x86_64/fpu/multiarch/e_exp-fma4.c: New file.
48924         * sysdeps/x86_64/fpu/multiarch/e_exp.c: New file.
48925         * sysdeps/x86_64/fpu/multiarch/e_log-fma4.c: New file.
48926         * sysdeps/x86_64/fpu/multiarch/e_log.c: New file.
48927         * sysdeps/x86_64/fpu/multiarch/e_pow-fma4.c: New file.
48928         * sysdeps/x86_64/fpu/multiarch/e_pow.c: New file.
48929         * sysdeps/x86_64/fpu/multiarch/halfulp-fma4.c: New file.
48930         * sysdeps/x86_64/fpu/multiarch/mpa-fma4.c: New file.
48931         * sysdeps/x86_64/fpu/multiarch/mpatan-fma4.c: New file.
48932         * sysdeps/x86_64/fpu/multiarch/mpatan2-fma4.c: New file.
48933         * sysdeps/x86_64/fpu/multiarch/mpexp-fma4.c: New file.
48934         * sysdeps/x86_64/fpu/multiarch/mplog-fma4.c: New file.
48935         * sysdeps/x86_64/fpu/multiarch/mpsqrt-fma4.c: New file.
48936         * sysdeps/x86_64/fpu/multiarch/mptan-fma4.c: New file.
48937         * sysdeps/x86_64/fpu/multiarch/s_atan-fma4.c: New file.
48938         * sysdeps/x86_64/fpu/multiarch/s_atan.c: New file.
48939         * sysdeps/x86_64/fpu/multiarch/s_sin-fma4.c: New file.
48940         * sysdeps/x86_64/fpu/multiarch/s_sin.c: New file.
48941         * sysdeps/x86_64/fpu/multiarch/s_tan-fma4.c: New file.
48942         * sysdeps/x86_64/fpu/multiarch/s_tan.c: New file.
48943         * sysdeps/x86_64/fpu/multiarch/sincos32-fma4.c: New file.
48944         * sysdeps/x86_64/fpu/multiarch/slowexp-fma4.c: New file.
48945         * sysdeps/x86_64/fpu/multiarch/slowpow-fma4.c: New file.
48946
48947         * sysdeps/ieee754/dbl-64/doasin.c: Adjust for DLA_FMA -> DLA_FMS
48948         rename.
48949         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48950         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
48951         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
48952         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
48953         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
48954         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
48955         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
48956         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
48957
48958 2011-10-24  Andreas Schwab  <schwab@redhat.com>
48959
48960         * wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
48961
48962 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
48963
48964         * sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.
48965
48966         * sysdeps/ieee754/dbl-64/e_fmod.c (__ieee754_fmod): Add some branch
48967         prediction.
48968         * sysdeps/ieee754/dbl-64/wordsize-64/e_fmod.c: New file.
48969
48970         * string/strnlen.c: Don't define STRNLEN, reverse logic.
48971         Remove unused variable magic_bits.
48972         * sysdeps/i386/i686/multiarch/rtld-strnlen.c: New file.
48973
48974         * string/strnlen.c: Define and use STRNLEN macro.
48975         * sysdeps/i386/i686/multiarch/Makefile [string] (sysdep_routines):
48976         Add strnlen-sse2, strnlen-c, wcslen-sse2, and wcslen-c.
48977         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Add support for strnlen.
48978         * wcsmbs/wcslen.c: Define and use WCSLEN.
48979         * sysdeps/i386/i686/multiarch/strnlen-c.c: New file.
48980         * sysdeps/i386/i686/multiarch/strnlen-sse2.S: New file.
48981         * sysdeps/i386/i686/multiarch/strnlen.S: New file.
48982         * sysdeps/i386/i686/multiarch/wcslen-c.c: New file.
48983         * sysdeps/i386/i686/multiarch/wcslen-sse2.S: New file.
48984         * sysdeps/i386/i686/multiarch/wcslen.S: New file.
48985         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
48986
48987 2011-10-20  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
48988
48989         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
48990         strnlen-sse2-no-bsf.
48991         Rename strlen-no-bsf to strlen-sse2-no-bsf.
48992         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Rename to
48993         * sysdeps/x86_64/multiarch/strlen-sse2-no-bsf.S:
48994         Add strnlen support.
48995         (USE_AS_STRNLEN): New macro.
48996         * sysdeps/x86_64/multiarch/strnlen-sse2-no-bsf.S: New file.
48997         * sysdeps/x86_64/multiarch/strcat-ssse3.S: Update.
48998         Rename strlen-no-bsf.S to strlen-sse2-no-bsf.S
48999         * sysdeps/x86_64/wcslen.S: New file.
49000
49001 2011-10-20  Michael Zolotukhin  <michael.v.zolotukhin@gmail.com>
49002
49003         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Update.
49004         XMM-moves are used for copying on small sizes.
49005
49006 2011-10-19  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49007
49008         * wcsmbs/Makefile (strop-tests): Add wcschr.
49009         * wcsmbs/test-wcschr.c: New file.
49010         * string/test-strchr.c: Update.
49011         Add wcschr support.
49012         (WIDE): New macro.
49013
49014 2011-10-18  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49015
49016         * wcsmbs/Makefile (strop-tests): Add wcslen.
49017         * wcsmbs/test-wcslen.c: New file.
49018         * string/test-strlen.c: Update.
49019         Add wcslen support.
49020         (WIDE): New macro.
49021
49022 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
49023
49024         * po/it.po: Update from translation team.
49025
49026 2011-09-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49027
49028         * sysdeps/x86_64/wcscmp.S: Update.
49029         Fix wrong comparison semantics.
49030         wcscmp shall use signed comparison not unsigned.
49031         Don't use substraction to avoid overflow bug.
49032         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: Likewise.
49033         * wcsmbc/wcscmp.c: Likewise.
49034         * string/test-strcmp.c: Likewise.
49035         Add new tests to check cases with negative values.
49036
49037 2011-10-23  Ulrich Drepper  <drepper@gmail.com>
49038
49039         * sysdeps/ieee754/dbl-64/dla.h: Move DLA_FMA definition to...
49040         * sysdeps/x86_64/dla.h: ...here.  New file.
49041         * sysdeps/ieee754/dbl-64/doasin.c: Use <dla.h> not "dla.h".
49042         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
49043         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49044         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49045         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49046         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
49047         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49048         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
49049         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
49050
49051 2011-10-23  Andreas Schwab  <schwab@linux-m68k.org>
49052
49053         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Add __jnl_finite and
49054         __ynl_finite aliases.
49055
49056 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
49057
49058         * sysdeps/x86_64/fpu/libm-test-ulps: Update.
49059
49060         * sysdeps/ieee754/dbl-64/dla.h: When compiling with FMA4 support
49061         define DLA_FMA.
49062         [DLA_FMA] (EMULV): Use DLA_FMA.
49063         [DLA_FMA] (MUL12): Use EMULV.
49064         * sysdeps/ieee754/dbl-64/doasin.c [DLA_FMA]: Don't define variables
49065         that are not needed.
49066         * sysdeps/ieee754/dbl-64/dosincos.c: Likewise.
49067         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49068         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49069         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49070         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49071         * sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
49072         * sysdeps/ieee754/dbl-64/s_tan.c: Likewise.
49073
49074 2011-10-22  Andreas Schwab  <schwab@linux-m68k.org>
49075
49076         * math/s_nan.c: Undef __nan.
49077         * math/s_nanf.c: Undef __nanf.
49078         * math/s_nanl.c: Undef __nanl.
49079         * sysdeps/ieee754/ldbl-128ibm/s_atanl.c: Include <math.h> before
49080         "math_private.h".
49081
49082 2011-10-22  Ulrich Drepper  <drepper@gmail.com>
49083
49084         * math/s_catan.c: Add branch predictions.
49085         * math/s_catanf.c: Likewise.
49086         * math/s_catanh.c: Likewise.
49087         * math/s_catanhf.c: Likewise.
49088         * math/s_catanhl.c: Likewise.
49089         * math/s_catanl.c: Likewise.
49090         * math/s_cexp.c: Likewise.
49091         * math/s_cexpf.c: Likewise.
49092         * math/s_cexpl.c: Likewise.
49093         * math/s_clog.c: Likewise.
49094         * math/s_clog10.c: Likewise.
49095         * math/s_clog10f.c: Likewise.
49096         * math/s_clog10l.c: Likewise.
49097         * math/s_clogf.c: Likewise.
49098         * math/s_clogl.c: Likewise.
49099         * math/s_csqrt.c: Likewise.
49100         * math/s_csqrtf.c: Likewise.
49101         * math/s_csqrtl.c: Likewise.
49102         * math/s_ctanf.c: Likewise.
49103         * math/s_ctanh.c: Likewise.
49104         * math/s_ctanhf.c: Likewise.
49105         * math/s_ctanhl.c: Likewise.
49106         * math/s_ctanl.c: Likewise.
49107
49108         * math/math_private.h: Define __nan, __nanf, __nanl.
49109         * math/s_cacosh.c: Include <math_private.h>.
49110         * math/s_cacoshl.c: Likewise.
49111         * math/s_casinh.c: Likewise.
49112         * math/s_casinhf.c: Likewise.
49113         * math/s_casinhl.c: Likewise.
49114         * math/s_ccos.c: Rely entire on ccosh.
49115         * math/s_ccosf.c: Rely entire on ccoshf.
49116         * math/s_ccosl.c: Rely entirely on ccoshl.
49117         * math/s_ccosh.c: Add branch predicion helpers.  Add branch prediction.
49118         Remove tests for FE_INVALID.
49119         * math/s_ccoshf.c: Likewise.
49120         * math/s_ccoshl.c: Likewise.
49121         * math/s_csin.c: Likewise.
49122         * math/s_csinf.c: Likewise.
49123         * math/s_csinh.c Likewise.
49124         * math/s_csinhf.c: Likewise.
49125         * math/s_csinhl.c: Likewise.
49126         * math/s_csinl.c: Likewise.
49127         * math/s_ctan.c: Likewise.
49128         * sysdeps/ieee754/dbl-64/e_acosh.c: Use __ieee754_sqrt.
49129         * sysdeps/ieee754/flt-32/e_acoshf.c: Use __ieee754_sqrtf.
49130         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Use __ieee754_sqrtl.
49131
49132 2011-10-21  Ulrich Drepper  <drepper@gmail.com>
49133
49134         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Fix
49135         compilation problems.
49136
49137         * sysdeps/ieee754/dbl-64/e_log.c (__ieee754_log): Add a few more
49138         __builtin_expect.
49139
49140 2011-10-20  Ulrich Drepper  <drepper@gmail.com>
49141
49142         * sysdeps/i386/configure.in: Test for -mfma4 option.
49143         * config.h.in: Add HAVE_FMA4_SUPPORT entry.
49144         * sysdeps/x86_64/multiarch/init-arch.h: Define HAS_FMA4 and
49145         COMMON_CPUID_INDEX_80000001.
49146         * sysdeps/x86_64/multiarch/init-arch.c: Read 80000001 leaf for AMD.
49147         * sysdeps/x86_64/fpu/multiarch/s_fma.c: Test for FMA4 support and
49148         use it if FMA3 is not supported.
49149         * sysdeps/x86_64/fpu/multiarch/s_fmaf.c: Likewise.
49150
49151         * sysdeps/x86_64/multiarch/s_fma.c: Moved to ../fpu/multiarch.
49152         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
49153
49154 2011-10-20  Andreas Schwab  <schwab@redhat.com>
49155
49156         [BZ #12892]
49157         * elf/dl-fini.c (_dl_sort_fini): Ignore relocation dependency if
49158         it would create a cycle with a link time dependency.
49159
49160 2011-10-19  Ulrich Drepper  <drepper@gmail.com>
49161
49162         * sysdeps/x86_64/multiarch/rawmemchr.S: Small optimization to safe an
49163         instruction.
49164         * string/Makefile (strop-tests): Add rawmemchr.
49165         * string/test-rawmemchr.c: New file.
49166
49167         * sysdeps/x86_64/multiarch/init-arch.h: Define bit_AVX and index_AVX.
49168         * sysdeps/x86_64/multiarch/strcmp-sse42.S: New file.  Split out from...
49169         * sysdeps/x86_64/multiarch/strcmp.S: ...here.  Include strcmp-sse42.S
49170         when compiling str{,n}casecmp and when AVX is available.  Hook up
49171         new optimized code in initializers.
49172
49173 2011-10-19  Andreas Schwab  <schwab@redhat.com>
49174
49175         * sysdeps/x86_64/fpu/math_private.h (libc_feupdateenv): Use
49176         __feraiseexcept instead of feraiseexcept.
49177
49178 2011-10-18  Ulrich Drepper  <drepper@gmail.com>
49179
49180         * math/math_private.h: Define defaults for libc_fetestexcept and
49181         libc_feupdateenv.
49182         * sysdeps/ieee754/dbl-64/s_fma.c: Use libc_fe* interfaces.
49183         * sysdeps/ieee754/dbl-64/s_fmaf.c: Likewise.
49184         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
49185         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
49186         * sysdeps/ieee754/flt-32/s_nearbyintf.c: Likewise.
49187         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
49188         libc_fetestexcept and libc_feupdateenv.
49189
49190         * math/math_private.h: Define defaults for libc_feholdexcept_setround,
49191         libc_feholdexcept_setroundf, libc_feholdexcept_setroundl.
49192         * sysdeps/ieee754/dbl-64/e_exp2.c: Use libc_feholdexcept_setround.
49193         * sysdeps/x86_64/fpu/math_private.h: Define special version of
49194         libc_feholdexcept_setround.
49195
49196         * sysdeps/x86_64/fpu/multiarch/Makefile [math] (libm-sysdep-routines):
49197         Add s_nearbyint-c and s_nearbyintf-c.
49198         * sysdeps/x86_64/fpu/bits/mathinline.h: Define nearbyint and
49199         nearbyintf inlines.
49200         * sysdeps/x86_64/fpu/multiarch/s_nearbyint-c.c: New file.
49201         * sysdeps/x86_64/fpu/multiarch/s_nearbyint.S: New file.
49202         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf-c.c: New file.
49203         * sysdeps/x86_64/fpu/multiarch/s_nearbyintf.S: New file.
49204
49205         * math/math_private.h: Define defaults for libc_fegetround,
49206         libc_fegetroundf, libc_fegetroundl, libc_fesetround, libc_fesetroundf,
49207         libc_fesetroundl, libc_feholdexcept, libc_feholdexceptf,
49208         libc_feholdexceptl, libc_fesetenv, libc_fesetenvf, libc_fesetenvl.
49209         * sysdeps/ieee754/dbl-64/wordsize-64/s_nearbyint.c: Use
49210         libc_feholdexcept, libc_fesetround, libc_fesetenv instead of the
49211         standard functions.
49212         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
49213         Remove comments and hacks for old compiler versions.
49214         * sysdeps/x86_64/fpu/math_private.h: Define special versions of
49215         libc_fegetround, libc_fesetround, libc_feholdexcept, and
49216         libc_feholdexceptl.
49217
49218 2011-10-18  Andreas Schwab  <schwab@redhat.com>
49219
49220         * sysdeps/x86_64/fpu/bits/fenv.h: Add C linkage markers.
49221         (__feraiseexcept_renamed): Add __NTH.
49222         (feraiseexcept): Add __NTH.  Rename local variables to fix
49223         namespace violations.
49224
49225 2011-10-17  Ulrich Drepper  <drepper@gmail.com>
49226
49227         * sysdeps/ieee754/dbl-64/e_exp2.c (__ieee754_exp2): Small optimization.
49228
49229         * sysdeps/ieee754/dbl-64/wordsize-64/s_frexp.c: New file.
49230
49231         * sysdeps/x86_64/fpu/math_private.h: Relax asm requirements for
49232         recently added interfaces.
49233         * sysdeps/x86_64/fpu/bits/mathinline.h: Likewise.
49234
49235         * sysdeps/x86_64/fpu/math_private.h: Add some parenthesis to be safe
49236         about macro parameter expansion.
49237
49238         * sysdeps/x86_64/fpu/bits/mathinline.h: Don't define inlines if
49239         __NO_MATH_INLINES is defined.  Cleanups.
49240
49241         * sysdeps/x86_64/fpu/math_private.h: Define __rint, __rintf, __floor,
49242         and __floorf is target has SSE4.1.
49243         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: Undef first.
49244         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.: Likewise.
49245         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: Likewise.
49246         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: Likewise.
49247
49248         * sysdeps/x86_64/fpu/bits/mathinline.h (floor): Use correct function
49249         name.
49250         (floorf): Likewise.
49251
49252         * nscd/netgroupcache.c (addgetnetgrentX): Fix #ifdef nesting.
49253
49254 2011-10-17  Andreas Schwab  <schwab@redhat.com>
49255
49256         * misc/sys/cdefs.h: Fix last change.
49257
49258         * grp/initgroups.c (internal_getgrouplist): Fix initgroups
49259         database lookup.
49260
49261 2011-10-16  Ulrich Drepper  <drepper@gmail.com>
49262
49263         * misc/sys/cdefs.h: Use leaf function attribute in __THROW.
49264
49265         * sysdeps/ieee754/dbl-64/s_ceil.c: Avoid alias renamed.
49266         * sysdeps/ieee754/dbl-64/s_floor.c: Likewise.
49267         * sysdeps/ieee754/dbl-64/s_rint.c: Likewise.
49268         * sysdeps/ieee754/dbl-64/wordsize-64/s_ceil.c: Likewise.
49269         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: Likewise.
49270         * sysdeps/ieee754/dbl-64/wordsize-64/s_rint.c: Likewise.
49271         * sysdeps/ieee754/flt-32/s_ceilf.c: Likewise.
49272         * sysdeps/ieee754/flt-32/s_floorf.c: Likewise.
49273         * sysdeps/ieee754/flt-32/s_rintf.c: Likewise.
49274         * sysdeps/x86_64/fpu/multiarch/Makefile: New file.
49275         * sysdeps/x86_64/fpu/multiarch/s_ceil-c.c: New file.
49276         * sysdeps/x86_64/fpu/multiarch/s_ceil.S: New file.
49277         * sysdeps/x86_64/fpu/multiarch/s_ceilf-c.c: New file.
49278         * sysdeps/x86_64/fpu/multiarch/s_ceilf.S: New file.
49279         * sysdeps/x86_64/fpu/multiarch/s_floor-c.c: New file.
49280         * sysdeps/x86_64/fpu/multiarch/s_floor.S: New file.
49281         * sysdeps/x86_64/fpu/multiarch/s_floorf-c.c: New file.
49282         * sysdeps/x86_64/fpu/multiarch/s_floorf.S: New file.
49283         * sysdeps/x86_64/fpu/multiarch/s_rint-c.c: New file.
49284         * sysdeps/x86_64/fpu/multiarch/s_rint.S: New file.
49285         * sysdeps/x86_64/fpu/multiarch/s_rintf-c.c: New file.
49286         * sysdeps/x86_64/fpu/multiarch/s_rintf.S: New file.
49287
49288         * sysdeps/x86_64/fpu/bits/mathinline.h: Add inlines for rint, rintf,
49289         ceil, ceilf, floor, floorf.
49290
49291         * elf/do-rel.h (elf_dynamic_do_Rel): Work around linker problem.
49292         Perform IRELATIVE relocations last.
49293
49294         * elf/do-rel.h: Add another parameter nrelative, replacing the
49295         local variable with the same name.  Change name of the function
49296         to end in Rel or Rela (uppercase).
49297         * elf/dynamic-link.h (_ELF_DYNAMIC_DO_RELOC): Add new element
49298         nrelative to ranges.  Only nonzero for DT_REL/DT_RELA.  Pass to the
49299         elf_dynamic_do_##reloc function.
49300
49301 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
49302
49303         * sysdeps/i386/i686/fpu/e_log.S: No need for the fyl2xp1 use, fyl2x
49304         is sufficient, at least on modern CPUs.
49305
49306         * sysdeps/ieee754/dbl-64/wordsize-64/s_floor.c: New file.
49307
49308         * sysdeps/ieee754/dbl-64/e_cosh.c: Cleanup.
49309         * sysdeps/ieee754/dbl-64/wordsize-64/e_cosh.c: New file.
49310
49311         * math/Versions [libm] (GLIBC_2.15): Add __exp_finite, __expf_finite,
49312         __expl_finite.
49313         * math/bits/math-finite.h: Add entries for exp.
49314         * math/e_expl.c: Add __*_finite alias.
49315         * sysdeps/i386/fpu/e_exp.S: Likewise.
49316         * sysdeps/i386/fpu/e_expf.S: Likewise.
49317         * sysdeps/i386/fpu/e_expl.c: Likewise.
49318         * sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
49319         * sysdeps/ieee754/flt-32/e_expf.c: Likewise.
49320         * sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
49321         * sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
49322         * sysdeps/ieee754/dbl-64/w_exp.c: Complete rewrite.
49323         * sysdeps/ieee754/flt-32/w_expf.c: Likewise.
49324         * sysdeps/ieee754/ldbl-96/w_expl.c: Likewise.
49325
49326         * sysdeps/i386/i686/fpu/e_logf.S: No need for the fyl2xp1 use, fyl2x
49327         is sufficient, at least on modern CPUs.
49328
49329         * ctype/ctype-info.c (__ctype_init): Define.
49330         * include/ctype.h (__ctype_init): Declare.
49331         (__ctype_b_loc): The variable is always initialized.
49332         (__ctype_toupper_loc): Likewise.
49333         (__ctype_tolower_loc): Likewise.
49334         * ctype/Versions: Export __ctype_init for GLIBC_PRIVATE.
49335         * sysdeps/unix/sysv/linux/init-first.c (_init): Call __ctype_init.
49336
49337 2011-10-15  Andreas Schwab  <schwab@linux-m68k.org>
49338
49339         * wcsmbs/wmemcmp.c (WMEMCMP): Define.
49340
49341         * configure.in: Also look in $cxxmachine/include for C++ system
49342         headers.
49343
49344 2011-09-27  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49345
49346         * sysdeps/x86_64/multiarch/Makefile: (sysdep_routines): Add
49347         memcmp-ssse3 wmemcmp-sse4 wmemcmp-ssse3 wmemcmp-c
49348         * sysdeps/x86_64/multiarch/memcmp-ssse3: New file.
49349         * sysdeps/x86_64/multiarch/memcmp.S: Update.  Add __memcmp_ssse3.
49350         * sysdeps/x86_64/multiarch/memcmp-sse4.S: Update.
49351         (USE_AS_WMEMCMP): New macro.
49352         Fixing indents.
49353         * sysdeps/x86_64/multiarch/wmemcmp.S: New file.
49354         * sysdeps/x86_64/multiarch/wmemcmp-ssse3.S: New file.
49355         * sysdeps/x86_64/multiarch/wmemcmp-sse4.S: New file.
49356         * sysdeps/x86_64/multiarch/wmemcmp-c.S: New file.
49357         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49358         wmemcmp-ssse3 wmemcmp-sse4 wmemcmp-c
49359         * sysdeps/i386/i686/multiarch/wmemcmp.S: New file.
49360         * sysdeps/i386/i686/multiarch/wmemcmp-c.c: New file.
49361         * sysdeps/i386/i686/multiarch/wmemcmp-ssse3.S: New file.
49362         * sysdeps/i386/i686/multiarch/wmemcmp-sse4.S: New file.
49363         * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Update.
49364         (USE_AS_WMEMCMP): New macro.
49365         * sysdeps/i386/i686/multiarch/memcmp-ssse3: Likewise.
49366         * sysdeps/string/test-memcmp.c: Update.
49367         Fix simple_wmemcmp.
49368         Add new tests.
49369         * wcsmbs/wmemcmp.c: Update.
49370         (WMEMCMP): New macro.
49371         Fix overflow bug.
49372
49373 2011-10-12  Andreas Jaeger  <aj@suse.de>
49374
49375         [BZ #13268]
49376         * math/bits/mathcalls.h: Mark argument 2 of modf as non-null.
49377
49378 2011-10-15  Ulrich Drepper  <drepper@gmail.com>
49379
49380         * libio/iofwide.c (do_length): Avoid warning.
49381
49382         * ctype/ctype.h (__isctype_f): Add missing __THROW.
49383
49384 2011-10-14  Ulrich Drepper  <drepper@gmail.com>
49385
49386         * elf/pldd-xx.c (find_maps): Remove leftover debug message.
49387
49388         * sysdeps/i386/fpu/e_log.S: Add real definition of __log_finite.
49389         * sysdeps/i386/fpu/e_logf.S: Add real definition of __logf_finite.
49390         * sysdeps/i386/fpu/e_logl.S: Add real definition of __logl_finite.
49391         * sysdeps/i386/i686/fpu/e_log.S: New file.
49392         * sysdeps/i386/i686/fpu/e_logf.S: New file.
49393         * sysdeps/i386/i686/fpu/e_logl.S: New file.
49394
49395         * ctype/ctype.h: Add support for inlined isXXX functions when
49396         compiling C++ code.
49397
49398 2011-10-14  Andreas Schwab  <schwab@redhat.com>
49399
49400         * sysdeps/s390/fpu/libm-test-ulps: Adjust ULPs for jn tests.
49401
49402         * sysdeps/x86_64/fpu/fraiseexcpt.c: Fix last change.
49403
49404 2011-10-13  Roland McGrath  <roland@hack.frob.com>
49405
49406         [BZ #13291]
49407         * manual/string.texi (String/Array Comparison): Typo fix in strverscmp.
49408
49409 2011-10-13  Andreas Schwab  <schwab@redhat.com>
49410
49411         * sysdeps/x86_64/fpu/fraiseexcpt.c: Add __feraiseexcept alias.
49412         * sysdeps/x86_64/fpu/feupdateenv.c: Use __feraiseexcept instead of
49413         feraiseexcept.
49414
49415         * sysdeps/x86_64/memrchr.S: Check for zero size.
49416
49417         * string/stratcliff.c: Add memrchr tests.
49418
49419 2011-10-12  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49420
49421         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
49422         memchr-sse2 memchr-sse2-bsf memrchr-sse2 memrchr-sse2-bsf memrchr-c
49423         rawmemchr-sse2 rawmemchr-sse2-bsf.
49424         * sysdeps/i386/i686/multiarch/memchr.S: New file.
49425         * sysdeps/i386/i686/multiarch/memchr-sse2.S: New file.
49426         * sysdeps/i386/i686/multiarch/memchr-sse2-bsf.S: New file.
49427         * sysdeps/i386/i686/multiarch/memrchr.S: New file.
49428         * sysdeps/i386/i686/multiarch/memrchr-c.c: New file.
49429         * sysdeps/i386/i686/multiarch/memrchr-sse2.S: New file.
49430         * sysdeps/i386/i686/multiarch/memrchr-sse2-bsf.S: New file.
49431         * sysdeps/i386/i686/multiarch/rawmemchr.S: New file.
49432         * sysdeps/i386/i686/multiarch/rawmemchr-sse2.S: New file.
49433         * sysdeps/i386/i686/multiarch/rawmemchr-sse2-bsf.S: New file.
49434         * string/memrchr.c (MEMRCHR): New macro.
49435
49436 2011-10-12  Ulrich Drepper  <drepper@gmail.com>
49437
49438         Add integration with gcc's -ffinite-math-only and optimize wrapper
49439         functions in libm.
49440         * Versions.def: Define GLIBC_2.15 version for libm.
49441         * math/Makefile (headers): Add bits/math-finite.h.
49442         * math/bits/math-finite.h: New file.
49443         * sysdeps/ia64/fpu/bits/math-finite.h: New file.
49444         * math/Versions [libm] (GLIBC_2.15): Export __*_finite symbols.
49445         * math/e_acoshl.c: Add __*_finite alias.
49446         * math/e_acosl.c: Likewise.
49447         * math/e_asinl.c: Likewise.
49448         * math/e_atan2l.c: Likewise.
49449         * math/e_atanhl.c: Likewise.
49450         * math/e_coshl.c: Likewise.
49451         * math/e_exp10.c: Likewise.
49452         * math/e_exp10f.c: Likewise.
49453         * math/e_exp10l.c: Likewise.
49454         * math/e_exp2l.c: Likewise.
49455         * math/e_fmodl.c: Likewise.
49456         * math/e_gammal_r.c: Likewise.
49457         * math/e_hypotl.c: Likewise.
49458         * math/e_j0l.c: Likewise.
49459         * math/e_j1l.c: Likewise.
49460         * math/e_jnl.c: Likewise.
49461         * math/e_lgammal_r.c: Likewise.
49462         * math/e_log10l.c: Likewise.
49463         * math/e_log2l.c: Likewise.
49464         * math/e_logl.c: Likewise.
49465         * math/e_powl.c: Likewise.
49466         * math/e_sinhl.c: Likewise.
49467         * math/e_sqrtl.c: Likewise.
49468         * math/e_scalb.c: Completely rewritten and optimized.
49469         * math/e_scalbf.c: Likewise.
49470         * math/e_scalbl.c: Likewise.
49471         * math/w_acos.c: Likewise.
49472         * math/w_acosf.c: Likewise.
49473         * math/w_acosl.c: Likewise.
49474         * math/w_acosh.c: Likewise.
49475         * math/w_acoshf.c: Likewise.
49476         * math/w_acoshl.c: Likewise.
49477         * math/w_asin.c: Likewise.
49478         * math/w_asinf.c: Likewise.
49479         * math/w_asinl.c: Likewise.
49480         * math/w_atan2.c: Likewise.
49481         * math/w_atan2f.c: Likewise.
49482         * math/w_atan2l.c: Likewise.
49483         * math/w_atanh.c: Likewise.
49484         * math/w_atanhf.c: Likewise.
49485         * math/w_atanhl.c: Likewise.
49486         * math/w_exp10.c: Likewise.
49487         * math/w_exp10f.c: Likewise.
49488         * math/w_exp10l.c: Likewise.
49489         * math/w_fmod.c: Likewise.
49490         * math/w_fmodf.c: Likewise.
49491         * math/w_fmodl.c: Likewise.
49492         * math/w_j0.c: Likewise.
49493         * math/w_j0f.c: Likewise.
49494         * math/w_j0l.c: Likewise.
49495         * math/w_j1.c: Likewise.
49496         * math/w_j1f.c: Likewise.
49497         * math/w_j1l.c: Likewise.
49498         * math/w_jn.c: Likewise.
49499         * math/w_jnf.c: Likewise.
49500         * math/w_log.c: Likewise.
49501         * math/w_logf.c: Likewise.
49502         * math/w_logl.c: Likewise.
49503         * math/w_log10.c: Likewise.
49504         * math/w_log10f.c: Likewise.
49505         * math/w_log10l.c: Likewise.
49506         * math/w_log2.c: Likewise.
49507         * math/w_log2f.c: Likewise.
49508         * math/w_log2l.c: Likewise.
49509         * math/w_pow.c: Likewise.
49510         * math/w_powf.c: Likewise.
49511         * math/w_powl.c: Likewise.
49512         * math/w_remainder.c: Likewise.
49513         * math/w_remainderf.c: Likewise.
49514         * math/w_remainderl.c: Likewise.
49515         * math/w_scalb.c: Likewise.
49516         * math/w_scalbf.c: Likewise.
49517         * math/w_scalbl.c: Likewise.
49518         * math/w_sqrt.c: Likewise.
49519         * math/w_sqrtf.c: Likewise.
49520         * math/w_sqrtl.c: Likewise.
49521         * math/math.h: Define __MATH_DECLARE_LDOUBLE if long double functions
49522         are declared.  Include <bits/math-finite.h> if -ffinite-math-only is
49523         used.
49524         * math/math_private.h: Declare __kernel_standard_f.
49525         * math/w_cosh.c: Remove cruft and optimize a bit.
49526         * math/w_coshf.c: Likewise.
49527         * math/w_coshl.c: Likewise.
49528         * math/w_exp2.c: Likewise.
49529         * math/w_exp2f.c: Likewise.
49530         * math/w_exp2l.c: Likewise.
49531         * math/w_hypot.c: Likewise.
49532         * math/w_hypotf.c: Likewise.
49533         * math/w_hypotl.c: Likewise.
49534         * math/w_lgamma.c: Likewise.
49535         * math/w_lgamma_r.c: Likewise.
49536         * math/w_lgammaf.c: Likewise.
49537         * math/w_lgammaf_r.c: Likewise.
49538         * math/w_lgammal.c: Likewise.
49539         * math/w_lgammal_r.c: Likewise.
49540         * math/w_sinh.c: Likewise.
49541         * math/w_sinhf.c: Likewise.
49542         * math/w_sinhl.c: Likewise.
49543         * math/w_tgamma.c: Likewise.
49544         * math/w_tgammaf.c: Likewise.
49545         * math/w_tgammal.c: Likewise.
49546         * sysdeps/ieee754/dbl-64/e_atanh.c: Likewise.
49547         * sysdeps/ieee754/flt-32/e_atanhf.c: Likewise.
49548         * sysdeps/i386/fpu/e_acos.S: Add __*_finite alias.
49549         Minor optimizations.  Pretty printing.  Remove cruft.
49550         * sysdeps/i386/fpu/e_acosf.S: Likewise.
49551         * sysdeps/i386/fpu/e_acosh.S: Likewise.
49552         * sysdeps/i386/fpu/e_acoshf.S: Likewise.
49553         * sysdeps/i386/fpu/e_acoshl.S: Likewise.
49554         * sysdeps/i386/fpu/e_acosl.c: Likewise.
49555         * sysdeps/i386/fpu/e_asin.S: Likewise.
49556         * sysdeps/i386/fpu/e_asinf.S: Likewise.
49557         * sysdeps/i386/fpu/e_atan2.S: Likewise.
49558         * sysdeps/i386/fpu/e_atan2f.S: Likewise.
49559         * sysdeps/i386/fpu/e_atan2l.c: Likewise.
49560         * sysdeps/i386/fpu/e_atanh.S: Likewise.
49561         * sysdeps/i386/fpu/e_atanhf.S: Likewise.
49562         * sysdeps/i386/fpu/e_atanhl.S: Likewise.
49563         * sysdeps/i386/fpu/e_exp10.S: Likewise.
49564         * sysdeps/i386/fpu/e_exp10f.S: Likewise.
49565         * sysdeps/i386/fpu/e_exp10l.S: Likewise.
49566         * sysdeps/i386/fpu/e_exp2.S: Likewise.
49567         * sysdeps/i386/fpu/e_exp2f.S: Likewise.
49568         * sysdeps/i386/fpu/e_exp2l.S: Likewise.
49569         * sysdeps/i386/fpu/e_fmod.S: Likewise.
49570         * sysdeps/i386/fpu/e_fmodf.S: Likewise.
49571         * sysdeps/i386/fpu/e_fmodl.c: Likewise.
49572         * sysdeps/i386/fpu/e_hypot.S: Likewise.
49573         * sysdeps/i386/fpu/e_hypotf.S: Likewise.
49574         * sysdeps/i386/fpu/e_log.S: Likewise.
49575         * sysdeps/i386/fpu/e_log10.S: Likewise.
49576         * sysdeps/i386/fpu/e_log10f.S: Likewise.
49577         * sysdeps/i386/fpu/e_log10l.S: Likewise.
49578         * sysdeps/i386/fpu/e_log2.S: Likewise.
49579         * sysdeps/i386/fpu/e_log2f.S: Likewise.
49580         * sysdeps/i386/fpu/e_log2l.S: Likewise.
49581         * sysdeps/i386/fpu/e_logf.S: Likewise.
49582         * sysdeps/i386/fpu/e_logl.S: Likewise.
49583         * sysdeps/i386/fpu/e_pow.S: Likewise.
49584         * sysdeps/i386/fpu/e_powf.S: Likewise.
49585         * sysdeps/i386/fpu/e_powl.S: Likewise.
49586         * sysdeps/i386/fpu/e_remainder.S: Likewise.
49587         * sysdeps/i386/fpu/e_remainderf.S: Likewise.
49588         * sysdeps/i386/fpu/e_remainderl.S: Likewise.
49589         * sysdeps/i386/fpu/e_scalb.S: Likewise.
49590         * sysdeps/i386/fpu/e_scalbf.S: Likewise.
49591         * sysdeps/i386/fpu/e_scalbl.S: Likewise.
49592         * sysdeps/i386/fpu/e_sqrt.S: Likewise.
49593         * sysdeps/i386/fpu/e_sqrtf.S: Likewise.
49594         * sysdeps/i386/fpu/e_sqrtl.c: Likewise.
49595         * sysdeps/ieee754/dbl-64/e_acosh.c: Likewise.
49596         * sysdeps/ieee754/dbl-64/e_asin.c: Likewise.
49597         * sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
49598         * sysdeps/ieee754/dbl-64/e_cosh.c: Likewise.
49599         * sysdeps/ieee754/dbl-64/e_exp2.c: Likewise.
49600         * sysdeps/ieee754/dbl-64/e_fmod.c: Likewise.
49601         * sysdeps/ieee754/dbl-64/e_gamma_r.c: Likewise.
49602         * sysdeps/ieee754/dbl-64/e_hypot.c: Likewise.
49603         * sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
49604         * sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
49605         * sysdeps/ieee754/dbl-64/e_jn.c: Likewise.
49606         * sysdeps/ieee754/dbl-64/e_lgamma_r.c: Likewise.
49607         * sysdeps/ieee754/dbl-64/e_log.c: Likewise.
49608         * sysdeps/ieee754/dbl-64/e_log10.c: Likewise.
49609         * sysdeps/ieee754/dbl-64/e_log2.c: Likewise.
49610         * sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
49611         * sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
49612         * sysdeps/ieee754/dbl-64/e_sinh.c: Likewise.
49613         * sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
49614         * sysdeps/ieee754/dbl-64/halfulp.c: Likewise.
49615         * sysdeps/ieee754/dbl-64/s_asinh.c: Likewise.
49616         * sysdeps/ieee754/flt-32/e_acosf.c: Likewise.
49617         * sysdeps/ieee754/flt-32/e_acoshf.c: Likewise.
49618         * sysdeps/ieee754/flt-32/e_asinf.c: Likewise.
49619         * sysdeps/ieee754/flt-32/e_atan2f.c: Likewise.
49620         * sysdeps/ieee754/flt-32/e_coshf.c: Likewise.
49621         * sysdeps/ieee754/flt-32/e_exp2f.c: Likewise.
49622         * sysdeps/ieee754/flt-32/e_fmodf.c: Likewise.
49623         * sysdeps/ieee754/flt-32/e_gammaf_r.c: Likewise.
49624         * sysdeps/ieee754/flt-32/e_hypotf.c: Likewise.
49625         * sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
49626         * sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
49627         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
49628         * sysdeps/ieee754/flt-32/e_lgammaf_r.c: Likewise.
49629         * sysdeps/ieee754/flt-32/e_log10f.c: Likewise.
49630         * sysdeps/ieee754/flt-32/e_log2f.c: Likewise.
49631         * sysdeps/ieee754/flt-32/e_logf.c: Likewise.
49632         * sysdeps/ieee754/flt-32/e_powf.c: Likewise.
49633         * sysdeps/ieee754/flt-32/e_remainderf.c: Likewise.
49634         * sysdeps/ieee754/flt-32/e_sinhf.c: Likewise.
49635         * sysdeps/ieee754/flt-32/e_sqrtf.c: Likewise.
49636         * sysdeps/ieee754/flt-32/s_asinhf.c: Likewise.
49637         * sysdeps/ieee754/ldbl-128/e_acoshl.c: Likewise.
49638         * sysdeps/ieee754/ldbl-128/e_acosl.c: Likewise.
49639         * sysdeps/ieee754/ldbl-128/e_asinl.c: Likewise.
49640         * sysdeps/ieee754/ldbl-128/e_atan2l.c: Likewise.
49641         * sysdeps/ieee754/ldbl-128/e_atanhl.c: Likewise.
49642         * sysdeps/ieee754/ldbl-128/e_coshl.c: Likewise.
49643         * sysdeps/ieee754/ldbl-128/e_fmodl.c: Likewise.
49644         * sysdeps/ieee754/ldbl-128/e_gammal_r.c: Likewise.
49645         * sysdeps/ieee754/ldbl-128/e_hypotl.c: Likewise.
49646         * sysdeps/ieee754/ldbl-128/e_j0l.c: Likewise.
49647         * sysdeps/ieee754/ldbl-128/e_j1l.c: Likewise.
49648         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
49649         * sysdeps/ieee754/ldbl-128/e_lgammal_r.c: Likewise.
49650         * sysdeps/ieee754/ldbl-128/e_log10l.c: Likewise.
49651         * sysdeps/ieee754/ldbl-128/e_log2l.c: Likewise.
49652         * sysdeps/ieee754/ldbl-128/e_logl.c: Likewise.
49653         * sysdeps/ieee754/ldbl-128/e_powl.c: Likewise.
49654         * sysdeps/ieee754/ldbl-128/e_remainderl.c: Likewise.
49655         * sysdeps/ieee754/ldbl-128/e_sinhl.c: Likewise.
49656         * sysdeps/ieee754/ldbl-128ibm/e_acoshl.c: Likewise.
49657         * sysdeps/ieee754/ldbl-128ibm/e_acosl.c: Likewise.
49658         * sysdeps/ieee754/ldbl-128ibm/e_asinl.c: Likewise.
49659         * sysdeps/ieee754/ldbl-128ibm/e_atan2l.c: Likewise.
49660         * sysdeps/ieee754/ldbl-128ibm/e_atanhl.c: Likewise.
49661         * sysdeps/ieee754/ldbl-128ibm/e_coshl.c: Likewise.
49662         * sysdeps/ieee754/ldbl-128ibm/e_fmodl.c: Likewise.
49663         * sysdeps/ieee754/ldbl-128ibm/e_gammal_r.c: Likewise.
49664         * sysdeps/ieee754/ldbl-128ibm/e_hypotl.c: Likewise.
49665         * sysdeps/ieee754/ldbl-128ibm/e_log10l.c: Likewise.
49666         * sysdeps/ieee754/ldbl-128ibm/e_log2l.c: Likewise.
49667         * sysdeps/ieee754/ldbl-128ibm/e_logl.c: Likewise.
49668         * sysdeps/ieee754/ldbl-128ibm/e_powl.c: Likewise.
49669         * sysdeps/ieee754/ldbl-128ibm/e_remainderl.c: Likewise.
49670         * sysdeps/ieee754/ldbl-128ibm/e_sinhl.c: Likewise.
49671         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c: Likewise.
49672         * sysdeps/ieee754/ldbl-96/e_acoshl.c: Likewise.
49673         * sysdeps/ieee754/ldbl-96/e_asinl.c: Likewise.
49674         * sysdeps/ieee754/ldbl-96/e_atan2l.c: Likewise.
49675         * sysdeps/ieee754/ldbl-96/e_atanhl.c: Likewise.
49676         * sysdeps/ieee754/ldbl-96/e_coshl.c: Likewise.
49677         * sysdeps/ieee754/ldbl-96/e_gammal_r.c: Likewise.
49678         * sysdeps/ieee754/ldbl-96/e_hypotl.c: Likewise.
49679         * sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
49680         * sysdeps/ieee754/ldbl-96/e_j1l.c: Likewise.
49681         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
49682         * sysdeps/ieee754/ldbl-96/e_lgammal_r.c: Likewise.
49683         * sysdeps/ieee754/ldbl-96/e_remainderl.c: Likewise.
49684         * sysdeps/ieee754/ldbl-96/e_sinhl.c: Likewise.
49685         * sysdeps/ieee754/ldbl-96/s_asinhl.c: Likewise.
49686         * sysdeps/powerpc/fpu/e_hypot.c: Likewise.
49687         * sysdeps/powerpc/fpu/e_hypotf.c: Likewise.
49688         * sysdeps/powerpc/fpu/e_sqrt.c: Likewise.
49689         * sysdeps/powerpc/fpu/e_sqrtf.c: Likewise.
49690         * sysdeps/powerpc/powerpc64/fpu/e_sqrt.c: Likewise.
49691         * sysdeps/powerpc/powerpc64/fpu/e_sqrtf.c: Likewise.
49692         * sysdeps/s390/fpu/e_sqrt.c: Likewise.
49693         * sysdeps/s390/fpu/e_sqrtf.c: Likewise.
49694         * sysdeps/s390/fpu/e_sqrtl.c: Likewise.
49695         * sysdeps/sparc/sparc32/e_sqrt.c: Likewise.
49696         * sysdeps/sparc/sparc64/fpu/e_sqrtl.c: Likewise.
49697         * sysdeps/x86_64/fpu/e_exp2l.S: Likewise.
49698         * sysdeps/x86_64/fpu/e_fmodl.S: Likewise.
49699         * sysdeps/x86_64/fpu/e_log10l.S: Likewise.
49700         * sysdeps/x86_64/fpu/e_log2l.S: Likewise.
49701         * sysdeps/x86_64/fpu/e_logl.S: Likewise.
49702         * sysdeps/x86_64/fpu/e_powl.S: Likewise.
49703         * sysdeps/x86_64/fpu/e_remainderl.S: Likewise.
49704         * sysdeps/x86_64/fpu/e_scalbl.S: Likewise.
49705         * sysdeps/x86_64/fpu/e_sqrt.c: Likewise.  Fix parameter order
49706         * sysdeps/x86_64/fpu/e_sqrtf.c: Likewise.
49707         * sysdeps/x86_64/fpu/math_private.h (__isnan): Cast d parameter.
49708         (__isnanf): Likewise.
49709         (__isinf_ns): Likewise.
49710         (__isinf_nsf): Likewise.
49711         (__finite): Likewise.
49712         (__finitef): Likewise.
49713         (__ieee754_sqrt): Define as macro.
49714         (__ieee754_sqrtf): Define as macro.
49715         (__ieee754_sqrtl): Define as macro.
49716         * sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Add partially
49717         inlined copy.
49718         * sysdeps/x86_64/fpu/bits/mathinline.h: Make use of
49719         __FINITE_MATH_ONLY__ consistent.
49720         * sysdeps/ieee754/k_standard.c (__kernel_standard_f): New function.
49721
49722 2011-10-10  Andreas Schwab  <schwab@linux-m68k.org>
49723
49724         * inet/getnetgrent_r.c (nscd_getnetgrent): Use __rawmemchr instead
49725         of rawmemchr.
49726
49727         * sysdeps/ieee754/ldbl-128ibm/s_isinf_nsl.c: New file.
49728
49729 2011-10-09  Ulrich Drepper  <drepper@gmail.com>
49730
49731         * po/ja.po: Update from translation team.
49732
49733 2011-10-08  Roland McGrath  <roland@hack.frob.com>
49734
49735         * locale/programs/locarchive.c (prepare_address_space): New function.
49736         (create_archive, enlarge_archive, open_archive): Use it.
49737
49738         * sysdeps/unix/sysv/linux/x86_64/time.c: Move #include <dl-vdso.h>
49739         inside [SHARED], where it is used.
49740
49741         * nscd/nscd_proto.h: Declare __nscd_setnetgrent.
49742
49743         * nss/getent.c (netgroup_keys): Remove unused variable.
49744         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: Likewise.
49745
49746 2011-10-08  Ulrich Drepper  <drepper@gmail.com>
49747
49748         * include/math.h: Declare __isinf_ns, __isinf_nsf, __isinf_nsl.
49749         * sysdeps/ieee754/dbl-64/s_isinf_ns.c: New file.
49750         * sysdeps/ieee754/dbl-64/wordsize-64/s_isinf_ns.c: New file.
49751         * sysdeps/ieee754/flt-32/s_isinf_nsf.c: New file.
49752         * sysdeps/ieee754/ldbl-128/s_isinf_nsl.c: New file.
49753         * sysdeps/ieee754/ldbl-96/s_isinf_nsl.c: New file.
49754         * math/Makefile (libm-calls): Add s_isinf_ns.
49755         * math/divtc3.c: Use __isinf_nsl instead of isinf.
49756         * math/multc3.c: Likewise.
49757         * math/s_casin.c: Likewise.
49758         * math/s_casinf.c: Likewise.
49759         * math/s_casinl.c: Likewise.
49760         * math/s_ccos.c: Likewise.
49761         * math/s_ccosf.c: Likewise.
49762         * math/s_ccosl.c: Likewise.
49763         * math/s_ctan.c: Likewise.
49764         * math/s_ctanf.c: Likewise.
49765         * math/s_ctanh.c: Likewise.
49766         * math/s_ctanhf.c: Likewise.
49767         * math/s_ctanhl.c: Likewise.
49768         * math/s_ctanl.c: Likewise.
49769         * math/w_fmod.c: Likewise.
49770         * math/w_fmodf.c: Likewise.
49771         * math/w_fmodl.c: Likewise.
49772         * math/w_remainder.c: Likewise.
49773         * math/w_remainderf.c: Likewise.
49774         * math/w_remainderl.c: Likewise.
49775         * sysdeps/ieee754/dbl-64/s_finite.c: Undefine __finite.
49776         * sysdeps/ieee754/dbl-64/s_isnan.c: Undefine __isnan.
49777         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: Undefine __finite.
49778         * sysdeps/ieee754/dbl-64/wordsize-64/s_isnan.c: Undefine __nan.
49779         * sysdeps/ieee754/flt-32/s_finitef.c: Undefine __finitef.
49780         * sysdeps/ieee754/flt-32/s_isnanf.c: Undefine __nan.
49781         * sysdeps/x86_64/fpu/math_private.h: Add optimized versions of __isnsn,
49782         __isnanf, __isinf_ns, __isinf_nsf, __finite, and __finitef.
49783
49784         * stdio-common/printf_fp.c: Use the fact that isinf returns the sign
49785         of the number.
49786         * stdio-common/printf_fphex.c: Likewise.
49787         * stdio-common/printf_size.c: Likewise.
49788
49789         * math/e_exp10.c: Include math_private.h using <...> not "...".
49790         * math/e_exp10f.c: Likewise.
49791         * math/e_exp10l.c: Likewise.
49792         * math/e_exp2l.c: Likewise.
49793         * math/e_j0l.c: Likewise.
49794         * math/e_j1l.c: Likewise.
49795         * math/e_jnl.c: Likewise.
49796         * math/e_lgammal_r.c: Likewise.
49797         * math/e_rem_pio2l.c: Likewise.
49798         * math/e_scalb.c: Likewise.
49799         * math/e_scalbf.c: Likewise.
49800         * math/e_scalbl.c: Likewise.
49801         * math/k_cosl.c: Likewise.
49802         * math/k_sinl.c: Likewise.
49803         * math/k_tanl.c: Likewise.
49804         * math/s_cacoshf.c: Likewise.
49805         * math/s_catan.c: Likewise.
49806         * math/s_catanf.c: Likewise.
49807         * math/s_catanh.c: Likewise.
49808         * math/s_catanhf.c: Likewise.
49809         * math/s_catanhl.c: Likewise.
49810         * math/s_catanl.c: Likewise.
49811         * math/s_ccosh.c: Likewise.
49812         * math/s_ccoshf.c: Likewise.
49813         * math/s_ccoshl.c: Likewise.
49814         * math/s_cexp.c: Likewise.
49815         * math/s_cexpf.c: Likewise.
49816         * math/s_cexpl.c: Likewise.
49817         * math/s_clog.c: Likewise.
49818         * math/s_clog10.c: Likewise.
49819         * math/s_clog10f.c: Likewise.
49820         * math/s_clog10l.c: Likewise.
49821         * math/s_clogf.c: Likewise.
49822         * math/s_clogl.c: Likewise.
49823         * math/s_csin.c: Likewise.
49824         * math/s_csinf.c: Likewise.
49825         * math/s_csinh.c: Likewise.
49826         * math/s_csinhf.c: Likewise.
49827         * math/s_csinhl.c: Likewise.
49828         * math/s_csinl.c: Likewise.
49829         * math/s_csqrt.c: Likewise.
49830         * math/s_csqrtf.c: Likewise.
49831         * math/s_csqrtl.c: Likewise.
49832         * math/s_ctan.c: Likewise.
49833         * math/s_ctanf.c: Likewise.
49834         * math/s_ctanh.c: Likewise.
49835         * math/s_ctanhf.c: Likewise.
49836         * math/s_ctanhl.c: Likewise.
49837         * math/s_ctanl.c: Likewise.
49838         * math/s_ldexp.c: Likewise.
49839         * math/s_ldexpf.c: Likewise.
49840         * math/s_ldexpl.c: Likewise.
49841         * math/s_significand.c: Likewise.
49842         * math/s_significandf.c: Likewise.
49843         * math/s_significandl.c: Likewise.
49844         * math/w_acos.c: Likewise.
49845         * math/w_acosf.c: Likewise.
49846         * math/w_acosh.c: Likewise.
49847         * math/w_acoshf.c: Likewise.
49848         * math/w_acoshl.c: Likewise.
49849         * math/w_acosl.c: Likewise.
49850         * math/w_asin.c: Likewise.
49851         * math/w_asinf.c: Likewise.
49852         * math/w_asinl.c: Likewise.
49853         * math/w_atan2.c: Likewise.
49854         * math/w_atan2f.c: Likewise.
49855         * math/w_atan2l.c: Likewise.
49856         * math/w_atanh.c: Likewise.
49857         * math/w_atanhf.c: Likewise.
49858         * math/w_atanhl.c: Likewise.
49859         * math/w_cosh.c: Likewise.
49860         * math/w_coshf.c: Likewise.
49861         * math/w_coshl.c: Likewise.
49862         * math/w_dremf.c: Likewise.
49863         * math/w_exp10.c: Likewise.
49864         * math/w_exp10f.c: Likewise.
49865         * math/w_exp10l.c: Likewise.
49866         * math/w_exp2.c: Likewise.
49867         * math/w_exp2f.c: Likewise.
49868         * math/w_fmod.c: Likewise.
49869         * math/w_fmodf.c: Likewise.
49870         * math/w_fmodl.c: Likewise.
49871         * math/w_hypot.c: Likewise.
49872         * math/w_hypotf.c: Likewise.
49873         * math/w_hypotl.c: Likewise.
49874         * math/w_j0.c: Likewise.
49875         * math/w_j0f.c: Likewise.
49876         * math/w_j0l.c: Likewise.
49877         * math/w_j1.c: Likewise.
49878         * math/w_j1f.c: Likewise.
49879         * math/w_j1l.c: Likewise.
49880         * math/w_jn.c: Likewise.
49881         * math/w_jnf.c: Likewise.
49882         * math/w_jnl.c: Likewise.
49883         * math/w_lgamma.c: Likewise.
49884         * math/w_lgamma_r.c: Likewise.
49885         * math/w_lgammaf.c: Likewise.
49886         * math/w_lgammaf_r.c: Likewise.
49887         * math/w_lgammal.c: Likewise.
49888         * math/w_lgammal_r.c: Likewise.
49889         * math/w_log.c: Likewise.
49890         * math/w_log10.c: Likewise.
49891         * math/w_log10f.c: Likewise.
49892         * math/w_log10l.c: Likewise.
49893         * math/w_log2.c: Likewise.
49894         * math/w_log2f.c: Likewise.
49895         * math/w_log2l.c: Likewise.
49896         * math/w_logf.c: Likewise.
49897         * math/w_logl.c: Likewise.
49898         * math/w_pow.c: Likewise.
49899         * math/w_powf.c: Likewise.
49900         * math/w_powl.c: Likewise.
49901         * math/w_remainder.c: Likewise.
49902         * math/w_remainderf.c: Likewise.
49903         * math/w_remainderl.c: Likewise.
49904         * math/w_scalb.c: Likewise.
49905         * math/w_scalbf.c: Likewise.
49906         * math/w_scalbl.c: Likewise.
49907         * math/w_sinh.c: Likewise.
49908         * math/w_sinhf.c: Likewise.
49909         * math/w_sinhl.c: Likewise.
49910         * math/w_sqrt.c: Likewise.
49911         * math/w_sqrtf.c: Likewise.
49912         * math/w_sqrtl.c: Likewise.
49913         * math/w_tgamma.c: Likewise.
49914         * math/w_tgammaf.c: Likewise.
49915         * math/w_tgammal.c: Likewise.
49916
49917         * po/ja.po: Update from translation team.
49918
49919 2011-09-29  Andreas Jaeger  <aj@suse.de>
49920
49921         [BZ #13179]
49922         * sunrpc/netname.c (netname2host): Fix logic.
49923
49924         [BZ #6779]
49925         [BZ #6783]
49926         * math/w_remainderl.c (__remainderl): Handle (NaN, 0) and (Inf,y)
49927         correctly.
49928         * math/w_remainder.c (__remainder): Likewise.
49929         * math/w_remainderf.c (__remainderf): Likewise.
49930         * math/libm-test.inc (remainder_test): Add test cases.
49931
49932 2011-10-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
49933
49934         * stdlib/longlong.h: Update from GCC.  Fix zarch smul_ppmm and
49935         sdiv_qrnnd.
49936
49937 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
49938
49939         * string/test-memcmp.c: Avoid unncessary #defines.
49940         Patch by Liubov Dmitrieva <liubov.dmitrieva@gmail.com>.
49941
49942 2011-08-31  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
49943
49944         * sysdeps/x86_64/multiarch/rawmemchr.S: Update.
49945         Use new sse2 version for core i3 - i7 as it's faster
49946         than sse42 version.
49947         (bit_Prefer_PMINUB_for_stringop): New.
49948         * sysdeps/x86_64/rawmemchr.S: Update.
49949         Replace with faster SSE2 version.
49950         * sysdeps/x86_64/memrchr.S: New file.
49951         * sysdeps/x86_64/memchr.S: Update.
49952         Replace with faster SSE2 version.
49953
49954 2011-09-12  Marek Polacek  <mpolacek@redhat.com>
49955
49956         * elf/dl-load.c (lose): Add cast to avoid warning.
49957
49958 2011-10-07  Ulrich Drepper  <drepper@gmail.com>
49959
49960         * po/ca.po: Update from translation team.
49961
49962         * inet/getnetgrent_r.c: Hook up nscd.
49963         * nscd/Makefile (routines): Add nscd_netgroup.
49964         (nscd-modules): Add netgroupcache.
49965         (CFLAGS-netgroupcache.c): Define.
49966         * nscd/cache.c (readdfcts): Add entries for GETNETGRENT and INNETGR.
49967         (cache_search): Add const to second parameter.
49968         * nscd/connections.c (serv2str): Add entries for GETNETGRENT and
49969         INNETGR.
49970         (dbs): Add netgrdb entry.
49971         (reqinfo): Add entries for GETNETGRENT, INNETGR, and GETFDNETGR.
49972         (verify_persistent_db): Handle netgrdb.
49973         (handle_request): Handle GETNETGRENT, INNETGR, and GETFDNETGR.
49974         * nscd/nscd-client.h (request_type): Add GETNETGRENT, INNETGR, and
49975         GETFDNETGR.
49976         (netgroup_response_header): Define.
49977         (innetgroup_response_header): Define.
49978         (datahead): Add netgroup_response_header and innetgroup_response_header
49979         elements.
49980         * nscd/nscd.conf: Add entries for netgroup cache.
49981         * nscd/nscd.h (dbtype): Add netgrdb.
49982         (_PATH_NSCD_NETGROUP_DB): Define.
49983         (netgroup_iov_disabled): Declare.
49984         (xmalloc, xcalloc, xrealloc): Move declarations here.
49985         (cache_search): Adjust prototype.
49986         Add netgroup-related prototypes.
49987         * nscd/nscd_conf.c (dbnames): Add netgrdb entry.
49988         * nscd/nscd_proto.h (__nss_not_use_nscd_netgroup): Declare.
49989         (__nscd_innetgr): Declare.
49990         * nscd/selinux.c (perms): Use access_vector_t as element type and
49991         add netgroup-related initializers.
49992         * nscd/netgroupcache.c: New file.
49993         * nscd/nscd_netgroup.c: New file.
49994         * nss/Versions [libc] (GLIBC_PRIVATE): Export __nss_lookup.
49995         * nss/getent.c (netgroup_keys): Use setnetgrent only for one parameter.
49996         For four parameters use innetgr.
49997         * nss/nss_files/files-init.c: Add definition and callback for netgr.
49998         * nss/nsswitch.c (__nss_lookup): Add libc_hidden_def.
49999         (__nss_disable_nscd): Set __nss_not_use_nscd_netgroup.
50000         * nss/nsswitch.h (__nss_lookup): Add libc_hidden_proto.
50001
50002         * nscd/connections.c (register_traced_file): Don't register file
50003         for disabled databases.
50004
50005 2011-10-06  Ulrich Drepper  <drepper@gmail.com>
50006
50007         * nscd/grpcache.c (cache_addgr): Initialize written in all cases.
50008
50009         * nss/nsswitch.c (__nss_lookup_function): Fix order of deleting
50010         from tree and freeing node.
50011
50012 2011-09-25  Jiri Olsa  <jolsa@redhat.com>
50013
50014         * nss/nsswitch.c (__nss_database_lookup): Handle
50015         nss_parse_service_list out of memory case.
50016
50017 2011-09-15  Jiri Olsa  <jolsa@redhat.com>
50018
50019         * nss/nsswitch.c (__nss_lookup_function): Handle __tsearch
50020         out of memory case.
50021
50022 2011-10-04  Andreas Schwab  <schwab@redhat.com>
50023
50024         * include/dlfcn.h (__RTLD_NOIFUNC): Define.
50025         * elf/do-rel.h (elf_dynamic_do_rel): Add parameter skip_ifunc and
50026         pass it down.
50027         * elf/dynamic-link.h: Adjust prototypes of elf_machine_rel,
50028         elf_machine_rela, elf_machine_lazy_rel.
50029         (_ELF_DYNAMIC_DO_RELOC): Add parameter skip_ifunc and pass it down.
50030         (ELF_DYNAMIC_DO_REL): Likewise.
50031         (ELF_DYNAMIC_DO_RELA): Likewise.
50032         (ELF_DYNAMIC_RELOCATE): Likewise.
50033         * elf/dl-reloc.c (_dl_relocate_object): Pass __RTLD_NOIFUNC down
50034         to ELF_DYNAMIC_DO_REL.
50035         * elf/rtld.c (_dl_start): Adjust use of ELF_DYNAMIC_RELOCATE.
50036         (dl_main): In trace mode always set __RTLD_NOIFUNC.
50037         * elf/dl-conflict.c (_dl_resolve_conflicts): Adjust call to
50038         elf_machine_rela.
50039         * sysdeps/i386/dl-machine.h (elf_machine_rel): Add parameter
50040         skip_ifunc, don't call ifunc function if non-zero.
50041         (elf_machine_rela): Likewise.
50042         (elf_machine_lazy_rel): Likewise.
50043         (elf_machine_lazy_rela): Likewise.
50044         * sysdeps/ia64/dl-machine.h (elf_machine_rela): Likewise.
50045         (elf_machine_lazy_rel): Likewise.
50046         * sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_rela):
50047         Likewise.
50048         (elf_machine_lazy_rel): Likewise.
50049         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
50050         Likewise.
50051         (elf_machine_lazy_rel): Likewise.
50052         * sysdeps/s390/s390-32/dl-machine.h (elf_machine_rela): Likewise.
50053         (elf_machine_lazy_rel): Likewise.
50054         * sysdeps/s390/s390-64/dl-machine.h (elf_machine_rela): Likewise.
50055         (elf_machine_lazy_rel): Likewise.
50056         * sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
50057         (elf_machine_lazy_rel): Likewise.
50058         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela): Likewise.
50059         (elf_machine_lazy_rel): Likewise.
50060         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela): Likewise.
50061         (elf_machine_lazy_rel): Likewise.
50062         * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Likewise.
50063         (elf_machine_lazy_rel): Likewise.
50064
50065 2011-09-28  Ulrich Drepper  <drepper@gmail.com>
50066
50067         * nss/nss_files/files-init.c (_nss_files_init): Use static
50068         initialization for all the *_traced_file variables.
50069
50070 2011-09-28  Andreas Schwab  <schwab@redhat.com>
50071
50072         * sysdeps/powerpc/fpu/libm-test-ulps: Adjust ULPs for jn tests.
50073
50074 2011-09-27  Roland McGrath  <roland@hack.frob.com>
50075
50076         [BZ #13226]
50077         * manual/signal.texi (Longjmp in Handler): Grammar fixes.
50078
50079 2011-09-27  Andreas Schwab  <schwab@redhat.com>
50080
50081         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn):
50082         Reread the line before reparsing it.
50083
50084 2011-09-26  Andreas Schwab  <schwab@redhat.com>
50085
50086         * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
50087
50088 2011-09-21  Chung-Lin Tang  <cltang@codesourcery.com>
50089             Maxim Kuvyrkov  <maxim@codesourcery.com>
50090             Joseph Myers  <joseph@codesourcery.com>
50091
50092         * resolv/Makefile (LDLIBS-resolv.so): Link in $(elfobjdir)/ld.so
50093         if needed for __stack_chk_guard.
50094
50095 2011-09-19  Roland McGrath  <roland@hack.frob.com>
50096
50097         * sysdeps/posix/spawni.c (script_execute): Always define it.
50098         It will be optimized away if unused.
50099         (maybe_script_execute): New function.
50100         (__spawni): Call it.
50101
50102         * Makerules: Don't include tls.make.
50103         (config-tls): Always set to thread.
50104         * tls.make.c: File removed.
50105
50106 2011-09-19  Mike Frysinger  <vapier@gentoo.org>
50107
50108         * Makeconfig (CPPFLAGS): Prepend $(CPPFLAGS-config).
50109         * config.make.in (CPPFLAGS-config): New substituted variable.
50110
50111 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
50112
50113         * sysdeps/ieee754/dbl-64/wordsize-64/s_finite.c: New file.
50114
50115         [BZ #13192]
50116         * sysdeps/unix/sysv/linux/bits/in.h (IP_MULTICAST_ALL): Define.
50117         Patch mostly by Neil Horman <nhorman@tuxdriver.com>.
50118
50119 2011-09-15  Roland McGrath  <roland@hack.frob.com>
50120
50121         * sysdeps/unix/sysv/linux/i386/____longjmp_chk.S
50122         (CALL_FAIL): Use HIDDEN_JUMPTARGET for __fortify_fail.
50123         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
50124         (CALL_FAIL): Likewise.
50125         * sysdeps/unix/sysv/linux/ia64/____longjmp_chk.S (CHECK_RSP): Likewise.
50126         (CALL_FAIL): Macro removed.
50127         Patch mostly by Mike Frysinger <vapier@gentoo.org>.
50128
50129 2011-09-15  Ulrich Drepper  <drepper@gmail.com>
50130
50131         * sysdeps/x86_64/fpu/bits/mathinline.h: Add fmax and fmin optimizations
50132         for __FINITE_MATH_ONLY__ == 1.
50133
50134 2011-09-15  Andreas Schwab  <schwab@redhat.com>
50135
50136         * sysdeps/powerpc/fpu/e_hypot.c (__ieee754_hypot): Use
50137         __ieee754_sqrt instead of sqrt.
50138         * sysdeps/powerpc/fpu/e_hypotf.c (__ieee754_hypotf): Use
50139         __ieee754_sqrtf instead of sqrtf.
50140         * sysdeps/powerpc/fpu/e_rem_pio2f.c (__ieee754_rem_pio2f): Use
50141         __floorf instead of floorf.
50142         * sysdeps/powerpc/fpu/k_rem_pio2f.c (__fp_kernel_rem_pio2f): Use
50143         __floorf, __truncf instead of floorf, truncf.
50144
50145 2011-09-14  Ulrich Drepper  <drepper@gmail.com>
50146
50147         * sysdeps/x86_64/fpu/s_copysign.S [ELF]: Use correct section.
50148
50149         * sysdeps/x86_64/fpu/bits/mathinline.h (__MATH_INLINE): Use
50150         __extern_always_inline.
50151         Define lrint{f,} and llrint{f,} for 64-bit and in some situations for
50152         32-bit.
50153
50154 2011-09-14  Andreas Schwab  <schwab@redhat.com>
50155
50156         * elf/rtld.c (dl_main): Also relocate in dependency order when
50157         doing symbol dependency testing.
50158
50159 2011-09-13  Andreas Schwab  <schwab@linux-m68k.org>
50160
50161         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
50162         Always define `refsym'.
50163
50164 2011-09-13  Andreas Schwab  <schwab@redhat.com>
50165
50166         * misc/sys/select.h (__FD_MASK): Renamed from __FDMASK.
50167         (__FD_ELT): Renamed from __FDELT.
50168         * misc/bits/select2.h (__FD_ELT): Likewise.
50169         * bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET): Use __FD_ELT,
50170         __FD_MASK instead of __FDELT, __FDMASK.
50171         * sysdeps/i386/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
50172         Likewise.
50173         * sysdeps/x86_64/bits/select.h (__FD_SET, __FD_CLR, __FD_ISSET):
50174         Likewise.
50175
50176         * elf/Makefile (gen-ldd): Fix pattern.
50177
50178         * elf/rtld.c (dl_main): Only use USE___THREAD when defined.
50179         (init_tls): Likewise.
50180
50181 2011-09-12  Ulrich Drepper  <drepper@gmail.com>
50182
50183         * sysdeps/ieee754/dbl-64/wordsize-64/s_logb.c: New file.
50184
50185 2011-09-12  Andreas Schwab  <schwab@redhat.com>
50186
50187         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Cast to
50188         `struct cmsghdr *' instead of `void *'.
50189         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (__cmsg_nxthdr):
50190         Likewise.
50191
50192 2011-09-11  Andreas Schwab  <schwab@linux-m68k.org>
50193
50194         * elf/Makefile (gen-ldd): Prepend $(..) to $(ldd-rewrite-script)
50195         if non-absolute.
50196         * sysdeps/unix/sysv/linux/configure.in: Remove leading ../ from
50197         ldd_rewrite_script.
50198
50199 2011-09-11  Ulrich Drepper  <drepper@gmail.com>
50200
50201         * configure.in: Remove --with-tls option.
50202         * config.h.in: Remove HAVE_TLS_SUPPORT entry.
50203         * sysdeps/i386/elf/configure.in: Always test for TLS support and err
50204         out in case it is missing.
50205         * sysdeps/ia64/elf/configure.in: Likewise.
50206         * sysdeps/powerpc/powerpc32/elf/configure.in: Likewise.
50207         * sysdeps/powerpc/powerpc64/elf/configure.in: Likewise.
50208         * sysdeps/s390/s390-32/elf/configure.in: Likewise.
50209         * sysdeps/s390/s390-64/elf/configure.in: Likewise.
50210         * sysdeps/sh/elf/configure.in: Likewise.
50211         * sysdeps/sparc/sparc32/elf/configure.in: Likewise.
50212         * sysdeps/sparc/sparc64/elf/configure.in: Likewise.
50213         * sysdeps/x86_64/elf/configure.in: Likewise.
50214         * sysdeps/mach/hurd/i386/tls.h: Remove test for HAVE_TLS_SUPPORT.
50215         * sysdeps/mach/hurd/tls.h: Likewise.
50216
50217         [BZ #13067]
50218         * malloc/obstack.h [!GNUC] (obstack_free): Avoid cast to int.
50219
50220         [BZ #13090]
50221         * configure.in: Fix use of AC_INIT.
50222
50223         * elf/dl-support.c (_dl_pagesize): Initialize to EXEC_PAGESIZE.
50224
50225 2011-09-10  Ulrich Drepper  <drepper@gmail.com>
50226
50227         * malloc/malloc.c: Replace MALLOC_FAILURE_ACTION with use of
50228         __set_errno.
50229         * malloc/hooks.c: Likewise.
50230
50231         [BZ #11929]
50232         * malloc/arena.c (ptmalloc_init_minimal): Removed.  Initialize all
50233         variables statically.
50234         (narenas): Initialize.
50235         (list_lock): Initialize.
50236         (ptmalloc_init): Don't call ptmalloc_init_minimal.  Remove
50237         initializtion of main_arena and list_lock.  Small cleanups.
50238         Replace all uses of malloc_getpagesize with GLRO(dl_pagesize).
50239         * malloc/malloc.c: Remove malloc_getpagesize.  Include <ldsodefs.h>.
50240         Add initializers to main_arena and mp_.
50241         (malloc_state): Remove pagesize member.  Change all users to use
50242         GLRO(dl_pagesize).
50243
50244         * elf/rtld.c (rtld_global_ro): Initialize _dl_pagesize.
50245         * sysdeps/unix/sysv/linux/getpagesize.c: Simplify.  GLRO(dl_pagesize)
50246         is always initialized.
50247
50248         * malloc/malloc.c: Removed unused configurations and dead code.
50249         * malloc/arena.c: Likewise.
50250         * malloc/hooks.c: Likewise.
50251         * malloc/Makefile (CPPFLAGS-malloc.c): Don't add -DATOMIC_FASTBINS.
50252
50253         * include/tls.h: Removed.  USE___THREAD must always be defined.
50254         * bits/libc-tsd.h: Don't handle !USE___THREAD.
50255         * elf/dl-libc.c: Likewise.
50256         * elf/dl-tsd.c: Likewise.
50257         * include/errno.h: Likewise.
50258         * include/netdb.h: Likewise.
50259         * include/resolv.h: Likewise.
50260         * inet/herrno-loc.c: Likewise.
50261         * inet/herrno.c: Likewise.
50262         * malloc/arena.c: Likewise.
50263         * malloc/hooks.c: Likewise.
50264         * malloc/malloc.c: Likewise.
50265         * resolv/res-state.c: Likewise.
50266         * resolv/res_libc.c: Likewise.
50267         * sysdeps/i386/dl-machine.h: Likewise.
50268         * sysdeps/ia64/dl-machine.h: Likewise.
50269         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
50270         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
50271         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
50272         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
50273         * sysdeps/sh/dl-machine.h: Likewise.
50274         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
50275         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
50276         * sysdeps/unix/i386/sysdep.S: Likewise.
50277         * sysdeps/unix/sysv/linux/i386/sysdep.h: Likewise.
50278         * sysdeps/unix/sysv/linux/ia64/sysdep.S: Likewise.
50279         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.S: Likewise.
50280         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h: Likewise.
50281         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.S: Likewise.
50282         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h: Likewise.
50283         * sysdeps/unix/sysv/linux/sh/sysdep.h: Likewise.
50284         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h: Likewise.
50285         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Likewise.
50286         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Likewise.
50287         * sysdeps/unix/x86_64/sysdep.S: Likewise.
50288         * sysdeps/x86_64/dl-machine.h: Likewise.
50289         * tls.make.c: Likewise.
50290
50291         * configure.in: Remove --with-__thread option.  Make tests for
50292         --no-whole-archive, __builtin_expect, symbol redirection, __thread,
50293         tls_model attribute fail if no support is available.  Remove
50294         USE_IN_LIBIO.
50295         * Makeconfig: Adjust for dropped configure option.  All features are
50296         now mandatory.
50297         * Makerules: Likewise.
50298         * Versions.def: Likewise.
50299         * argp/argp-fmtstream.c: Likewise.
50300         * argp/argp-fmtstream.h: Likewise.
50301         * argp/argp-help.c: Likewise.
50302         * assert/assert.c: Likewise.
50303         * config.h.in: Likewise.
50304         * config.make.in: Likewise.
50305         * configure: Likewise.
50306         * configure.in: Likewise.
50307         * csu/Versions: Likewise.
50308         * csu/init.c: Likewise.
50309         * elf/tst-audit2.c: Likewise.
50310         * elf/tst-tls10.c: Likewise.
50311         * elf/tst-tls10.h: Likewise.
50312         * elf/tst-tls11.c: Likewise.
50313         * elf/tst-tls12.c: Likewise.
50314         * elf/tst-tls14.c: Likewise.
50315         * elf/tst-tlsmod11.c: Likewise.
50316         * elf/tst-tlsmod12.c: Likewise.
50317         * elf/tst-tlsmod13.c: Likewise.
50318         * elf/tst-tlsmod13a.c: Likewise.
50319         * elf/tst-tlsmod14a.c: Likewise.
50320         * elf/tst-tlsmod15b.c: Likewise.
50321         * elf/tst-tlsmod16a.c: Likewise.
50322         * elf/tst-tlsmod16b.c: Likewise.
50323         * elf/tst-tlsmod7.c: Likewise.
50324         * elf/tst-tlsmod8.c: Likewise.
50325         * elf/tst-tlsmod9.c: Likewise.
50326         * gmon/gmon.c: Likewise.
50327         * grp/fgetgrent_r.c: Likewise.
50328         * grp/putgrent.c: Likewise.
50329         * hurd/fopenport.c: Likewise.
50330         * include/libc-symbols.h: Likewise.
50331         * include/tls.h: Likewise.
50332         * intl/gettextP.h: Likewise.
50333         * intl/loadinfo.h: Likewise.
50334         * locale/global-locale.c: Likewise.
50335         * locale/localeinfo.h: Likewise.
50336         * mach/devstream.c: Likewise.
50337         * malloc/arena.c: Likewise.
50338         * malloc/set-freeres.c: Likewise.
50339         * misc/err.c: Likewise.
50340         * misc/getttyent.c: Likewise.
50341         * misc/mntent_r.c: Likewise.
50342         * posix/getopt.c: Likewise.
50343         * posix/wordexp.c: Likewise.
50344         * pwd/fgetpwent_r.c: Likewise.
50345         * resolv/Versions: Likewise.
50346         * resolv/res_hconf.c: Likewise.
50347         * shadow/fgetspent_r.c: Likewise.
50348         * shadow/putspent.c: Likewise.
50349         * stdio-common/printf_fphex.c: Likewise.
50350         * stdio-common/tmpfile.c: Likewise.
50351         * stdlib/abort.c: Likewise.
50352         * stdlib/fmtmsg.c: Likewise.
50353         * sunrpc/auth_unix.c: Likewise.
50354         * sunrpc/clnt_perr.c: Likewise.
50355         * sunrpc/clnt_tcp.c: Likewise.
50356         * sunrpc/clnt_udp.c: Likewise.
50357         * sunrpc/clnt_unix.c: Likewise.
50358         * sunrpc/openchild.c: Likewise.
50359         * sunrpc/svc_simple.c: Likewise.
50360         * sunrpc/svc_tcp.c: Likewise.
50361         * sunrpc/svc_udp.c: Likewise.
50362         * sunrpc/svc_unix.c: Likewise.
50363         * sunrpc/xdr.c: Likewise.
50364         * sunrpc/xdr_array.c: Likewise.
50365         * sunrpc/xdr_rec.c: Likewise.
50366         * sunrpc/xdr_ref.c: Likewise.
50367         * sunrpc/xdr_stdio.c: Likewise.
50368
50369 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50370
50371         * sysdeps/i386/fpu/libm-test-ulps: Adjust ULPs for jn tests.
50372
50373 2011-07-03  Andreas Jaeger  <aj@suse.de>
50374
50375         * math/libm-test.inc (jn_test): Add tests for BZ#11589.
50376         * sysdeps/x86_64/fpu/libm-test-ulps: Add new ULPs for jn_test,
50377         regenerate with gen-libm-tests.pl.
50378
50379 2010-05-12  Petr Baudis  <pasky@suse.cz>
50380
50381         [BZ #11589]
50382         * sysdeps/ieee754/dbl-64/e_jn.c: Compensate major precision loss
50383         around j0() zero points by switching to j1().
50384         * sysdeps/ieee754/flt-32/e_jnf.c: Likewise.
50385         * sysdeps/ieee754/ldbl-128/e_jnl.c: Likewise.
50386         * sysdeps/ieee754/ldbl-128ibm/e_jnl.c: Likewise.
50387         * sysdeps/ieee754/ldbl-96/e_jnl.c: Likewise.
50388
50389 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50390
50391         * sysdeps/unix/bsd/bsd4.4/bits/socket.h (__cmsg_nxthdr): Use NULL
50392         instead of 0.
50393         * sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use (void*)0
50394         instead of 0.
50395         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
50396         Patch in part by Pavel Roskin <proski@gnu.org>.
50397
50398         [BZ #13138]
50399         * stdio-common/vfscanf.c (ADDW): Allocate large memory block with
50400         realloc.
50401         (_IO_vfscanf_internal): Remove reteof.  Use errout after setting done.
50402         Free memory block if necessary.
50403
50404         [BZ #12847]
50405         * libio/genops.c (INTDEF): For string streams the _lock pointer can
50406         be NULL.  Don't lock in this case.
50407
50408 2011-09-09  Roland McGrath  <roland@hack.frob.com>
50409
50410         * elf/elf.h (ELFOSABI_GNU): New macro.
50411         (ELFOSABI_LINUX): Define to that.
50412
50413 2011-07-29  Denis Zaitceff  <zaitceff@gmail.com>
50414
50415         * string/strncat.c (strncat): Undef the symbol in case it has been
50416         defined in bits/string.h.
50417
50418 2011-09-09  Ulrich Drepper  <drepper@gmail.com>
50419
50420         * elf/sotruss.ksh: Clean up, fix, and complete help messages.
50421
50422         * elf/dl-iteratephdr.c (__dl_iterate_phdr): Fill in data from the real
50423         link map.
50424
50425 2011-08-17  Andreas Jaeger  <aj@suse.de>
50426
50427         * elf/sprof.c (load_shobj): Remove unused variable log_hashfraction.
50428
50429 2011-08-18  Paul Pluzhnikov  <ppluzhnikov@google.com>
50430             Ian Lance Taylor  <iant@google.com>
50431
50432         * math/libm-test.inc (lround_test): New testcase.
50433         * sysdeps/ieee754/dbl-64/s_lround.c (__lround): Don't lose precision.
50434
50435 2011-09-08  Ulrich Drepper  <drepper@gmail.com>
50436
50437         * Makefile: Remove support for automatic cvs check-ins.
50438         * Makerules: Likewise.
50439         * config.make.in: Likewise.
50440         * configure.in: Likewise.
50441         * intl/Makefile: Likewise.
50442         * locale/Makefile: Likewise.
50443         * po/Makefile: Likewise.
50444         * posix/Makefile: Likewise.
50445         * sysdeps/gnu/Makefile: Likewise.
50446         * sysdeps/mach/hurd/Makefile: Likewise.
50447         * sysdeps/sparc/sparc32/Makefile: Likewise.
50448
50449         [BZ #13118]
50450         * posix/Makefile (bug-regex32-ENV): Define.
50451         Patch by John Stanley <jpsinthemix@verizon.net>.
50452
50453         * misc/Makefile (headers): Add bits/select2.h.
50454         * misc/sys/select.h: Include bits/select2.h for _FORTIFY_SOURCE.
50455         * misc/bits/select2.h: New file.
50456         * include/bits/select2.h: New file.
50457         * debug/Makefile (routines): Add fdelt_chk.
50458         * debug/Versions: Export __fdelt_chk and __fdelt_warn for GLIBC_2.15.
50459         * debug/tst-chk1.c (do_test): Add tests for FD_SET, FD_CLR, and
50460         FD_ISSET.
50461         * debug/fdelt_chk.c: New file.
50462
50463         * wcsmbs/test-wcscmp.c: Moved from string/*.  Adjust.
50464         * wcsmbs/test-wmemcmp.c: Likewise.
50465         * string/Makefile (strop-tests): Remove wcscmp and wmemcmp.
50466         * wcsmbs/Makefile (strop-tests): Add wcscmp and wmemcmp.
50467
50468 2011-09-08  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50469
50470         * string/Makefile (strop-tests): Add memcmp.
50471         * string/test-wmemcmp.c: New file.
50472         * string/test-memcmp.c: Add wmemcmp support.
50473
50474 2011-09-08  Roland McGrath  <roland@hack.frob.com>
50475
50476         [BZ #13153]
50477         * manual/libc.texinfo (EDITION, VERSION, UPDATED): Update for
50478         2011-07-19 change.
50479
50480         * sysdeps/mach/hurd/fork.c (__fork): Initialize REFS so we don't use a
50481         garbage value in a __mach_port_mod_refs call in the cases of the
50482         task-self and thread-self ports.
50483
50484 2011-09-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
50485
50486         * sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
50487
50488 2011-09-08  Andreas Schwab  <schwab@redhat.com>
50489
50490         * elf/dl-load.c (lose): Check for non-null L.
50491
50492 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
50493
50494         * elf/dl-load.c (open_verify): Use O_CLOEXEC.
50495
50496         * elf/dl-libc.c (dlerror_run): Pass back error code from
50497         dl_catch_error.
50498
50499         [BZ #13123]
50500         * elf/dl-load.c (lose): Free l_origin if it is valid.
50501
50502         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Fix mixup in section
50503         names.
50504         * sysdeps/i386/i686/multiarch/strchr-sse2.S: Likewise.
50505         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
50506         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
50507         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
50508         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: Likewise.
50509         Patch by Liubov Dmitrieva <liubov.dmitrieva@intel.com>.
50510
50511 2011-08-01  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
50512
50513         * sysdeps/powerpc/fpu/e_hypot.c: New file.
50514         * sysdeps/powerpc/fpu/e_hypotf.c: New file.
50515         * sysdeps/powerpc/fpu/e_rem_pio2f.c: New file.
50516         * sysdeps/powerpc/fpu/k_rem_pio2f.c: New file.
50517         * sysdeps/powerpc/fpu/k_cosf.c: New file.
50518         * sysdeps/powerpc/fpu/k_sinf.c: New file.
50519         * sysdeps/powerpc/fpu/s_cosf.c: New file.
50520         * sysdeps/powerpc/fpu/s_sinf.c: New file.
50521         * sysdeps/powerpc/fpu/s_scalbnf.c: New file.
50522         * sysdeps/powerpc/fpu/s_float_bitwise.h: New file.
50523
50524 2011-08-15  Alan Modra  <amodra@gmail.com>
50525
50526         [BZ #13092]
50527         * sysdeps/powerpc/Makefile (gmon): Move sysdep_routines to..
50528         * sysdeps/powerpc/powerpc64/Makefile (gmon): ..here..
50529         * sysdeps/powerpc/powerpc32/Makefile (gmon): ..and here.  Add
50530         ppc_mcount to static-only-routines.
50531         * sysdeps/powerpc/powerpc32/Versions: Export GLIBC_PRIVATE
50532         __mcount_internal.
50533         * sysdeps/powerpc/powerpc32/ppc-mcount.S (_mcount): Call
50534         __mcount_internal with usual JUMPTARGET.  Remove useless nop.
50535
50536 2011-08-18  David Flaherty  <flaherty@linux.vnet.ibm.com>
50537
50538         * sysdeps/ieee754/ldbl-128ibm/s_fmal.c: New file which checks
50539         for finite and infinity parameters.
50540
50541 2011-08-04  Will Schmidt  <will_schmidt@vnet.ibm.com>
50542
50543         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Adjust the alignment
50544         and add nop instructions for throughput optimization.
50545         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
50546
50547 2011-07-28  Will Schmidt  <will_schmidt@vnet.ibm.com>
50548
50549         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Optimize the
50550         aligned copy for power7 with vector-scalar instructions.
50551         * sysdeps/powerpc/powerpc64/power7/memcpy.S: Likewise.
50552
50553 2011-07-24  H.J. Lu  <hongjiu.lu@intel.com>
50554
50555         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Simplify
50556         AVX check.
50557
50558 2011-09-07  Andreas Schwab  <schwab@redhat.com>
50559
50560         [BZ #13144]
50561         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Revert
50562         last change.
50563
50564 2011-09-07  Ulrich Drepper  <drepper@gmail.com>
50565
50566         * sysdeps/unix/sysv/linux/x86_64/init-first.c
50567         (_libc_vdso_platform_setup): If vDSO is not present store pointer to
50568         syscall wrapper around clock_gettime in __vdso_clock_gettime.
50569         * sysdeps/unix/sysv/linux/x86_64/syscalls.list: Add entry for
50570         clock_gettime.
50571
50572 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
50573
50574         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c (INTERNAL_GETTIME):
50575         Forgot to demangle the pointer.
50576
50577         * sysdeps/i386/sysdep.h: Define atom_text_section.
50578         * sysdeps/x86_64/sysdep.h: Likewise.
50579         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: Place function in
50580         section with atom_text_section.
50581         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: Likewise.
50582         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: Likewise.
50583         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: Likewise.
50584         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
50585         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: Likewise.
50586
50587         * sysdeps/unix/sysv/linux/x86_64/clock_gettime.c: New file.
50588         * sysdeps/unix/sysv/linux/clock_gettime.c (SYSCALL_GETTIME): Allow
50589         already be defined.  Change to take two parameters and don't assign
50590         result to variable.  Adjust all users.
50591         Define INTERNAL_GETTIME if not already defined.
50592         Use INTERNAL_GETTIME instead of INTERNAL_VSYSCALL got clock_gettime
50593         call.
50594         * sysdeps/unix/sysv/linux/x86_64/sysdep.h: Don't define
50595         HAVE_CLOCK_GETTIME_VSYSCALL.
50596         * sysdeps/unix/clock_gettime.c: Adjust use of SYSDEP_GETTIME_CPU.
50597
50598         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Don't use
50599         gettimeofday vsyscall, just use time.
50600
50601 2011-09-06  Andreas Schwab  <schwab@redhat.com>
50602
50603         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Include
50604         <errno.h>.
50605
50606 2011-09-06  Ulrich Drepper  <drepper@gmail.com>
50607
50608         * sysdeps/unix/sysv/linux/kernel-features.h: Add entry for getcpu
50609         syscall on x86-64.
50610         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c [!SHARED]: Use real
50611         syscall.
50612         * sysdeps/unix/sysv/linux/x86_64/time.c: Likewise.
50613         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [!SHARED]: Use real
50614         syscall if possible.
50615
50616 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50617
50618         * elf/pldd.c (get_process_info): Don't read whole ELF header, just
50619         e_ident.  Don't pass to find_mapsXX.
50620         * elf/pldd-xx.c (find_mapsXX): Remove second parameter.
50621
50622 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
50623
50624         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
50625         strchr-sse2-no-bsf strrchr-sse2-no-bsf
50626         * sysdeps/x86_64/multiarch/strchr.S: Update.
50627         Check bit_slow_BSF bit.
50628         * sysdeps/x86_64/multiarch/strrchr.S: Likewise.
50629         * sysdeps/x86_64/multiarch/strchr-sse2-no-bsf.S: New file.
50630         * sysdeps/x86_64/multiarch/strrchr-sse2-no-bsf.S: New file.
50631
50632 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50633
50634         [BZ #13134]
50635         * sysdeps/posix/spawni.c (script_execute): Define only for compatibility
50636         before glibc 2.15.
50637         (tryshell): Define.
50638         (__spawni): Change last parameter to be flag.  Test
50639         SPAWN_XFLAGS_USE_PATH flag to use path or not.
50640         Don't try to use shell unless SPAWN_XFLAGS_TRY_SHELL is set.
50641         * sysdeps/mach/hurd/spawni.c: Change last parameter and adjust user.
50642         * posix/spawni.c: Likewise.
50643         * posix/spawn.c: Add compat version which passed SPAWN_XFLAGS_TRY_SHELL.
50644         * posix/spawnp.c: Likewise.  Change normal version to use
50645         SPAWN_XFLAGS_USE_PATH.
50646         * posix/spawn_int.c: Define SPAWN_XFLAGS_USE_PATH and
50647         SPAWN_XFLAGS_TRY_SHELL.
50648
50649         [BZ #13150]
50650         * posix/glob.h: Remove gcc 1.x support.
50651
50652         [BZ #13068]
50653         * elf/dl-misc.c (_dl_sysdep_read_whole_file): Use O_CLOEXEC.
50654
50655 2011-07-20  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
50656
50657         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
50658         strchr-sse2 strrchr-sse2 strchr-sse2-bsf
50659         strrchr-sse2-bsf
50660         * sysdeps/i386/i686/multiarch/strchr.S: New file.
50661         * sysdeps/i386/i686/multiarch/strrchr.S: New file.
50662         * sysdeps/i386/i686/multiarch/strchr-sse2.S: New file.
50663         * sysdeps/i386/i686/multiarch/strchr-sse2-bsf.S: New file.
50664         * sysdeps/i386/i686/multiarch/strrchr-sse2.S: New file.
50665         * sysdeps/i386/i686/multiarch/strrchr-sse2-bsf.S: New file.
50666
50667 2011-08-29  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
50668
50669         * sysdeps/x86_64/wcscmp.S: New file.
50670
50671         * sysdeps/i386/i686/multiarch/Makefile: (sysdep_routines): Add
50672         wcscmp-c wcscmp-sse2
50673         * sysdeps/i386/i686/multiarch/wcscmp-c.c: New file.
50674         * sysdeps/i386/i686/multiarch/wcscmp.S: New file.
50675         * sysdeps/i386/i686/multiarch/wcscmp-sse2.S: New file.
50676         * wcsmbs/wcscmp.c: Allow renaming.
50677
50678 2011-09-05  David S. Miller  <davem@davemloft.net>
50679
50680         * sysdeps/sparc/sparc32/fpu/s_fabsf.S: Use first argument
50681         stack slot, rather than the struct return pointer slot.
50682         * sysdeps/sparc/sparc32/fpu/s_fabs.c: Delete.
50683         * sysdeps/sparc/sparc32/fpu/s_fabs.S: New file.
50684         * sysdeps/sparc/sparc32/sparcv9/fpu/s_fabs.S: Likewise.
50685         * sysdeps/unix/sysv/linux/sparc/sparc32/sparcv9/fpu/Implies: Likewise.
50686
50687 2011-09-05  Ulrich Drepper  <drepper@gmail.com>
50688
50689         * po/ja.po: Update from translation team.
50690
50691         [BZ #13144]
50692         * sysdeps/unix/sysv/linux/x86_64/bits/sem.h (semdid_ds): Fix to match
50693         kernel in 64-bit binaries.
50694
50695 2011-09-01  David S. Miller  <davem@davemloft.net>
50696
50697         * elf/elf.h (HWCAP_SPARC_*): Move to..
50698         * sysdeps/sparc/sysdep.h: this new file and add new values.
50699         * sysdeps/unix/sparc/sysdep.h: Include sysdeps/sparc/sysdep.h
50700         * sysdeps/sparc/dl-procinfo.h: Include sysdep.h and increase
50701         _DL_HWCAP_COUNT to 24.
50702         * sysdeps/sparc/dl-procinfo.c (_dl_sparc_cap_flags): Add new
50703         entries.
50704         * sysdeps/sparc/sparc32/bits/atomic.h: Don't use magic local
50705         __ATOMIC_HWCAP_SPARC_V9 define, use sysdep.h one instead.
50706         * sysdeps/sparc/sparc32/dl-machine.h: Include sysdep.h
50707         * sysdeps/sparc/sparc64/multiarch/memcpy.S: Use HWCAP_SPARC_*
50708         instead of magic constants.
50709         * sysdeps/sparc/sparc64/multiarch/memset.S: Likewise.
50710
50711 2011-08-31  David S. Miller  <davem@davemloft.net>
50712
50713         * sysdeps/unix/sparc/sysdep.h (SETUP_PIC_REG): Define.
50714         * sysdeps/unix/sysv/linux/sparc/sparc32/sysdep.h (PSEUDO):
50715         Reimplement to do errno handling inline.
50716         (SYSCALL_ERROR_HANDLER): New macro.
50717         (__SYSCALL_STRING): Do not do errno handling in asm.
50718         (__CLONE_SYSCALL_STRING): Delete.
50719         (__INTERNAL_SYSCALL_STRING): Delete.
50720         * sysdeps/unix/sysv/linux/sparc/sparc64/sysdep.h: Include
50721         sysdeps/unix/sparc/sysdep.h instead of sysdeps/unix/sysdep.h
50722         (PSEUDO): Reimplement to do errno handling inline.
50723         (ret, ret_NOERRNO, ret_ERRVAL, r0, r1, MOVE): Don't redefine.
50724         (SYSCALL_ERROR_HANDLER): New macro.
50725         (__SYSCALL_STRING): Do not do errno handling in asm.
50726         (__CLONE_SYSCALL_STRING): Delete.
50727         (__INTERNAL_SYSCALL_STRING): Delete.
50728         * sysdeps/unix/sysv/linux/sparc/sysdep.h (INLINE_SYSCALL):
50729         Implement in terms of INTERNAL_SYSCALL and __set_errno, just like
50730         i386.
50731         (INTERNAL_SYSCALL_DECL): Declare %g1 var for err state.
50732         (inline_syscall*): Add 'err' argument.
50733         (INTERNAL_SYSCALL, INTERNAL_SYSCALL_NCS,
50734         INTERNAL_SYSCALL_ERROR_P): Likewise and pass it down.
50735         (INLINE_CLONE_SYSCALL): Reimplement in terms of __SYSCALL_STRING,
50736         INTERNAL_SYSCALL_ERRNO, and INTERNAL_SYSCALL_ERROR_P.
50737
50738         * scripts/data/localplt-sparc-linux-gnu.data: Remove 'ffs'.
50739         * scripts/data/localplt-sparc64-linux-gnu.data: Likewise.
50740
50741 2011-08-30  Andreas Schwab  <schwab@redhat.com>
50742
50743         * elf/rtld.c (dl_main): Relocate objects in dependency order.
50744
50745 2011-08-29  Jiri Olsa <jolsa@redhat.com>
50746
50747         * sysdeps/i386/dl-trampoline.S (_dl_runtime_profile): Fix cfi
50748         directive.
50749
50750 2011-08-24  David S. Miller  <davem@davemloft.net>
50751
50752         * sysdeps/sparc/sparc64/strcmp.S: Rewrite.
50753
50754 2011-08-24  Andreas Schwab  <schwab@redhat.com>
50755
50756         * elf/Makefile: Add rules to build and run unload8 test.
50757         * elf/unload8.c: New file.
50758         * elf/unload8mod1.c: New file.
50759         * elf/unload8mod1x.c: New file.
50760         * elf/unload8mod2.c: New file.
50761         * elf/unload8mod3.c: New file.
50762
50763         * elf/dl-close.c (_dl_close_worker): Reset private search list if
50764         it wasn't used.
50765
50766 2011-08-23  David S. Miller  <davem@davemloft.net>
50767
50768         * sysdeps/sparc/sparc64/dl-machine.h (DL_STACK_END): Do not
50769         subtract stack bias.
50770         * sysdeps/sparc/sparc64/jmpbuf-unwind.h (_JMPBUF_UNWINDS): Use
50771         %sp not %fp in calculations.
50772         (_JMPBUF_UNWINDS_ADJ): Likewise.
50773
50774         * sysdeps/pthread/aio_suspend.c (do_aio_misc_wait): New function.
50775         (aio_suspend): Call it to force an exception region around the
50776         AIO_MISC_WAIT() invocation.
50777
50778 2011-08-23  Andreas Schwab  <schwab@redhat.com>
50779
50780         * sysdeps/i386/i686/multiarch/strspn.S (ENTRY): Add missing
50781         backslash.
50782
50783 2011-07-04  Aurelien Jarno  <aurelien@aurel32.net>
50784
50785         * sysdeps/powerpc/dl-tls.h: Add _PPC_DL_TLS_H inclusion
50786         protection macro.
50787         * sysdeps/powerpc/powerpc64/dl-irel.h: Include <ldsodefs.h>
50788         and <dl-machine.h>.
50789         (Elf64_FuncDesc): Remove.
50790
50791 2011-08-22  David S. Miller  <davem@davemloft.net>
50792
50793         * sysdeps/unix/sysv/linux/sparc/sparc32/____longjmp_chk.S: Fix
50794         sigaltstack check, add missing cfi directives.
50795         * sysdeps/unix/sysv/linux/sparc/sparc64/____longjmp_chk.S: Add
50796         missing cfi directives, and sigaltstack handling.
50797
50798 2011-08-16  Andreas Schwab  <schwab@redhat.com>
50799
50800         [BZ #11724]
50801         * elf/dl-deps.c (_dl_map_object_deps): Only assume cycle when
50802         object is seen twice.
50803         * elf/dl-fini.c (_dl_sort_fini): Likewise.
50804
50805         * elf/Makefile (distribute): Add tst-initorder2.c.
50806         (tests): Add tst-initorder2.
50807         (modules-names): Add tst-initorder2a tst-initorder2b
50808         tst-initorder2c tst-initorder2d.  Add rules to build them.
50809         ($(objpfx)tst-initorder2.out): New rule.
50810         * elf/tst-initorder2.c: New file.
50811         * elf/tst-initorder2.exp: New file.
50812
50813 2011-08-22  Andreas Schwab  <schwab@redhat.com>
50814
50815         * sysdeps/unix/sysv/linux/i386/scandir64.c: Include <string.h>.
50816
50817         * elf/dl-deps.c (_dl_map_object_deps): Move check for missing
50818         dependencies back to end of function.
50819
50820         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
50821         $(elfobjdir)/ld.so.
50822
50823 2011-08-21  Ulrich Drepper  <drepper@gmail.com>
50824
50825         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.S: Removed.
50826         * sysdeps/unix/sysv/linux/x86_64/time.S: Removed.
50827         * sysdeps/unix/sysv/linux/x86_64/gettimeofday.c: New file.
50828         * sysdeps/unix/sysv/linux/x86_64/time.c: New file.
50829         * sysdeps/unix/sysv/linux/x86_64/bits/libc-vdso.h: Remove declaration
50830         of __vdso_gettimeofday.
50831         * sysdeps/unix/sysv/linux/x86_64/init-first.c: Remove definition of
50832         __vdso_gettimeofday and __vdso_time.  Define __vdso_getcpu with
50833         attribute_hidden.
50834         (_libc_vdso_platform_setup): Remove initialization of
50835         __vdso_gettimeofday and __vdso_time.
50836
50837 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
50838
50839         * nss/nss_files/files-alias.c (get_next_alias): Use feof_unlocked
50840         and fgetc_unlocked.
50841         * nss/nss_files/files-key.c (search): Use fgets_unlocked and
50842         getc_unlocked.
50843
50844         * elf/dl-open.c (add_to_global): Report additions to the global scope
50845         for LD_DEBUG=scopes.
50846         (dl_open_worker): Also print scope of newly loaded dependencies.
50847         (_dl_show_scope): Indicate if there is no scope.
50848
50849         [BZ #13114]
50850         * stdio-common/Makefile (tests): Add bug24.
50851         * stdio-common/bug24.c: New file.
50852
50853 2011-08-19  Andreas Jaeger  <aj@suse.de>
50854
50855         [BZ #13114]
50856         * libio/fileops.c (_IO_new_file_fopen): Fix handling of
50857         non-existant file when using close-on-exec mode.
50858
50859 2011-08-20  Ulrich Drepper  <drepper@gmail.com>
50860
50861         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_resolve): Fix CFI for
50862         the very first instruction.
50863
50864         * sysdeps/x86_64/dl-trampoline.h: If MORE_CODE is defined, restore
50865         the CFI state in the end.
50866         * sysdeps/x86_64/dl-trampoline.S: Define MORE_CODE before first
50867         inclusion of dl-trampoline.h.
50868         Based on a patch by Jiri Olsa <jolsa@redhat.com>.
50869
50870 2011-08-19  Andreas Schwab  <schwab@redhat.com>
50871
50872         * sysdeps/powerpc/fpu/libm-test-ulps: Relax ctan (0.75 + 1.25 i)
50873         expectations for long double.
50874
50875         * sysdeps/unix/sysv/linux/powerpc/powerpc32/scandir64.c: Renamed
50876         from sysdeps/unix/sysv/linux/powerpc/scandir64.c.
50877
50878 2011-08-14  David S. Miller  <davem@davemloft.net>
50879
50880         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): The
50881         artificual limit depends upon the system page size.
50882
50883 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
50884
50885         * Makeconfig (override CFLAGS): Add library-specific CFLAGS.
50886         * resolv/Makefile: Define CFLAGS-libresolv.
50887
50888 2011-08-17  Andreas Schwab  <schwab@redhat.com>
50889
50890         * nss/makedb.c (compute_tables): Make variables used in nested
50891         function static.
50892
50893 2011-08-17  Ulrich Drepper  <drepper@gmail.com>
50894
50895         * elf/pldd-xx.c (r_debug): Explicitly add padding when needed.
50896         * elf/pldd.c (get_process_info): Use pread to re-read auxiliary vector
50897         if buffer was too small.
50898
50899         * elf/pldd.c (main): Attach to all threads in the process.
50900         Rewrite /proc handling to use *at functions.
50901
50902 2011-08-16  Ulrich Drepper  <drepper@gmail.com>
50903
50904         * elf/dl-open.c (_dl_show_scope): Take additional parameter which
50905         specifies first scope to show.
50906         (dl_open_worker): Update callers.  Move printing scope of new
50907         object to before the relocation.
50908         * elf/rtld.c (dl_main): Update _dl_show_scope call.
50909         * sysdeps/generic/ldsodefs.h: Update declaration.
50910
50911         * elf/dl-open.c (_dl_show_scope): Use _dl_debug_printf to generate the
50912         string for the scope number.
50913
50914 2011-08-14  Ulrich Drepper  <drepper@gmail.com>
50915
50916         * nscd/servicescache.c (cache_addserv): Make sure written is always
50917         initialized.
50918
50919 2011-08-14  Roland McGrath  <roland@hack.frob.com>
50920
50921         * sysdeps/i386/i486/bits/atomic.h
50922         (__arch_compare_and_exchange_val_64_acq): Use RET alone at end of
50923         statement expression, so as to suppress "set but not used" warning.
50924         (__arch_c_compare_and_exchange_val_64_acq): Likewise.
50925
50926         * string/strncat.c (STRNCAT): Use prototype definition.
50927
50928         * locale/Makefile (locale-CPPFLAGS): Renamed CPPFLAGS-locale-programs.
50929         (locale-CPPFLAGS): New variable; put LOCALEDIR, LOCALE_ALIAS_PATH and
50930         -Iprograms here.
50931         (cppflags-iterator.mk sequence): Use locale-programs in place of nonlib.
50932         (localedef-modules): Add localedef.
50933         (locale-modules): Add locale.
50934
50935         * sysdeps/generic/ldsodefs.h (struct unique_sym): Add a const.
50936         * elf/rtld.c (dl_main): Invert order of assignment in last change,
50937         to avoid a warning.
50938
50939 2011-08-14  David S. Miller  <davem@davemloft.net>
50940
50941         * sysdeps/unix/sysv/linux/sparc/bits/resource.h (RLIM_INFINITY,
50942         RLIM64_INFINITY): Fix 64-bit values for 32-bit sparc.
50943
50944 2011-08-13  Ulrich Drepper  <drepper@gmail.com>
50945
50946         * elf/dl-open.c: Rename show_scope to _dl_show_scope and export.
50947         (dl_open_worker): Call _dl_show_scope when DL_DEBUG_SCOPES is set.
50948         * elf/rtld.c (dl_main): Set l_name of vDSO.
50949         Call _dl_show_scope when DL_DEBUG_SCOPES.
50950         (process_dl_debug): Recognize scopes flag and also set it for all.
50951         * sysdeps/generic/ldsodefs.h: Define DL_DEBUG_SCOPES.
50952         Declare _dl_show_scope.
50953
50954         * elf/dl-libc.c (do_dlopen_args): Add caller_dlopen.
50955         (do_dlopen): Pass caller_dlopen to dl_open.
50956         (__libc_dlopen_mode): Initialize caller_dlopen.
50957
50958         * intl/l10nflist.c (_nl_normalize_codeset): Make it compile outside
50959         of libc.  Make tolower call locale-independent.  Optimize a bit by
50960         using isdigit instead of isalnum.
50961         * locale/Makefile (locale-CPPFLAGS): Add -DNOT_IN_libc.
50962
50963 2011-08-12  Ulrich Drepper  <drepper@gmail.com>
50964
50965         * elf/dl-load.c (_dl_map_object): Show in debug output whether a DSO
50966         was a dependency or dynamically loaded.
50967
50968 2011-08-11  Ulrich Drepper  <drepper@gmail.com>
50969
50970         * intl/l10nflist.c: Allow architecture-specific pop function.
50971         * sysdeps/x86_64/l10nflist.c: New file.
50972
50973         * intl/l10nflist.c (_nl_make_l10nflist): Use locale-independent
50974         classification.
50975
50976 2011-08-10  Andreas Schwab  <schwab@redhat.com>
50977
50978         * include/dirent.h: Add libc_hidden_proto for scandirat and
50979         scandirat64.  Don't declare __scandirat64.
50980         * dirent/scandirat.c: Add libc_hidden_def.
50981         * dirent/scandirat64.c (SCANDIRAT): Remove underscores.
50982         * sysdeps/unix/sysv/linux/i386/scandir64.c (SCANDIRAT): Likewise.
50983
50984 2011-08-10  David S. Miller  <davem@davemloft.net>
50985
50986         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Add missing comma in
50987         enum.
50988         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
50989         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
50990         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
50991
50992 2011-08-09  Ulrich Drepper  <drepper@gmail.com>
50993
50994         * Versions.def [libc]: Add GLIBC_2.15.
50995         * dirent/Makefile (routines): Add scandirat and scandirat64.
50996         * dirent/Versions [libc]: Export scandirat and scandirat64 for
50997         GLIBC_2.15.
50998         * dirent/dirent.h: Declare scandirat and scandirat64.
50999         * dirent/scandirat.c: New file.
51000         * dirent/scandirat64.c: New file.
51001         * sysdeps/wordsize-64/scandirat.c: New file.
51002         * sysdeps/wordsize-64/scandirat64.c: New file.
51003         * dirent/opendir.c: Define opendirat.
51004         * dirent/scandir.c: Move code to scandirat.c.  Implement scandir
51005         using scandirat.
51006         * dirent/scandir64.c: Adjust for scandir.c change.
51007         * include/dirent.h: Define scandir_cancel_struct.  Declare __opendirat,
51008         __scandirat64, and __scandir_cancel_handler.
51009         * sysdeps/unix/opendir.c: Rename __opendir to __opendirat.  Take
51010         additional parameter and use openat instead of open (outside of ld.so).
51011         Add new __opendir as wrapper around __opendirat.
51012         * sysdeps/unix/sysv/linux/i386/scandir64.c: Reimplement __old_scandir64
51013         here without requiring old scandirat implementation.
51014
51015 2011-08-08  Ulrich Drepper  <drepper@gmail.com>
51016
51017         * dirent/scandir.c (cancel_handler): Renamed to
51018         __scandir_cancel_handler.  Do not define if SKIP_SCANDIR_CANCEL is
51019         defined.  Adjust users.
51020         * dirent/scandir64.c: Define SKIP_SCANDIR_CANCEL.
51021         * sysdeps/unix/sysv/linux/i386/scandir64.c: Likewise.
51022
51023 2011-08-04  Ulrich Drepper  <drepper@gmail.com>
51024
51025         * string/test-string.h (IMPL): Use __STRING to expand name and then
51026         stringify it.
51027
51028         * string/test-strcmp.c: Unify most of the WIDE and !WIDE code.  Lots
51029         of cleanups.
51030
51031 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51032
51033         * string/Makefile: Update.
51034         (strop-tests): Append strncat.
51035         * string/test-wcscmp.c: New file.
51036         New comprehensive test for wcscmp.
51037         * string/test-strcmp.c: Update.
51038         (WIDE): New define.
51039
51040 2011-07-22  Andreas Schwab  <schwab@redhat.com>
51041
51042         * resolv/res_init.c (__res_vinit): Properly tokenize nameserver
51043         line.
51044
51045 2011-07-26  Andreas Schwab  <schwab@redhat.com>
51046
51047         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
51048         encoding to ACE if AI_IDN.
51049
51050 2011-08-01  Jakub Jelinek  <jakub@redhat.com>
51051
51052         * sysdeps/ieee754/dbl-64/k_rem_pio2.c (__kernel_rem_pio2): Fix up fq
51053         to y conversion for prec 3 and __FLT_EVAL_METHOD__ != 0.
51054
51055 2011-07-22  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51056
51057         * sysdeps/i386/i686/multiarch/strcat-sse2.S: Update.
51058         Fix overflow bug in strncat.
51059         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Likewise.
51060
51061         * string/test-strncat.c: Update.
51062         Add new tests for checking overflow bugs.
51063
51064 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51065
51066         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51067         strcat-ssse3 strcat-sse2 strncat-ssse3 strncat-sse2 strncat-c.
51068         * sysdeps/i386/i686/multiarch/strcat.S: New file.
51069         * sysdeps/i386/i686/multiarch/strcat-c.c: New file.
51070         * sysdeps/i386/i686/multiarch/strcat-sse2.S: New file.
51071         * sysdeps/i386/i686/multiarch/strcat-ssse3.S: New file.
51072         * sysdeps/i386/i686/multiarch/strncat.S: New file.
51073         * sysdeps/i386/i686/multiarch/strncat-sse2.S: New file.
51074         * sysdeps/i386/i686/multiarch/strncat-ssse3.S: New file.
51075
51076         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S
51077         (USE_AS_STRCAT): Define.
51078         Add strcat and strncat support.
51079         * sysdeps/i386/i686/multiarch/strlen-sse2.S: Likewise.
51080
51081 2011-07-25  Andreas Schwab  <schwab@redhat.com>
51082
51083         * sysdeps/i386/i486/bits/string.h (__strncat_g): Correctly handle
51084         __n bigger than INT_MAX+1.
51085         (__strncmp_g): Likewise.
51086
51087 2011-07-23  Ulrich Drepper  <drepper@gmail.com>
51088
51089         * posix/unistd.h: Define SEEK_DATA and SEEK_HOLE.
51090         * libio/stido.h: Likewise.
51091
51092         * sysdeps/unix/sysv/linux/bits/socket.h (PF_NFC): Define.
51093         (AF_NFC): Define.
51094         * sysdeps/unix/sysv/linux/sparc/bits/socket.h (PF_NFC): Define.
51095         (AF_NFC): Define.
51096
51097         * sysdeps/unix/sysv/linux/sys/ptrace.h: Add new constants.
51098         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h: Likewise.
51099         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h: Likewise.
51100         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h: Likewise.
51101         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h: Likewise.
51102
51103         [BZ #13021]
51104         * scripts/test-installation.pl: Don't expect libnss_test1 to be
51105         installed.
51106
51107         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix one more
51108         typo.
51109         (_dl_x86_64_save_sse): Likewise.
51110
51111 2011-07-22  Ulrich Drepper  <drepper@gmail.com>
51112
51113         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix test for
51114         OSXSAVE.
51115         (_dl_x86_64_save_sse): Likewise.
51116
51117         * crypt/crypt_util.c (__init_des_r): Optimize memset calls.
51118
51119         * crypt/crypt_util.c (__init_des_r): Add read barrier as well.
51120
51121 2011-07-21  Andreas Schwab  <schwab@redhat.com>
51122
51123         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): Fix last
51124         change.
51125         (_dl_x86_64_save_sse): Use correct AVX check.
51126
51127 2011-07-21  Liubov Dmitrieva  <liubov.dmitrieva@gmail.com>
51128
51129         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Fix overfow
51130         bug in strncpy/strncat.
51131         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: Likewise.
51132
51133 2011-07-21  Ulrich Drepper  <drepper@gmail.com>
51134
51135         * string/tester.c (test_strcat): Add tests for different alignments
51136         of source and destination.
51137         (test_strncat): Likewise.
51138
51139 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
51140
51141         [BZ #12852]
51142         * posix/glob.c (glob): Check passed in values before using them in
51143         expressions to avoid some overflows.
51144         (glob_in_dir): Likewise.
51145
51146         [BZ #13007]
51147         * sysdeps/x86_64/dl-trampoline.S (_dl_runtime_profile): More complete
51148         check for AVX enablement so that we don't crash with old kernels and
51149         new hardware.
51150         * elf/tst-audit4.c: Add same checks here.
51151         * elf/tst-audit6.c: Likewise.
51152
51153         * sysdeps/x86_64/bits/link.h (La_x86_64_ymm): Force 16-byte alignment.
51154
51155 2011-07-09  Andreas Schwab  <schwab@linux-m68k.org>
51156
51157         * sysdeps/unix/sysv/linux/pathconf.c: Include <string.h>.
51158
51159 2011-07-20  Ulrich Drepper  <drepper@gmail.com>
51160
51161         * po/cs.po: Update from translation team.
51162         * po/bg.po: Likewise.
51163
51164 2011-07-12  Marek Polacek  <mpolacek@redhat.com>
51165
51166         * misc/sys/cdefs.h: Add support for const attribute.
51167         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add __attribute_const__
51168         to gnu_dev_{major,minor,makedev} functions.
51169
51170 2011-07-20  Marek Polacek  <mpolacek@redhat.com>
51171
51172         * intl/dcigettext.c (get_output_charset): Add missing bracket.
51173
51174 2011-07-20  Andreas Schwab  <schwab@redhat.com>
51175
51176         * resolv/res_query.c (__libc_res_nquerydomain): Use size_t for
51177         strlen results.
51178
51179 2011-07-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
51180
51181         * sysdeps/unix/sysv/linux/s390/s390-32/sysdep.h
51182         (INTERNAL_VSYSCALL_NCS): Use r10 for backing up the return address
51183         register in order to avoid conflicts with the soft frame pointer
51184         being held in r11 when necessary.
51185         * sysdeps/unix/sysv/linux/s390/s390-64/sysdep.h
51186         (INTERNAL_VSYSCALL_NCS): Likewise.
51187
51188 2011-07-14  Marek Polacek  <mpolacek@redhat.com>
51189
51190         * elf/dl-fini.c (_dl_sort_fini): Remove unused link_map *l argument,
51191         * elf/dl-fini.c (_dl_fini): Adjust caller.
51192         * elf/dl-close.c (_dl_close_worker): Likewise.
51193         * sysdeps/generic/ldsodefs.h: Adjust declaration.
51194
51195 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
51196
51197         * elf/cache.c (load_aux_cache): Remove unnecessary condition of
51198         "aux_cache->nlibs < 0".
51199
51200         * nscd/nscd_conf.c (nscd_parse_file): Remove unnecessary condition
51201         in the reload-count case.
51202
51203 2011-07-15  Liubov Dmitrieva  <liubov.dmitrieva@intel.com>
51204
51205         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
51206         strcat-ssse3 strcat-sse2-unaligned strncat-ssse3
51207         strncat-sse2-unaligned strncat-c strlen-sse2-pminub
51208         * sysdeps/x86_64/multiarch/strcat-sse2-unaligned.S: New file.
51209         * sysdeps/x86_64/multiarch/strcat.S: New file.
51210         * sysdeps/x86_64/multiarch/strncat.S: New file.
51211         * sysdeps/x86_64/multiarch/strncat-c.c: New file.
51212         * sysdeps/x86_64/multiarch/strcat-ssse3.S: New file.
51213         * sysdeps/x86_64/multiarch/strncat-sse2-unaligned.S: New file.
51214         * sysdeps/x86_64/multiarch/strncat-ssse3.S: New file.
51215         * sysdeps/x86_64/multiarch/strcpy-ssse3.S
51216         (USE_AS_STRCAT): Define.
51217         Add strcat and strncat support.
51218         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Likewise.
51219         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise.
51220         * sysdeps/x86_64/multiarch/strlen-sse2-pminub.S: New file.
51221         * string/strncat.c: Update.
51222         (USE_AS_STRNCAT): Define.
51223         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51224         Turn on bit_Prefer_PMINUB_for_stringop for Intel Core i3, i5
51225         and i7.
51226         * sysdeps/x86_64/multiarch/init-arch.h
51227         (bit_Prefer_PMINUB_for_stringop): New.
51228         (index_Prefer_PMINUB_for_stringop): Likewise.
51229         * sysdeps/x86_64/multiarch/strlen.S (strlen): Check
51230         bit_Prefer_PMINUB_for_stringop.
51231
51232 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
51233
51234         * crypt/sha512.h (struct sha512_ctx): Move buffer into union and add
51235         buffer64.
51236         * crypt/sha512.c (__sha512_finish_ctx): Use buffer64 for writes instead
51237         of casting of buffer.
51238         * crypt/sha256.h (struct sha256_ctx): Move buffer into union and add
51239         buffer32 and buffer64.
51240         * crypt/sha256.c (__sha256_finish_ctx): Use buffer32 or buffer64 for
51241         writes instead of casting of buffer.
51242         * crypt/md5.h (struct md5_ctx): Move buffer into union and add
51243         buffer32.
51244         * crypt/md5.c (md5_finish_ctx): Use buffer32 for writes instead of
51245         casting of buffer.
51246
51247 2011-07-19  Andreas Schwab  <schwab@redhat.com>
51248
51249         * string/strxfrm_l.c (STRXFRM): Fix alloca accounting.
51250
51251 2011-07-19  Ulrich Drepper  <drepper@gmail.com>
51252
51253         * nscd/nscd.c (termination_handler): Don't do anything for a database
51254         if it has not yet been initialized.
51255
51256 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
51257
51258         * sysdeps/unix/sysv/linux/bits/sched.h (__CPU_EQUAL_S): Fix a typo.
51259
51260 2011-07-15  Marek Polacek  <mpolacek@redhat.com>
51261
51262         * bits/sched.h (__CPU_EQUAL_S): Fix a typo.
51263
51264 2011-07-18  Ulrich Drepper  <drepper@gmail.com>
51265
51266         * po/nl.po: Update from translation team.
51267         * po/sv.po: Likewise.
51268
51269 2011-07-16  Roland McGrath  <roland@hack.frob.com>
51270
51271         * sysdeps/i386/Makefile: Never use -mpreferred-stack-boundary=2,
51272         now disallowed by GCC.
51273
51274         * configure.in (use-default-link): Default to yes if a test -shared
51275         link meets our qualifications.
51276         * configure: Regenerated.
51277
51278         * config.make.in (output-format): New variable.
51279         * configure.in: Check for ld --print-output-format support.
51280         * configure: Regenerated.
51281         * Makerules ($(common-objpfx)format.lds)
51282         [$(output-format) != unknown]: Just use $(output-format),
51283         instead of the linker-script munging.
51284
51285 2011-07-14  Roland McGrath  <roland@hack.frob.com>
51286
51287         * Makefile ($(common-objpfx)linkobj/libc.so): Use $(shlib-lds) instead
51288         of $(common-objpfx)shlib.lds.
51289         * elf/Makefile ($(objpfx)sotruss-lib.so): Likewise.
51290
51291         * sysdeps/i386/i686/multiarch/strstr-c.c (libc_hidden_builtin_def):
51292         Conditionalize redefinition on [SHARED && DO_VERSIONING && !NO_HIDDEN].
51293
51294         * configure.in (-z relro check): Adjust test code to add a large
51295         writable data section after it.
51296         * configure: Regenerated.
51297
51298 2011-07-11  Roland McGrath  <roland@hack.frob.com>
51299
51300         * configure.in (-z relro check): Fix test code to make the variable
51301         truly const.
51302         * configure: Regenerated.
51303
51304 2011-07-11  Ulrich Drepper  <drepper@gmail.com>
51305
51306         * nscd/nscd.h (struct traced_file): Define.
51307         (struct database_dyn): Remove inotify_descr, reset_res, and filename
51308         elements.  Add traced_files.
51309         (inotify_fd): Declare.
51310         (register_traced_file): Declare.
51311         * nscd/connections.c (dbs): Remove reset_res and filename initializers.
51312         (inotify_fd): Export.
51313         (resolv_conf_descr): Remove.
51314         (nscd_init): Move inotify descriptor creation to main.
51315         Don't register files for notification here.
51316         (register_traced_file): New function.
51317         (invalidate_cache): Don't use reset_res to determine whether to call
51318         res_init, go through the list of registered files.
51319         (main_loop_poll): The inotify descriptors are now stored in the
51320         structures for the traced files.
51321         (main_loop_epoll): Likewise
51322         * nscd/nscd.c (main): Create inotify socket here.  Pass extra argument
51323         to __nss_disable_nscd.
51324         * nscd/cache.c (prune_cache): There is no single inotify descriptor
51325         for a database anymore.  Check the records for all the registered
51326         files instead.
51327         * nss/Makefile (libnss_files-routines): Add files-init.
51328         (libnss_db-routines): Add db-init.
51329         * nss/Versions [libnss_files] (GLIBC_PRIVATE): Add _nss_files_init.
51330         [libnss_db] (GLIBC_PRIVATE): Add _nss_db_init.
51331         * nss/nss_db/db-init.c: New file.
51332         * nss/nss_files/files-init.c: New file.
51333         * nss/nsswitch.c (nss_load_library): New function.  Broken out of
51334         __nss_lookup_function.
51335         (__nss_lookup_function): Call nss_load_library.
51336         (nss_load_all_libraries): New function.
51337         (__nss_disable_nscd): Take parameter with callback function for files
51338         to register.  Set is_nscd.  Load all the DSOs for the NSS modules
51339         used for the cached services.
51340         * nss/nsswitch.h (__nss_disable_nscd): Adjust prototype.
51341         * sysdeps/unix/sysv/linux/Makefile [subdir=nscd]: Pass the various -D
51342         options for features to all the files in nscd.
51343
51344         * nss/nsswitch.c (nss_parse_file): Add missing fclose.
51345
51346 2011-07-10  Roland McGrath  <roland@hack.frob.com>
51347
51348         * csu/elf-init.c (__libc_csu_init): Comment typo.
51349
51350 2011-07-09  Ulrich Drepper  <drepper@gmail.com>
51351
51352         * po/pl.po: Update from translation team.
51353         * po/ja.po: Likewise.
51354         * po/ru.po: Likewise.
51355         * po/ko.po: Likewise.
51356         * po/fr.po: Likewise.
51357
51358 2011-07-09  Roland McGrath  <roland@hack.frob.com>
51359
51360         * configure.in (.ctors/.dtors header and trailer check):
51361         Use an empirical test on a built program.
51362         * configure: Regenerated.
51363
51364         * configure.in (-z relro check): Use an empirical test on a built DSO.
51365         Detect, but do not require, on ia64.
51366         * configure: Regenerated.
51367
51368         * configure.in (READELF): Find it with AC_CHECK_TOOL.
51369         Update tests that use readelf to use $READELF instead.
51370         * configure: Regenerated.
51371
51372 2011-07-08  Ulrich Drepper  <drepper@gmail.com>
51373
51374         * malloc/hooks.c (memalign_check): Avoid using checked_request2size
51375         if the result is not used.
51376
51377 2011-07-05  Andreas Jaeger  <aj@suse.de>
51378
51379         [BZ#9696]
51380         * stdlib/tst-strtod.c: Add testcase.
51381
51382 2011-07-07  Ulrich Drepper  <drepper@gmail.com>
51383
51384         * sysdeps/unix/sysv/linux/pathconf.c (distinguish_extX): New function.
51385         (__statfs_link_max): Use it to distinguish between ext2/3 and ext4.
51386         The latter has a higher limit.  Take additional parameter to pass to
51387         the new function.
51388         (__pathconf): Pass file to __statfs_link_max.
51389         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Pass fd to
51390         __statfs_link_max.
51391         * sysdeps/unix/sysv/linux/pathconf.h: Adjust prototype of
51392         __statfs_link_max.
51393
51394         [BZ #12868]
51395         * sysdeps/unix/sysv/linux/linux_fsinfo.h: Define Lustre constants.
51396         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
51397         Handle Lustre.
51398         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_link_max): Likewise.
51399         (__statfs_filesize_max): Likewise.
51400         Patch mostly by Andreas Dilger <adilger@whamcloud.com>.
51401
51402 2011-07-05  Andreas Jaeger  <aj@suse.de>
51403
51404         * resolv/res_comp.c (dn_skipname): Remove unused variable.
51405
51406 2011-07-06  Marek Polacek  <mpolacek@redhat.com>
51407
51408         * nis/nss_nisplus/nisplus-spwd.c (_nss_nisplus_setspent): Honour the
51409         `status' variable.
51410         * nis/nss_nisplus/nisplus-ethers.c (_nss_nisplus_setetherent):
51411         Likewise.
51412
51413 2011-07-04  H.J. Lu  <hongjiu.lu@intel.com>
51414
51415         * Makefile (strop-tests): Add strncat.
51416         * string/test-strncat.c: New file.
51417
51418 2011-06-30  Marek Polacek  <mpolacek@redhat.com>
51419
51420         * iconvdata/johab.c: Don't inline `johab_sym_hanja_to_ucs' function.
51421
51422 2011-06-21  Andreas Jaeger  <aj@suse.de>
51423
51424         * sysdeps/s390/s390-64/Makefile ($(inst_gconvdir)/gconv-modules):
51425         Copy rule from iconvdata/Makefile.
51426
51427 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
51428
51429         [BZ #12922]
51430         * posix/getopt.c (_getopt_internal_r): When "W;" is in short options
51431         but no long options are defined, just return 'W'.
51432
51433 2011-06-22  Marek Polacek  <mpolacek@redhat.com>
51434
51435         [BZ #9696]
51436         * stdlib/strtod_l.c (round_and_return): Set ERANGE instead of EDOM.
51437
51438 2011-07-06  Ulrich Drepper  <drepper@gmail.com>
51439
51440         * inet/getnetgrent_r.c (internal_getnetgrent_r): Fix check for known
51441         netgroups to read.
51442         (innetgr): Likewise.
51443
51444 2011-07-05  Roland McGrath  <roland@hack.frob.com>
51445
51446         * config.make.in (install_root): Default to $(DESTDIR).
51447
51448 2011-07-05  Ulrich Drepper  <drepper@gmail.com>
51449
51450         * nscd/nscd_getserv_r.c (nscd_getserv_r): Add cast to avoid warning.
51451
51452 2011-07-02  Roland McGrath  <roland@hack.frob.com>
51453
51454         * Makerules ($(common-objpfx)format.lds): Fail if result is empty.
51455
51456         * Makefile ($(common-objpfx)testrun.sh): Generate to work relative to
51457         containing directory rather than embedding absolute directory names.
51458
51459         * scripts/check-local-headers.sh: Rewritten using awk.
51460         Match by word, not by line.  Print error messages for matches.
51461         * Makefile ($(objpfx)check-local-headers.out): Pass AWK in to it.
51462
51463         * Makerules [shlib-lds-flags empty]:
51464         ($(common-objpfx)libc_pic.opts): New target.
51465         ($(common-objpfx)libc_pic.os.clean): New target.
51466         ($(common-objpfx)libc.so): Link it instead of libc_pic.os.
51467
51468         * config.make.in (OBJCOPY): New variable.
51469         * aclocal.m4 (LIBC_PROG_BINUTILS): Substitute OBJCOPY too.
51470         * configure: Regenerated.
51471
51472         * config.make.in (use-default-link): New variable.
51473         * configure.in (use_default_link): Grok --with-default-link to set it.
51474         * configure: Regenerated.
51475         * Makerules [$(elf) = yes] [$(use-default-link) = yes]:
51476         (shlib-lds, shlib-lds-flags): Define to empty.
51477
51478         * Makerules (shlib-lds): New variable.
51479         (shlib-lds-flags): New variable.
51480         (build-shlib, build-moduile, build-module-asneeded): Use it.
51481         ($(common-objpfx)libc.so): Use $(shlib-lds).
51482         ($(extra-modules-build:%=$(objpfx)%.so)): Likewise.
51483         * iconvdata/extra-module.mk ($(objpfx)$(mod).so): Likewise.
51484
51485         * elf/dynamic-link.h (elf_get_dynamic_info): Make asserts accept
51486         DT_FLAGS/DT_FLAGS_1 with zero flags.
51487
51488         * elf/Makefile ($(objpfx)ld.so): Use -defsym=_begin=0 instead of
51489         linker script munging.
51490
51491 2011-07-02  Ulrich Drepper  <drepper@gmail.com>
51492
51493         * crypt/sha512.h (struct sha512_ctx): Add union to access total also
51494         as 128-bit value.
51495         * crypt/sha512.c (sha512_process_block): Perform total addition using
51496         128-bit if possible.
51497         (__sha512_finish_ctx): Likewise.
51498         * crypt/sha256.h (struct sha256_ctx): Add union to access total also
51499         as 64-bit value.
51500         * crypt/sha256.c (SWAP64): Define.
51501         (sha256_process_block): Perform total addition using 64-bit if
51502         possible.
51503         (__sha256_finish_ctx): Likewise.
51504
51505 2011-07-01  Ulrich Drepper  <drepper@gmail.com>
51506
51507         * nscd/pwdcache.c (cache_addpw): Cleanup.  Add branch prediction.
51508         * nscd/initgrcache.c (addinitgroupsX): Likewise.
51509         * nscd/hstcache.c (cache_addhst): Likewise.
51510         * nscd/grpcache.c (cache_addgr): Likewise.
51511         * nscd/aicache.c (addhstaiX): Likewise
51512         * nscd/servicescache.c (cache_addserv): Handle zero negtimeout.
51513
51514 2011-07-01  Thorsten Kukuk  <kukuk@suse.de>
51515
51516         * nscd/pwdcache.c (cache_addpw): Handle zero negtimeout.
51517         * nscd/initgrcache.c (addinitgroupsX): Likewise.
51518         * nscd/hstcache.c (cache_addhst): Likewise.
51519         * nscd/grpcache.c (cache_addgr): Likewise.
51520         * nscd/aicache.c (addhstaiX): Likewise
51521
51522 2011-07-01  Andreas Schwab  <schwab@redhat.com>
51523
51524         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Query NIS
51525         domain only when needed.
51526
51527 2011-06-30  Andreas Schwab  <schwab@redhat.com>
51528
51529         * sysdeps/posix/getaddrinfo.c (gaih_inet): Make sure RES_USE_INET6
51530         is always restored.
51531
51532 2011-06-29  Ulrich Drepper  <drepper@gmail.com>
51533
51534         * nscd/grpcache.c (cache_addgr): Don't write notfound reply if we
51535         are re-adding the entry.
51536         * nscd/servicescache.c (cache_addserv): Likewise.
51537
51538 2011-06-30  Aurelien Jarno  <aurelien@aurel32.net>
51539
51540         * sysdeps/generic/dl-irel.h: fix protection against multiple
51541         inclusions.
51542         * sysdeps/generic/dl-irel.h (elf_ifunc_invoke): New.
51543
51544 2011-06-28  Ulrich Drepper  <drepper@gmail.com>
51545
51546         [BZ #12935]
51547         * malloc/memusage.sh: Fix quoting in message.
51548         * debug/xtrace.sh: Likewise.
51549
51550         * configure.in: Remove support for --experimental-malloc option, make
51551         it the default.
51552         * config.make.in: Likewise.
51553         * malloc/Makefile: Likewise.
51554
51555 2011-06-27  Andreas Schwab  <schwab@redhat.com>
51556
51557         * iconvdata/gb18030.c (BODY for TO_LOOP): Fix encoding of non-BMP
51558         two-byte characters.
51559
51560 2011-06-27  Roland McGrath  <roland@hack.frob.com>
51561
51562         * configure.in (NO_CTORS_DTORS_SECTIONS): Give this check its own
51563         AC_CACHE_CHECK invocation.
51564         * configure: Regenerated.
51565
51566         * elf/soinit.c (__CTOR_LIST__, __DTOR_LIST__): Add used attribute.
51567
51568 2011-06-27  Ulrich Drepper  <drepper@gmail.com>
51569
51570         [BZ #12350]
51571         * nscd/aicache.c (addhstaiX):  Restore only RES_USE_INET6
51572         bit from old_res_options.
51573
51574         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-servicescache.c): Define.
51575
51576         * inet/getnetgrent_r.c (innetgr): Minimal cleanup, use correct return
51577         value type for setfct.
51578
51579 2011-06-23  H.J. Lu  <hongjiu.lu@intel.com>
51580
51581         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
51582         __gettimeofday instead of gettimeofday.
51583
51584 2011-06-26  Ulrich Drepper  <drepper@gmail.com>
51585
51586         * elf/Makefile (all-built-dso): No need to check linkobj/libc.so.
51587
51588 2011-06-24  H.J. Lu  <hongjiu.lu@intel.com>
51589
51590         * sysdeps/i386/i686/multiarch/strcpy-sse2.S (RETURN): Fix a typo.
51591
51592         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Correct unwind
51593         info.
51594
51595 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
51596
51597         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
51598         strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
51599         strcpy-sse2-unaligned strncpy-sse2-unaligned
51600         stpcpy-sse2-unaligned stpncpy-sse2-unaligned.
51601         * sysdeps/x86_64/multiarch/stpcpy-sse2-unaligned.S: New file.
51602         * sysdeps/x86_64/multiarch/stpcpy-ssse3.S: New file.
51603         * sysdeps/x86_64/multiarch/stpncpy-sse2-unaligned.S: New file.
51604         * sysdeps/x86_64/multiarch/stpncpy-ssse3.S: New file.
51605         * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: New file.
51606         * sysdeps/x86_64/multiarch/strcpy-ssse3.S: New file.
51607         * sysdeps/x86_64/multiarch/strncpy-sse2-unaligned.S: New file.
51608         * sysdeps/x86_64/multiarch/strncpy-ssse3.S: New file.
51609         * sysdeps/x86_64/multiarch/strcpy.S: Remove strcpy with SSSE3.
51610         (STRCPY): Support SSE2 and SSSE3 versions.
51611
51612 2011-06-24  Ulrich Drepper  <drepper@gmail.com>
51613
51614         [BZ #12874]
51615         * sysdeps/unix/sysv/linux/Makefile (CFLAGS-tst-writev.c): Define.
51616         * sysdeps/wordsize-64/tst-writev.c: Work around problem with 2.6.38+
51617         kernels which artificially limit size of requests.
51618
51619 2011-06-22  H.J. Lu  <hongjiu.lu@intel.com>
51620
51621         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
51622         strncpy-c strcpy-ssse3 strncpy-ssse3 stpcpy-ssse3 stpncpy-ssse3
51623         strcpy-sse2 strncpy-sse2 stpcpy-sse2 stpncpy-sse2.
51624         * sysdeps/i386/i686/multiarch/stpcpy-sse2.S: New file.
51625         * sysdeps/i386/i686/multiarch/stpcpy-ssse3.S: New file.
51626         * sysdeps/i386/i686/multiarch/stpncpy-sse2.S: New file.
51627         * sysdeps/i386/i686/multiarch/stpncpy-ssse3.S: New file.
51628         * sysdeps/i386/i686/multiarch/stpncpy.S : New file.
51629         * sysdeps/i386/i686/multiarch/strcpy-sse2.S : New file.
51630         * sysdeps/i386/i686/multiarch/strcpy-ssse3.S: New file.
51631         * sysdeps/i386/i686/multiarch/strcpy.S: New file.
51632         * sysdeps/i386/i686/multiarch/strncpy-c.c: New file.
51633         * sysdeps/i386/i686/multiarch/strncpy-sse2.S: New file.
51634         * sysdeps/i386/i686/multiarch/strncpy-ssse3.S: New file.
51635         * sysdeps/i386/i686/multiarch/strncpy.S: New file.
51636         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51637         Enable unaligned load optimization for Intel Core i3, i5 and i7
51638         processors.
51639         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Unaligned_Load):
51640         Define.
51641         (index_Fast_Unaligned_Load): Define.
51642         (HAS_FAST_UNALIGNED_LOAD): Define.
51643
51644 2011-06-23  Marek Polacek  <mpolacek@redhat.com>
51645
51646         * nss/nss_db/db-open.c: Include <unistd.h> for read declaration.
51647
51648 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
51649
51650         [BZ #12907]
51651         * sysdeps/posix/getaddrinfo.c (getaddrinfo): Avoid calling __check_pf
51652         until it is clear that the information is realy needed.
51653         Patch mostly by David Hanisch <david.hanisch@nsn.com>.
51654
51655 2011-06-22  Andreas Schwab  <schwab@redhat.com>
51656
51657         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix last change.
51658
51659 2011-06-22  Ulrich Drepper  <drepper@gmail.com>
51660
51661         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Use
51662         /sys/devices/system/cpu/online if it is usable.
51663
51664         * sysdeps/unix/sysv/linux/getsysstats.c (__get_nprocs): Rate limit
51665         reading the information from the /proc filesystem to once a second.
51666
51667 2011-06-21  Andreas Jaeger  <aj@suse.de>
51668
51669         * sysdeps/unix/sysv/linux/bits/sigcontext.h: Fix definition of
51670         NULL after inclusion of kernel headers.
51671
51672 2011-06-21  Ulrich Drepper  <drepper@gmail.com>
51673
51674         * nss/nss_db/db-XXX.c (nss_db_setENT): Only set entidx for successful
51675         calls to internal_setent.
51676
51677         [BZ #12885]
51678         * sysdeps/posix/getaddrinfo.c (gaih_inet): When looking up only IPv6
51679         addresses using gethostbyname4_r ignore IPv4 addresses.
51680
51681         * sysdeps/posix/getaddrinfo.c (gaih_inet): After the last change the
51682         branch using gethostbyname2 is only for AF_INET.  Optimize accordingly.
51683
51684         * inet/getnetgrent_r.c: Use DL_CALL_FCT in several places.
51685
51686 2011-06-20  David S. Miller  <davem@davemloft.net>
51687
51688         * sysdeps/sparc/sparc32/dl-plt.h: Protect against multiple
51689         inclusions.
51690         * sysdeps/sparc/sparc64/dl-plt.h: Likewise.
51691
51692         * sysdeps/i386/dl-irel.h (elf_ifunc_invoke): New.
51693         (elf_irel): Use it.
51694         * sysdeps/powerpc/powerpc32/dl-irel.h: Likewise.
51695         * sysdeps/powerpc/powerpc64/dl-irel.h: Likewise.
51696         * sysdeps/sparc/sparc32/dl-irel.h: Likewise.
51697         * sysdeps/sparc/sparc64/dl-irel.h: Likewise.
51698         * sysdeps/x86_64/dl-irel.h: Likewise.
51699
51700         * elf/dl-runtime.c: Use elf_ifunc_invoke.
51701         * elf/dl-sym.c: Likewise.
51702
51703 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
51704
51705         * resolv/res_send.c (__libc_res_nsend): Fix typos in last patch.  We
51706         need to dereference resplen2.
51707
51708 2011-06-14  Andreas Schwab  <schwab@redhat.com>
51709
51710         * sysdeps/unix/sysv/linux/wordsize-64/dl-fxstatat64.c: New file.
51711
51712 2011-06-15  Ulrich Drepper  <drepper@gmail.com>
51713
51714         * Makeconfig: Define vardbdir and inst_vardbdir.
51715         * nss/Makefile: Add rules to install db-Makefile.
51716
51717         * nss/nss_db/db-XXX.c: Cleanup.
51718
51719         * nss/Makefile (libnss_db-dbs): Add db-initgroups.
51720         * nss/Versions [libnss_db]: Add _nss_db_initgroups_dyn for
51721         GLIBC_PRIVATE.
51722         * nss/db-Makefile (groups.db): Emit entries for initgroups lookups.
51723         * nss/makedb.c: Implement -g option to specify that value strings
51724         are generated and should not be added to table iterated over for
51725         get*ent calls.
51726         * nss/nss_db/db-initgroups.c: New file.
51727
51728         * nss/getent.c: Add support for initgroups lookups through getgrouplist
51729         interface.
51730
51731         * grp/initgroups.c (__nss_initgroups_database): Renamed and exported.
51732         (internal_getgrouplist): Adjust to name change.
51733         Update use_initgroups_entry if this is not the first call.
51734         * nss/databases.def: Add initgroups entry.
51735
51736         * nss/makedb.c (compute_tables): Check result of multiple hash table
51737         sizes to minimize maximum chain length.
51738
51739 2011-06-14  Ulrich Drepper  <drepper@gmail.com>
51740
51741         * Versions.def: Add entry for libnss_db.
51742         * shlib-versions: Likewise.
51743         * nss/Makefile: Add rules to build libnss_db.
51744         * nss/Versions: Add libnss_db information.  Organize libnss_files
51745         entries better.
51746         * nss/db-Makefile: Add gshadow support.  Change rules for the new
51747         makedb progra.  Some minor improvements to generate smaller files.
51748         * nss/nss_db/nss_db.h: Move NSS database header data structures to
51749         here from...
51750         * nss/makedb.c: ...here.
51751         Improve database format to be smaller and require less memory at
51752         runtime.
51753         * nss/nss_db/db-XXX.x: Adjust for new database format.  Don't use
51754         db anymore.
51755         * nss/nss_db/db-netgrp.c: Likewise.
51756         * nss/nss_db/db-open.c: Likewise.
51757         * nss/nss_files/flies-XXX.x: Adjust comments.
51758         * nss/nss_files/files-ethers.c: Adjust for new DB_LOOKUP definition.
51759         * nss/nss_files/files-grp.c: Likewise.
51760         * nss/nss_files/files-hosts.c: Likewise.
51761         * nss/nss_files/files-network.c: Likewise.
51762         * nss/nss_files/files-proto.c: Likewise.
51763         * nss/nss_files/files-pwd.c: Likewise.
51764         * nss/nss_files/files-rpc.c: Likewise.
51765         * nss/nss_files/files-service.c: Likewise.
51766         * nss/nss_files/files-sgrp.c: Likewise.
51767         * nss/nss_files/files-spwd.c: Likewise.
51768         * nss/nss_db/db-alias.c: Removed.
51769         * nss/nss_db/dummy-db.h: Removed.
51770
51771 2011-06-02  Ulrich Drepper  <drepper@gmail.com>
51772
51773         * nss/makedb.c: Rewritten to not use database library.
51774         * nss/Makefile: Update to build new makedb program.
51775
51776 2011-06-14  Andreas Jaeger  <aj@suse.de>
51777
51778         * sysdeps/unix/sysv/linux/check_native.c: Include <string.h> for
51779         memset declaration.
51780
51781 2011-06-10  Andreas Schwab  <schwab@redhat.com>
51782
51783         * sysdeps/posix/getaddrinfo.c (gaih_inet): Fix logic allocating
51784         tmpbuf.
51785
51786 2011-06-10  Roland McGrath  <roland@hack.frob.com>
51787
51788         * Makerules (shlib.lds): Fail if the linker script comes out empty.
51789         * elf/Makefile ($(objpfx)ld.so): Likewise.
51790
51791         * Makefile ($(common-objpfx)linkobj/libc.so): Break long lines with \.
51792         Don't list ld.so twice in dependencies.
51793
51794         * posix/bug-regex31.c: Include <stdlib.h>.
51795
51796         * nscd/hstcache.c (cache_addhst): Remove unused variable.
51797
51798         * nis/nss_compat/compat-spwd.c
51799         (getspent_next_nss_netgr): Remove unused variable.
51800         * nis/nss_compat/compat-pwd.c (getpwent_next_nss_netgr): Likewise.
51801
51802         * nis/nis_print_group_entry.c (nis_print_group_entry): Fix "Implicit
51803         nonmembers" output to use the right array.
51804
51805         * resolv/nss_dns/dns-network.c (getanswer_r): Remove unused variable.
51806
51807         * elf/dl-open.c (_dl_open): Quash warnings when DL_NNS==1.
51808
51809         * locale/programs/ld-ctype.c (ctype_read): Remove unused variable.
51810         * locale/programs/ld-collate.c (add_to_tablewc): Likewise.
51811         * catgets/gencat.c (read_input_file): Likewise.
51812         * locale/programs/locarchive.c (enlarge_archive): Likewise.
51813
51814         * sunrpc/clnt_udp.c (__libc_clntudp_bufcreate): Move DONTBLOCK
51815         variable definition inside #if's controlling its use.
51816
51817         * inet/getnetgrent_r.c (innetgr): Remove unused variable.
51818
51819         * resolv/res_hconf.c (_res_hconf_reorder_addrs): Fix errno restoration.
51820
51821         * misc/syslog.c (__vsyslog_chk): Remove unused variable.
51822
51823         * io/fts.c (fts_build): Use if (0 && ...) rather than #if 0 for
51824         unreachable code.
51825
51826         * stdio-common/printf_fp.c (___printf_fp): Remove unused variable.
51827
51828         * configure.in (nss-crypt check): Use AC_LANG_PROGRAM.
51829         * configure: Regenerated.
51830
51831         * Makerules: Revert last change.
51832         * elf/Makefile: Likewise.
51833
51834 2011-06-09  Roland McGrath  <roland@hack.frob.com>
51835
51836         * Makerules ($(common-objpfx)libc_pic.os): Use -Wl, before -r.
51837         * elf/Makefile ($(objpfx)librtld.os): Likewise.
51838         (reloc-link): Likewise.
51839
51840 2011-06-09  Ulrich Drepper  <drepper@gmail.com>
51841
51842         * elf/Makefile: Add rules to build pldd.
51843         * elf/pldd.c: New file.
51844         * elf/pldd-xx.c: New file.
51845
51846 2011-06-07  Ulrich Drepper  <drepper@gmail.com>
51847
51848         * version.h: Update for 2.15 development version.
51849
51850 2011-06-07  David S. Miller  <davem@davemloft.net>
51851
51852         * sysdeps/sparc/sparc32/dl-irel.h (elf_irela): Pass dl_hwcap to
51853         ifuncs.
51854         * sysdeps/sparc/sparc32/dl-machine.h (elf_machine_rela,
51855         elf_machine_lazy_rel): Likewise.
51856         * sysdeps/sparc/sparc64/dl-irel.h (elf_irela): Likewise.
51857         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela,
51858         elf_machine_lazy_rel): Likewise.
51859         * sysdeps/sparc/sparc64/multiarch/memcpy.S (memcpy): Fetch
51860         dl_hwcap via passed in argument.
51861         * sysdeps/sparc/sparc64/multiarch/memset.S (memset, bzero):
51862         Likewise.
51863
51864 2011-06-06  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
51865
51866         * stdlib/longlong.h: Update from GCC.  Fix smul_ppmm for S/390.
51867
51868 2011-06-06  Roland McGrath  <roland@hack.frob.com>
51869
51870         [BZ #12849]
51871         * manual/fdl-1.1.texi: New file, verbatim from:
51872         http://www.gnu.org/licenses/old-licenses/fdl-1.1.texi
51873         * manual/lgpl-2.1.texi: New file, verbatim from:
51874         http://www.gnu.org/licenses/old-licenses/lgpl-2.1.texi
51875         * manual/Makefile (licenses): New variable, list those new file names.
51876         (texis): Use it.
51877         (chapters.% top-menu.%): Include $(licenses) with $(appendices).
51878
51879         * manual/fdl.texi: File removed.
51880         * manual/lesser.texi: File removed.
51881         * manual/libc.texinfo (Copying, Documentation License):
51882         Use new @include file names, put @appendix directive before @include.
51883
51884 2011-06-04  Jakub Jelinek  <jakub@redhat.com>
51885
51886         [BZ #12841]
51887         * rt/bits/mqueue2.h (__mq_open_2): Add __THROW.
51888         (__mq_open_alias): Use __REDIRECT_NTH instead of __REDIRECT.
51889         (mq_open): Add __NTH.
51890
51891 2011-06-02  H.J. Lu  <hongjiu.lu@intel.com>
51892
51893         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
51894         Assume Intel Core i3/i5/i7 processor if AVX is available.
51895
51896 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
51897
51898         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard): Fix
51899         typo.
51900
51901 2011-05-31  Andreas Schwab  <schwab@redhat.com>
51902
51903         * nscd/nscd_getserv_r.c (nscd_getserv_r): Don't free non-malloced
51904         memory.  Use alloca_account.  Fix memory leak when retrying.
51905
51906 2011-05-31  Ulrich Drepper  <drepper@gmail.com>
51907
51908         * version.h (RELEASE): Bump for 2.14 release.
51909         * include/features.h (__GLIBC_MINOR__): Bump to 14.
51910
51911         * config.make.in (RANLIB): Remove entry.
51912
51913 2011-05-30  Ulrich Drepper  <drepper@gmail.com>
51914
51915         * po/Makefile (po-sed-cmd): Add ksh to extensions.
51916         (libc.pot): Work around missing support for .ksh extension in xgettext.
51917
51918         [BZ #12684]
51919         * resolv/res_send.c (__libc_res_nsend): Only go to the next name server
51920         if both request failed.
51921         (send_dg): In case of server errors clear resplen or *resplen2.
51922
51923         [BZ #12454]
51924         * elf/dl-deps.c (_dl_map_object_deps): Run initializer sorting only
51925         when there are multiple maps.
51926         * elf/dl-fini.c (_dl_sort_fini): Check for list of one.
51927         (_dl_fini): Remove test here.
51928
51929         * elf/rtld.c (dl_main): Don't allow the loader to load itself.
51930
51931 2011-05-29  Ulrich Drepper  <drepper@gmail.com>
51932
51933         [BZ #12350]
51934         * sysdeps/posix/getaddrinfo.c (gethosts): Restore only RES_USE_IENT6
51935         bit from old_res_options.
51936         (gaih_inet): Likewise.
51937
51938         [BZ #11099]
51939         * shadow/sgetspent_r.c (LINE_PARSER): Interpret numeric field values
51940         as signed.
51941
51942         * resolv/res_init.c (res_setoptions): Make the code more compact.
51943
51944         [BZ #11558]
51945         * resolv/res_init.c (res_setoptions): Recognize use-vc option and
51946         set RES_USEVC.
51947
51948         [BZ #11634]
51949         * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx.
51950
51951         * malloc/malloc.h: Mark malloc hook variables as deprecated.
51952
51953         [BZ #11781]
51954         * malloc/malloc.h: Declare malloc hook variables as volatile.
51955
51956         * locale/programs/locarchive.c (add_locale_to_archive): Fix typo
51957         in last patch.
51958
51959         [BZ #11799]
51960         * sysdeps/unix/sysv/linux/bits/siginfo.h (SI_USER): Don't mention
51961         raise in the comment.
51962         * sysdeps/unix/sysv/linux/s390/bits/siginfo.h: Likewise.
51963         * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h: Likewise.
51964         * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Likewise.
51965
51966 2011-05-28  Ulrich Drepper  <drepper@gmail.com>
51967
51968         [BZ #12811]
51969         * posix/regex_internal.c (build_wcs_buffer): Don't signal we have to
51970         grow the buffers more if it already has to be sufficient.
51971         (build_wcs_upper_buffer): Likewise.
51972         * posix/regexec.c (check_matching): Likewise.
51973         (clean_state_log_if_needed): Likewise.
51974         (extend_buffers): Don't enlarge buffers beyond size of the input
51975         buffer.
51976         Patches mostly by Emil Wojak <emil@wojak.eu>.
51977         * posix/bug-regex32.c: New file.
51978         * posix/Makefile (tests): Add bug-regex32.
51979
51980         * locale/findlocale.c (_nl_find_locale): Return right away if
51981         _nl_explode_name failed.
51982         * locale/programs/locarchive.c (add_locale_to_archive): Likewise.
51983
51984         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_sendmmsg): Define.
51985
51986         * debug/xtrace.sh: Unify messages.
51987         * malloc/memusage.sh: Likewise.
51988
51989         [BZ #12813]
51990         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_time): Retrieve
51991         time symbol from vDSO.  Substitute with vsyscall if not available.
51992         * sysdeps/unix/sysv/linux/x86_64/time.S [SHARED]: Use
51993         __vdso_time.
51994
51995         * sysdeps/unix/sysv/linux/internal_sendmmsg.S: New file.
51996         * sysdeps/unix/sysv/linux/sendmmsg.c: New file.
51997         * sysdeps/unix/sysv/linux/Makefile [subdir=socket] (sysdep_routines):
51998         Add sendmmsg and internal_sendmmsg.
51999         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add sendmmsg.
52000         * sysdeps/unix/sysv/linux/bits/socket.h: Declare sendmmsg.
52001         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_SENDMMSG.
52002
52003         * sysdeps/unix/sysv/linux/syscalls.list: Add setns entry.
52004         * sysdeps/unix/sysv/linux/bits/sched.h: Declare setns.
52005         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14]: Add setns.
52006
52007 2011-05-27  Ulrich Drepper  <drepper@gmail.com>
52008
52009         [BZ #12813]
52010         * sysdeps/unix/sysv/linux/x86_64/init-first.c (__vdso_getcpu):
52011         Retrieve getcpu symbol from vDSO.  Substitute with vsyscall if not
52012         available.
52013         * sysdeps/unix/sysv/linux/x86_64/sched_getcpu.S [SHARED]: Use
52014         __vdso_getcpu.
52015
52016         [BZ #12814]
52017         * iconvdata/Makefile (tests): Add bug-iconv9.
52018         * iconvdata/bug-iconv9.c: New file.
52019
52020 2011-05-27  Andreas Schwab  <schwab@redhat.com>
52021
52022         [BZ #12814]
52023         * iconvdata/iso-2022-jp.c (BODY): Fix invalid variable shadowing.
52024
52025 2011-05-25  Jakub Jelinek  <jakub@redhat.com>
52026
52027         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
52028         (struct user_regs_struct): Change intcs field back to cs.
52029
52030 2011-05-25  Ulrich Drepper  <drepper@gmail.com>
52031
52032         * po/ja.po: Update from translation team.
52033
52034 2011-05-23  Ulrich Drepper  <drepper@gmail.com>
52035
52036         [BZ #12795]
52037         * sysdeps/unix/sysv/linux/bits/resource.h (RLIMIT_RTTIME): Define.
52038         * sysdeps/unix/sysv/linux/sparc/bits/resource.h: Likewise.
52039
52040 2011-05-20  Andreas Schwab  <schwab@redhat.com>
52041
52042         * stdlib/longlong.h: Update from GCC.
52043
52044 2011-05-23  Andreas Schwab  <schwab@redhat.com>
52045
52046         * sysdeps/unix/sysv/linux/ia64/sysconf.c (HAS_CPUCLOCK): Add
52047         parameter name.
52048         * sysdeps/unix/sysv/linux/sysconf.c (has_cpuclock, HAS_CPUCLOCK):
52049         Add parameter name.
52050         (__sysconf): Pass it down.
52051
52052 2011-05-22  Ulrich Drepper  <drepper@gmail.com>
52053
52054         [BZ #12671]
52055         * nis/nss_nis/nis-alias.c (_nss_nis_getaliasbyname_r): Use malloc in
52056         some situations.
52057         * nscd/nscd_getserv_r.c (nscd_getserv_r): Likewise.
52058         * posix/glob.c (glob_in_dir): Take additional parameter alloca_used.
52059         add in in __libc_use_alloca calls.  Adjust callers.
52060         (glob): Use malloc in some situations.
52061
52062         * elf/dl-runtime.c (_dl_profile_fixup): Also store LA_SYMB_NOPLTENTER
52063         and LA_SYMB_NOPLTEXIT in flags which are passed to pltenter and
52064         pltexit.
52065
52066 2011-05-21  Ulrich Drepper  <drepper@gmail.com>
52067
52068         * sysdeps/unix/sysv/linux/bits/time.h: Define CLOCK_REALTIME_ALARM
52069         and CLOCK_BOOTTIME_ALARM.
52070
52071         [BZ #12782]
52072         * string/xpg-strerror.c (__xpg_strerror_r): Fill buffer even if error
52073         is returned.
52074
52075         * string/_strerror.c (__strerror_r): Print negative errors as signed
52076         numbers.
52077
52078         [BZ #12777]
52079         * iconvdata/cp1258.c (comp_table_data): Remove entry 0x00A5 0xEC.
52080         (decomp_table): Change U0385 entry to emit 0xA5 0xEC.
52081         * iconvdata/CP1258.irreversible: Adjust entry 0xA8EC.
52082
52083         * configure.in: Fix typo in redirection and correct removal of test
52084         files in two cases.
52085
52086         [BZ #12788]
52087         * locale/setlocale.c (new_composite_name): Fix test to check for
52088         identical name of all categories.
52089
52090         [BZ #12792]
52091         * libio/filedoalloc.c (local_isatty): New function.
52092         (_IO_file_doallocate): Use local_isatty.
52093         * stdio-common/perror.c (perror): In case a new stream is used
52094         forward the stream error.
52095         * stdio-common/vfprintf.c (ARGCHECK): For read-only streams also set
52096         error flag.
52097
52098 2011-05-20  Ulrich Drepper  <drepper@gmail.com>
52099
52100         [BZ #11869]
52101         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't unconditionally use
52102         alloca.
52103         * include/alloca.h (extend_alloca_account): Define.
52104
52105         [BZ #11857]
52106         * posix/regex.h: Fix comments with documentation of user-accessible
52107         fields after compilation and describe correct free'ing of pattern
52108         after re_compile_pattern.
52109         Patch by Reuben Thomas <rrt@sc3d.org>.
52110
52111 2011-05-18  Ryan S. Arnold  <rsa@us.ibm.com>
52112
52113         * sysdeps/powerpc/powerpc64/Makefile (no-special-regs): Add -mno-vsx
52114         and -mno-altivec to prevent the compiler from using Altivec and/or
52115         VSX instructions when the corresponding registers are not available.
52116
52117 2011-05-19  Andreas Schwab  <schwab@redhat.com>
52118
52119         * grp/compat-initgroups.c (__libc_use_alloca): Don't define.
52120
52121 2011-05-19  Ulrich Drepper  <drepper@gmail.com>
52122
52123         * libio/freopen.c (freopen): Use __dup2, not dup2.
52124         * libio/freopen64.c (freopen64): Likewise.
52125
52126 2011-05-17  H.J. Lu  <hongjiu.lu@intel.com>
52127
52128         [BZ #12775]
52129         * sysdeps/x86_64/fpu/e_powl.S: Fix a typo.
52130         * math/Makefile (tests): Add test-powl.
52131         (CFLAGS-test-powl.c): Define.
52132         * math/test-powl.c: New file.
52133
52134 2011-05-16  H.J. Lu  <hongjiu.lu@intel.com>
52135
52136         * fileops.c (_IO_new_file_fopen): Get fd from _IO_fileno.
52137
52138 2011-05-17  Ulrich Drepper  <drepper@gmail.com>
52139
52140         [BZ #11837]
52141         * iconvdata/gb18030.c: Update to GB18020-2005.
52142
52143 2011-05-16  Ulrich Drepper  <drepper@gmail.com>
52144
52145         * posix/regex.h (RE_SYNTAX_AWK, RE_SYNTAX_GNU_AWK,
52146         RE_SYNTAX_POSIX_AWK): Update to match recent development.
52147         Patch by Aharon Robbins <arnold@skeeve.com>.
52148
52149         [BZ #11892]
52150         * stdlib/putenv.c (putenv): Don't always create copy of the variable
52151         on the stack.
52152
52153         [BZ #11895]
52154         * misc/pselect.c (__pselect): Handle timeout value errors hidden
52155         through underflows.
52156
52157         [BZ #12766]
52158         * misc/error.c (error_at_line): Ensure file_name and old_file_name
52159         point to strings before performing equality test for error_one_per_line
52160         mode.
52161
52162         [BZ #11697]
52163         * login/programs/pt_chown.c (do_pt_chown): Always call chown.
52164
52165         [BZ #11820]
52166         * sysdeps/unix/sysv/linux/x86_64/sys/user.h
52167         (struct user_fpregs_struct): Avoid __uint*_t types.
52168
52169         [BZ #6420]
52170         * malloc/mtrace.c (tr_where): Add additional parameter to point to
52171         symbol info.  Use it instead of calling _dl_addr locally.
52172         (lock_and_info): New function.
52173         (tr_freehook): Call lock_and_info and pass symbol info as additional
52174         parameter to tr_where.
52175         (tr_mallochook): Likewise.
52176         (tr_reallochook): Likewise.
52177         (tr_memalignhook): Likewise.
52178
52179         * malloc/mtrace.c: Remove support for USE_MTRACE_FILE.  It is not
52180         used and couldn't be at all thread-safe.
52181
52182 2011-05-15  Ulrich Drepper  <drepper@gmail.com>
52183
52184         * libio/freopen.c (freopen): Don't close old file descriptor
52185         before the new one is opened.  Instead dup the new file descriptor
52186         to the old one after the new stream is created.
52187         * libio/freopen64.c (freopen64): Likewise.
52188         * libio/libio.h: Define _IO_FLAGS2_NOCLOSE and _IO_FLAGS2_CLOEXEC.
52189         * libio/fileops.c (_IO_new_file_close_it): Handle new
52190         _IO_FLAGS2_NOCLOSE flag.
52191         (_IO_new_file_fopen): Set _IO_FLAGS2_CLOEXEC for "e" mode.
52192         If _IO_file_open didn't set FD_CLOEXEC do it after the call.
52193         * libio/oldfileops.c (_IO_old_file_close_it): Handle new
52194         _IO_FLAGS2_NOCLOSE flag.
52195         * include/unistd.h: Add hidden_proto for dup3.
52196         Define __have_dup3.
52197         * io/dup3.c: Define hidden symbol.
52198         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_DUP3.
52199
52200         [BZ #7101]
52201         * posix/getopt.c (_getopt_internal_r): List all ambigious possibilities
52202         when an incomplete long option is used.
52203         * posix/tst-getopt_long1.c: New file.
52204         * posix/Makefile (tests): Add tst-getopt_long1.
52205
52206         [BZ #10138]
52207         * scripts/config.guess: Update from autoconf-2.68.
52208         * scripts/config.sub: Likewise.
52209
52210         [BZ #10157]
52211         * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Split out CPUTIME
52212         tests into ...
52213         (has_cpuclock): ...this.  New function.
52214         * sysdeps/unix/sysv/linux/ia64/sysconf.c: Just define HAS_CPUCLOCK
52215         macro here based on has_cpuclock code.
52216
52217         [BZ #10149]
52218         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
52219         First byte (not low byte) is now always NUL.
52220         * sysdeps/generic/dl-osinfo.h (_dl_setup_stack_chk_guard): Likewise.
52221
52222         * sysdeps/unix/sysv/linux/dl-osinfo.h (_dl_setup_stack_chk_guard):
52223         Use non-cancelable interfaces.
52224
52225         [BZ #9809]
52226         * locale/iso-639.def: Add entry for Sorani.
52227
52228         [BZ #11901]
52229         * include/stdlib.h: Move include protection to the right place.
52230         Define abort_msg_s.  Declare __abort_msg with it.
52231         * stdlib/abort.c (__abort_msg): Adjust type.
52232         * assert/assert.c (__assert_fail_base): New function.  Majority
52233         of code from __assert_fail.  Allocate memory for __abort_msg with
52234         mmap.
52235         (__assert_fail): Now call __assert_fail_base.
52236         * assert/assert-perr.c: Remove bulk of implementation.  Use
52237         __assert_fail_base.
52238         * include/assert.hL Declare __assert_fail_base.
52239         * sysdeps/posix/libc_fatal.c: Allocate memory for __abort_msg with
52240         mmap.
52241         * sysdeps/unix/sysv/linux/libc_fatal.c: Likewise.
52242
52243 2011-05-14  Ulrich Drepper  <drepper@gmail.com>
52244
52245         [BZ #11952]
52246         [BZ #12453]
52247         * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
52248         until all modules are registered in the DTV.
52249         * elf/Makefile: Add rules to build and run tst-tls19.
52250         * elf/tst-tls19.c: New file.
52251         * elf/tst-tls19mod1.c: New file.
52252         * elf/tst-tls19mod2.c: New file.
52253         * elf/tst-tls19mod3.c: New file.
52254         Patch mostly by Martin von Gagern <Martin.vGagern@gmx.net>.
52255
52256         [BZ #12083]
52257         * sysdeps/pthread/aio_misc.c (__aio_init): Compute optim.aio_num
52258         correctly.
52259
52260         [BZ #12601]
52261         * iconvdata/cp932.c (BODY to UCS4): Fix incrementing inptr in case of
52262         two-byte sequence errors.
52263         * iconvdata/Makefile (tests): Add bug-iconv8.
52264         * iconvdata/bug-iconv8.c: New file.
52265
52266         [BZ #12626]
52267         * sysdeps/generic/elf/backtracesymsfd.c (__backtrace_symbols_fd): Move
52268         buf2 definition.
52269
52270         * libio/fileops.c (_IO_new_file_close_it): Initialize write_status.
52271
52272         [BZ #12432]
52273         * sysdeps/ia64/backtrace.c (struct trace_reg): Add cfa element.
52274         (dummy_getcfa): New function.
52275         (init): Get _Unwind_GetCFA address, use dummy if not found.
52276         (backtrace_helper): In recursion check, also check whether CFA changes.
52277         (__backtrace): Completely initialize arg.
52278
52279         * iconv/loop.c (SINGLE) [STORE_REST]: Add input bytes to bytebuf before
52280         storing incomplete byte sequence in state object.  Avoid testing for
52281         guaranteed too small input if we know there is enough data available.
52282
52283 2011-05-11  Andreas Schwab  <schwab@redhat.com>
52284
52285         * Makeconfig (+link-pie): Indent.
52286         * Rules (binaries-pie): Define if $(have-fpie) and
52287         $(build-shared).
52288         (binaries-shared): Also filter out $(binaries-pie).
52289         ($(addprefix $(objpfx),$(binaries-pie))): New rule.
52290         * nscd/Makefile (others-pie): Add nscd.
52291         (LDFLAGS-nscd): Set this instead of relro-LDFLAGS.
52292         ($(objpfx)nscd): Remove command override.
52293         * login/Makefile (others-pie): Add pt_chown.
52294         ($(objpfx)pt_chown): Remove command override.
52295         * elf/Makefile: Add PIE tests to tests and tests-pie variables and
52296         remove command overrides.
52297
52298 2011-05-13  Ulrich Drepper  <drepper@gmail.com>
52299
52300         * libio/tst_putwc.c: Fix error messages.
52301
52302         [BZ #12724]
52303         * libio/fileops.c (_IO_new_file_close_it): Always flush when
52304         currently writing and seek to current position when not.
52305         * libio/Makefile (tests): Add bug-fclose1.
52306         * libio/bug-fclose1.c: New file.
52307
52308 2011-05-12  Ulrich Drepper  <drepper@gmail.com>
52309
52310         [BZ #12511]
52311         * elf/dl-lookup.c (enter): Don't test for copy relocation here and
52312         don't set DF_1_NODELETE here.
52313         (do_lookup_x): When entering new entry test for copy relocation
52314         and if necessary set DF_1_NODELETE flag.
52315         * elf/tst-unique4.cc: New file.
52316         * elf/tst-unique4.h: New file.
52317         * elf/tst-unique4lib.cc: New file.
52318         * elf/Makefile: Add rules to build and run tst-unique4.
52319         Patch by Piotr Bury <pbury@goahead.com>.
52320
52321 2011-05-11  Ulrich Drepper  <drepper@gmail.com>
52322
52323         [BZ #12052]
52324         * sysdeps/posix/spawni.c (__spawni): Fix sched_setscheduler call.
52325
52326         [BZ #12625]
52327         * misc/mntent_r.c (addmntent): Flush the stream after the output
52328
52329         [BZ #12393]
52330         * elf/dl-load.c (is_trusted_path): Remove unnecessary test.
52331         (is_trusted_path_normalize): Skip initial colon.  Append slash
52332         to empty buffer.  Duplicate is_trusted_path code but allow
52333         constructed patch to be prefix.
52334         (is_dst): Allow $ORIGIN followed by /.
52335         (_dl_dst_substitute): Correct clearing of check_for_trusted.
52336         Correct testing of result of is_trusted_path_normalize
52337         (decompose_rpath): Fix warning.
52338
52339 2011-05-10  Ulrich Drepper  <drepper@gmail.com>
52340
52341         [BZ #11257]
52342         * grp/initgroups.c (internal_getgrouplist): When we found the service
52343         list through the initgroups entry in nsswitch.conf do not always
52344         continue on a successful lookup.  Don't always use the
52345         __nss_group_database value if it is set.
52346         * nss/nsswitch.conf (initgroups): Change action for successful db
52347         lookup to continue for compatibility.
52348
52349 2011-05-09  Ulrich Drepper  <drepper@gmail.com>
52350
52351         [BZ #11532]
52352         * iconvdata/Makefile: Add rules to build CP770, CP771, CP772, CP773,
52353         and CP774 modules.
52354         * iconvdata/gconv-modules: Add entries for CP770, CP771, CP772, CP773,
52355         and CP774 modules.
52356         * iconvdata/tst-tables.sh: Likewise.
52357         * iconvdata/cp770.c: New file.
52358         * iconvdata/cp771.c: New file.
52359         * iconvdata/cp772.c: New file.
52360         * iconvdata/cp773.c: New file.
52361         * iconvdata/cp774.c: New file.
52362         * iconvdata/testdata/CP770: New file.
52363         * iconvdata/testdata/CP770..UTF8: New file.
52364         * iconvdata/testdata/CP771: New file.
52365         * iconvdata/testdata/CP771..UTF8: New file.
52366         * iconvdata/testdata/CP772: New file.
52367         * iconvdata/testdata/CP772..UTF8: New file.
52368         * iconvdata/testdata/CP773: New file.
52369         * iconvdata/testdata/CP773..UTF8: New file.
52370         * iconvdata/testdata/CP774: New file.
52371         * iconvdata/testdata/CP774..UTF8: New file.
52372
52373         * iconvdata/gen-8bit-gap-1.sh: End reading of charmap file at
52374         END CHARMAP line.
52375         * iconvdata/gen-8bit-gap.sh: Likewise.
52376         * iconvdata/gen-8bit.sh: Likewise.
52377
52378         * locale/iso-639.def: Add ary entry.
52379
52380         [BZ #11258]
52381         * locale/C-translit.h.in: Add U20A1 transliteration.
52382
52383         [BZ #12178]
52384         * locale/iso-639.def: Add wae entry.
52385         Patch by Kevin Bortis <bortis@translate-wae.ch>.
52386
52387         [BZ #12545]
52388         * locale/programs/localedef.c (construct_output_path): Use ssize_t
52389         for n.
52390
52391         [BZ #12711]
52392         * locale/C-translit.h.in: Add entry for U20B9.
52393         Patch by pravin.d.s@gmail.com.
52394
52395 2011-05-08  Ulrich Drepper  <drepper@gmail.com>
52396
52397         [BZ #12713]
52398         * sysdeps/unix/sysv/linux/getcwd.c: If getcwd syscall report
52399         ENAMETOOLONG use generic getcwd.
52400         * sysdeps/posix/getcwd.c: Add support to use openat.  Make usable
52401         in rtld.  Use *stat64.
52402         * sysdeps/unix/sysv/linux/Makefile [subdir=elf] (sysdep-rtld-routines):
52403         Add dl-getcwd, dl-openat64, dl-opendir, dl-fxstatat64.
52404         * sysdeps/unix/sysv/linux/dl-getcwd.c: New file.
52405         * sysdeps/unix/sysv/linux/dl-openat64.c: New file.
52406         * sysdeps/unix/sysv/linux/dl-opendir.c: New file.
52407         * sysdeps/unix/sysv/linux/dl-fxstat64.c: New file.
52408         * include/sys/stat.h: Define __fstatat, __lstat64, __fstat64, and
52409         __fstatat64 macros.
52410         * include/dirent.h: Add libc_hidden_proto for rewinddir.
52411         * dirent/rewinddir.c: Add libc_hidden_def.
52412         * sysdeps/mach/hurd/rewinddir.c: Likewise.
52413         * sysdeps/unix/rewinddir.c: Likewise.  Don't do locking outside libc.
52414
52415         * include/dirent.h (__alloc_dir): Add flags parameter.
52416         * sysdeps/unix/fdopendir.c (__fdopendir): Pass flags to __alloc_dir.
52417         * sysdeps/unix/opendir.c (__opendir): Pass 0 in new parameter to
52418         __alloc_dir.
52419         (__alloc_dir): Take new parameter.  Don't call fcntl for invocations
52420         from fdopendir if O_CLOEXEC is already set.
52421
52422 2011-03-15  Alan Modra  <amodra@gmail.com>
52423
52424         * elf/dl-reloc.c (_dl_try_allocate_static_tls <TLS_DTV_AT_TP>): Handle
52425         l_tls_firstbyte_offset non-zero.  Save padding offset in
52426         l_tls_firstbyte_offset for later use.
52427         * elf/dl-close.c (_dl_close_worker <TLS_DTV_AT_TP>): Correct code
52428         freeing static tls block.
52429
52430 2011-03-05  Jonathan Nieder  <jrnieder@gmail.com>
52431
52432         * sysdeps/unix/sysv/linux/sys/param.h: Fix an #ifndef __undef_ARG_MAX
52433         where #ifdef was intended.  The intent is to prevent ARG_MAX from
52434         being defined by the kernel headers.
52435
52436 2011-05-07  Ulrich Drepper  <drepper@gmail.com>
52437
52438         [BZ #12734]
52439         * resolv/resolv.h: Define RES_NOTLDQUERY.
52440         * resolv/res_init.c (res_setoptions): Recognize no_tld_query and
52441         no-tld-query and set RES_NOTLDQUERY.
52442         * resolv/res_debug.c (p_option): Handle RES_NOTLDQUERY.
52443         * resolv/res_query.c (__libc_res_nsearch): Backport changes from
52444         modern BIND to search name as TLD unless forbidden.
52445
52446 2011-05-07  Petr Baudis  <pasky@suse.cz>
52447             Ulrich Drepper  <drepper@gmail.com>
52448
52449         [BZ #12393]
52450         * elf/dl-load.c (fillin_rpath): Move trusted path check...
52451         (is_trusted_path): ...to here.
52452         (is_trusted_path_normalize): Wrapper for /../ and /./ normalization.
52453         (_dl_dst_substitute): Verify expanded $ORIGIN path elements
52454         using is_trusted_path_normalize() in setuid scripts.
52455
52456 2011-05-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
52457
52458         * sysdeps/unix/sysv/linux/sys/sysmacros.h: Add missing
52459         __BEGIN/__END_DECLS.
52460
52461 2011-05-06  Ulrich Drepper  <drepper@gmail.com>
52462
52463         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Return
52464         NSS_STATUS_NOTFOUND if no record was found.
52465
52466 2011-05-05  Andreas Schwab  <schwab@redhat.com>
52467
52468         * sunrpc/Makefile (headers): Add rpc/netdb.h.
52469         (headers-not-in-tirpc): Remove rpc/netdb.h
52470         * resolv/netdb.h: Revert last change.
52471
52472 2011-05-05  Paul Pluzhnikov  <ppluzhnikov@google.com>
52473
52474         * Makeconfig (link-libc-static): Use --{start,end}-group to handle
52475         circular dependency between libgcc.a and libc.a.
52476
52477 2011-05-05  Andreas Schwab  <schwab@redhat.com>
52478
52479         * resolv/netdb.h: Don't include <rpc/netdb.h>.
52480         * nis/Makefile: Don't install rpcsvc/*.
52481         * inet/protocols/timed.h: Include <sys/types.h> and <sys/time.h>
52482         instead of <rpc/types.h>.
52483         (MAXHOSTNAMELEN): Define.
52484
52485 2011-05-03  Andreas Schwab  <schwab@redhat.com>
52486
52487         * elf/ldconfig.c (add_dir): Don't crash on empty path.
52488
52489 2011-04-28  Maciej Babinski  <mbabinski@google.com>
52490
52491         [BZ #12714]
52492         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't bypass
52493         gethostbyname4_r when IPv6 results are possible.
52494
52495 2011-05-02  Ulrich Drepper  <drepper@gmail.com>
52496
52497         [BZ #12723]
52498         * sysdeps/unix/sysv/linux/pathconf.c (__pathconf): Implement
52499         _PC_PIPE_BUF handling.
52500
52501 2011-04-30  Bruno Haible  <bruno@clisp.org>
52502
52503         [BZ #12717]
52504         * conform/data/netdb.h-data (getnameinfo): Make POSIX compliant.
52505         * resolv/netdb.h (getnameinfo): Change type of flags parameter
52506         to 'int'.
52507         * inet/getnameinfo.c (getnameinfo): Likewise.
52508
52509 2011-04-29  Ulrich Drepper  <drepper@gmail.com>
52510
52511         * grp/initgroups.c (internal_getgrouplist): Prefer initgroups setting
52512         to groups setting in database lookup.
52513         * nss/nsswitch.conf: Add initgroups entry.
52514
52515 2011-04-22  Ulrich Drepper  <drepper@gmail.com>
52516
52517         [BZ #12685]
52518         * libio/fileops.c (_IO_new_file_fopen): Scan up to 7 bytes of the
52519         mode string.
52520         Patch by Eric Blake <eblake@redhat.com>.
52521
52522 2011-04-20  H.J. Lu  <hongjiu.lu@intel.com>
52523
52524         * sunrpc/Makefile (need-export-routines): Add svc_run.
52525         (routines): Remove svc_run.
52526         ($(objpfx)thrsvc): Add $(common-objpfx)linkobj/libc.so.
52527         * sunrpc/clnt_perr.c (clnt_perrno): Export.
52528         * sunrpc/svc_run.c (svc_run): Likewise.
52529         * sunrpc/svc_udp.c (svcudp_create): Likewise.
52530
52531 2011-04-21  Ulrich Drepper  <drepper@gmail.com>
52532
52533         * nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Fix
52534         problem in reallocation in last patch.
52535
52536 2011-04-20  Ulrich Drepper  <drepper@gmail.com>
52537
52538         * sunrpc/Makefile: Move inclusion of Rules.
52539
52540 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
52541
52542         * nss/nss_files/files-initgroups.c: New file.
52543         * nss/Makefile (libnss_files-routines): Add files-initgroups.
52544         * nss/Versions (libnss_files) [GLIBC_PRIVATE]: Export
52545         _nss_files_initgroups_dyn.
52546
52547 2011-03-31  Richard Sandiford  <richard.sandiford@linaro.org>
52548
52549         * elf/elf.h (R_ARM_IRELATIVE): Define.
52550
52551 2011-04-19  Ulrich Drepper  <drepper@gmail.com>
52552
52553         * po/ru.po: Update from translation team.
52554
52555 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
52556
52557         * sunrpc/Makefile ($(rpc-compat-routines.os)): Add before-compile to
52558         dependencies.
52559
52560 2011-02-06  Mike Frysinger  <vapier@gentoo.org>
52561
52562         [BZ #12653]
52563         * sysdeps/i386/i686/multiarch/memcpy-ssse3-rep.S: Only protect
52564         MEMCPY_CHK with USE_AS_BCOPY ifdef check.
52565         * sysdeps/i386/i686/multiarch/memcpy-ssse3.S: Likewise.
52566         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: Likewise.
52567         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: Likewise.
52568
52569 2011-03-28  Andreas Schwab  <schwab@linux-m68k.org>
52570
52571         * sysdeps/powerpc/powerpc32/power4/strncmp.S: Don't read past
52572         differing bytes.
52573         * sysdeps/powerpc/powerpc64/power4/strncmp.S: Likewise.
52574         * sysdeps/powerpc/powerpc32/power7/strncmp.S: Likewise.
52575         * sysdeps/powerpc/powerpc64/power7/strncmp.S: Likewise.
52576
52577 2011-04-17  Ulrich Drepper  <drepper@gmail.com>
52578
52579         [BZ #12420]
52580         * sysdeps/unix/sysv/linux/x86_64/getcontext.S: Reload context after
52581         storing it.
52582         * stdlib/bug-getcontext.c: New file.
52583         * stdlib/Makefile: Add rules to build and run bug-getcontext.
52584
52585 2011-04-13  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
52586
52587         * sysdeps/s390/s390-64/utf16-utf32-z9.c: Wrap the z9-109
52588         instructions into .machine "z9-109".
52589         * sysdeps/s390/s390-64/utf8-utf16-z9.c: Likewise.
52590         * sysdeps/s390/s390-64/utf8-utf32-z9.c: Likewise.
52591
52592 2011-04-11  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
52593
52594         * sysdeps/s390/s390-32/elf/start.S (_start): Skip extra zeroes
52595         between environment variables and auxiliary vector.
52596
52597 2011-04-16  Ulrich Drepper  <drepper@gmail.com>
52598
52599         * Makefile: Add rules to build linkobj/libc.so.
52600         * include/libc-symbols.h: Define libc_hidden_nolink.
52601         * include/rpc/auth.h: Mark functions which are to be hidden.
52602         * include/rpc/auth_des.h: Likewise.
52603         * include/rpc/auth_unix.h: Likewise.
52604         * include/rpc/clnt.h: Likewise.
52605         * include/rpc/des_crypt.h: Likewise.
52606         * include/rpc/key_prot.h: Likewise.
52607         * include/rpc/pmap_clnt.h: Likewise.
52608         * include/rpc/pmap_prot.h: Likewise.
52609         * include/rpc/pmap_rmt.h: Likewise.
52610         * include/rpc/rpc_msg.h: Likewise.
52611         * include/rpc/svc.h: Likewise.
52612         * include/rpc/svc_auth.h: Likewise.
52613         * include/rpc/xdr.h: Likewise.
52614         * nis/Makefile: Link all DSOs against linkobj/libc.so.
52615         * nss/Makefile: Likewise.
52616         * sunrpc/Makefile: Don't install headers.  Build library with normal
52617         entry points.  Don't build rpcinfo.  Link RPC tests appropriately.
52618         * sunrpc/auth_des.c: Hide exported symbols by default, export some
52619         for the compat linking library.  Remove use of INTDEF/INTUSE.
52620         * sunrpc/auth_none.c: Likewise.
52621         * sunrpc/auth_unix.c: Likewise.
52622         * sunrpc/authdes_prot.c: Likewise.
52623         * sunrpc/authuxprot.c: Likewise.
52624         * sunrpc/clnt_gen.c: Likewise.
52625         * sunrpc/clnt_perr.c: Likewise.
52626         * sunrpc/clnt_raw.c: Likewise.
52627         * sunrpc/clnt_simp.c: Likewise.
52628         * sunrpc/clnt_tcp.c: Likewise.
52629         * sunrpc/clnt_udp.c: Likewise.
52630         * sunrpc/clnt_unix.c: Likewise.
52631         * sunrpc/des_crypt.c: Likewise.
52632         * sunrpc/des_soft.c: Likewise.
52633         * sunrpc/get_myaddr.c: Likewise.
52634         * sunrpc/key_call.c: Likewise.
52635         * sunrpc/key_prot.c: Likewise.
52636         * sunrpc/netname.c: Likewise.
52637         * sunrpc/pm_getmaps.c: Likewise.
52638         * sunrpc/pm_getport.c: Likewise.
52639         * sunrpc/pmap_clnt.c: Likewise.
52640         * sunrpc/pmap_prot.c: Likewise.
52641         * sunrpc/pmap_prot2.c: Likewise.
52642         * sunrpc/pmap_rmt.c: Likewise.
52643         * sunrpc/publickey.c: Likewise.
52644         * sunrpc/rpc_cmsg.c: Likewise.
52645         * sunrpc/rpc_common.c: Likewise.
52646         * sunrpc/rpc_dtable.c: Likewise.
52647         * sunrpc/rpc_prot.c: Likewise.
52648         * sunrpc/rpc_thread.c: Likewise.
52649         * sunrpc/rtime.c: Likewise.
52650         * sunrpc/svc.c: Likewise.
52651         * sunrpc/svc_auth.c: Likewise.
52652         * sunrpc/svc_authux.c: Likewise.
52653         * sunrpc/svc_raw.c: Likewise.
52654         * sunrpc/svc_run.c: Likewise.
52655         * sunrpc/svc_simple.c: Likewise.
52656         * sunrpc/svc_tcp.c: Likewise.
52657         * sunrpc/svc_udp.c: Likewise.
52658         * sunrpc/svc_unix.c: Likewise.
52659         * sunrpc/svcauth_des.c: Likewise.
52660         * sunrpc/xcrypt.c: Likewise.
52661         * sunrpc/xdr.c: Likewise.
52662         * sunrpc/xdr_array.c: Likewise.
52663         * sunrpc/xdr_float.c: Likewise.
52664         * sunrpc/xdr_intXX_t.c: Likewise.
52665         * sunrpc/xdr_mem.c: Likewise.
52666         * sunrpc/xdr_rec.c: Likewise.
52667         * sunrpc/xdr_ref.c: Likewise.
52668         * sunrpc/xdr_sizeof.c: Likewise.
52669         * sunrpc/xdr_stdio.c: Likewise.
52670
52671 2011-04-10  Ulrich Drepper  <drepper@gmail.com>
52672
52673         [BZ #12650]
52674         * sysdeps/i386/dl-tls.h: Define TLS_DTV_UNALLOCATED.
52675         * sysdeps/ia64/dl-tls.h: Likewise.
52676         * sysdeps/powerpc/dl-tls.h: Likewise.
52677         * sysdeps/s390/dl-tls.h: Likewise.
52678         * sysdeps/sh/dl-tls.h: Likewise.
52679         * sysdeps/sparc/dl-tls.h: Likewise.
52680         * sysdeps/x86_64/dl-tls.h: Likewise.
52681         * elf/dl-tls.c: Don't define TLS_DTV_UNALLOCATED here.
52682
52683 2011-03-14  Andreas Schwab  <schwab@redhat.com>
52684
52685         * elf/dl-load.c (_dl_dst_substitute): When skipping the first
52686         rpath element also skip the following colon.
52687         (expand_dynamic_string_token): Add is_path parameter and pass
52688         down to DL_DST_REQUIRED and _dl_dst_substitute.
52689         (decompose_rpath): Call expand_dynamic_string_token with
52690         non-zero is_path.  Ignore empty rpaths.
52691         (_dl_map_object_from_fd): Call expand_dynamic_string_token
52692         with zero is_path.
52693
52694 2011-04-08  Andreas Schwab  <schwab@linux-m68k.org>
52695
52696         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sync_file_range.c:
52697         Make cancelable.
52698
52699 2011-04-09  Ulrich Drepper  <drepper@gmail.com>
52700
52701         [BZ #12655]
52702         * sysdeps/unix/sysv/linux/sys/syscall.h: Fix comment.
52703         Patch by Filipe David Manana <fdmanana@apache.org>.
52704
52705 2011-04-07  Andreas Schwab  <schwab@redhat.com>
52706
52707         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S (CALL_FAIL):
52708         Maintain aligned stack.
52709         (CHECK_RSP): Remove unused macro.
52710
52711 2011-04-03  Ulrich Drepper  <drepper@gmail.com>
52712
52713         * sysdeps/x86_64/cacheinfo.c (intel_02_known): Fix typo in table.
52714         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_02_known): Likewise.
52715
52716 2011-04-02  Ulrich Drepper  <drepper@gmail.com>
52717
52718         * sysdeps/unix/sysv/linux/bits/time.h (CLOCK_BOOTTIME): Define.
52719
52720         * include/features.h: Mention __USE_XOPEN2K8 in comment.
52721
52722 2011-03-26  H.J. Lu  <hongjiu.lu@intel.com>
52723
52724         [BZ #12518]
52725         * sysdeps/x86_64/Versions: Add memcpy to GLIBC_2.14.
52726         * sysdeps/x86_64/memcpy.S: Provide GLIBC_2_14 memcpy.
52727         * sysdeps/x86_64/memmove.c: New file.
52728         * sysdeps/x86_64/multiarch/memcpy.S: Include <shlib-compat.h>.
52729         (memcpy): Renamed to ...
52730         (__new_memcpy): This.
52731         (memcpy): Provide GLIBC_2_14 memcpy.
52732         * sysdeps/x86_64/multiarch/memmove.c: Include <shlib-compat.h>.
52733         (memcpy): Provide GLIBC_2_2_5 memcpy.
52734
52735 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52736
52737         [BZ #12631]
52738         * wcsmbs/wchar.h: Make wcpcpy and wcpncpy visible for __USE_XOPEN2K8.
52739
52740 2011-03-30  Andreas Schwab  <schwab@redhat.com>
52741
52742         * misc/syncfs.c: New file.
52743         * misc/Makefile (routines): Add syncfs.
52744         * posix/unistd.h: Declare syncfs.
52745         * sysdeps/unix/syscalls.list: Add syncfs.
52746
52747 2011-04-01  Andreas Schwab  <schwab@redhat.com>
52748
52749         * sysdeps/unix/sysv/linux/Versions: Rename open_by_handle to
52750         open_by_handle_at.
52751         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
52752         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52753         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52754         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52755         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52756         * sysdeps/unix/sysv/linux/syscalls.list: Likewise.
52757         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52758
52759 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52760
52761         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define O_PATH.
52762         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52763         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
52764         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52765         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52766         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52767         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52768
52769         * io/Makefile: Compile fallocate.c, fallocate64.c, and
52770         sync_file_range.c with -fexceptions.
52771         * sysdeps/unix/sysv/linux/fallocate.c: Make cancelable.
52772         * sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
52773         * sysdeps/unix/sysv/linux/i386/fallocate.c: Likewise.
52774         * sysdeps/unix/sysv/linux/i386/fallocate64.c: Likewise.
52775         * sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
52776         * sysdeps/unix/sysv/linux/sync_file_range.c: Likewise.
52777         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Mark
52778         sync_file_range as cancellation point
52779         * sysdeps/unix/sysv/linux/i386/sync_file_range.c: New file.  This is
52780         now a wrapper around __call_sync_file_range with cancellation handling.
52781         * sysdeps/unix/sysv/linux/i386/sync_file_range.S: Renamed to ...
52782         * sysdeps/unix/sysv/linux/i386/call_sync_file_range.S: ...this.  Change
52783         function name to __call_sync_file_range.
52784         * sysdeps/unix/sysv/linux/i386/Makefile [subdir=io] (sysdep_routines):
52785         Add call_sync_file_range.
52786
52787 2011-04-01  Andreas Schwab  <schwab@redhat.com>
52788
52789         * sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Add
52790         bits/timex.h.
52791
52792 2011-04-01  Ulrich Drepper  <drepper@gmail.com>
52793
52794         * iconv/iconv.h: Fix typo in comment.
52795         * io/fcntl.h: Likewise.
52796         * libio/stdio.h: Likewise.
52797         * posix/spawn.h: Likewise.
52798         * posix/unistd.h: Likewise.
52799         * stdlib/stdlib.h: Likewise.
52800         * time/time.h: Likewise.
52801         * wcsmbs/wchar.h: Likewise.
52802
52803         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (name_to_handle_at,
52804         open_by_handle): Add.
52805         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Define struct file_handle
52806         and MAX_HANDLE_SZ.  Declare name_to_handle_at and open_by_handle.
52807         Augment a few comments.
52808         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
52809         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
52810         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
52811         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
52812         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
52813         * sysdeps/unix/sysv/linux/syscalls.list: Add name_to_handle_at and
52814         open_by_handle.
52815
52816         * io/fcntl.h (AT_EMPTY_PATH): Define.
52817
52818 2011-03-30  Ulrich Drepper  <drepper@gmail.com>
52819
52820         * sysdeps/unix/sysv/linux/syscalls.list: Add clock_adjtime.
52821         * sysdeps/unix/sysv/linux/bits/time.h: New file.
52822         * sysdeps/unix/sysv/linux/sys/timex.h: Move struct timex definition
52823         to...
52824         * sysdeps/unix/sysv/linux/bits/timex.h: ...here.  New file.
52825         * Versions.def: Add GLIBC_2.14.
52826         * sysdeps/unix/sysv/linux/Versions [GLIBC_2.14] (clock_adjtime):
52827         Export.
52828
52829 2011-03-22  Ulrich Drepper  <drepper@gmail.com>
52830
52831         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Increment
52832         round counter.
52833         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
52834
52835 2011-03-20  H.J. Lu  <hongjiu.lu@intel.com>
52836
52837         [BZ #12597]
52838         * string/test-strncmp.c (do_page_test): New function.
52839         (check2): Likewise.
52840         (test_main): Call check2.
52841         * sysdeps/x86_64/multiarch/strcmp.S: Properly cross page boundary.
52842
52843 2011-03-20  Ulrich Drepper  <drepper@gmail.com>
52844
52845         [BZ #12587]
52846         * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word):
52847         Handle cache information in CPU leaf 4.
52848         * sysdeps/x86_64/cacheinfo.c (intel_check_word): Likewise.
52849
52850 2011-03-18  Ulrich Drepper  <drepper@gmail.com>
52851
52852         [BZ #12583]
52853         * posix/fnmatch.c (fnmatch): Check size of pattern in wide
52854         character representation.
52855         Partly based on a patch by Tomas Hoger <thoger@redhat.com>.
52856
52857 2011-03-16  Ryan S. Arnold  <rsa@us.ibm.com>
52858
52859         * sysdeps/powerpc/powerpc32/power6/fpu/s_isnanf.S (isnanf): Fix
52860         END(__isnan) to END(__isnanf) to match function entry point/label
52861         EALIGN(__isnanf,...).
52862
52863 2011-03-10  Jakub Jelinek  <jakub@redhat.com>
52864
52865         * wcsmbs/wchar.h (wmemcmp): Remove __restrict qualifiers.
52866
52867 2011-03-10  Ulrich Drepper  <drepper@gmail.com>
52868
52869         [BZ #12510]
52870         * elf/dl-lookup.c (do_lookup_x): For copy relocations of unique objects
52871         copy from the symbol referenced in the relocation to initialize the
52872         used variable.
52873         Patch by Piotr Bury <pbury@goahead.com>.
52874         * elf/Makefile: Add rules to build and tst-unique3.
52875         * include/bits/dlfcn.h: Remove _dl_mcount_wrapper_check declaration.
52876         * elf/tst-unique3.cc: New file.
52877         * elf/tst-unique3.h: New file.
52878         * elf/tst-unique3lib.cc: New file.
52879         * elf/tst-unique3lib2.cc: New file.
52880
52881         * elf/Makefile: Don't run tst-execstack* tests of SELinux is enabled.
52882
52883 2011-03-10  Mike Frysinger  <vapier@gentoo.org>
52884
52885         * sysdeps/sparc/sparc64/elf/configure.in (libc_cv_sparc64_tls): Add
52886         $LDFLAGS and -nostdlib -nostartfiles to linking step.  Change main
52887         to _start.
52888
52889 2011-03-06  Ulrich Drepper  <drepper@gmail.com>
52890
52891         * elf/dl-load.c (_dl_map_object): If we are looking for the first
52892         to-be-loaded object along a path to loader is ld.so.
52893
52894 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
52895             Ulrich Drepper  <drepper@gmail.com>
52896
52897         * sysdeps/x86_64/memset.S: After aligning destination, code
52898         branches to different locations depending on the value of
52899         misalignment, when multiarch is enabled. Fix this.
52900
52901 2011-03-02  Harsha Jagasia  <harsha.jagasia@amd.com>
52902
52903         * sysdeps/x86_64/cacheinfo.c (init_cacheinfo):
52904         Set _x86_64_preferred_memory_instruction for AMD processsors.
52905         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
52906         Set bit_Prefer_SSE_for_memop for AMD processors.
52907
52908 2011-03-04  Ulrich Drepper  <drepper@gmail.com>
52909
52910         * libio/fmemopen.c (fmemopen): Optimize a bit.
52911
52912 2011-03-03  Andreas Schwab  <schwab@redhat.com>
52913
52914         * libio/fmemopen.c (fmemopen): Don't read past end of buffer.
52915
52916 2011-03-03  Roland McGrath  <roland@redhat.com>
52917
52918         * setjmp/bits/setjmp2.h: Canonicalize comment formatting.
52919
52920 2011-02-28  Aurelien Jarno  <aurelien@aurel32.net>
52921
52922         * sysdeps/sparc/sparc64/multiarch/memset.S(__bzero): Call
52923         __bzero_ultra1 instead of __memset_ultra1.
52924
52925 2011-02-23  Andreas Schwab  <schwab@redhat.com>
52926             Ulrich Drepper  <drepper@gmail.com>
52927
52928         [BZ #12509]
52929         * include/link.h (struct link_map): Add l_orig_initfini.
52930         * elf/dl-load.c (_dl_map_object_from_fd): Free realname before
52931         returning unsuccessfully.
52932         * elf/dl-close.c (_dl_close_worker): If this is the last explicit
52933         close of a file loaded at startup, restore the original l_initfini
52934         list.
52935         * elf/dl-deps.c (_dl_map_object_deps): Don't free old l_initfini
52936         list, store the pointer.
52937         * elf/Makefile ($(objpfx)noload-mem): New rule.
52938         (noload-ENV): Define.
52939         (tests): Add $(objpfx)noload-mem.
52940         * elf/noload.c: Include <memcheck.h>.
52941         (main): Call mtrace.  Close all opened handles.
52942
52943 2011-02-17  Andreas Schwab  <schwab@redhat.com>
52944
52945         [BZ #12454]
52946         * elf/dl-deps.c (_dl_map_object_deps): Signal error early when
52947         dependencies are missing.
52948
52949 2011-02-22  Samuel Thibault  <samuel.thibault@ens-lyon.org>
52950
52951         Fix __if_freereq crash: Unlike the generic version which uses free,
52952         Hurd needs munmap.
52953         * sysdeps/mach/hurd/ifreq.h: New file.
52954
52955 2011-01-27  Petr Baudis  <pasky@suse.cz>
52956             Ulrich Drepper  <drepper@gmail.com>
52957
52958         [BZ 12445]#
52959         * stdio-common/vfprintf.c (vfprintf): Pass correct newlen
52960         to extend_alloca().
52961         * stdio-common/bug23.c: New file.
52962         * stdio-common/Makefile (tests): Add bug23.
52963
52964 2010-09-28  Andreas Schwab  <schwab@redhat.com>
52965             Ulrich Drepper  <drepper@gmail.com>
52966
52967         [BZ #12489]
52968         * elf/rtld.c (dl_main): Move setting of GLRO(dl_init_all_dirs)
52969         before performing relro protection.  At old place add assertion
52970         to make sure nothing changed.
52971
52972 2011-02-17  Nathan Sidwell  <nathan@codesourcery.com>
52973             Glauber de Oliveira Costa  <glommer@gmail.com>
52974
52975         * elf/elf.h: Add new ARM TLS relocs.
52976
52977 2011-02-16  Ryan S. Arnold  <rsa@us.ibm.com>
52978
52979         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h:
52980         (INTERNAL_VSYSCALL_NCS INTERNAL_SYSCALL_NCS): Remove erroneous (int)
52981         cast from r3.
52982         * sysdeps/wordsize-64/Makefile: New file.  Add tst-writev to
52983         'tests' variable.
52984         * sysdeps/wordsize-64/tst-writev.c: New file.
52985
52986 2011-02-15  Ryan S. Arnold  <rsa@us.ibm.com>
52987
52988         * sysdeps/powerpc/powerpc64/power7/Makefile: New file which adds
52989         -mno-vsx to the CFLAGS-rtld.c variable to avoid using VSX registers and
52990         insns in _dl_start to prevent a TOC reference before relocs are
52991         resolved.
52992
52993 2011-02-15  Ulrich Drepper  <drepper@gmail.com>
52994
52995         [BZ #12469]
52996         * Makeconfig: Remove RANLIB definition.
52997         * Makerules: Don't use RANLIB.
52998         * aclocal.m4: Remove ranlib test.
52999         * configure.in: No need to check for ranlib.
53000         * elf/rtld-Rules: Don't use RANLIB.
53001
53002 2011-02-16  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53003
53004         * sysdeps/mach/i386/sysdep.h: Add _MACH_I386_SYSDEP_H inclusion
53005         protection macro.
53006         * sysdeps/mach/i386/thread_state.h: Add _MACH_I386_THREAD_STATE_H
53007         inclusion protection macro.
53008
53009         * stdio-common/psiginfo.c (psiginfo): Check pinfo->si_signo against
53010         SIGRTMIN and SIGRTMAX and print information in that case only when
53011         SIGRTMIN is defined.
53012
53013 2011-02-11  Jakub Jelinek  <jakub@redhat.com>
53014
53015         * stdio-common/printf-parsemb.c (__parse_one_specmb): Handle
53016         arginfo fn returning -1.
53017
53018         * stdio-common/_i18n_number.h (_i18n_number_rewrite): Ensure decimal
53019         and thousands string is zero terminated.
53020
53021 2011-02-03  Andreas Schwab  <schwab@redhat.com>
53022
53023         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Sync with
53024         sysdeps/unix/sysv/linux/bits/socket.h.
53025
53026 2011-01-30  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53027
53028         * bits/sched.h (__CPU_ZERO, __CPU_SET, __CPU_CLR, __CPU_ISSET)
53029         (__CPU_COUNT): Remove old macros.
53030         (__CPU_ZERO_S, __CPU_SET_S, __CPU_CLR_S, __CPU_ISSET_S)
53031         (__CPU_COUNT, __CPU_EQUAL_S, __CPU_OP_S, __CPU_ALLOC_SIZE)
53032         (__CPU_ALLOC, __CPU_FREE): Add macros.
53033         (__sched_cpualloc, __sched_cpufree): Add declarations.
53034
53035 2011-02-05  Ulrich Drepper  <drepper@gmail.com>
53036
53037         * nscd/nscd-client.h: Define MAX_TIMEOUT_VALUE.
53038         (struct datahead): Reuse 32 bits of the alignment for a TTL field.
53039         * nscd/aicache.c (addhstaiX): Return timeout of added value.
53040         (readdhstai): Return value of addhstaiX call.
53041         * nscd/grpcache.c (cache_addgr): Return timeout of added value.
53042         (addgrbyX): Return value returned by cache_addgr.
53043         (readdgrbyname): Return value returned by addgrbyX.
53044         (readdgrbygid): Likewise.
53045         * nscd/pwdcache.c (cache_addpw): Return timeout of added value.
53046         (addpwbyX): Return value returned by cache_addpw.
53047         (readdpwbyname): Return value returned by addhstbyX.
53048         (readdpwbyuid): Likewise.
53049         * nscd/servicescache.c (cache_addserv): Return timeout of added value.
53050         (addservbyX): Return value returned by cache_addserv.
53051         (readdservbyname): Return value returned by addservbyX:
53052         (readdservbyport): Likewise.
53053         * nscd/hstcache.c (cache_addhst): Return timeout of added value.
53054         (addhstbyX): Return value returned by cache_addhst.
53055         (readdhstbyname): Return value returned by addhstbyX.
53056         (readdhstbyaddr): Likewise.
53057         (readdhstbynamev6): Likewise.
53058         (readdhstbyaddrv6): Likewise.
53059         * nscd/initgrcache.c (addinitgroupsX): Return timeout of added value.
53060         (readdinitgroups): Return value returned by addinitgroupsX.
53061         * nscd/cache.c (readdfcts): Change return value of functions to time_t.
53062         (prune_cache): Keep track of timeout value of re-added entries.
53063         * nscd/connections.c (nscd_run_prune): Use MAX_TIMEOUT_VALUE.
53064         * nscd/nscd.h: Adjust prototypes of readd* functions.
53065
53066 2011-02-04  Roland McGrath  <roland@redhat.com>
53067
53068         * nis/nis_server.c (nis_servstate): Use the right name for 0.
53069         (nis_stats): Likewise.
53070         * nis/nis_modify.c (nis_modify): Likewise.
53071         * nis/nis_remove.c (nis_remove): Likewise.
53072         * nis/nis_add.c (nis_add): Likewise.
53073
53074         * elf/dl-object.c (_dl_new_object): Remove unused variable L.
53075
53076         * posix/fnmatch_loop.c: Add some consts.
53077
53078         * sysdeps/x86_64/multiarch/memset-x86-64.S: Add an #undef.
53079
53080 2011-02-02  H.J. Lu  <hongjiu.lu@intel.com>
53081
53082         [BZ #12460]
53083         * config.make.in (config-cflags-novzeroupper): Define.
53084         * configure.in: Substitute libc_cv_cc_novzeroupper.
53085         * elf/Makefile (AVX-CFLAGS): Define.
53086         (CFLAGS-tst-audit4.c): Replace -mavx with $(AVX-CFLAGS).
53087         (CFLAGS-tst-auditmod4a.c): Likewise.
53088         (CFLAGS-tst-auditmod4b.c): Likewise.
53089         (CFLAGS-tst-auditmod6b.c): Likewise.
53090         (CFLAGS-tst-auditmod6c.c): Likewise.
53091         (CFLAGS-tst-auditmod7b.c): Likewise.
53092         * sysdeps/i386/configure.in: Check -mno-vzeroupper.
53093
53094 2011-02-02  Ulrich Drepper  <drepper@gmail.com>
53095
53096         * elf/dl-runtime.c (_dl_call_pltexit): Pass correct address of the
53097         function to the callback.
53098         Patch partly by Jiri Olsa <jolsa@redhat.com>.
53099
53100 2011-02-02  Andreas Schwab  <schwab@redhat.com>
53101
53102         * shadow/sgetspent.c: Check return value of __sgetspent_r instead
53103         of errno.
53104
53105 2011-01-19  Ulrich Drepper  <drepper@gmail.com>
53106
53107         [BZ #11724]
53108         * elf/dl-deps.c (_dl_map_object_deps): Rewrite sorting determining order
53109         of constructors.
53110         * elf/dl-fini.c (_dl_sort_fini): Rewrite sorting determining order
53111         of destructors.
53112         (_dl_fini): Don't call _dl_sort_fini if there is only one object.
53113
53114         [BZ #11724]
53115         * elf/Makefile: Add rules to build and run new test.
53116         * elf/tst-initorder.c: New file.
53117         * elf/tst-initorder.exp: New file.
53118         * elf/tst-initordera1.c: New file.
53119         * elf/tst-initordera2.c: New file.
53120         * elf/tst-initordera3.c: New file.
53121         * elf/tst-initordera4.c: New file.
53122         * elf/tst-initorderb1.c: New file.
53123         * elf/tst-initorderb2.c: New file.
53124         * elf/tst-order-a1.c: New file.
53125         * elf/tst-order-a2.c: New file.
53126         * elf/tst-order-a3.c: New file.
53127         * elf/tst-order-a4.c: New file.
53128         * elf/tst-order-b1.c: New file.
53129         * elf/tst-order-b2.c: New file.
53130         * elf/tst-order-main.c: New file.
53131         New test case by George Gensure <werkt0@gmail.com>.
53132
53133 2010-10-01  Andreas Schwab  <schwab@redhat.com>
53134
53135         * sysdeps/posix/getaddrinfo.c (gaih_inet): Don't discard result of
53136         decoding ACE if AI_CANONIDN.
53137
53138 2011-01-18  Ulrich Drepper  <drepper@gmail.com>
53139
53140         * elf/Makefile: Build IFUNC tests unless multi-arch = no.
53141
53142 2011-01-17  Ulrich Drepper  <drepper@gmail.com>
53143
53144         * version.h (RELEASE): Bump for 2.13 release.
53145         * include/features.h: (__GLIBC_MINOR__): Bump to 13.
53146
53147         * io/fcntl.h: Define AT_NO_AUTOMOUNT.
53148
53149         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MADV_HUGEPAGE and
53150         MADV_NOHUGEPAGE.
53151         * sysdeps/unix/sysv/linux/ia64/bits/mman.h: Likewise.
53152         * sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Likewise.
53153         * sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
53154         * sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
53155         * sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
53156         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
53157
53158         * posix/getconf.c: Update copyright year.
53159         * catgets/gencat.c: Likewise.
53160         * csu/version.c: Likewise.
53161         * debug/catchsegv.sh: Likewise.
53162         * debug/xtrace.sh: Likewise.
53163         * elf/ldconfig.c: Likewise.
53164         * elf/ldd.bash.in: Likewise.
53165         * elf/sprof.c (print_version): Likewise.
53166         * iconv/iconv_prog.c: Likewise.
53167         * iconv/iconvconfig.c: Likewise.
53168         * locale/programs/locale.c: Likewise.
53169         * locale/programs/localedef.c: Likewise.
53170         * malloc/memusage.sh: Likewise.
53171         * malloc/mtrace.pl: Likewise.
53172         * nscd/nscd.c (print_version): Likewise.
53173         * nss/getent.c: Likewise.
53174
53175         * sysdeps/unix/sysv/linux/bits/socket.h: Define AF_CAIF, AF_ALG,
53176         PF_CAIF, and PF_ALG.
53177         * sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
53178
53179 2011-01-16  Andreas Schwab  <schwab@linux-m68k.org>
53180
53181         * elf/Makefile (tlsmod17a-modules, tlsmod18a-modules): Define.
53182         (modules-names): Use them.
53183         (ifunc-test-modules, ifunc-pie-tests): Define.
53184         (extra-test-objs): Add tlsmod17a-modules, tlsmod18a-modules,
53185         tst-pie1, ifunc-test-modules and ifunc-pie-tests objects.
53186         (test-extras): Likewise.
53187         ($(patsubst %,$(objpfx)%.os,$(tlsmod17a-modules))): Use
53188         $(compile-command.c).
53189         ($(patsubst %,$(objpfx)%.os,$(tlsmod18a-modules))): Likewise.
53190         (all-built-dso): Define.
53191         (check-textrel.out, check-execstack.out): Depend on it.
53192
53193         * configure.in: Don't override --enable-multi-arch.
53194
53195 2011-01-15  Ulrich Drepper  <drepper@gmail.com>
53196
53197         [BZ #6812]
53198         * nscd/hstcache.c (tryagain): Define.
53199         (cache_addhst): Return tryagain not notfound for temporary errors.
53200         (addhstbyX): Also set h_errno to TRY_AGAIN when memory allocation
53201         failed.
53202
53203 2011-01-14  Ulrich Drepper  <drepper@gmail.com>
53204
53205         [BZ #10563]
53206         * sysdeps/unix/sysv/linux/i386/setgroups.c: Use INLINE_SETXID_SYSCALL
53207         to make the syscall.
53208         * sysdeps/unix/sysv/linux/setgroups.c: New file.
53209
53210         [BZ #12378]
53211         * posix/fnmatch_loop.c (FCT): When matching '[' keep track of beginning
53212         and fall back to matching as normal character if the string ends before
53213         the matching ']' is found.  This is what POSIX requires.
53214         * posix/testfnm.c: Adjust test result.
53215         * posix/globtest.sh: Adjust test result.  Add new test.
53216         * posix/tst-fnmatch.input: Likewise.
53217         * posix/tst-fnmatch2.c: Add new test.
53218
53219 2010-12-28  Andreas Schwab  <schwab@linux-m68k.org>
53220
53221         * elf/Makefile (check-execstack): Revert last change.  Depend on
53222         check-execstack.h.
53223         (check-execstack.h): New target.
53224         (generated): Add check-execstack.h.
53225         * elf/check-execstack.c: Include "check-execstack.h".
53226         (main): Revert last change.
53227         (handle_file): Return zero if GNU_STACK is absent and
53228         DEFAULT_STACK_PERMS doesn't include PF_X.
53229
53230 2011-01-13  Ulrich Drepper  <drepper@gmail.com>
53231
53232         * sysdeps/posix/spawni.c (__spawni): Don't fail if close file action
53233         in child fails because the descriptor is already closed.
53234         * include/sys/resource.h: Add libc_hidden_proto for getrlimit64.
53235         * sysdeps/unix/sysv/linux/getrlimit64.c: Add libc_hidden_def.
53236         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Likewise.
53237
53238         [BZ #12397]
53239         * sysdeps/unix/sysv/linux/mkdirat.c (mkdirat): Fix handling of missing
53240         syscall.
53241
53242         [BZ #10484]
53243         * nss/nss_files/files-hosts.c (HOST_DB_LOOKUP): Handle overflows of
53244         temporary buffer used to handle multi lookups locally.
53245         * include/alloca.h: Add libc_hidden_proto for __libc_alloca_cutoff.
53246
53247 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
53248
53249         * elf/dl-dst.h (DL_DST_REQUIRED): Allow l_origin to be NULL when
53250         loader is ld.so.
53251
53252 2011-01-10  Paul Pluzhnikov  <ppluzhnikov@google.com>
53253
53254         * sysdeps/i386/Makefile: stdlib/cxa_finalize.c needs 16-byte stack
53255         alignment for SSE2.
53256
53257 2011-01-12  Ulrich Drepper  <drepper@gmail.com>
53258
53259         [BZ #12394]
53260         * stdio-common/printf_fp.c (__printf_fp): Add more room for grouping
53261         characters.  When rounding increased number of integer digits recompute
53262         number of groups.
53263         * stdio-common/tst-grouping.c: New file.
53264         * stdio-common/Makefile: Add rules to build and run tst-grouping.
53265
53266 2011-01-09  Ulrich Drepper  <drepper@gmail.com>
53267
53268         * sysdeps/i386/bits/select.h: Don't use asm code for __FD_SET,
53269         __FD_CLR, and __FS_ISSET.  gcc generates better code on its own.
53270
53271         * sysdeps/x86_64/bits/select.h: Mark value of __FD_SET and __FD_CLR as
53272         void.
53273         * bits/select.h: Likewise.
53274
53275 2011-01-08  Ulrich Drepper  <drepper@gmail.com>
53276
53277         * po/ja.po: Update from translation team.
53278
53279 2011-01-04  David S. Miller  <davem@sunset.davemloft.net>
53280
53281         [BZ #11155]
53282         * sysdeps/unix/sysv/linux/sparc/sparc64/fxstat.c: Use i386's
53283         implementation just like for lxstat, fxstatat, et al.
53284
53285 2010-12-27  Jim Meyering  <meyering@redhat.com>
53286
53287         [BZ #12348]
53288         * posix/regexec.c (build_trtable): Return failure indication upon
53289         calloc failure.  Otherwise, re_search_internal could infloop on OOM.
53290
53291 2010-12-25  Ulrich Drepper  <drepper@gmail.com>
53292
53293         [BZ #12201]
53294         * sysdeps/unix/sysv/linux/getrlimit64.c: New file.
53295         * sysdeps/unix/sysv/linux/setrlimit64.c: New file.
53296         * sysdeps/unix/sysv/linux/i386/getrlimit64.c: Use ../getrlimit64.c.
53297         * sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PRLIMIT64.
53298
53299         [BZ #12207]
53300         * malloc/malloc.c (do_check_malloc_state): Use fastbin macro.
53301
53302         [BZ #12204]
53303         * string/xpg-strerror.c (__xpg_strerror_r): Return error code, not -1.
53304         * sysdeps/mach/xpg-strerror.c (__xpg_strerror_r): Likewise.
53305
53306 2010-12-15  H.J. Lu  <hongjiu.lu@intel.com>
53307
53308         * config.h.in (NO_CTORS_DTORS_SECTIONS): Define.
53309         * configure.in: Define NO_CTORS_DTORS_SECTIONS if linker
53310         script has SORT_BY_INIT_PRIORITY.
53311         * elf/sofini.c: Remove `.ctors' and `.dtors' sections if
53312         NO_CTORS_DTORS_SECTIONS is defined.
53313         * elf/soinit.c: Likewise.
53314         * sysdeps/i386/init-first.c: Don't call __libc_global_ctors if
53315         NO_CTORS_DTORS_SECTIONS is defined.
53316         * sysdeps/mach/hurd/i386/init-first.c: Likewise.
53317         * sysdeps/mach/hurd/powerpc/init-first.c: Likewise.
53318         * sysdeps/sh/init-first.c: Likewise.
53319         * sysdeps/unix/sysv/linux/init-first.c: Likewise.
53320
53321 2010-12-24  Ulrich Drepper  <drepper@gmail.com>
53322
53323         * stdio-common/vfprintf.c (vfprintf): If printf handlers are installed
53324         always use the slow path.
53325
53326 2010-12-15  Ryan S. Arnold  <rsa@us.ibm.com>
53327
53328         * elf/Makefile: (check-execstack): Replace $(native-compile) with a
53329         similar rule which adds the sysdep directories to the header search in
53330         order to pick up the correct platform stackinfo.h.
53331         * elf/check-execstack.c (main): Check DEFAULT_STACK_PERMS for PF_X and
53332         perform test if it is, otherwise return successfully without testing.
53333         * elf/dl-load.c (_dl_map_object_from_fd): Source stack_flags from
53334         DEFAULT_STACK_PERMS define in stackinfo.h.
53335         * elf/dl-support.c (_dl_stack_flags): Source from DEFAULT_STACK_PERMS
53336         defined in stackinfo.h.
53337         * elf/rtld.c (_dl_starting_up): Source ._dl_stack_flags from
53338         DEFAULT_STACK_PERMS defined in stackinfo.h.
53339         * sysdeps/i386/stackinfo.h: Define DEFAULT_STACK_PERMS with PF_X.
53340         * sysdeps/ia64/stackinfo.h: Likewise.
53341         * sysdeps/s390/stackinfo.h: Likewise.
53342         * sysdeps/sh/stackinfo.h: Likewise.
53343         * sysdeps/sparc/stackinfo.h: Likewise.
53344         * sysdeps/x86_64/stackinfo.h: Likewise.
53345         * sysdeps/powerpc/stackinfo.h: Define DEFAULT_STACK_PERMS without
53346         PF_X for powerpc64.  Retain PF_X for powerpc32.
53347
53348 2010-12-19  Ulrich Drepper  <drepper@gmail.com>
53349
53350         * sysdeps/unix/readdir_r.c (__READDIR_R): Compute reclen more
53351         accurately.
53352         * sysdeps/unix/sysv/linux/wordsize-64/readdir_r.c: Define
53353         GETDENTS_64BIT_ALIGNED.
53354
53355 2010-12-14  Ulrich Drepper  <dreper@gmail.com>
53356
53357         * sysdeps/i386/i686/multiarch/strcmp.S: Undo accidental checkin.
53358
53359 2010-12-10  Andreas Schwab  <schwab@redhat.com>
53360
53361         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Only declare under
53362         _GNU_SOURCE.
53363
53364         * wcsmbs/wchar.h (wcpcpy, wcpncpy): Add __restrict.
53365         * wcsmbs/bits/wchar2.h (__wmemmove_chk_warn, wmemmove, wmemset):
53366         Remove __restrict.
53367         (wcscpy, __wcpcpy_chk, __wcpcpy_alias, wcpcpy, wcsncpy, wcpncpy)
53368         (wcscat, wcsncat, __wcrtomb_chk, wcrtomb): Add __restrict.
53369
53370 2010-12-09  Ulrich Drepper  <drepper@gmail.com>
53371
53372         [BZ #11655]
53373         * stdlib/msort.c (qsort_r): Make sure both phys_pages and pagesize
53374         are initialized.
53375
53376 2010-12-09  Jakub Jelinek  <jakub@redhat.com>
53377
53378         * string/bits/string3.h (memmove, bcopy): Remove __restrict.
53379
53380 2010-12-03  Ulrich Drepper  <drepper@gmail.com>
53381
53382         * po/it.po: Update from translation team.
53383
53384 2010-12-01  H.J. Lu  <hongjiu.lu@intel.com>
53385
53386         * sysdeps/i386/i686/multiarch/strcmp-ssse3.S (STRCMP): Remove
53387         unused codes.
53388
53389 2010-11-30  Ulrich Drepper  <drepper@gmail.com>
53390
53391         * sysdeps/i386/fpu/libm-test-ulps: Relax ynf(10,0.75) test expectations.
53392
53393 2010-11-24  Andreas Schwab  <schwab@redhat.com>
53394
53395         * resolv/nss_dns/dns-host.c (getanswer_r): Don't handle ttl == 0
53396         specially.
53397         (gaih_getanswer_slice): Likewise.
53398
53399 2010-10-20  Jakub Jelinek  <jakub@redhat.com>
53400
53401         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.
53402
53403 2010-05-31  Petr Baudis  <pasky@suse.cz>
53404
53405         [BZ #11149]
53406         * elf/ldconfig.c (main): Allow aux_cache_file open()ing to fail
53407         silently even in the chroot mode.
53408
53409 2010-11-22  Ulrich Drepper  <drepper@gmail.com>
53410
53411         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Optimize
53412         last patch a bit.  Pretty printing
53413
53414 2010-05-31  Petr Baudis <pasky@suse.cz>
53415
53416         [BZ #10085]
53417         * nis/nss_compat/compat-initgroups.c (internal_getgrent_r): Fix
53418         initialization of skip_initgroups_dyn.
53419
53420 2010-11-19  Ulrich Drepper  <drepper@gmail.com>
53421
53422         * sysdeps/unix/sysv/linux/i386/bits/mman.h: Define MAP_HUGETLB.
53423         * sysdeps/unix/sysv/linux/x86_64/bits/mman.h: Likewise.
53424
53425 2010-11-16  Ulrich Drepper  <drepper@gmail.com>
53426
53427         * sysdeps/unix/sysv/linux/sys/swap.h (SWAP_FLAG_DISCARD): Define.
53428
53429 2010-11-11  Andreas Schwab  <schwab@redhat.com>
53430
53431         * posix/fnmatch_loop.c (NEW_PATTERN): Fix use of alloca.
53432         * posix/Makefile (tests): Add $(objpfx)tst-fnmatch-mem.
53433         (tst-fnmatch-ENV): Set MALLOC_TRACE.
53434         ($(objpfx)tst-fnmatch-mem): New rule.
53435         (generated): Add tst-fnmatch-mem and tst-fnmatch.mtrace.
53436         * posix/tst-fnmatch.c (main): Call mtrace.
53437
53438 2010-11-11  H.J. Lu  <hongjiu.lu@intel.com>
53439
53440         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53441         Support Intel processor model 6 and model 0x2c.
53442
53443 2010-11-10  Luis Machado  <luisgpm@br.ibm.com>
53444
53445         * sysdeps/ieee754/ldbl-128ibm/e_sqrtl.c (__ieee754_sqrtl): Force
53446           signed comparison.
53447
53448 2010-11-09  H.J. Lu  <hongjiu.lu@intel.com>
53449
53450         [BZ #12205]
53451         * string/test-strncasecmp.c (check_result): New function.
53452         (do_one_test): Use it.
53453         (check1): New function.
53454         (test_main): Use it.
53455         * sysdeps/i386/i686/multiarch/strcmp.S (nibble_ashr_use_sse4_2_exit):
53456         Support strcasecmp and strncasecmp.
53457
53458 2010-11-08  Ulrich Drepper  <drepper@gmail.com>
53459
53460         [BZ #12194]
53461         * sysdeps/i386/bits/byteswap.h: Avoid warning in __bswap_16.
53462         * sysdeps/x86_64/bits/byteswap.h: Likewise.
53463
53464 2010-11-07  H.J. Lu  <hongjiu.lu@intel.com>
53465
53466         * sysdeps/x86_64/memset.S: Check USE_MULTIARCH and USE_SSE2 for
53467         IFUNC support.
53468         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53469         memset-x86-64.
53470         * sysdeps/x86_64/multiarch/bzero.S: New file.
53471         * sysdeps/x86_64/multiarch/cacheinfo.c: New file.
53472         * sysdeps/x86_64/multiarch/memset-x86-64.S: New file.
53473         * sysdeps/x86_64/multiarch/memset.S: New file.
53474         * sysdeps/x86_64/multiarch/memset_chk.S: New file.
53475         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
53476         Set bit_Prefer_SSE_for_memop for Intel processors.
53477         * sysdeps/x86_64/multiarch/init-arch.h (bit_Prefer_SSE_for_memop):
53478         Define.
53479         (index_Prefer_SSE_for_memop): Define.
53480         (HAS_PREFER_SSE_FOR_MEMOP): Define.
53481
53482 2010-11-04  Luis Machado  <luisgpm@br.ibm.com>
53483
53484         * sysdeps/powerpc/powerpc32/power7/mempcpy.S: New file.
53485         * sysdeps/powerpc/powerpc64/power7/mempcpy.S: New file.
53486
53487 2010-11-03  H.J. Lu  <hongjiu.lu@intel.com>
53488
53489         [BZ #12191]
53490         * sysdeps/i386/i686/cacheinfo.c (__x86_64_raw_data_cache_size): New.
53491         (__x86_64_raw_data_cache_size_half): Likewise.
53492         (__x86_64_raw_shared_cache_size): Likewise.
53493         (__x86_64_raw_shared_cache_size_half): Likewise.
53494
53495         * sysdeps/x86_64/cacheinfo.c (__x86_64_raw_data_cache_size): New.
53496         (__x86_64_raw_data_cache_size_half): Likewise.
53497         (__x86_64_raw_shared_cache_size): Likewise.
53498         (__x86_64_raw_shared_cache_size_half): Likewise.
53499         (init_cacheinfo): Set __x86_64_raw_data_cache_size,
53500         __x86_64_raw_data_cache_size_half, __x86_64_raw_shared_cache_size
53501         and __x86_64_raw_shared_cache_size_half.  Round
53502         __x86_64_data_cache_size_half, __x86_64_data_cache_size
53503         __x86_64_shared_cache_size_half and __x86_64_shared_cache_size,
53504         to multiple of 256 bytes.
53505
53506 2010-11-03  Ulrich Drepper  <drepper@gmail.com>
53507
53508         [BZ #12167]
53509         * sysdeps/unix/sysv/linux/ttyname.c (ttyname): Recognize new mangling
53510         of inacessible symlinks.  Verify result of symlink before returning it.
53511         * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
53512         Patch mostly by Miklos Szeredi <miklos@szeredi.hu>.
53513
53514 2010-10-28  Erich Ritz  <erichritz@gmail.com>
53515
53516         * math/math.h (isinf): Fix typo in comment.
53517
53518 2010-11-01  Ulrich Drepper  <drepper@gmail.com>
53519
53520         * po/da.po: Update from translation team.
53521
53522 2010-10-26  Ulrich Drepper  <drepper@gmail.com>
53523
53524         * elf/rtld.c (dl_main): Move assertion after the point where rtld map
53525         is added to the list.
53526
53527 2010-10-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53528             Ulrich Drepper  <drepper@gmail.com>
53529
53530         * elf/dl-object.c (_dl_new_object): Don't append the new object to
53531         the global list here.  Move code to...
53532         (_dl_add_to_namespace_list): ...here.  New function.
53533         * elf/rtld.c (dl_main): Invoke _dl_add_to_namespace_list.
53534         * sysdeps/generic/ldsodefs.h (_dl_add_to_namespace_list): Declare.
53535         * elf/dl-load.c (lose): Don't remove the element from the list.
53536         (_dl_map_object_from_fd): Invoke _dl_add_to_namespace_list.
53537         (_dl_map_object): Likewise.
53538
53539 2010-10-25  Ulrich Drepper  <drepper@gmail.com>
53540
53541         [BZ #12159]
53542         * sysdeps/x86_64/multiarch/strchr.S: Fix propagation of search byte
53543         into all bytes of SSE register.
53544         Patch by Richard Li <richardpku@gmail.com>.
53545
53546 2010-10-24  Ulrich Drepper  <drepper@gmail.com>
53547
53548         [BZ #12140]
53549         * malloc/malloc.c (_int_free): Fill correct number of bytes when
53550         perturbing.
53551
53552 2010-10-20  Michael B. Brutman  <brutman@us.ibm.com>
53553
53554         * sysdeps/powerpc/dl-procinfo.c: Add support for ppca2 platform
53555         * sysdeps/powerpc/dl-procinfo.h: Add support for ppca2 platform
53556         * sysdeps/powerpc/powerpc32/a2/memcpy.S: New file.
53557         * sysdeps/powerpc/powerpc64/a2/memcpy.S: Likewise.
53558         * sysdeps/unix/sysv/linux/powerpc/powerpc32/a2/Implies: New
53559         submachine.
53560         * sysdeps/unix/sysv/linux/powerpc/powerpc64/a2/Implies: Likewise.
53561
53562 2010-10-22  Andreas Schwab  <schwab@redhat.com>
53563
53564         * include/dlfcn.h (__RTLD_SECURE): Define.
53565         * elf/dl-load.c (_dl_map_object): Remove preloaded parameter.  Use
53566         mode & __RTLD_SECURE instead.
53567         (open_path): Rename preloaded parameter to secure.
53568         * sysdeps/generic/ldsodefs.h (_dl_map_object): Adjust declaration.
53569         * elf/dl-open.c (dl_open_worker): Adjust call to _dl_map_object.
53570         * elf/dl-deps.c (openaux): Likewise.
53571         * elf/rtld.c (struct map_args): Remove is_preloaded.
53572         (map_doit): Don't use it.
53573         (dl_main): Likewise.
53574         (do_preload): Use __RTLD_SECURE instead of is_preloaded.
53575         (dlmopen_doit): Add __RTLD_SECURE to mode bits.
53576
53577 2010-09-09  Andreas Schwab  <schwab@redhat.com>
53578
53579         * Makeconfig (sysd-rules-patterns): Add rtld-%:rtld-%.
53580         (sysd-rules-targets): Remove duplicates.
53581         * elf/rtld-Rules ($(objpfx)rtld-%.os): Add pattern rules with
53582         rtld-%.$o dependency.
53583
53584 2010-10-18  Andreas Schwab  <schwab@redhat.com>
53585
53586         * elf/dl-open.c (dl_open_worker): Don't expand DST here, let
53587         _dl_map_object do it.
53588
53589 2010-10-19  Ulrich Drepper  <drepper@gmail.com>
53590
53591         * sysdeps/i386/bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has
53592         fast fma builtins, define the macros in the C99 standard.
53593         (FP_FAST_FMAF): Likewise.
53594         (FP_FAST_FMAL): Likewise.
53595         * sysdeps/x86_64/bits/mathdef.h: Likewise.
53596
53597         * bits/mathdef.h: Update copyright year.
53598         * sysdeps/powerpc/bits/mathdef.h: Likewise.
53599
53600 2010-10-19  Michael Meissner  <meissner@linux.vnet.ibm.com>
53601
53602         * bits/mathdef.h (FP_FAST_FMA): If the GCC 4.6 port has fast fma
53603         builtins, define the macros in the C99 standard.
53604         (FP_FAST_FMAF): Likewise.
53605         (FP_FAST_FMAL): Likewise.
53606         * sysdeps/powerpc/bits/mathdef.h (FP_FAST_FMA): Define, ppc as
53607         multiply/add.
53608         (FP_FAST_FMAF): Likewise.
53609
53610 2010-10-15  Jakub Jelinek  <jakub@redhat.com>
53611
53612         [BZ #3268]
53613         * math/libm-test.inc (fma_test): Some new testcases.
53614         * sysdeps/ieee754/ldbl-128/s_fmal.c: New file.
53615         * sysdeps/ieee754/ldbl-96/s_fma.c (__fma): Fix fma with finite x and
53616         y and infinite z.  Do multiplication by C already in long double.
53617         * sysdeps/ieee754/ldbl-96/s_fmal.c: New file.
53618         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix fma with finite x and
53619         y and infinite z.  Do bitwise or of inexact bit into u.d.
53620         * sysdeps/ieee754/ldbl-64-128/s_fmal.c: New file.
53621         * sysdeps/i386/fpu/s_fmaf.S: Removed.
53622         * sysdeps/i386/fpu/s_fma.S: Removed.
53623         * sysdeps/i386/fpu/s_fmal.S: Removed.
53624
53625 2010-10-16  Jakub Jelinek  <jakub@redhat.com>
53626
53627         [BZ #3268]
53628         * math/libm-test.inc (fma_test): Add IEEE quad long double fmal tests.
53629         * sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Ensure a1 + u.d
53630         computation is not scheduled after fetestexcept.  Fix value
53631         of minimum denormal long double.
53632
53633 2010-10-14  Jakub Jelinek  <jakub@redhat.com>
53634
53635         [BZ #3268]
53636         * math/libm-test.inc (fma_test): Add some more tests.
53637         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Handle underflows
53638         correctly.
53639
53640 2010-10-15  Andreas Schwab  <schwab@redhat.com>
53641
53642         * scripts/data/localplt-s390-linux-gnu.data: New file.
53643         * scripts/data/localplt-s390x-linux-gnu.data: New file.
53644
53645 2010-10-13  Jakub Jelinek  <jakub@redhat.com>
53646
53647         [BZ #3268]
53648         * math/libm-test.inc (fma_test): Some more fmaf and fma tests.
53649         * sysdeps/i386/i686/multiarch/s_fma.c: Include ldbl-96 version
53650         instead of dbl-64.
53651         * sysdeps/i386/fpu/bits/mathinline.h (fma, fmaf, fmal): Remove
53652         inlines.
53653         * sysdeps/ieee754/ldbl-96/s_fma.c: New file.
53654         * sysdeps/ieee754/dbl-64/s_fma.c (__fma): Fix exponent adjustment
53655         if one of x and y is very large and the other is subnormal.
53656         * sysdeps/s390/fpu/s_fmaf.c: New file.
53657         * sysdeps/s390/fpu/s_fma.c: New file.
53658         * sysdeps/powerpc/fpu/s_fmaf.S: New file.
53659         * sysdeps/powerpc/fpu/s_fma.S: New file.
53660         * sysdeps/powerpc/powerpc32/fpu/s_fma.S: New file.
53661         * sysdeps/powerpc/powerpc64/fpu/s_fma.S: New file.
53662         * sysdeps/unix/sysv/linux/s390/fpu/s_fma.c: New file.
53663
53664 2010-10-12  Jakub Jelinek  <jakub@redhat.com>
53665
53666         [BZ #3268]
53667         * math/libm-test.inc (fma_test): Add some more fmaf tests, add
53668         fma tests.
53669         * sysdeps/ieee754/dbl-64/s_fmaf.c (__fmaf): Fix Inf/Nan check.
53670         * sysdeps/ieee754/dbl-64/s_fma.c: New file.
53671         * sysdeps/i386/i686/multiarch/s_fma.c: Include
53672         sysdeps/ieee754/dbl-64/s_fma.c instead of math/s_fma.c.
53673         * sysdeps/x86_64/multiarch/s_fma.c: Likewise.
53674         * sysdeps/ieee754/ldbl-opt/s_fma.c: Likewise.
53675         * sysdeps/ieee754/ldbl-128/s_fma.c: New file.
53676
53677 2010-10-12  Ulrich Drepper  <drepper@redhat.com>
53678
53679         [BZ #12078]
53680         * posix/regcomp.c (parse_branch): One more memory leak plugged.
53681         * posix/bug-regex31.input: Add test case.
53682
53683 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
53684
53685         * posix/bug-regex31.c: Rewrite to run multiple tests from stdin.
53686         * posix/bug-regex31.input: New file.
53687
53688         [BZ #12078]
53689         * posix/regcomp.c (parse_branch): Free memory when allocation failed.
53690         (parse_sub_exp): Fix last change, use postorder.
53691
53692         * posix/bug-regex31.c: New file.
53693         * posix/Makefile: Add rules to build and run bug-regex31.
53694
53695         * posix/regcomp.c (parse_bracket_exp): Add missing re_free calls.
53696
53697         [BZ #12078]
53698         * posix/regcomp.c (parse_sub_exp): Free tree data when it is not used.
53699
53700         [BZ #12108]
53701         * stdio-common/psiginfo.c (psiginfo): Don't expext SIGRTMIN..SIGRTMAX
53702         to have entries in sys_siglist.
53703
53704         [BZ #12093]
53705         * sysdeps/unix/sysv/linux/check_pf.c (__check_pf): ->ifa_addr might
53706         be NULL.
53707
53708 2010-10-07  Jakub Jelinek  <jakub@redhat.com>
53709
53710         [BZ #3268]
53711         * math/libm-test.inc (fma_test): Add 2 fmaf tests.
53712         * sysdeps/ieee754/dbl-64/s_fmaf.c: New file.
53713         * sysdeps/i386/i686/multiarch/s_fmaf.c: Include
53714         sysdeps/ieee754/dbl-64/s_fmaf.c instead of math/s_fmaf.c.
53715         * sysdeps/x86_64/multiarch/s_fmaf.c: Likewise.
53716         * include/fenv.h (feupdateenv, fetestexcept): Add libm_hidden_proto.
53717         * math/feupdateenv.c (feupdateenv): Add libm_hidden_ver.
53718         * sysdeps/i386/fpu/feupdateenv.c (feupdateenv): Likewise.
53719         * sysdeps/powerpc/fpu/feupdateenv.c (feupdateenv): Likewise.
53720         * sysdeps/x86_64/fpu/feupdateenv.c (feupdateenv): Likewise.
53721         * sysdeps/sparc/fpu/feupdateenv.c (feupdateenv): Likewise.
53722         * sysdeps/ia64/fpu/feupdateenv.c (feupdateenv): Add libm_hidden_def.
53723         * sysdeps/s390/fpu/feupdateenv.c (feupdateenv): Likewise.
53724         * math/ftestexcept.c (fetestexcept): Likewise.
53725         * sysdeps/ia64/fpu/ftestexcept.c (fetestexcept): Likewise.
53726         * sysdeps/i386/fpu/ftestexcept.c (fetestexcept): Likewise.
53727         * sysdeps/s390/fpu/ftestexcept.c (fetestexcept): Likewise.
53728         * sysdeps/powerpc/fpu/ftestexcept.c (fetestexcept): Likewise.
53729         * sysdeps/x86_64/fpu/ftestexcept.c (fetestexcept): Likewise.
53730         * sysdeps/sparc/fpu/ftestexcept.c (fetestexcept): Likewise.
53731         * sysdeps/sh/sh4/fpu/ftestexcept.c (fetestexcept): Likewise.
53732
53733 2010-10-11  Ulrich Drepper  <drepper@gmail.com>
53734
53735         [BZ #12107]
53736         * stdio-common/psiginfo.c (psiginfo): Terminate all strings with
53737         newline.
53738
53739 2010-10-06  Ulrich Drepper  <drepper@gmail.com>
53740
53741         * string/bug-strstr1.c: New file.
53742         * string/Makefile: Add rules to build and run bug-strstr1.
53743
53744 2010-10-05  Eric Blake  <eblake@redhat.com>
53745
53746         [BZ #12092]
53747         * string/str-two-way.h (two_way_long_needle): Always clear memory
53748         when skipping input due to the shift table.
53749
53750 2010-10-03  Ulrich Drepper  <drepper@gmail.com>
53751
53752         [BZ #12005]
53753         * malloc/mcheck.c: Handle large requests.
53754
53755         [BZ #12077]
53756         * sysdeps/x86_64/strcmp.S: Fix handling of remaining bytes in buffer
53757         for strncmp and strncasecmp.
53758         * string/stratcliff.c: Add tests for strcmp and strncmp.
53759         * wcsmbs/wcsatcliff.c: Adjust for stratcliff change.
53760
53761 2010-09-28  Nobuhiro Iwamatsu  <iwamatsu@nigauri.org>
53762
53763         * sysdeps/sh/sh4/fpu/fpu_control.h: Add 'extern "C"' protection to
53764         __set_fpscr.
53765
53766 2010-09-30  Andreas Jaeger  <aj@suse.de>
53767
53768         * sysdeps/unix/sysv/linux_fsinfo.h (BTRFS_SUPER_MAGIC): Define.
53769         (CGROUP_SUPER_MAGIC): Define.
53770         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
53771         Handle btrfs and cgroup file systems.
53772         * sysdeps/unix/sysv/linux/pathconf.c (__statfs_filesize_max):
53773         Likewise.
53774
53775 2010-09-27  Luis Machado  <luisgpm@br.ibm.com>
53776
53777         * sysdeps/powerpc/powerpc32/rtld-memset.c: New file.
53778         * sysdeps/powerpc/powerpc64/rtld-memset.c: New file.
53779
53780 2010-09-29  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
53781
53782         [BZ #12067]
53783         * sysdeps/s390/s390-32/elf/start.S: Fix address calculation when
53784         trying to locate the ELF header.
53785
53786 2010-09-27  Andreas Schwab  <schwab@redhat.com>
53787
53788         [BZ #11611]
53789         * sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS):
53790         Mask out sign-bit copies when constructing f_fsid.
53791
53792 2010-09-24  Petr Baudis <pasky@suse.cz>
53793
53794         * debug/stack_chk_fail_local.c: Add missing licence exception.
53795         * debug/warning-nop.c: Likewise.
53796
53797 2010-09-15  Joseph Myers  <joseph@codesourcery.com>
53798
53799         * sysdeps/unix/sysv/linux/getdents.c (__GETDENTS): When
53800         implementing getdents64 using getdents syscall, set d_type if
53801         __ASSUME_GETDENTS32_D_TYPE.
53802
53803 2010-09-16  Andreas Schwab  <schwab@redhat.com>
53804
53805         * elf/dl-close.c (free_slotinfo, free_mem): Move to...
53806         * elf/dl-libc.c (free_slotinfo, free_mem): ... here.
53807
53808 2010-09-21  Ulrich Drepper  <drepper@redhat.com>
53809
53810         [BZ #12037]
53811         * posix/unistd.h: Undo change of feature selection for ftruncate from
53812         2010-01-11.
53813
53814 2010-09-20  Ulrich Drepper  <drepper@redhat.com>
53815
53816         * sysdeps/x86_64/strcmp.S: Fix another typo in x86-64 strncasecmp limit
53817         detection.
53818
53819 2010-09-20  Andreas Schwab  <schwab@redhat.com>
53820
53821         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.list: Add
53822         fanotify_mark.
53823         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
53824
53825 2010-09-14  Andreas Schwab  <schwab@redhat.com>
53826
53827         * sysdeps/s390/s390-32/__longjmp.c (__longjmp): Define register
53828         variables after CHECK_SP call.
53829         * sysdeps/s390/s390-64/__longjmp.c (__longjmp): Likewise.
53830
53831 2010-09-13  Andreas Schwab  <schwab@redhat.com>
53832             Ulrich Drepper  <drepper@redhat.com>
53833
53834         * elf/rtld.c (dl_main): Set GLRO(dl_init_all_dirs) just before
53835         re-relocationg ld.so.
53836         * elf/dl-support.c (_dl_non_dynamic_init): And here after the
53837         _dl_init_paths call.
53838         * elf/dl-load.c (_dl_init_paths).  Don't set GLRO(dl_init_all_dirs)
53839         here anymore.
53840
53841 2010-09-14  Ulrich Drepper  <drepper@redhat.com>
53842
53843         * resolv/res_init.c (__res_vinit): Count the default server we added.
53844
53845 2010-09-08  Chung-Lin Tang  <cltang@codesourcery.com>
53846             Ulrich Drepper  <drepper@redhat.com>
53847
53848         [BZ #11968]
53849         * sysdeps/unix/sysv/linux/x86_64/____longjmp_chk.S
53850         (____longjmp_chk): Use %ebx for saving value across system call.
53851         Add unwind info.
53852
53853 2010-09-06  Andreas Schwab  <schwab@redhat.com>
53854
53855         * manual/Makefile: Don't mix pattern rules with normal rules.
53856
53857 2010-09-05  Andreas Schwab  <schwab@linux-m68k.org>
53858
53859         * debug/vdprintf_chk.c (__vdprintf_chk): Remove undefined
53860         operation.
53861         * libio/iofdopen.c (_IO_new_fdopen): Likewise.
53862         * libio/iofopncook.c (_IO_cookie_init): Likewise.
53863         * libio/iovdprintf.c (_IO_vdprintf): Likewise.
53864         * libio/oldiofdopen.c (_IO_old_fdopen): Likewise.
53865         * sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_rela):
53866         Likewise.
53867
53868 2010-09-04  Ulrich Drepper  <drepper@redhat.com>
53869
53870         [BZ #11979]
53871         * iconvdata/gconv-modules: Remove EBCDIC-CP-AR2 alias from
53872         IBM-930, IBM-933, IBM-935, IBM-937, and IBM-939.
53873
53874 2010-09-02  Ulrich Drepper  <drepper@redhat.com>
53875
53876         * sysdeps/x86_64/add_n.S: Update from GMP 5.0.1.
53877         * sysdeps/x86_64/addmul_1.S: Likewise.
53878         * sysdeps/x86_64/lshift.S: Likewise.
53879         * sysdeps/x86_64/mul_1.S: Likewise.
53880         * sysdeps/x86_64/rshift.S: Likewise.
53881         * sysdeps/x86_64/sub_n.S: Likewise.
53882         * sysdeps/x86_64/submul_1.S: Likewise.
53883
53884 2010-09-01  Samuel Thibault  <samuel.thibault@ens-lyon.org>
53885
53886         This aligns bits/sched.h onto sysdeps/unix/sysv/linux/bits/sched.h:
53887         Define __sched_param instead of SCHED_* and sched_param when
53888         <bits/sched.h> is included with __need_schedparam defined.
53889         * bits/sched.h [__need_schedparam]
53890         (SCHED_OTHER, SCHED_FIFO, SCHED_RR, sched_param): Do not define.
53891         [!__defined_schedparam && (__need_schedparam || _SCHED_H)]
53892         (__defined_schedparam): Define to 1.
53893         (__sched_param): New structure, identical to sched_param.
53894         (__need_schedparam): Undefine.
53895
53896 2010-08-31  Mike Frysinger  <vapier@gentoo.org>
53897
53898         * sysdeps/unix/sysv/linux/sparc/sys/epoll.h (epoll_create2): Delete.
53899         (epoll_create1): Declare.
53900
53901         * sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Fix typo.
53902
53903 2010-08-31  Andreas Schwab  <schwab@redhat.com>
53904
53905         [BZ #7066]
53906         * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix array overflow when
53907         shifting retval into place.
53908
53909 2010-09-01  Ulrich Drepper  <drepper@redhat.com>
53910
53911         * nis/rpcsvc/nis.h: Update copyright notice.
53912         * nis/rpcsvc/nis.x: Likewise.
53913         * nis/rpcsvc/nis_callback.h: Likewise.
53914         * nis/rpcsvc/nis_callback.x: Likewise.
53915         * nis/rpcsvc/nis_object.x: Likewise.
53916         * nis/rpcsvc/nis_tags.h: Likewise.
53917         * nis/rpcsvc/yp.h: Likewise.
53918         * nis/rpcsvc/yp.x: Likewise.
53919         * nis/rpcsvc/ypupd.h: Likewise.
53920         * nis/yp_xdr.c: Likewise.
53921         * nis/ypupdate_xdr.c: Likewise.
53922
53923         * sunrpc/pm_getport.c (__libc_rpc_getport): New function.  This is
53924         mainly the body of pmap_getport.  Add parameters to specify timeouts.
53925         (pmap_getport): Use __libc_rpc_getport.
53926         * sunrpc/Versions: Export __libc_rpc_getport with GLIBC_PRIVATE.
53927         * include/rpc/pmap_clnt.h: Declare __libc_rpc_getport.
53928         * nis/nis_findserv.c: Remove pmap_getport copy. Use __libc_rpc_getport.
53929
53930 2010-08-31  Andreas Schwab  <schwab@linux-m68k.org>
53931
53932         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Add
53933         fanotify_mark.
53934
53935 2010-08-27  Roland McGrath  <roland@redhat.com>
53936
53937         * sysdeps/i386/i686/multiarch/Makefile
53938         (CFLAGS-varshift.c): New variable.
53939
53940 2010-08-27  Ulrich Drepper  <drepper@redhat.com>
53941
53942         * sysdeps/i386/i686/multiarch/varshift.S: File removed.
53943         * sysdeps/i386/i686/multiarch/varshift.c: New file.
53944
53945         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: Move to .text.slow section.
53946
53947         * sysdeps/x86_64/strlen.S: Minimal code improvement.
53948
53949 2010-08-26  H.J. Lu  <hongjiu.lu@intel.com>
53950
53951         * sysdeps/x86_64/strlen.S: Unroll the loop.
53952         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
53953         strlen-sse2 strlen-sse2-bsf.
53954         * sysdeps/x86_64/multiarch/strlen.S ((strlen): Return
53955         __strlen_no_bsf if bit_Slow_BSF is set.
53956         (__strlen_sse42): Removed.
53957         * sysdeps/x86_64/multiarch/strlen-no-bsf.S: New file.
53958         * sysdeps/x86_64/multiarch/strlen-sse4.S: New file.
53959
53960 2010-08-25  Roland McGrath  <roland@redhat.com>
53961
53962         * sysdeps/x86_64/multiarch/varshift.S: File removed.
53963         * sysdeps/x86_64/multiarch/varshift.c: New file.
53964         * sysdeps/x86_64/multiarch/Makefile (CFLAGS-varshift.c): New variable.
53965         * sysdeps/x86_64/multiarch/varshift.h: Clean up decls, fix a cast.
53966         * sysdeps/x86_64/multiarch/memmove.c: Move decls around.
53967         * sysdeps/x86_64/multiarch/memmove_chk.c: Likewise.
53968
53969 2010-08-25  H.J. Lu  <hongjiu.lu@intel.com>
53970
53971         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
53972         strlen-sse2 strlen-sse2-bsf.
53973         * sysdeps/i386/i686/multiarch/strlen.S (strlen): Return
53974         __strlen_sse2_bsf if bit_Slow_BSF is unset.
53975         (__strlen_sse2): Removed.
53976         * sysdeps/i386/i686/multiarch/strlen-sse2-bsf.S: New file.
53977         * sysdeps/i386/i686/multiarch/strlen-sse2.S: New file.
53978         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features): Set
53979         bit_Slow_BSF for Atom.
53980         * sysdeps/x86_64/multiarch/init-arch.h (bit_Slow_BSF): Define.
53981         (index_Slow_BSF): Define.
53982         (HAS_SLOW_BSF): Define.
53983
53984 2010-08-25  Ulrich Drepper  <drepper@redhat.com>
53985
53986         [BZ #10851]
53987         * resolv/res_init.c (__res_vinit): When no server address at all
53988         is given default to loopback.
53989
53990 2010-08-24  Roland McGrath  <roland@redhat.com>
53991
53992         * configure.in: Remove config-name.h generation.
53993         * configure: Regenerated.
53994         * config-name.in: File removed.
53995         * scripts/config-uname.sh: New file.
53996         * posix/Makefile (uname.c): Depend on $(objdir)config-name.h.
53997         ($(objdir)config-name.h): New target.
53998
53999         * sunrpc/rpc_parse.h: Avoid nested comment.
54000
54001 2010-08-24  Richard Henderson  <rth@redhat.com>
54002             Ulrich Drepper  <drepper@redhat.com>
54003             H.J. Lu  <hongjiu.lu@intel.com>
54004
54005         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add varshift.
54006         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Likewise.
54007         * sysdeps/x86_64/multiarch/strcspn-c.c: Include "varshift.h".
54008         Replace _mm_srli_si128 with __m128i_shift_right.  Replace
54009         _mm_alignr_epi8 with _mm_loadu_si128.
54010         * sysdeps/x86_64/multiarch/strspn-c.c: Likewise.
54011         * sysdeps/x86_64/multiarch/strstr.c: Include "varshift.h".
54012         (__m128i_shift_right): Removed.
54013         * sysdeps/i386/i686/multiarch/varshift.h: New file.
54014         * sysdeps/i386/i686/multiarch/varshift.S: New file.
54015         * sysdeps/x86_64/multiarch/varshift.h: New file.
54016         * sysdeps/x86_64/multiarch/varshift.S: New file.
54017
54018 2010-08-21  Mike Frysinger  <vapier@gentoo.org>
54019
54020         * configure.in: Move assembler checks to before sysdep dir checking.
54021
54022 2010-08-20  Petr Baudis  <pasky@suse.cz>
54023
54024         * LICENSES: Sync the sunrpc license.
54025
54026 2010-08-19  Ulrich Drepper  <drepper@redhat.com>
54027
54028         * sunrpc/auth_des.c: Update copyright notice once again.
54029         * sunrpc/auth_none.c: Likewise.
54030         * sunrpc/auth_unix.c: Likewise.
54031         * sunrpc/authdes_prot.c: Likewise.
54032         * sunrpc/authuxprot.c: Likewise.
54033         * sunrpc/bindrsvprt.c: Likewise.
54034         * sunrpc/clnt_gen.c: Likewise.
54035         * sunrpc/clnt_perr.c: Likewise.
54036         * sunrpc/clnt_raw.c: Likewise.
54037         * sunrpc/clnt_simp.c: Likewise.
54038         * sunrpc/clnt_tcp.c: Likewise.
54039         * sunrpc/clnt_udp.c: Likewise.
54040         * sunrpc/clnt_unix.c: Likewise.
54041         * sunrpc/des_crypt.c: Likewise.
54042         * sunrpc/des_soft.c: Likewise.
54043         * sunrpc/get_myaddr.c: Likewise.
54044         * sunrpc/getrpcport.c: Likewise.
54045         * sunrpc/key_call.c: Likewise.
54046         * sunrpc/key_prot.c: Likewise.
54047         * sunrpc/openchild.c: Likewise.
54048         * sunrpc/pm_getmaps.c: Likewise.
54049         * sunrpc/pm_getport.c: Likewise.
54050         * sunrpc/pmap_clnt.c: Likewise.
54051         * sunrpc/pmap_prot.c: Likewise.
54052         * sunrpc/pmap_prot2.c: Likewise.
54053         * sunrpc/pmap_rmt.c: Likewise.
54054         * sunrpc/rpc/auth.h: Likewise.
54055         * sunrpc/rpc/auth_unix.h: Likewise.
54056         * sunrpc/rpc/clnt.h: Likewise.
54057         * sunrpc/rpc/des_crypt.h: Likewise.
54058         * sunrpc/rpc/key_prot.h: Likewise.
54059         * sunrpc/rpc/netdb.h: Likewise.
54060         * sunrpc/rpc/pmap_clnt.h: Likewise.
54061         * sunrpc/rpc/pmap_prot.h: Likewise.
54062         * sunrpc/rpc/pmap_rmt.h: Likewise.
54063         * sunrpc/rpc/rpc.h: Likewise.
54064         * sunrpc/rpc/rpc_des.h: Likewise.
54065         * sunrpc/rpc/rpc_msg.h: Likewise.
54066         * sunrpc/rpc/svc.h: Likewise.
54067         * sunrpc/rpc/svc_auth.h: Likewise.
54068         * sunrpc/rpc/types.h: Likewise.
54069         * sunrpc/rpc/xdr.h: Likewise.
54070         * sunrpc/rpc_clntout.c: Likewise.
54071         * sunrpc/rpc_cmsg.c: Likewise.
54072         * sunrpc/rpc_common.c: Likewise.
54073         * sunrpc/rpc_cout.c: Likewise.
54074         * sunrpc/rpc_dtable.c: Likewise.
54075         * sunrpc/rpc_hout.c: Likewise.
54076         * sunrpc/rpc_main.c: Likewise.
54077         * sunrpc/rpc_parse.c: Likewise.
54078         * sunrpc/rpc_parse.h: Likewise.
54079         * sunrpc/rpc_prot.c: Likewise.
54080         * sunrpc/rpc_sample.c: Likewise.
54081         * sunrpc/rpc_scan.c: Likewise.
54082         * sunrpc/rpc_scan.h: Likewise.
54083         * sunrpc/rpc_svcout.c: Likewise.
54084         * sunrpc/rpc_tblout.c: Likewise.
54085         * sunrpc/rpc_util.c: Likewise.
54086         * sunrpc/rpc_util.h: Likewise.
54087         * sunrpc/rpcinfo.c: Likewise.
54088         * sunrpc/rpcsvc/bootparam_prot.x: Likewise.
54089         * sunrpc/rpcsvc/key_prot.x: Likewise.
54090         * sunrpc/rpcsvc/klm_prot.x: Likewise.
54091         * sunrpc/rpcsvc/mount.x: Likewise.
54092         * sunrpc/rpcsvc/nfs_prot.x: Likewise.
54093         * sunrpc/rpcsvc/nlm_prot.x: Likewise.
54094         * sunrpc/rpcsvc/rex.x: Likewise.
54095         * sunrpc/rpcsvc/rstat.x: Likewise.
54096         * sunrpc/rpcsvc/rusers.x: Likewise.
54097         * sunrpc/rpcsvc/sm_inter.x: Likewise.
54098         * sunrpc/rpcsvc/spray.x: Likewise.
54099         * sunrpc/rpcsvc/yppasswd.x: Likewise.
54100         * sunrpc/rtime.c: Likewise.
54101         * sunrpc/svc.c: Likewise.
54102         * sunrpc/svc_auth.c: Likewise.
54103         * sunrpc/svc_authux.c: Likewise.
54104         * sunrpc/svc_raw.c: Likewise.
54105         * sunrpc/svc_run.c: Likewise.
54106         * sunrpc/svc_simple.c: Likewise.
54107         * sunrpc/svc_tcp.c: Likewise.
54108         * sunrpc/svc_udp.c: Likewise.
54109         * sunrpc/svc_unix.c: Likewise.
54110         * sunrpc/svcauth_des.c: Likewise.
54111         * sunrpc/xcrypt.c: Likewise.
54112         * sunrpc/xdr.c: Likewise.
54113         * sunrpc/xdr_array.c: Likewise.
54114         * sunrpc/xdr_float.c: Likewise.
54115         * sunrpc/xdr_mem.c: Likewise.
54116         * sunrpc/xdr_rec.c: Likewise.
54117         * sunrpc/xdr_ref.c: Likewise.
54118         * sunrpc/xdr_sizeof.c: Likewise.
54119         * sunrpc/xdr_stdio.c: Likewise.
54120
54121         * sysdeps/x86_64/multiarch/strcmp.S: Fix two typos in strncasecmp
54122         handling.
54123
54124 2010-08-19  Andreas Schwab  <schwab@redhat.com>
54125
54126         * sysdeps/i386/i686/multiarch/strspn.S [!SHARED]: Fix SSE4.2 check.
54127
54128 2010-08-19  Luis Machado  <luisgpm@br.ibm.com>
54129
54130         * sysdeps/powerpc/powerpc32/power7/memchr.S: New file.
54131         * sysdeps/powerpc/powerpc32/power7/memrchr.S: New file.
54132         * sysdeps/powerpc/powerpc32/power7/rawmemchr.S: New file.
54133         * sysdeps/powerpc/powerpc32/power7/strchr.S: New file.
54134         * sysdeps/powerpc/powerpc32/power7/strchrnul.S: New file.
54135         * sysdeps/powerpc/powerpc32/power7/strlen.S: New file.
54136         * sysdeps/powerpc/powerpc32/power7/strnlen.S: New file.
54137         * sysdeps/powerpc/powerpc64/power7/memchr.S: New file.
54138         * sysdeps/powerpc/powerpc64/power7/memrchr.S: New file.
54139         * sysdeps/powerpc/powerpc64/power7/rawmemchr.S: New file.
54140         * sysdeps/powerpc/powerpc64/power7/strchr.S: New file.
54141         * sysdeps/powerpc/powerpc64/power7/strchrnul.S: New file.
54142         * sysdeps/powerpc/powerpc64/power7/strlen.S: New file.
54143         * sysdeps/powerpc/powerpc64/power7/strnlen.S: New file.
54144
54145 2010-07-26  Anton Blanchard  <anton@samba.org>
54146
54147         * malloc/malloc.c (sYSTRIm): Replace divide and multiply with mask.
54148         * malloc/arena.c (heap_trim): Likewise.
54149
54150 2010-08-16  Ulrich Drepper  <drepper@redhat.com>
54151
54152         * sysdeps/unix/sysv/linux/syscalls.list: Add entry for fanotify_init
54153         here.  Not...
54154         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: ...here...
54155         * sysdeps/unix/sysv/linux/i386/syscalls.list: ... orhere.
54156
54157 2010-08-12  H.J. Lu  <hongjiu.lu@intel.com>
54158
54159         * sysdeps/i386/elf/Makefile: New file.
54160
54161 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
54162
54163         * sysdeps/unix/sysv/linux/sys/fanotify.h: Remove third argument
54164         from fanotify_init.
54165         * sysdeps/unix/sysv/linux/i386/syscalls.list: Likewise.
54166         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
54167
54168 2010-08-15  Ulrich Drepper  <drepper@redhat.com>
54169
54170         * sysdeps/x86_64/strcmp.S: Use correct register for fourth parameter
54171         of strncasecmp_l.
54172         * sysdeps/multiarch/strcmp.S: Likewise.
54173
54174 2010-08-14  Ulrich Drepper  <drepper@redhat.com>
54175
54176         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
54177         strncase_l-nonascii.
54178         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
54179         Add strncase_l-ssse3.
54180         * sysdeps/x86_64/multiarch/strcmp.S: Prepare for use as strncasecmp.
54181         * sysdeps/x86_64/strcmp.S: Likewise.
54182         * sysdeps/x86_64/multiarch/strncase_l-ssse3.S: New file.
54183         * sysdeps/x86_64/multiarch/strncase_l.S: New file.
54184         * sysdeps/x86_64/strncase.S: New file.
54185         * sysdeps/x86_64/strncase_l-nonascii.c: New file.
54186         * sysdeps/x86_64/strncase_l.S: New file.
54187         * string/Makefile (strop-tests): Add strncasecmp.
54188         * string/test-strncasecmp.c: New file.
54189
54190         * sysdeps/x86_64/strcasecmp_l-nonascii.c: Add prototype to avoid
54191         warning.
54192
54193         * sysdeps/x86_64/strcmp.S: Move definition of NO_NOLOCALE_ALIAS to...
54194         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: ... here.
54195
54196 2010-08-14  Andreas Schwab  <schwab@linux-m68k.org>
54197
54198         * sysdeps/unix/sysv/linux/prlimit.c: Make it compile.
54199
54200 2010-08-12  Ulrich Drepper  <drepper@redhat.com>
54201
54202         * sysdeps/unix/sysv/linux/bits/termios.h: Define EXTPROC.
54203         * sysdeps/unix/sysv/linux/powerpc/bits/termios.h: Likewise.
54204         * sysdeps/unix/sysv/linux/sparc/bits/termios.h: Likewise.
54205
54206 2010-05-01  Alan Modra  <amodra@gmail.com>
54207
54208         * sysdeps/powerpc/powerpc32/power4/memcmp.S: Correct cfi for r24.
54209         * sysdeps/powerpc/powerpc64/bsd-_setjmp.S: Move contents..
54210         * sysdeps/powerpc/powerpc64/bsd-setjmp.S: ..and these too..
54211         * sysdeps/powerpc/powerpc64/setjmp.S: ..to here..
54212         * sysdeps/powerpc/powerpc64/setjmp-common.S: ..and here, with some
54213         tidying.  Don't tail-call __sigjmp_save for static lib.
54214         * sysdeps/powerpc/powerpc64/sysdep.h (SAVE_ARG, REST_ARG): Correct
54215         save location.
54216         (CFI_SAVE_ARG, CFI_REST_ARG): New macros.
54217         (CALL_MCOUNT): Add eh info, and nop after bl.
54218         (TAIL_CALL_SYSCALL_ERROR): New macro.
54219         (PSEUDO_RET): Use it.
54220         * sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_runtime_resolve):
54221         Correct save location of integer regs and cr.
54222         (_dl_profile_resolve): Correct cr save location.  Delete nops
54223         after bl when SHARED.  Reduce cfi size a little by better
54224         placement of cfi directives.
54225         * sysdeps/powerpc/powerpc64/fpu/s_copysign.S (__copysign): Don't
54226         make a stack frame.  Instead use parm save area as a temp.
54227         * sysdeps/unix/sysv/linux/powerpc/powerpc64/brk.S (__brk): Don't
54228         make a stack frame.  Use TAIL_CALL_SYSCALL_ERROR.
54229         * sysdeps/unix/sysv/linux/powerpc/powerpc64/clone.S (__clone):
54230         Don't make a stack frame for parent, use parm save area.
54231         Increase child stack frame to 112 bytes.  Don't save unused reg,
54232         and adjust reg usage.  Set up cfi on error recovery and
54233         epilogue of parent, and use TAIL_CALL_SYSCALL_ERROR, PSEUDO_RET.
54234         * sysdeps/unix/sysv/linux/powerpc/powerpc64/makecontext.S
54235         (__makecontext): Add dummy nop after jump to exit.
54236         * sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S (__socket):
54237         Use correct parm save area and cr save, reduce stack frame.
54238         Correct cfi for possible PSEUDO_RET frame setup.
54239         * sysdeps/unix/sysv/linux/powerpc/powerpc64/vfork.S (__vfork):
54240         Branch to local label emitted by PSEUDO_RET rather than
54241         __syscall_error.
54242
54243 2010-08-12  Andreas Schwab  <schwab@redhat.com>
54244
54245         [BZ #11904]
54246         * locale/programs/locale.c (print_assignment): New function.
54247         (show_locale_vars): Use it.
54248
54249 2010-08-11  Ulrich Drepper  <drepper@redhat.com>
54250
54251         * sysdeps/unix/sysv/linux/bits/statfs.h (struct statfs): Add f_flags
54252         field.
54253         (struct statfs64): Likewise.
54254         (_STATFS_F_FLAGS): Define.
54255         * sysdeps/unix/sysv/linux/s390/bits/statfs.h: Likewise.
54256         * sysdeps/unix/sysv/linux/internal_statvfs.c (__statvfs_getflags):
54257         Don't define if __ASSUME_STATFS_F_FLAGS is defined.
54258         (ST_VALID): Define locally.
54259         (INTERNAL_STATVFS): If f_flags has ST_VALID set don't call
54260         __statvfs_getflags, use the provided value.
54261         * sysdeps/unix/sysv/linux/kernel-features.h: Define
54262         __ASSUME_STATFS_F_FLAGS.
54263
54264         * sysdeps/unix/sysv/linux/sys/inotify.h (IN_EXCL_UNLINK): Define.
54265
54266         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_headers):
54267         Add sys/fanotify.h.
54268         * sysdeps/unix/sysv/linux/Versions [libc]: Export fanotify_init and
54269         fanotify_mask for GLIBC_2.13.
54270         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entries for
54271         fanotify_init and fanotify_mark.
54272         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.
54273         * sysdeps/unix/sysv/linux/sys/fanotify.h: New file.
54274
54275         * sysdeps/unix/sysv/linux/Makefile [subdir=misc] (sysdep_routines):
54276         Add prlimit.
54277         * sysdeps/unix/sysv/linux/Versions [libc]: Export prlimit and
54278         prlimit64 for GLIBC_2.13.
54279         * sysdeps/unix/sysv/linux/bits/resource.h: Declare prlimit and
54280         prlimit64.
54281         * sysdeps/unix/sysv/linux/i386/syscalls.list: Add entry for prlimit64
54282         syscall.
54283         * sysdeps/unix/sysv/linux/powerpc/powerpc32/syscalls.list: Likewise.
54284         * sysdeps/unix/sysv/linux/s390/s390-32/syscalls.list: Likewise.
54285         * sysdeps/unix/sysv/linux/sh/syscalls.list: Likewise.
54286         * sysdeps/unix/sysv/linux/sparc/sparc32/syscalls.lis: Likewise.
54287         * sysdeps/unix/sysv/linux/wordsize-64/syscalls.list: Likewise.  Also
54288         add prlimit alias.
54289         * sysdeps/unix/sysv/linux/prlimit.c: New file.
54290
54291         [BZ #11903]
54292         * sysdeps/generic/netinet/ip.h (IPTOS_CLASS): Fix definition.
54293         Patch by Evgeni Bikov <bikovevg@iitp.ru>.
54294
54295         * nss/Makefile: Add rules to build and run tst-nss-test1.
54296         * shlib-versions: Add entry for libnss_test1.
54297         * nss/nss_test1.c: New file.
54298         * nss/tst-nss-test1.c: New file.
54299
54300         * nss/nsswitch.c (__nss_database_custom): Define new variable.
54301         (__nss_configure_lookup): Set appropriate entry in
54302         __nss_configure_lookup to true.
54303         * nss/nsswitch.h: Define enum with indeces of databases in
54304         databases and __nss_database_custom arrays.  Declare
54305         __nss_database_custom.
54306         * grp/initgroups.c (internal_getgrouplist): Use __nss_database_custom
54307         to avoid using nscd when custom rules are installed.
54308         * nss/getXXbyYY_r.c: Likewise.
54309         * sysdeps/posix/getaddrinfo.c (gaih_inet): Likewise.
54310
54311         * nss/nss_files/files-parse.c: Whitespace fixes.
54312
54313 2010-08-09  Ulrich Drepper  <drepper@redhat.com>
54314
54315         [BZ #11883]
54316         * posix/fnmatch.c: Keep track of alloca use and fall back on malloc.
54317         * posix/fnmatch_loop.c: Likewise.
54318
54319 2010-07-17  Andi Kleen  <ak@linux.intel.com>
54320
54321         * sysdeps/i386/i386-mcount.S (__fentry__): Define.
54322         * sysdeps/x86_64/_mcount.S (__fentry__): Define.
54323         * stdlib/Versions (__fentry__): Add for GLIBC 2.13
54324         * Versions.def [GLIBC_2.13]: Add.
54325
54326 2010-08-06  Ulrich Drepper  <drepper@redhat.com>
54327
54328         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
54329         Also fail if tpwd after pwuid call is NULL.
54330
54331 2010-07-31  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54332
54333         * hurd/hurdselect.c (_hurd_select): Round timeout up instead of down
54334         when converting to ms.
54335
54336 2010-06-06  Samuel Thibault  <samuel.thibault@ens-lyon.org>
54337
54338         * sysdeps/mach/hurd/ttyname.c (ttyname): Replace MIG_BAD_ID and
54339         EOPNOTSUPP errors with ENOTTY.
54340         * sysdeps/mach/hurd/ttyname_r.c (__ttyname_r): Replace MIG_BAD_ID and
54341         EOPNOTSUPP errors with ENOTTY.
54342
54343 2010-07-31  Ulrich Drepper  <drepper@redhat.com>
54344
54345         * sysdeps/x86_64/multiarch/Makefile [subdir=string] (sysdep_routines):
54346         Add strcasecmp_l-ssse3.
54347         * sysdeps/x86_64/multiarch/strcmp.S: Add support to compile for
54348         strcasecmp.
54349         * sysdeps/x86_64/strcmp.S: Allow more flexible compiling of strcasecmp.
54350         * sysdeps/x86_64/multiarch/strcasecmp_l.S: New file.
54351         * sysdeps/x86_64/multiarch/strcasecmp_l-ssse3.S: New file.
54352
54353 2010-07-30  Ulrich Drepper  <drepper@redhat.com>
54354
54355         * sysdeps/x86_64/multiarch/strcmp.S: Pretty printing.
54356
54357         * string/Makefile (strop-tests): Add strcasecmp.
54358         * sysdeps/x86_64/Makefile [subdir=string] (sysdep_routines): Add
54359         strcasecmp_l-nonascii.
54360         (gen-as-const-headers): Add locale-defines.sym.
54361         * sysdeps/x86_64/strcmp.S: Add support for strcasecmp implementation.
54362         * sysdeps/x86_64/strcasecmp.S: New file.
54363         * sysdeps/x86_64/strcasecmp_l.S: New file.
54364         * sysdeps/x86_64/strcasecmp_l-nonascii.c: New file.
54365         * sysdeps/x86_64/locale-defines.sym: New file.
54366         * string/test-strcasecmp.c: New file.
54367
54368         * string/test-strcasestr.c: Test both ends of the range of characters.
54369         * sysdeps/x86_64/multiarch/strstr.c: Fix UCHIGH definition.
54370
54371 2010-07-29  Roland McGrath  <roland@redhat.com>
54372
54373         [BZ #11856]
54374         * manual/locale.texi (Yes-or-No Questions): Fix example code.
54375
54376 2010-07-27  Ulrich Drepper  <drepper@redhat.com>
54377
54378         * sysdeps/x86_64/multiarch/strcmp-ssse3.S: Avoid compiling the file
54379         for ld.so.
54380
54381 2010-07-27  Andreas Schwab  <schwab@redhat.com>
54382
54383         * manual/memory.texi (Malloc Tunable Parameters): Document
54384         M_PERTURB.
54385
54386 2010-07-26  Roland McGrath  <roland@redhat.com>
54387
54388         [BZ #11840]
54389         * configure.in (-fgnu89-inline check): Set and substitute
54390         gnu89_inline, not libc_cv_gnu89_inline.
54391         * configure: Regenerated.
54392         * config.make.in (gnu89-inline-CFLAGS): Use @gnu89_inline@.
54393
54394 2010-07-26  Ulrich Drepper  <drepper@redhat.com>
54395
54396         * string/test-strnlen.c: New file.
54397         * string/Makefile (strop-tests): Add strnlen.
54398         * string/tester.c (test_strnlen): Add a few more test cases.
54399         * string/tst-strlen.c: Better error reporting.
54400
54401         * sysdeps/x86_64/strnlen.S: New file.
54402
54403 2010-07-24  Ulrich Drepper  <drepper@redhat.com>
54404
54405         * sysdeps/x86_64/multiarch/strstr.c (__m128i_strloadu_tolower): Use
54406         lower-latency instructions.
54407
54408 2010-07-23  Ulrich Drepper  <drepper@redhat.com>
54409
54410         * string/test-strcasestr.c: New file.
54411         * string/test-strstr.c: New file.
54412         * string/Makefile (strop-tests): Add strstr and strcasestr.
54413         * string/str-two-way.h: Don't undefine MAX.
54414         * string/strcasestr.c: Don't define alias if NO_ALIAS is defined.
54415
54416 2010-07-21  Andreas Schwab  <schwab@redhat.com>
54417
54418         * sysdeps/i386/i686/multiarch/Makefile (sysdep_routines): Add
54419         strcasestr-nonascii.
54420         (CFLAGS-strcasestr-nonascii.c): Define.
54421         * sysdeps/i386/i686/multiarch/strcasestr-nonascii.c: New file.
54422         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c (STRSTR_SSE42):
54423         Remove unused attribute.
54424
54425 2010-07-20  Roland McGrath  <roland@redhat.com>
54426
54427         * elf/dl-sysdep.c (_dl_important_hwcaps): Add dsocaps mask to
54428         dl_hwcap_mask as well as dl_hwcap.  Without this, dsocaps matching in
54429         ld.so.cache was broken.  With it, there is no way to disable dsocaps
54430         like LD_HWCAP_MASK can disable hwcaps.
54431
54432 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
54433
54434         * sysdeps/mach/hurd/sendmsg.c (__libc_sendmsg): Fix memory leaks.
54435
54436 2010-07-16  Ulrich Drepper  <drepper@redhat.com>
54437
54438         * sysdeps/x86_64/multiarch/strstr.c: Rewrite to avoid indirect function
54439         call in strcasestr.
54440         * sysdeps/x86_64/multiarch/strcasestr.c: Declare
54441         __strcasestr_sse42_nonascii.
54442         * sysdeps/x86_64/multiarch/Makefile: Add rules to build
54443         strcasestr-nonascii.c.
54444         * sysdeps/x86_64/multiarch/strcasestr-nonascii.c: New file.
54445
54446 2010-06-15  Luis Machado  <luisgpm@br.ibm.com>
54447
54448         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysign.S: New file.
54449         * sysdeps/powerpc/powerpc32/power6/fpu/s_copysignf.S: New file.
54450         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysign.S: New file.
54451         * sysdeps/powerpc/powerpc64/power6/fpu/s_copysignf.S: New file.
54452
54453 2010-07-09  Ulrich Drepper  <drepper@redhat.com>
54454
54455         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Use __fcntl not
54456         fcntl.
54457
54458 2010-07-06  Andreas Schwab  <schwab@redhat.com>
54459
54460         [BZ #11577]
54461         * elf/dl-version.c (match_symbol): Don't pass NULL occation to
54462         dl_signal_cerror.
54463
54464 2010-07-06  Ulrich Drepper  <drepper@redhat.com>
54465
54466         * sysdeps/unix/sysv/linux/fpathconf.c (__fpathconf): Implement
54467         _PC_PIPE_BUF using F_GETPIPE_SZ.
54468
54469 2010-07-05  Roland McGrath  <roland@redhat.com>
54470
54471         * manual/arith.texi (Rounding Functions): Fix rint description
54472         implicit in round description.
54473
54474 2010-07-02  Ulrich Drepper  <drepper@redhat.com>
54475
54476         * elf/Makefile: Fix linking for a few tests to make recent linker
54477         happy.
54478
54479 2010-06-30  Andreas Schwab  <schwab@redhat.com>
54480
54481         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Readd
54482         $(common-objpfx)libc_nonshared.a.
54483
54484 2010-06-21  Luis Machado  <luisgpm@br.ibm.com>
54485
54486         * sysdeps/powerpc/powerpc32/970/fpu/Implies: Remove.
54487         * sysdeps/powerpc/powerpc32/power5/fpu/Implies: Remove.
54488         * sysdeps/powerpc/powerpc32/power5+/fpu/Implies: Remove.
54489         * sysdeps/powerpc/powerpc32/power6x/fpu/Implies: Remove.
54490         * sysdeps/powerpc/powerpc64/970/fpu/Implies: Remove.
54491         * sysdeps/powerpc/powerpc64/power5/fpu/Implies: Remove.
54492         * sysdeps/powerpc/powerpc64/power5+/fpu/Implies: Remove.
54493         * sysdeps/powerpc/powerpc64/power6x/fpu/Implies: Remove.
54494         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/fpu/Implies: Remove.
54495         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/fpu/Implies: Remove.
54496         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/fpu/Implies: Remove.
54497         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5+/fpu/Implies: Remove.
54498         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/fpu/Implies: Remove.
54499         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/fpu/Implies: Remove.
54500         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/fpu/Implies: Remove.
54501         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/fpu/Implies: Remove.
54502         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/fpu/Implies: Remove.
54503         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/fpu/Implies: Remove.
54504         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5+/fpu/Implies: Remove.
54505         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/fpu/Implies: Remove.
54506         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/fpu/Implies: Remove.
54507         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/fpu/Implies: Remove.
54508         * sysdeps/powerpc/powerpc32/970/Implies: Point to power4.
54509         * sysdeps/powerpc/powerpc32/power5/Implies: Point to power4.
54510         * sysdeps/powerpc/powerpc32/power5+/Implies: Point to power5.
54511         * sysdeps/powerpc/powerpc32/power6/Implies: Point to power5+.
54512         * sysdeps/powerpc/powerpc32/power6x/Implies: Point to power6.
54513         * sysdeps/powerpc/powerpc64/970/Implies: Point to power4.
54514         * sysdeps/powerpc/powerpc64/power5/Implies: Point to power4.
54515         * sysdeps/powerpc/powerpc64/power5+/Implies: Point to power5.
54516         * sysdeps/powerpc/powerpc64/power6/Implies: Point to power5+.
54517         * sysdeps/powerpc/powerpc64/power6x/Implies: Point to power6.
54518         * sysdeps/powerpc/powerpc32/power7/Implies: New file.
54519         * sysdeps/powerpc/powerpc64/power7/Implies: New file.
54520         * sysdeps/unix/sysv/linux/powerpc/powerpc32/970/Implies: New file.
54521         * sysdeps/unix/sysv/linux/powerpc/powerpc32/cell/Implies: New file.
54522         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power4/Implies: New file.
54523         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power5/Implies: New file.
54524         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6/Implies: New file.
54525         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power6x/Implies: New file.
54526         * sysdeps/unix/sysv/linux/powerpc/powerpc32/power7/Implies: New file.
54527         * sysdeps/unix/sysv/linux/powerpc/powerpc64/970/Implies: New file.
54528         * sysdeps/unix/sysv/linux/powerpc/powerpc64/cell/Implies: New file.
54529         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power4/Implies: New file.
54530         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power5/Implies: New file.
54531         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6/Implies: New file.
54532         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power6x/Implies: New file.
54533         * sysdeps/unix/sysv/linux/powerpc/powerpc64/power7/Implies: New file.
54534
54535 2010-06-25  H.J. Lu  <hongjiu.lu@intel.com>
54536
54537         * debug/memmove_chk.c (__memmove_chk): Renamed to ...
54538         (MEMMOVE_CHK): ...this.  Default to __memmove_chk.
54539         * string/memmove.c (memmove): Renamed to ...
54540         (MEMMOVE): ...this.  Default to memmove.
54541         * sysdeps/x86_64/memcpy.S: Use ENTRY_CHK and END_CHK.
54542         * sysdeps/x86_64/sysdep.h (ENTRY_CHK): Define.
54543         (END_CHK): Define.
54544         * sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
54545         memcpy-ssse3 mempcpy-ssse3 memmove-ssse3 memcpy-ssse3-back
54546         mempcpy-ssse3-back memmove-ssse3-back.
54547         * sysdeps/x86_64/multiarch/bcopy.S: New file .
54548         * sysdeps/x86_64/multiarch/memcpy-ssse3-back.S: New file.
54549         * sysdeps/x86_64/multiarch/memcpy-ssse3.S: New file.
54550         * sysdeps/x86_64/multiarch/memcpy.S: New file.
54551         * sysdeps/x86_64/multiarch/memcpy_chk.S: New file.
54552         * sysdeps/x86_64/multiarch/memmove-ssse3-back.S: New file.
54553         * sysdeps/x86_64/multiarch/memmove-ssse3.S: New file.
54554         * sysdeps/x86_64/multiarch/memmove.c: New file.
54555         * sysdeps/x86_64/multiarch/memmove_chk.c: New file.
54556         * sysdeps/x86_64/multiarch/mempcpy-ssse3-back.S: New file.
54557         * sysdeps/x86_64/multiarch/mempcpy-ssse3.S: New file.
54558         * sysdeps/x86_64/multiarch/mempcpy.S: New file.
54559         * sysdeps/x86_64/multiarch/mempcpy_chk.S: New file.
54560         * sysdeps/x86_64/multiarch/init-arch.h (bit_Fast_Copy_Backward):
54561         Define.
54562         (index_Fast_Copy_Backward): Define.
54563         (HAS_ARCH_FEATURE): Define.
54564         (HAS_FAST_REP_STRING): Define.
54565         (HAS_FAST_COPY_BACKWARD): Define.
54566
54567 2010-06-21  Andreas Schwab  <schwab@redhat.com>
54568
54569         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid):
54570         Restore proper fallback handling.
54571
54572 2010-06-19  Ulrich Drepper  <drepper@redhat.com>
54573
54574         [BZ #11701]
54575         * posix/group_member.c (__group_member): Correct checking loop.
54576
54577         * sysdeps/unix/sysv/linux/getlogin_r.c (__getlogin_r_loginuid): Handle
54578         OOM in getpwuid_r correctly.  Return error number when the caller
54579         should return, otherwise -1.
54580         (getlogin_r): Adjust to return also for result of __getlogin_r_loginuid
54581         call returning > 0 value.
54582         * sysdeps/unix/sysv/linux/getlogin.c (getlogin): Likewise.
54583
54584 2010-06-07  Andreas Schwab  <schwab@redhat.com>
54585
54586         * dlfcn/Makefile: Remove explicit dependencies on libc.so and
54587         libc_nonshared.a from targets in modules-names.
54588
54589 2010-06-02  Kirill A. Shutemov  <kirill@shutemov.name>
54590
54591         * elf/dl-reloc.c: Flush cache after solving TEXTRELs if arch
54592         requires it.
54593
54594 2010-06-10  Luis Machado  <luisgpm@br.ibm.com>
54595
54596         * sysdeps/powerpc/powerpc32/power7/memcmp.S: New file
54597         * sysdeps/powerpc/powerpc64/power7/memcmp.S: New file.
54598         * sysdeps/powerpc/powerpc32/power7/strncmp.S: New file.
54599         * sysdeps/powerpc/powerpc64/power7/strncmp.S: New file.
54600
54601 2010-06-02  Andreas Schwab  <schwab@redhat.com>
54602
54603         * nis/nss_nis/nis-initgroups.c (get_uid): Properly resize buffer.
54604
54605 2010-06-14  Ulrich Drepper  <drepper@redhat.com>
54606
54607         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Define F_SETPIPE_SZ
54608         and F_GETPIPE_SZ.
54609         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
54610         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
54611         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
54612         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
54613         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
54614         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise
54615
54616 2010-06-14  Roland McGrath  <roland@redhat.com>
54617
54618         * manual/libc.texinfo (@copying): Change to GFDL v1.3.
54619
54620 2010-06-07  Jakub Jelinek  <jakub@redhat.com>
54621
54622         * libio/stdio.h (sscanf, vsscanf): Use __REDIRECT_NTH instead of
54623         __REDIRECT followed by __THROW.
54624         * wcsmbs/wchar.h (swscanf, vswscanf): Likewise.
54625         * posix/getopt.h (getopt): Likewise.
54626
54627 2010-06-02  Emilio Pozuelo Monfort  <pochu27@gmail.com>
54628
54629         * hurd/lookup-at.c (__file_name_lookup_at): Accept
54630         AT_SYMLINK_FOLLOW in AT_FLAGS.  Fail with EINVAL if both
54631         AT_SYMLINK_FOLLOW and AT_SYMLINK_NOFOLLOW are present
54632         in AT_FLAGS.
54633         * hurd/hurd/fd.h (__file_name_lookup_at): Update comment.
54634         * sysdeps/mach/hurd/linkat.c (linkat): Pass O_NOLINK in FLAGS.
54635
54636 2010-05-28  Luis Machado  <luisgpm@br.ibm.com>
54637
54638         * sysdeps/powerpc/powerpc32/power7/memcpy.S: Exchange srdi for srwi.
54639
54640 2010-05-26  H.J. Lu  <hongjiu.lu@intel.com>
54641
54642         [BZ #11640]
54643         * sysdeps/x86_64/multiarch/init-arch.c (__init_cpu_features):
54644         Properly check family and model.
54645
54646 2010-05-26  Takashi Yoshii  <takashi.yoshii.zj@renesas.com>
54647
54648         * sysdeps/unix/sysv/linux/sh/sh4/register-dump.h: Fix iov[] size.
54649
54650 2010-05-24  Luis Machado  <luisgpm@br.ibm.com>
54651
54652         * sysdeps/powerpc/powerpc32/power7/memset.S: POWER7 32-bit memset fix.
54653
54654 2010-05-21  Ulrich Drepper  <drepper@redhat.com>
54655
54656         * elf/dl-runtime.c (_dl_profile_fixup): Don't crash on unresolved weak
54657         symbol reference.
54658
54659 2010-05-19  Andreas Schwab  <schwab@redhat.com>
54660
54661         * elf/dl-runtime.c (_dl_fixup): Don't crash on unresolved weak
54662         symbol reference.
54663
54664 2010-05-21  Andreas Schwab  <schwab@redhat.com>
54665
54666         * sysdeps/unix/sysv/linux/Makefile (sysdep_routines): Add recvmmsg
54667         and internal_recvmmsg.
54668         * sysdeps/unix/sysv/linux/recvmmsg.c: New file.
54669         * sysdeps/unix/sysv/linux/internal_recvmmsg.S: New file.
54670         * sysdeps/unix/sysv/linux/socketcall.h (SOCKOP_recvmmsg): Define.
54671         * sysdeps/unix/sysv/linux/syscalls.list (recvmmsg): Remove.
54672
54673         * sunrpc/clnt_tcp.c (clnttcp_control): Add missing break.
54674         * sunrpc/clnt_udp.c (clntudp_control): Likewise.
54675         * sunrpc/clnt_unix.c (clntunix_control): Likewise.
54676
54677 2010-05-20  Andreas Schwab  <schwab@redhat.com>
54678
54679         * sysdeps/unix/sysv/linux/sys/timex.h: Use __REDIRECT_NTH.
54680
54681 2010-05-17  Luis Machado  <luisgpm@br.ibm.com>
54682
54683         POWER7 optimizations.
54684         * sysdeps/powerpc/powerpc64/power7/memset.S: New file.
54685         * sysdeps/powerpc/powerpc32/power7/memset.S: New file.
54686
54687 2010-05-19  Ulrich Drepper  <drepper@redhat.com>
54688
54689         * version.h: Update for 2.13 development version.
54690
54691 2010-05-12  Andrew Stubbs  <ams@codesourcery.com>
54692
54693         * sysdeps/sh/sh4/fpu/feholdexcpt.c (feholdexcept): Really disable all
54694         exceptions.  Return 0.
54695
54696 2010-05-07  Roland McGrath  <roland@redhat.com>
54697
54698         * elf/ldconfig.c (main): Add a const.
54699
54700 2010-05-06  Ulrich Drepper  <drepper@redhat.com>
54701
54702         * nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
54703         (args_options): Add no-idn option.
54704         (ahosts_keys_int): Add idn_flags to ai_flags.
54705         (parse_option): Handle 'i' option to clear idn_flags.
54706
54707         * malloc/malloc.c (_int_free): Possible race in the most recently
54708         added check.  Only act on the data if no current modification
54709         happened.
54710
54711 See ChangeLog.17 for earlier changes.